Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
105 lines (85 loc) · 3.34 KB

SDL_win32shape.c

File metadata and controls

105 lines (85 loc) · 3.34 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
SDL - Simple DirectMedia Layer
Copyright (C) 2010 Eli Gottlieb
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Eli Gottlieb
eligottlieb@gmail.com
*/
Aug 2, 2010
Aug 2, 2010
23
#include "SDL_win32shape.h"
Jul 30, 2010
Jul 30, 2010
24
#include "SDL_win32video.h"
Jun 5, 2010
Jun 5, 2010
25
Aug 9, 2010
Aug 9, 2010
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
SDL_WindowShaper*
Win32_CreateShaper(SDL_Window * window) {
int resized_properly;
SDL_WindowShaper* result = (SDL_WindowShaper *)SDL_malloc(sizeof(SDL_WindowShaper));
result->window = window;
result->mode.mode = ShapeModeDefault;
result->mode.parameters.binarizationCutoff = 1;
result->usershownflag = 0;
result->driverdata = (SDL_ShapeData*)SDL_malloc(sizeof(SDL_ShapeData));
((SDL_ShapeData*)result->driverdata)->mask_tree = NULL;
//Put some driver-data here.
window->shaper = result;
resized_properly = Win32_ResizeWindowShape(window);
if (resized_properly != 0)
return NULL;
Jul 30, 2010
Jul 30, 2010
41
Aug 9, 2010
Aug 9, 2010
42
return result;
Jul 7, 2010
Jul 7, 2010
43
44
}
Aug 9, 2010
Aug 9, 2010
45
46
47
48
49
50
51
52
void
CombineRectRegions(SDL_ShapeTree* node, void* closure) {
HRGN* mask_region = (HRGN *)closure;
if(node->kind == OpaqueShape) {
HRGN temp_region = CreateRectRgn(node->data.shape.x,node->data.shape.y,node->data.shape.w,node->data.shape.h);
CombineRgn(*mask_region,*mask_region,temp_region, RGN_OR);
DeleteObject(temp_region);
}
Jul 29, 2010
Jul 29, 2010
53
54
}
Aug 9, 2010
Aug 9, 2010
55
56
57
58
int
Win32_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode) {
SDL_ShapeData *data;
HRGN mask_region;
Aug 2, 2010
Aug 2, 2010
59
SDL_WindowData *windowdata;
Jul 30, 2010
Jul 30, 2010
60
61
HWND hwnd;
Aug 9, 2010
Aug 9, 2010
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
if (shaper == NULL || shape == NULL)
return SDL_INVALID_SHAPE_ARGUMENT;
if(shape->format->Amask == 0 && shapeMode->mode != ShapeModeColorKey || shape->w != shaper->window->w || shape->h != shaper->window->h)
return SDL_INVALID_SHAPE_ARGUMENT;
data = (SDL_ShapeData*)shaper->driverdata;
if(data->mask_tree != NULL)
SDL_FreeShapeTree(&data->mask_tree);
data->mask_tree = SDL_CalculateShapeTree(*shapeMode,shape,SDL_FALSE);
/*
* Start with empty region
*/
mask_region = CreateRectRgn(0, 0, 0, 0);
SDL_TraverseShapeTree(data->mask_tree,&CombineRectRegions,&mask_region);
/*
* Set the new region mask for the window
*/
windowdata=(SDL_WindowData *)(shaper->window->driverdata);
hwnd = windowdata->hwnd;
SetWindowRgn(hwnd, mask_region, TRUE);
return 0;
Jul 7, 2010
Jul 7, 2010
87
88
}
Aug 9, 2010
Aug 9, 2010
89
90
91
int
Win32_ResizeWindowShape(SDL_Window *window) {
SDL_ShapeData* data;
Jul 30, 2010
Jul 30, 2010
92
Aug 9, 2010
Aug 9, 2010
93
94
95
96
97
98
99
100
101
102
103
104
if (window == NULL)
return -1;
data = (SDL_ShapeData *)window->shaper->driverdata;
if (data == NULL)
return -1;
if(data->mask_tree != NULL)
SDL_FreeShapeTree(&data->mask_tree);
window->shaper->usershownflag |= window->flags & SDL_WINDOW_SHOWN;
return 0;
Jul 7, 2010
Jul 7, 2010
105
}