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

Latest commit

 

History

History
116 lines (93 loc) · 3.87 KB

SDL_x11shape.c

File metadata and controls

116 lines (93 loc) · 3.87 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
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
*/
Mar 12, 2011
Mar 12, 2011
22
23
24
#include "SDL_config.h"
#if SDL_VIDEO_DRIVER_X11
Aug 10, 2010
Aug 10, 2010
26
#include "SDL_assert.h"
Jul 13, 2010
Jul 13, 2010
27
#include "SDL_x11video.h"
Jun 30, 2010
Jun 30, 2010
28
29
#include "SDL_x11shape.h"
#include "SDL_x11window.h"
Jun 5, 2010
Jun 5, 2010
30
Aug 9, 2010
Aug 9, 2010
31
32
33
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);
Jul 26, 2010
Jul 26, 2010
34
35
}
Aug 10, 2010
Aug 10, 2010
36
SDL_WindowShaper*
Aug 9, 2010
Aug 9, 2010
37
38
X11_CreateShaper(SDL_Window* window) {
SDL_WindowShaper* result = NULL;
Jul 13, 2010
Jul 13, 2010
39
40
#if SDL_VIDEO_DRIVER_X11_XSHAPE
Aug 9, 2010
Aug 9, 2010
41
42
43
44
45
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;
Aug 15, 2010
Aug 15, 2010
46
result->userx = result->usery = 0;
Aug 10, 2010
Aug 10, 2010
47
SDL_ShapeData* data = SDL_malloc(sizeof(SDL_ShapeData));
Aug 9, 2010
Aug 9, 2010
48
49
50
51
52
result->driverdata = data;
data->bitmapsize = 0;
data->bitmap = NULL;
window->shaper = result;
int resized_properly = X11_ResizeWindowShape(window);
Aug 10, 2010
Aug 10, 2010
53
SDL_assert(resized_properly == 0);
Aug 9, 2010
Aug 9, 2010
54
}
Jul 13, 2010
Jul 13, 2010
55
#endif
Jul 13, 2010
Jul 13, 2010
56
Aug 9, 2010
Aug 9, 2010
57
return result;
Jun 30, 2010
Jun 30, 2010
58
59
}
Aug 10, 2010
Aug 10, 2010
60
int
Aug 9, 2010
Aug 9, 2010
61
62
X11_ResizeWindowShape(SDL_Window* window) {
SDL_ShapeData* data = window->shaper->driverdata;
Aug 10, 2010
Aug 10, 2010
63
SDL_assert(data != NULL);
Aug 9, 2010
Aug 9, 2010
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
unsigned int bitmapsize = window->w / 8;
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) {
SDL_SetError("Could not allocate memory for shaped-window bitmap.");
return -1;
}
}
memset(data->bitmap,0,data->bitmapsize);
Aug 15, 2010
Aug 15, 2010
81
82
83
window->shaper->userx = window->x;
window->shaper->usery = window->y;
SDL_SetWindowPosition(window,-1000,-1000);
Aug 9, 2010
Aug 9, 2010
84
85
return 0;
Jun 30, 2010
Jun 30, 2010
86
}
Aug 9, 2010
Aug 9, 2010
87
Aug 10, 2010
Aug 10, 2010
88
int
Aug 10, 2010
Aug 10, 2010
89
X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode) {
Aug 9, 2010
Aug 9, 2010
90
91
if(shaper == NULL || shape == NULL || shaper->driverdata == NULL)
return -1;
Jul 13, 2010
Jul 13, 2010
92
93
#if SDL_VIDEO_DRIVER_X11_XSHAPE
Aug 10, 2010
Aug 10, 2010
94
if(shape->format->Amask == 0 && SDL_SHAPEMODEALPHA(shape_mode->mode))
Aug 9, 2010
Aug 9, 2010
95
96
97
98
99
100
101
102
103
104
105
106
107
return -2;
if(shape->w != shaper->window->w || shape->h != shaper->window->h)
return -3;
SDL_ShapeData *data = shaper->driverdata;
/* Assume that shaper->alphacutoff already has a value, because SDL_SetWindowShape() should have given it one. */
SDL_CalculateShapeBitmap(shaper->mode,shape,data->bitmap,8);
SDL_WindowData *windowdata = (SDL_WindowData*)(shaper->window->driverdata);
Pixmap shapemask = XCreateBitmapFromData(windowdata->videodata->display,windowdata->xwindow,data->bitmap,shaper->window->w,shaper->window->h);
XShapeCombineMask(windowdata->videodata->display,windowdata->xwindow, ShapeBounding, 0, 0,shapemask, ShapeSet);
XSync(windowdata->videodata->display,False);
Jun 30, 2010
Jun 30, 2010
108
Aug 9, 2010
Aug 9, 2010
109
XFreePixmap(windowdata->videodata->display,shapemask);
Jul 13, 2010
Jul 13, 2010
110
111
#endif
Aug 9, 2010
Aug 9, 2010
112
return 0;
Jun 30, 2010
Jun 30, 2010
113
}
Mar 12, 2011
Mar 12, 2011
114
115
#endif /* SDL_VIDEO_DRIVER_X11 */