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.57 KB

SDL_x11shape.c

File metadata and controls

105 lines (85 loc) · 3.57 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
*/
Jul 7, 2010
Jul 7, 2010
23
#include <assert.h>
Jul 13, 2010
Jul 13, 2010
24
#include "SDL_x11video.h"
Jun 30, 2010
Jun 30, 2010
25
26
#include "SDL_x11shape.h"
#include "SDL_x11window.h"
Jun 5, 2010
Jun 5, 2010
27
Jul 26, 2010
Jul 26, 2010
28
29
30
31
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);
}
Jun 30, 2010
Jun 30, 2010
32
SDL_WindowShaper* X11_CreateShaper(SDL_Window* window) {
Jul 13, 2010
Jul 13, 2010
33
SDL_WindowShaper* result = NULL;
Jul 13, 2010
Jul 13, 2010
34
35
#if SDL_VIDEO_DRIVER_X11_XSHAPE
Jul 13, 2010
Jul 13, 2010
36
37
38
if (SDL_X11_HAVE_XSHAPE) { /* Make sure X server supports it. */
result = malloc(sizeof(SDL_WindowShaper));
result->window = window;
Jul 23, 2010
Jul 23, 2010
39
40
result->mode.mode = ShapeModeDefault;
result->mode.parameters.binarizationCutoff = 1;
Jul 13, 2010
Jul 13, 2010
41
result->usershownflag = 0;
Jul 14, 2010
Jul 14, 2010
42
43
44
45
SDL_ShapeData* data = malloc(sizeof(SDL_ShapeData));
result->driverdata = data;
data->bitmapsize = 0;
data->bitmap = NULL;
Jul 13, 2010
Jul 13, 2010
46
47
48
49
window->shaper = result;
int resized_properly = X11_ResizeWindowShape(window);
assert(resized_properly == 0);
}
Jul 13, 2010
Jul 13, 2010
50
#endif
Jul 13, 2010
Jul 13, 2010
51
Jun 30, 2010
Jun 30, 2010
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
return result;
}
int X11_ResizeWindowShape(SDL_Window* window) {
SDL_ShapeData* data = window->shaper->driverdata;
assert(data != NULL);
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;
}
}
Jul 23, 2010
Jul 23, 2010
73
74
else
memset(data->bitmap,0,data->bitmapsize);
Jun 30, 2010
Jun 30, 2010
75
Jul 19, 2010
Jul 19, 2010
76
window->shaper->usershownflag |= window->flags & SDL_WINDOW_SHOWN;
Jun 30, 2010
Jun 30, 2010
77
78
79
80
81
return 0;
}
int X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode) {
Jul 9, 2010
Jul 9, 2010
82
83
if(shaper == NULL || shape == NULL || shaper->driverdata == NULL)
return -1;
Jul 13, 2010
Jul 13, 2010
84
85
#if SDL_VIDEO_DRIVER_X11_XSHAPE
Jun 30, 2010
Jun 30, 2010
86
87
88
89
90
91
if(!SDL_ISPIXELFORMAT_ALPHA(SDL_MasksToPixelFormatEnum(shape->format->BitsPerPixel,shape->format->Rmask,shape->format->Gmask,shape->format->Bmask,shape->format->Amask)))
return -2;
if(shape->w != shaper->window->w || shape->h != shaper->window->h)
return -3;
SDL_ShapeData *data = shaper->driverdata;
Jul 7, 2010
Jul 7, 2010
92
/* Assume that shaper->alphacutoff already has a value, because SDL_SetWindowShape() should have given it one. */
Jul 23, 2010
Jul 23, 2010
93
SDL_CalculateShapeBitmap(shaper->mode,shape,data->bitmap,8,1);
Jun 30, 2010
Jun 30, 2010
94
95
96
97
98
99
100
101
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);
XFreePixmap(windowdata->videodata->display,shapemask);
Jul 13, 2010
Jul 13, 2010
102
103
#endif
Jun 30, 2010
Jun 30, 2010
104
105
return 0;
}