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

Latest commit

 

History

History
108 lines (88 loc) · 3.82 KB

SDL_x11shape.c

File metadata and controls

108 lines (88 loc) · 3.82 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 10, 2010
Aug 10, 2010
23
#include "SDL_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
Aug 9, 2010
Aug 9, 2010
28
29
30
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
31
32
}
Aug 10, 2010
Aug 10, 2010
33
SDL_WindowShaper*
Aug 9, 2010
Aug 9, 2010
34
35
X11_CreateShaper(SDL_Window* window) {
SDL_WindowShaper* result = NULL;
Jul 13, 2010
Jul 13, 2010
36
37
#if SDL_VIDEO_DRIVER_X11_XSHAPE
Aug 9, 2010
Aug 9, 2010
38
39
40
41
42
43
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->usershownflag = 0;
Aug 10, 2010
Aug 10, 2010
44
SDL_ShapeData* data = SDL_malloc(sizeof(SDL_ShapeData));
Aug 9, 2010
Aug 9, 2010
45
46
47
48
49
result->driverdata = data;
data->bitmapsize = 0;
data->bitmap = NULL;
window->shaper = result;
int resized_properly = X11_ResizeWindowShape(window);
Aug 10, 2010
Aug 10, 2010
50
SDL_assert(resized_properly == 0);
Aug 9, 2010
Aug 9, 2010
51
}
Jul 13, 2010
Jul 13, 2010
52
#endif
Jul 13, 2010
Jul 13, 2010
53
Aug 9, 2010
Aug 9, 2010
54
return result;
Jun 30, 2010
Jun 30, 2010
55
56
}
Aug 10, 2010
Aug 10, 2010
57
int
Aug 9, 2010
Aug 9, 2010
58
59
X11_ResizeWindowShape(SDL_Window* window) {
SDL_ShapeData* data = window->shaper->driverdata;
Aug 10, 2010
Aug 10, 2010
60
SDL_assert(data != NULL);
Aug 9, 2010
Aug 9, 2010
61
62
63
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);
window->shaper->usershownflag |= window->flags & SDL_WINDOW_SHOWN;
return 0;
Jun 30, 2010
Jun 30, 2010
81
}
Aug 9, 2010
Aug 9, 2010
82
Aug 10, 2010
Aug 10, 2010
83
int
Aug 9, 2010
Aug 9, 2010
84
85
86
X11_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode) {
if(shaper == NULL || shape == NULL || shaper->driverdata == NULL)
return -1;
Jul 13, 2010
Jul 13, 2010
87
88
#if SDL_VIDEO_DRIVER_X11_XSHAPE
Aug 9, 2010
Aug 9, 2010
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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;
/* 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
103
Aug 9, 2010
Aug 9, 2010
104
XFreePixmap(windowdata->videodata->display,shapemask);
Jul 13, 2010
Jul 13, 2010
105
106
#endif
Aug 9, 2010
Aug 9, 2010
107
return 0;
Jun 30, 2010
Jun 30, 2010
108
}