Skip to content

Latest commit

 

History

History
121 lines (98 loc) · 4.04 KB

SDL_x11shape.c

File metadata and controls

121 lines (98 loc) · 4.04 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
Simple DirectMedia Layer
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
#if SDL_VIDEO_DRIVER_X11
#include "SDL_assert.h"
#include "SDL_x11video.h"
#include "SDL_x11shape.h"
#include "SDL_x11window.h"
#include "../SDL_shape_internals.h"
SDL_Window*
X11_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags) {
return SDL_CreateWindow(title,x,y,w,h,flags);
}
SDL_WindowShaper*
X11_CreateShaper(SDL_Window* window) {
SDL_WindowShaper* result = NULL;
Aug 21, 2013
Aug 21, 2013
39
40
SDL_ShapeData* data = NULL;
int resized_properly;
41
42
43
44
45
46
47
48
#if SDL_VIDEO_DRIVER_X11_XSHAPE
if (SDL_X11_HAVE_XSHAPE) { /* Make sure X server supports it. */
result = malloc(sizeof(SDL_WindowShaper));
result->window = window;
result->mode.mode = ShapeModeDefault;
result->mode.parameters.binarizationCutoff = 1;
result->userx = result->usery = 0;
Aug 21, 2013
Aug 21, 2013
49
data = SDL_malloc(sizeof(SDL_ShapeData));
50
51
52
53
result->driverdata = data;
data->bitmapsize = 0;
data->bitmap = NULL;
window->shaper = result;
Aug 21, 2013
Aug 21, 2013
54
resized_properly = X11_ResizeWindowShape(window);
55
56
57
58
59
60
61
62
63
64
SDL_assert(resized_properly == 0);
}
#endif
return result;
}
int
X11_ResizeWindowShape(SDL_Window* window) {
SDL_ShapeData* data = window->shaper->driverdata;
Aug 21, 2013
Aug 21, 2013
65
unsigned int bitmapsize = window->w / 8;
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
SDL_assert(data != NULL);
if(window->w % 8 > 0)
bitmapsize += 1;
bitmapsize *= window->h;
if(data->bitmapsize != bitmapsize || data->bitmap == NULL) {
data->bitmapsize = bitmapsize;
if(data->bitmap != NULL)
free(data->bitmap);
data->bitmap = malloc(data->bitmapsize);
if(data->bitmap == NULL) {
return SDL_SetError("Could not allocate memory for shaped-window bitmap.");
}
}
memset(data->bitmap,0,data->bitmapsize);
window->shaper->userx = window->x;
window->shaper->usery = window->y;
SDL_SetWindowPosition(window,-1000,-1000);
return 0;
}
int
X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode) {
Aug 21, 2013
Aug 21, 2013
91
92
SDL_ShapeData *data = NULL;
SDL_WindowData *windowdata = NULL;
Aug 21, 2013
Aug 21, 2013
93
Pixmap shapemask;
Aug 21, 2013
Aug 21, 2013
94
95
96
97
98
99
100
101
102
if(shaper == NULL || shape == NULL || shaper->driverdata == NULL)
return -1;
#if SDL_VIDEO_DRIVER_X11_XSHAPE
if(shape->format->Amask == 0 && SDL_SHAPEMODEALPHA(shape_mode->mode))
return -2;
if(shape->w != shaper->window->w || shape->h != shaper->window->h)
return -3;
Aug 21, 2013
Aug 21, 2013
103
data = shaper->driverdata;
104
105
106
107
/* Assume that shaper->alphacutoff already has a value, because SDL_SetWindowShape() should have given it one. */
SDL_CalculateShapeBitmap(shaper->mode,shape,data->bitmap,8);
Aug 21, 2013
Aug 21, 2013
108
windowdata = (SDL_WindowData*)(shaper->window->driverdata);
Oct 18, 2013
Oct 18, 2013
109
shapemask = X11_XCreateBitmapFromData(windowdata->videodata->display,windowdata->xwindow,data->bitmap,shaper->window->w,shaper->window->h);
Oct 18, 2013
Oct 18, 2013
111
112
X11_XShapeCombineMask(windowdata->videodata->display,windowdata->xwindow, ShapeBounding, 0, 0,shapemask, ShapeSet);
X11_XSync(windowdata->videodata->display,False);
Oct 18, 2013
Oct 18, 2013
114
X11_XFreePixmap(windowdata->videodata->display,shapemask);
115
116
117
118
119
120
#endif
return 0;
}
#endif /* SDL_VIDEO_DRIVER_X11 */