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

Latest commit

 

History

History
996 lines (891 loc) · 31.5 KB

SDL_x11window.c

File metadata and controls

996 lines (891 loc) · 31.5 KB
 
Jul 27, 2006
Jul 27, 2006
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 Sam Lantinga
Jul 27, 2006
Jul 27, 2006
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
#include "../SDL_sysvideo.h"
May 10, 2010
May 10, 2010
25
#include "../SDL_pixels_c.h"
Jul 27, 2006
Jul 27, 2006
26
#include "../../events/SDL_keyboard_c.h"
Jan 1, 2009
Jan 1, 2009
27
#include "../../events/SDL_mouse_c.h"
Jul 27, 2006
Jul 27, 2006
28
29
#include "SDL_x11video.h"
Jan 1, 2009
Jan 1, 2009
30
#include "SDL_x11mouse.h"
Jun 30, 2010
Jun 30, 2010
31
#include "SDL_x11shape.h"
Jul 27, 2006
Jul 27, 2006
32
May 31, 2009
May 31, 2009
33
34
35
36
#ifdef SDL_VIDEO_DRIVER_PANDORA
#include "SDL_x11opengles.h"
#endif
May 10, 2010
May 10, 2010
37
#include "SDL_timer.h"
Sep 5, 2009
Sep 5, 2009
38
39
#include "SDL_syswm.h"
Feb 19, 2009
Feb 19, 2009
40
41
42
43
#define _NET_WM_STATE_REMOVE 0l
#define _NET_WM_STATE_ADD 1l
#define _NET_WM_STATE_TOGGLE 2l
Jul 14, 2010
Jul 14, 2010
44
static SDL_bool
Jul 14, 2010
Jul 14, 2010
45
X11_IsWindowOldFullscreen(_THIS, SDL_Window * window)
Jul 14, 2010
Jul 14, 2010
46
{
Jul 14, 2010
Jul 14, 2010
47
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Jul 14, 2010
Jul 14, 2010
48
49
50
51
52
53
54
55
56
/* ICCCM2.0-compliant window managers can handle fullscreen windows */
if ((window->flags & SDL_WINDOW_FULLSCREEN) && !videodata->net_wm) {
return SDL_TRUE;
} else {
return SDL_FALSE;
}
}
Jul 14, 2010
Jul 14, 2010
57
58
59
60
61
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
87
static SDL_bool
X11_IsWindowMapped(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
XWindowAttributes attr;
XGetWindowAttributes(videodata->display, data->xwindow, &attr);
if (attr.map_state != IsUnmapped) {
return SDL_TRUE;
} else {
return SDL_FALSE;
}
}
static int
X11_GetWMStateProperty(_THIS, SDL_Window * window, Atom atoms[3])
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
int count = 0;
if (window->flags & SDL_WINDOW_FULLSCREEN) {
atoms[count++] = data->_NET_WM_STATE_FULLSCREEN;
}
if (window->flags & SDL_WINDOW_MAXIMIZED) {
atoms[count++] = data->_NET_WM_STATE_MAXIMIZED_VERT;
atoms[count++] = data->_NET_WM_STATE_MAXIMIZED_HORZ;
}
return count;
}
Dec 30, 2008
Dec 30, 2008
88
89
90
91
92
static void
X11_GetDisplaySize(_THIS, SDL_Window * window, int *w, int *h)
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
SDL_DisplayData *displaydata =
Feb 10, 2011
Feb 10, 2011
93
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Dec 30, 2008
Dec 30, 2008
94
95
XWindowAttributes attr;
Jul 30, 2010
Jul 30, 2010
96
97
98
99
100
101
102
103
104
XGetWindowAttributes(data->display, RootWindow(data->display, displaydata->screen), &attr);
if (window->flags & SDL_WINDOW_FULLSCREEN) {
/* The bounds when this window is visible is the fullscreen mode */
SDL_DisplayMode fullscreen_mode;
if (SDL_GetWindowDisplayMode(window, &fullscreen_mode) == 0) {
attr.width = fullscreen_mode.w;
attr.height = fullscreen_mode.h;
}
}
Dec 30, 2008
Dec 30, 2008
105
106
107
108
109
110
111
112
if (w) {
*w = attr.width;
}
if (h) {
*h = attr.height;
}
}
Jul 27, 2006
Jul 27, 2006
113
114
115
116
117
118
static int
SetupWindowData(_THIS, SDL_Window * window, Window w, BOOL created)
{
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
SDL_WindowData *data;
int numwindows = videodata->numwindows;
Mar 7, 2008
Mar 7, 2008
119
int windowlistlength = videodata->windowlistlength;
Jul 27, 2006
Jul 27, 2006
120
121
122
SDL_WindowData **windowlist = videodata->windowlist;
/* Allocate the window data */
Mar 6, 2008
Mar 6, 2008
123
data = (SDL_WindowData *) SDL_calloc(1, sizeof(*data));
Jul 27, 2006
Jul 27, 2006
124
125
126
127
if (!data) {
SDL_OutOfMemory();
return -1;
}
Jan 21, 2010
Jan 21, 2010
128
129
data->window = window;
data->xwindow = w;
Jul 27, 2006
Jul 27, 2006
130
131
132
133
134
135
136
137
138
139
140
141
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8) {
data->ic =
pXCreateIC(videodata->im, XNClientWindow, w, XNFocusWindow, w,
XNInputStyle, XIMPreeditNothing | XIMStatusNothing,
XNResourceName, videodata->classname, XNResourceClass,
videodata->classname, NULL);
}
#endif
data->created = created;
data->videodata = videodata;
Mar 6, 2008
Mar 6, 2008
142
143
/* Associate the data with the window */
Mar 7, 2008
Mar 7, 2008
144
145
146
if (numwindows < windowlistlength) {
windowlist[numwindows] = data;
videodata->numwindows++;
Mar 6, 2008
Mar 6, 2008
147
} else {
Mar 7, 2008
Mar 7, 2008
148
149
150
151
152
153
154
155
156
157
158
159
160
windowlist =
(SDL_WindowData **) SDL_realloc(windowlist,
(numwindows +
1) * sizeof(*windowlist));
if (!windowlist) {
SDL_OutOfMemory();
SDL_free(data);
return -1;
}
windowlist[numwindows] = data;
videodata->numwindows++;
videodata->windowlistlength++;
videodata->windowlist = windowlist;
Mar 6, 2008
Mar 6, 2008
161
162
}
Jul 27, 2006
Jul 27, 2006
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* Fill in the SDL window with the window data */
{
XWindowAttributes attrib;
XGetWindowAttributes(data->videodata->display, w, &attrib);
window->x = attrib.x;
window->y = attrib.y;
window->w = attrib.width;
window->h = attrib.height;
if (attrib.map_state != IsUnmapped) {
window->flags |= SDL_WINDOW_SHOWN;
} else {
window->flags &= ~SDL_WINDOW_SHOWN;
}
Feb 5, 2011
Feb 5, 2011
177
data->visual = attrib.visual;
Jul 27, 2006
Jul 27, 2006
178
}
Feb 19, 2009
Feb 19, 2009
179
180
{
Jul 14, 2010
Jul 14, 2010
181
182
183
184
Atom _NET_WM_STATE = data->videodata->_NET_WM_STATE;
Atom _NET_WM_STATE_MAXIMIZED_VERT = data->videodata->_NET_WM_STATE_MAXIMIZED_VERT;
Atom _NET_WM_STATE_MAXIMIZED_HORZ = data->videodata->_NET_WM_STATE_MAXIMIZED_HORZ;
Atom _NET_WM_STATE_FULLSCREEN = data->videodata->_NET_WM_STATE_FULLSCREEN;
Feb 19, 2009
Feb 19, 2009
185
186
187
188
189
190
191
Atom actualType;
int actualFormat;
unsigned long i, numItems, bytesAfter;
unsigned char *propertyValue = NULL;
long maxLength = 1024;
if (XGetWindowProperty(data->videodata->display, w, _NET_WM_STATE,
Feb 19, 2009
Feb 19, 2009
192
193
194
195
0l, maxLength, False, XA_ATOM, &actualType,
&actualFormat, &numItems, &bytesAfter,
&propertyValue) == Success) {
Atom *atoms = (Atom *) propertyValue;
Feb 19, 2009
Feb 19, 2009
196
int maximized = 0;
Jul 14, 2010
Jul 14, 2010
197
int fullscreen = 0;
Feb 19, 2009
Feb 19, 2009
198
199
200
201
202
203
for (i = 0; i < numItems; ++i) {
if (atoms[i] == _NET_WM_STATE_MAXIMIZED_VERT) {
maximized |= 1;
} else if (atoms[i] == _NET_WM_STATE_MAXIMIZED_HORZ) {
maximized |= 2;
Jul 14, 2010
Jul 14, 2010
204
205
} else if ( atoms[i] == _NET_WM_STATE_FULLSCREEN) {
fullscreen = 1;
Feb 19, 2009
Feb 19, 2009
206
207
208
209
}
}
if (maximized == 3) {
window->flags |= SDL_WINDOW_MAXIMIZED;
Jul 14, 2010
Jul 14, 2010
210
211
} else if (fullscreen == 1) {
window->flags |= SDL_WINDOW_FULLSCREEN;
Feb 19, 2009
Feb 19, 2009
212
213
214
215
216
}
XFree(propertyValue);
}
}
Jul 27, 2006
Jul 27, 2006
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/* FIXME: How can I tell?
{
DWORD style = GetWindowLong(hwnd, GWL_STYLE);
if (style & WS_VISIBLE) {
if (style & (WS_BORDER | WS_THICKFRAME)) {
window->flags &= ~SDL_WINDOW_BORDERLESS;
} else {
window->flags |= SDL_WINDOW_BORDERLESS;
}
if (style & WS_THICKFRAME) {
window->flags |= SDL_WINDOW_RESIZABLE;
} else {
window->flags &= ~SDL_WINDOW_RESIZABLE;
}
if (style & WS_MINIMIZE) {
window->flags |= SDL_WINDOW_MINIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MINIMIZED;
}
}
if (GetFocus() == hwnd) {
int index = data->videodata->keyboard;
window->flags |= SDL_WINDOW_INPUT_FOCUS;
Jan 21, 2010
Jan 21, 2010
240
SDL_SetKeyboardFocus(index, data->window);
Jul 27, 2006
Jul 27, 2006
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
RECT rect;
GetClientRect(hwnd, &rect);
ClientToScreen(hwnd, (LPPOINT) & rect);
ClientToScreen(hwnd, (LPPOINT) & rect + 1);
ClipCursor(&rect);
}
}
*/
/* All done! */
window->driverdata = data;
return 0;
}
int
X11_CreateWindow(_THIS, SDL_Window * window)
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
SDL_DisplayData *displaydata =
Feb 10, 2011
Feb 10, 2011
262
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Jul 14, 2010
Jul 14, 2010
263
264
Display *display = data->display;
int screen = displaydata->screen;
Jul 27, 2006
Jul 27, 2006
265
266
267
268
269
270
271
272
Visual *visual;
int depth;
XSetWindowAttributes xattr;
int x, y;
Window w;
XSizeHints *sizehints;
XWMHints *wmhints;
XClassHint *classhints;
Jul 14, 2010
Jul 14, 2010
273
SDL_bool oldstyle_fullscreen;
Jul 14, 2010
Jul 14, 2010
274
275
Atom _NET_WM_WINDOW_TYPE;
Atom _NET_WM_WINDOW_TYPE_NORMAL;
Jul 14, 2010
Jul 14, 2010
276
277
int wmstate_count;
Atom wmstate_atoms[3];
Jul 14, 2010
Jul 14, 2010
278
279
/* ICCCM2.0-compliant window managers can handle fullscreen windows */
Jul 14, 2010
Jul 14, 2010
280
oldstyle_fullscreen = X11_IsWindowOldFullscreen(_this, window);
Jul 27, 2006
Jul 27, 2006
281
282
283
284
285
286
287
288
289
#if SDL_VIDEO_DRIVER_X11_XINERAMA
/* FIXME
if ( use_xinerama ) {
x = xinerama_info.x_org;
y = xinerama_info.y_org;
}
*/
#endif
Jan 25, 2011
Jan 25, 2011
290
#if SDL_VIDEO_OPENGL_GLX
Jul 27, 2006
Jul 27, 2006
291
if (window->flags & SDL_WINDOW_OPENGL) {
Jul 28, 2006
Jul 28, 2006
292
293
XVisualInfo *vinfo;
Jul 14, 2010
Jul 14, 2010
294
vinfo = X11_GL_GetVisual(_this, display, screen);
Jul 28, 2006
Jul 28, 2006
295
296
297
298
299
300
301
if (!vinfo) {
return -1;
}
visual = vinfo->visual;
depth = vinfo->depth;
XFree(vinfo);
} else
May 31, 2009
May 31, 2009
302
303
304
305
306
#endif
#ifdef SDL_VIDEO_DRIVER_PANDORA
if (window->flags & SDL_WINDOW_OPENGL) {
XVisualInfo *vinfo;
Jul 14, 2010
Jul 14, 2010
307
vinfo = X11_GLES_GetVisual(_this, display, screen);
May 31, 2009
May 31, 2009
308
309
310
311
312
313
314
if (!vinfo) {
return -1;
}
visual = vinfo->visual;
depth = vinfo->depth;
XFree(vinfo);
} else
Jul 28, 2006
Jul 28, 2006
315
316
#endif
{
Jul 27, 2006
Jul 27, 2006
317
318
319
320
visual = displaydata->visual;
depth = displaydata->depth;
}
Jul 14, 2010
Jul 14, 2010
321
if (oldstyle_fullscreen) {
Jul 27, 2006
Jul 27, 2006
322
323
324
325
326
327
xattr.override_redirect = True;
} else {
xattr.override_redirect = False;
}
xattr.background_pixel = 0;
xattr.border_pixel = 0;
Feb 10, 2011
Feb 10, 2011
328
xattr.colormap = XCreateColormap(display, RootWindow(display, screen), visual, AllocNone);
Jul 27, 2006
Jul 27, 2006
329
Jul 14, 2010
Jul 14, 2010
330
if (oldstyle_fullscreen
Feb 10, 2011
Feb 10, 2011
331
|| SDL_WINDOWPOS_ISCENTERED(window->x)) {
Dec 30, 2008
Dec 30, 2008
332
333
X11_GetDisplaySize(_this, window, &x, NULL);
x = (x - window->w) / 2;
Feb 10, 2011
Feb 10, 2011
334
} else if (SDL_WINDOWPOS_ISUNDEFINED(window->x)) {
Jul 27, 2006
Jul 27, 2006
335
336
337
338
x = 0;
} else {
x = window->x;
}
Jul 14, 2010
Jul 14, 2010
339
if (oldstyle_fullscreen
Feb 10, 2011
Feb 10, 2011
340
|| SDL_WINDOWPOS_ISCENTERED(window->y)) {
Dec 30, 2008
Dec 30, 2008
341
342
X11_GetDisplaySize(_this, window, NULL, &y);
y = (y - window->h) / 2;
Feb 10, 2011
Feb 10, 2011
343
} else if (SDL_WINDOWPOS_ISUNDEFINED(window->y)) {
Jul 27, 2006
Jul 27, 2006
344
345
346
347
348
y = 0;
} else {
y = window->y;
}
Jul 14, 2010
Jul 14, 2010
349
w = XCreateWindow(display, RootWindow(display, screen), x, y,
Jul 27, 2006
Jul 27, 2006
350
351
352
window->w, window->h, 0, depth, InputOutput, visual,
(CWOverrideRedirect | CWBackPixel | CWBorderPixel |
CWColormap), &xattr);
Jul 28, 2006
Jul 28, 2006
353
354
355
356
if (!w) {
SDL_SetError("Couldn't create window");
return -1;
}
May 31, 2009
May 31, 2009
357
358
359
360
361
362
363
364
365
366
367
368
369
#if SDL_VIDEO_DRIVER_PANDORA
/* Create the GLES window surface */
_this->gles_data->egl_surface =
_this->gles_data->eglCreateWindowSurface(_this->gles_data->
egl_display,
_this->gles_data->egl_config,
(NativeWindowType) w, NULL);
if (_this->gles_data->egl_surface == EGL_NO_SURFACE) {
SDL_SetError("Could not create GLES window surface");
return -1;
}
#endif
Jul 27, 2006
Jul 27, 2006
370
371
372
sizehints = XAllocSizeHints();
if (sizehints) {
Aug 2, 2009
Aug 2, 2009
373
if (!(window->flags & SDL_WINDOW_RESIZABLE)
Jul 14, 2010
Jul 14, 2010
374
|| oldstyle_fullscreen) {
Jul 27, 2006
Jul 27, 2006
375
376
sizehints->min_width = sizehints->max_width = window->w;
sizehints->min_height = sizehints->max_height = window->h;
Aug 2, 2009
Aug 2, 2009
377
sizehints->flags = PMaxSize | PMinSize;
Jul 27, 2006
Jul 27, 2006
378
}
Jul 14, 2010
Jul 14, 2010
379
if (!oldstyle_fullscreen
Feb 10, 2011
Feb 10, 2011
380
381
&& !SDL_WINDOWPOS_ISUNDEFINED(window->x)
&& !SDL_WINDOWPOS_ISUNDEFINED(window->y)) {
Jul 27, 2006
Jul 27, 2006
382
383
384
385
sizehints->x = x;
sizehints->y = y;
sizehints->flags |= USPosition;
}
Jul 14, 2010
Jul 14, 2010
386
XSetWMNormalHints(display, w, sizehints);
Jul 27, 2006
Jul 27, 2006
387
388
389
XFree(sizehints);
}
Jul 14, 2010
Jul 14, 2010
390
if ((window->flags & SDL_WINDOW_BORDERLESS) || oldstyle_fullscreen) {
Jul 27, 2006
Jul 27, 2006
391
392
393
394
395
396
397
SDL_bool set;
Atom WM_HINTS;
/* We haven't modified the window manager hints yet */
set = SDL_FALSE;
/* First try to set MWM hints */
Jul 14, 2010
Jul 14, 2010
398
WM_HINTS = XInternAtom(display, "_MOTIF_WM_HINTS", True);
Jul 27, 2006
Jul 27, 2006
399
400
401
402
403
404
405
406
407
408
409
410
if (WM_HINTS != None) {
/* Hints used by Motif compliant window managers */
struct
{
unsigned long flags;
unsigned long functions;
unsigned long decorations;
long input_mode;
unsigned long status;
} MWMHints = {
(1L << 1), 0, 0, 0, 0};
Jul 14, 2010
Jul 14, 2010
411
XChangeProperty(display, w, WM_HINTS, WM_HINTS, 32,
Jul 27, 2006
Jul 27, 2006
412
PropModeReplace, (unsigned char *) &MWMHints,
Jul 14, 2010
Jul 14, 2010
413
sizeof(MWMHints) / 4);
Jul 27, 2006
Jul 27, 2006
414
415
416
set = SDL_TRUE;
}
/* Now try to set KWM hints */
Jul 14, 2010
Jul 14, 2010
417
WM_HINTS = XInternAtom(display, "KWM_WIN_DECORATION", True);
Jul 27, 2006
Jul 27, 2006
418
419
420
if (WM_HINTS != None) {
long KWMHints = 0;
Jul 14, 2010
Jul 14, 2010
421
XChangeProperty(display, w, WM_HINTS, WM_HINTS, 32,
Jul 27, 2006
Jul 27, 2006
422
423
PropModeReplace,
(unsigned char *) &KWMHints,
Jul 14, 2010
Jul 14, 2010
424
sizeof(KWMHints) / 4);
Jul 27, 2006
Jul 27, 2006
425
426
427
set = SDL_TRUE;
}
/* Now try to set GNOME hints */
Jul 14, 2010
Jul 14, 2010
428
WM_HINTS = XInternAtom(display, "_WIN_HINTS", True);
Jul 27, 2006
Jul 27, 2006
429
430
431
if (WM_HINTS != None) {
long GNOMEHints = 0;
Jul 14, 2010
Jul 14, 2010
432
XChangeProperty(display, w, WM_HINTS, WM_HINTS, 32,
Jul 27, 2006
Jul 27, 2006
433
434
PropModeReplace,
(unsigned char *) &GNOMEHints,
Jul 14, 2010
Jul 14, 2010
435
sizeof(GNOMEHints) / 4);
Jul 27, 2006
Jul 27, 2006
436
437
438
439
set = SDL_TRUE;
}
/* Finally set the transient hints if necessary */
if (!set) {
Jul 14, 2010
Jul 14, 2010
440
XSetTransientForHint(display, w, RootWindow(display, screen));
Jul 27, 2006
Jul 27, 2006
441
442
443
444
445
446
447
448
449
}
} else {
SDL_bool set;
Atom WM_HINTS;
/* We haven't modified the window manager hints yet */
set = SDL_FALSE;
/* First try to unset MWM hints */
Jul 14, 2010
Jul 14, 2010
450
WM_HINTS = XInternAtom(display, "_MOTIF_WM_HINTS", True);
Jul 27, 2006
Jul 27, 2006
451
if (WM_HINTS != None) {
Jul 14, 2010
Jul 14, 2010
452
XDeleteProperty(display, w, WM_HINTS);
Jul 27, 2006
Jul 27, 2006
453
454
455
set = SDL_TRUE;
}
/* Now try to unset KWM hints */
Jul 14, 2010
Jul 14, 2010
456
WM_HINTS = XInternAtom(display, "KWM_WIN_DECORATION", True);
Jul 27, 2006
Jul 27, 2006
457
if (WM_HINTS != None) {
Jul 14, 2010
Jul 14, 2010
458
XDeleteProperty(display, w, WM_HINTS);
Jul 27, 2006
Jul 27, 2006
459
460
461
set = SDL_TRUE;
}
/* Now try to unset GNOME hints */
Jul 14, 2010
Jul 14, 2010
462
WM_HINTS = XInternAtom(display, "_WIN_HINTS", True);
Jul 27, 2006
Jul 27, 2006
463
if (WM_HINTS != None) {
Jul 14, 2010
Jul 14, 2010
464
XDeleteProperty(display, w, WM_HINTS);
Jul 27, 2006
Jul 27, 2006
465
466
467
468
set = SDL_TRUE;
}
/* Finally unset the transient hints if necessary */
if (!set) {
Jul 18, 2010
Jul 18, 2010
469
XDeleteProperty(display, w, XA_WM_TRANSIENT_FOR);
Jul 27, 2006
Jul 27, 2006
470
471
472
473
474
475
476
}
}
/* Set the input hints so we get keyboard input */
wmhints = XAllocWMHints();
if (wmhints) {
wmhints->input = True;
Jul 29, 2006
Jul 29, 2006
477
wmhints->flags = InputHint;
Jul 14, 2010
Jul 14, 2010
478
XSetWMHints(display, w, wmhints);
Jul 27, 2006
Jul 27, 2006
479
480
481
482
483
484
485
486
XFree(wmhints);
}
/* Set the class hints so we can get an icon (AfterStep) */
classhints = XAllocClassHint();
if (classhints != NULL) {
classhints->res_name = data->classname;
classhints->res_class = data->classname;
Jul 14, 2010
Jul 14, 2010
487
XSetClassHint(display, w, classhints);
Jul 27, 2006
Jul 27, 2006
488
489
490
XFree(classhints);
}
Jul 14, 2010
Jul 14, 2010
491
492
493
494
495
496
497
498
/* Set the window manager state */
wmstate_count = X11_GetWMStateProperty(_this, window, wmstate_atoms);
if (wmstate_count > 0) {
XChangeProperty(display, w, data->_NET_WM_STATE, XA_ATOM, 32,
PropModeReplace,
(unsigned char *)wmstate_atoms, wmstate_count);
} else {
XDeleteProperty(display, w, data->_NET_WM_STATE);
Jul 14, 2010
Jul 14, 2010
499
500
}
Jul 14, 2010
Jul 14, 2010
501
502
503
504
505
506
507
/* Let the window manager know we're a "normal" window */
_NET_WM_WINDOW_TYPE = XInternAtom(display, "_NET_WM_WINDOW_TYPE", False);
_NET_WM_WINDOW_TYPE_NORMAL = XInternAtom(display, "_NET_WM_WINDOW_TYPE_NORMAL", False);
XChangeProperty(display, w, _NET_WM_WINDOW_TYPE, XA_ATOM, 32,
PropModeReplace,
(unsigned char *)&_NET_WM_WINDOW_TYPE_NORMAL, 1);
Jul 27, 2006
Jul 27, 2006
508
/* Allow the window to be deleted by the window manager */
Jul 14, 2010
Jul 14, 2010
509
XSetWMProtocols(display, w, &data->WM_DELETE_WINDOW, 1);
Jul 27, 2006
Jul 27, 2006
510
511
if (SetupWindowData(_this, window, w, SDL_TRUE) < 0) {
Jul 14, 2010
Jul 14, 2010
512
XDestroyWindow(display, w);
Jul 27, 2006
Jul 27, 2006
513
514
return -1;
}
Mar 7, 2008
Mar 7, 2008
515
516
517
518
519
#ifdef X_HAVE_UTF8_STRING
{
Uint32 fevent = 0;
pXGetICValues(((SDL_WindowData *) window->driverdata)->ic,
XNFilterEvents, &fevent, NULL);
Jul 14, 2010
Jul 14, 2010
520
XSelectInput(display, w,
Mar 7, 2008
Mar 7, 2008
521
522
523
524
525
526
527
(FocusChangeMask | EnterWindowMask | LeaveWindowMask |
ExposureMask | ButtonPressMask | ButtonReleaseMask |
PointerMotionMask | KeyPressMask | KeyReleaseMask |
PropertyChangeMask | StructureNotifyMask |
KeymapStateMask | fevent));
}
#else
Aug 25, 2008
Aug 25, 2008
528
{
Jul 14, 2010
Jul 14, 2010
529
XSelectInput(display, w,
Aug 26, 2008
Aug 26, 2008
530
531
532
533
534
(FocusChangeMask | EnterWindowMask | LeaveWindowMask |
ExposureMask | ButtonPressMask | ButtonReleaseMask |
PointerMotionMask | KeyPressMask | KeyReleaseMask |
PropertyChangeMask | StructureNotifyMask |
KeymapStateMask));
Aug 25, 2008
Aug 25, 2008
535
}
Mar 7, 2008
Mar 7, 2008
536
537
#endif
Jan 19, 2011
Jan 19, 2011
538
539
XFlush(display);
Jul 27, 2006
Jul 27, 2006
540
541
542
543
return 0;
}
int
Mar 7, 2008
Mar 7, 2008
544
X11_CreateWindowFrom(_THIS, SDL_Window * window, const void *data)
Jul 27, 2006
Jul 27, 2006
545
546
547
{
Window w = (Window) data;
Jul 14, 2010
Jul 14, 2010
548
window->title = X11_GetWindowTitle(_this, w);
Jul 27, 2006
Jul 27, 2006
549
550
551
552
553
554
555
if (SetupWindowData(_this, window, w, SDL_FALSE) < 0) {
return -1;
}
return 0;
}
Jul 14, 2010
Jul 14, 2010
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
char *
X11_GetWindowTitle(_THIS, Window xwindow)
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
Display *display = data->display;
int status, real_format;
Atom real_type;
unsigned long items_read, items_left;
unsigned char *propdata;
char *title = NULL;
status = XGetWindowProperty(display, xwindow, data->_NET_WM_NAME,
0L, 8192L, False, data->UTF8_STRING, &real_type, &real_format,
&items_read, &items_left, &propdata);
if (status == Success) {
title = SDL_strdup(SDL_static_cast(char*, propdata));
XFree(propdata);
} else {
status = XGetWindowProperty(display, xwindow, XA_WM_NAME,
0L, 8192L, False, XA_STRING, &real_type, &real_format,
&items_read, &items_left, &propdata);
if (status == Success) {
title = SDL_iconv_string("UTF-8", "", SDL_static_cast(char*, propdata), items_read+1);
} else {
title = SDL_strdup("");
}
}
return title;
}
Jul 27, 2006
Jul 27, 2006
586
587
588
589
590
591
592
593
594
595
596
void
X11_SetWindowTitle(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
XTextProperty titleprop, iconprop;
Status status;
const char *title = window->title;
const char *icon = NULL;
#ifdef X_HAVE_UTF8_STRING
Jul 14, 2010
Jul 14, 2010
597
598
Atom _NET_WM_NAME = data->videodata->_NET_WM_NAME;
Atom _NET_WM_ICON_NAME = data->videodata->_NET_WM_ICON_NAME;
Jul 27, 2006
Jul 27, 2006
599
600
601
#endif
if (title != NULL) {
Jul 4, 2007
Jul 4, 2007
602
603
char *title_locale = SDL_iconv_utf8_locale(title);
if (!title_locale) {
Jul 27, 2006
Jul 27, 2006
604
605
606
SDL_OutOfMemory();
return;
}
Jul 4, 2007
Jul 4, 2007
607
608
status = XStringListToTextProperty(&title_locale, 1, &titleprop);
SDL_free(title_locale);
Jul 27, 2006
Jul 27, 2006
609
if (status) {
Jan 21, 2010
Jan 21, 2010
610
XSetTextProperty(display, data->xwindow, &titleprop, XA_WM_NAME);
Jul 27, 2006
Jul 27, 2006
611
612
613
614
615
616
617
618
XFree(titleprop.value);
}
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8) {
status =
Xutf8TextListToTextProperty(display, (char **) &title, 1,
XUTF8StringStyle, &titleprop);
if (status == Success) {
Jan 21, 2010
Jan 21, 2010
619
XSetTextProperty(display, data->xwindow, &titleprop,
Jul 27, 2006
Jul 27, 2006
620
621
622
623
624
625
626
_NET_WM_NAME);
XFree(titleprop.value);
}
}
#endif
}
if (icon != NULL) {
Jul 4, 2007
Jul 4, 2007
627
628
char *icon_locale = SDL_iconv_utf8_locale(icon);
if (!icon_locale) {
Jul 27, 2006
Jul 27, 2006
629
630
631
SDL_OutOfMemory();
return;
}
Jul 4, 2007
Jul 4, 2007
632
633
status = XStringListToTextProperty(&icon_locale, 1, &iconprop);
SDL_free(icon_locale);
Jul 27, 2006
Jul 27, 2006
634
if (status) {
Jan 21, 2010
Jan 21, 2010
635
XSetTextProperty(display, data->xwindow, &iconprop,
Jul 27, 2006
Jul 27, 2006
636
637
638
639
640
641
642
643
644
XA_WM_ICON_NAME);
XFree(iconprop.value);
}
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8) {
status =
Xutf8TextListToTextProperty(display, (char **) &icon, 1,
XUTF8StringStyle, &iconprop);
if (status == Success) {
Jan 21, 2010
Jan 21, 2010
645
XSetTextProperty(display, data->xwindow, &iconprop,
Jul 27, 2006
Jul 27, 2006
646
647
648
649
650
651
_NET_WM_ICON_NAME);
XFree(iconprop.value);
}
}
#endif
}
Jan 19, 2011
Jan 19, 2011
652
XFlush(display);
Jul 27, 2006
Jul 27, 2006
653
654
}
Jan 2, 2009
Jan 2, 2009
655
656
657
658
659
void
X11_SetWindowIcon(_THIS, SDL_Window * window, SDL_Surface * icon)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jul 14, 2010
Jul 14, 2010
660
Atom _NET_WM_ICON = data->videodata->_NET_WM_ICON;
Jan 2, 2009
Jan 2, 2009
661
662
663
664
665
if (icon) {
SDL_PixelFormat format;
SDL_Surface *surface;
int propsize;
Jul 18, 2010
Jul 18, 2010
666
long *propdata;
Jan 2, 2009
Jan 2, 2009
667
668
/* Convert the icon to ARGB for modern window managers */
Feb 13, 2011
Feb 13, 2011
669
SDL_InitFormat(&format, SDL_PIXELFORMAT_ARGB8888);
Jan 2, 2009
Jan 2, 2009
670
671
672
673
674
675
surface = SDL_ConvertSurface(icon, &format, 0);
if (!surface) {
return;
}
/* Set the _NET_WM_ICON property */
Jan 4, 2009
Jan 4, 2009
676
propsize = 2 + (icon->w * icon->h);
Jul 22, 2010
Jul 22, 2010
677
propdata = SDL_malloc(propsize * sizeof(long));
Jan 2, 2009
Jan 2, 2009
678
if (propdata) {
Jul 18, 2010
Jul 18, 2010
679
680
681
682
int x, y;
Uint32 *src;
long *dst;
Jan 2, 2009
Jan 2, 2009
683
684
propdata[0] = icon->w;
propdata[1] = icon->h;
Jul 18, 2010
Jul 18, 2010
685
686
687
688
689
690
691
dst = &propdata[2];
for (y = 0; y < icon->h; ++y) {
src = (Uint32*)((Uint8*)surface->pixels + y * surface->pitch);
for (x = 0; x < icon->w; ++x) {
*dst++ = *src++;
}
}
Jan 21, 2010
Jan 21, 2010
692
XChangeProperty(display, data->xwindow, _NET_WM_ICON, XA_CARDINAL,
Jan 4, 2009
Jan 4, 2009
693
694
32, PropModeReplace, (unsigned char *) propdata,
propsize);
Jan 2, 2009
Jan 2, 2009
695
696
697
}
SDL_FreeSurface(surface);
} else {
Jan 21, 2010
Jan 21, 2010
698
XDeleteProperty(display, data->xwindow, _NET_WM_ICON);
Jan 2, 2009
Jan 2, 2009
699
}
Jan 19, 2011
Jan 19, 2011
700
XFlush(display);
Jan 2, 2009
Jan 2, 2009
701
702
}
Jul 27, 2006
Jul 27, 2006
703
704
705
706
707
void
X11_SetWindowPosition(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jul 14, 2010
Jul 14, 2010
708
SDL_bool oldstyle_fullscreen;
Dec 17, 2008
Dec 17, 2008
709
int x, y;
Jul 27, 2006
Jul 27, 2006
710
Jul 14, 2010
Jul 14, 2010
711
/* ICCCM2.0-compliant window managers can handle fullscreen windows */
Jul 14, 2010
Jul 14, 2010
712
oldstyle_fullscreen = X11_IsWindowOldFullscreen(_this, window);
Jul 14, 2010
Jul 14, 2010
713
714
if (oldstyle_fullscreen
Feb 10, 2011
Feb 10, 2011
715
|| SDL_WINDOWPOS_ISCENTERED(window->x)) {
Dec 30, 2008
Dec 30, 2008
716
717
X11_GetDisplaySize(_this, window, &x, NULL);
x = (x - window->w) / 2;
Dec 17, 2008
Dec 17, 2008
718
719
720
} else {
x = window->x;
}
Jul 14, 2010
Jul 14, 2010
721
if (oldstyle_fullscreen
Feb 10, 2011
Feb 10, 2011
722
|| SDL_WINDOWPOS_ISCENTERED(window->y)) {
Dec 30, 2008
Dec 30, 2008
723
724
X11_GetDisplaySize(_this, window, NULL, &y);
y = (y - window->h) / 2;
Dec 17, 2008
Dec 17, 2008
725
726
727
} else {
y = window->y;
}
Jan 21, 2010
Jan 21, 2010
728
XMoveWindow(display, data->xwindow, x, y);
Jan 19, 2011
Jan 19, 2011
729
XFlush(display);
Jul 27, 2006
Jul 27, 2006
730
731
732
733
734
735
736
737
}
void
X11_SetWindowSize(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Dec 31, 2010
Dec 31, 2010
738
if (SDL_IsShapedWindow(window))
Jun 30, 2010
Jun 30, 2010
739
X11_ResizeWindowShape(window);
Jan 21, 2010
Jan 21, 2010
740
XResizeWindow(display, data->xwindow, window->w, window->h);
Jan 19, 2011
Jan 19, 2011
741
XFlush(display);
Jul 27, 2006
Jul 27, 2006
742
743
744
745
746
747
748
749
}
void
X11_ShowWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jan 21, 2010
Jan 21, 2010
750
XMapRaised(display, data->xwindow);
Jan 19, 2011
Jan 19, 2011
751
XFlush(display);
Jul 27, 2006
Jul 27, 2006
752
753
754
755
756
757
758
759
}
void
X11_HideWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jan 21, 2010
Jan 21, 2010
760
XUnmapWindow(display, data->xwindow);
Jan 19, 2011
Jan 19, 2011
761
XFlush(display);
Jul 27, 2006
Jul 27, 2006
762
763
764
765
766
767
768
769
}
void
X11_RaiseWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jan 21, 2010
Jan 21, 2010
770
XRaiseWindow(display, data->xwindow);
Jan 19, 2011
Jan 19, 2011
771
XFlush(display);
Jul 27, 2006
Jul 27, 2006
772
773
}
Feb 19, 2009
Feb 19, 2009
774
static void
Feb 16, 2011
Feb 16, 2011
775
SetWindowMaximized(_THIS, SDL_Window * window, SDL_bool maximized)
Feb 19, 2009
Feb 19, 2009
776
777
778
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_DisplayData *displaydata =
Feb 10, 2011
Feb 10, 2011
779
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Feb 19, 2009
Feb 19, 2009
780
Display *display = data->videodata->display;
Jul 14, 2010
Jul 14, 2010
781
782
783
Atom _NET_WM_STATE = data->videodata->_NET_WM_STATE;
Atom _NET_WM_STATE_MAXIMIZED_VERT = data->videodata->_NET_WM_STATE_MAXIMIZED_VERT;
Atom _NET_WM_STATE_MAXIMIZED_HORZ = data->videodata->_NET_WM_STATE_MAXIMIZED_HORZ;
Jul 14, 2010
Jul 14, 2010
784
785
786
787
788
Atom _NET_WM_STATE_FULLSCREEN = data->videodata->_NET_WM_STATE_FULLSCREEN;
if (X11_IsWindowMapped(_this, window)) {
XEvent e;
Jul 14, 2010
Jul 14, 2010
789
SDL_zero(e);
Jul 14, 2010
Jul 14, 2010
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
e.xany.type = ClientMessage;
e.xclient.message_type = _NET_WM_STATE;
e.xclient.format = 32;
e.xclient.window = data->xwindow;
e.xclient.data.l[0] =
maximized ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
e.xclient.data.l[1] = _NET_WM_STATE_MAXIMIZED_VERT;
e.xclient.data.l[2] = _NET_WM_STATE_MAXIMIZED_HORZ;
e.xclient.data.l[3] = 0l;
XSendEvent(display, RootWindow(display, displaydata->screen), 0,
SubstructureNotifyMask | SubstructureRedirectMask, &e);
} else {
int count = 0;
Atom atoms[3];
if (window->flags & SDL_WINDOW_FULLSCREEN) {
atoms[count++] = _NET_WM_STATE_FULLSCREEN;
}
if (maximized) {
atoms[count++] = _NET_WM_STATE_MAXIMIZED_VERT;
atoms[count++] = _NET_WM_STATE_MAXIMIZED_HORZ;
}
if (count > 0) {
XChangeProperty(display, data->xwindow, _NET_WM_STATE, XA_ATOM, 32,
PropModeReplace, (unsigned char *)atoms, count);
} else {
XDeleteProperty(display, data->xwindow, _NET_WM_STATE);
}
}
Jan 19, 2011
Jan 19, 2011
820
XFlush(display);
Feb 19, 2009
Feb 19, 2009
821
822
}
Jul 27, 2006
Jul 27, 2006
823
824
825
void
X11_MaximizeWindow(_THIS, SDL_Window * window)
{
Feb 16, 2011
Feb 16, 2011
826
SetWindowMaximized(_this, window, SDL_TRUE);
Jul 27, 2006
Jul 27, 2006
827
828
829
830
831
}
void
X11_MinimizeWindow(_THIS, SDL_Window * window)
{
Jul 14, 2010
Jul 14, 2010
832
833
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_DisplayData *displaydata =
Feb 10, 2011
Feb 10, 2011
834
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Jul 14, 2010
Jul 14, 2010
835
836
837
Display *display = data->videodata->display;
XIconifyWindow(display, data->xwindow, displaydata->screen);
Jan 19, 2011
Jan 19, 2011
838
XFlush(display);
Jul 27, 2006
Jul 27, 2006
839
840
841
842
843
}
void
X11_RestoreWindow(_THIS, SDL_Window * window)
{
Feb 16, 2011
Feb 16, 2011
844
SetWindowMaximized(_this, window, SDL_FALSE);
Jul 27, 2006
Jul 27, 2006
845
846
847
X11_ShowWindow(_this, window);
}
Feb 16, 2011
Feb 16, 2011
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
static void
SetWindowFullscreen(_THIS, SDL_Window * window, SDL_bool fullscreen)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_DisplayData *displaydata =
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Display *display = data->videodata->display;
Atom _NET_WM_STATE = data->videodata->_NET_WM_STATE;
Atom _NET_WM_STATE_MAXIMIZED_VERT = data->videodata->_NET_WM_STATE_MAXIMIZED_VERT;
Atom _NET_WM_STATE_MAXIMIZED_HORZ = data->videodata->_NET_WM_STATE_MAXIMIZED_HORZ;
Atom _NET_WM_STATE_FULLSCREEN = data->videodata->_NET_WM_STATE_FULLSCREEN;
if (X11_IsWindowMapped(_this, window)) {
XEvent e;
SDL_zero(e);
e.xany.type = ClientMessage;
e.xclient.message_type = _NET_WM_STATE;
e.xclient.format = 32;
e.xclient.window = data->xwindow;
e.xclient.data.l[0] =
fullscreen ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
e.xclient.data.l[1] = _NET_WM_STATE_FULLSCREEN;
e.xclient.data.l[3] = 0l;
XSendEvent(display, RootWindow(display, displaydata->screen), 0,
SubstructureNotifyMask | SubstructureRedirectMask, &e);
} else {
int count = 0;
Atom atoms[3];
if (fullscreen) {
atoms[count++] = _NET_WM_STATE_FULLSCREEN;
}
if (window->flags & SDL_WINDOW_MAXIMIZED) {
atoms[count++] = _NET_WM_STATE_MAXIMIZED_VERT;
atoms[count++] = _NET_WM_STATE_MAXIMIZED_HORZ;
}
if (count > 0) {
XChangeProperty(display, data->xwindow, _NET_WM_STATE, XA_ATOM, 32,
PropModeReplace, (unsigned char *)atoms, count);
} else {
XDeleteProperty(display, data->xwindow, _NET_WM_STATE);
}
}
XFlush(display);
}
void
X11_SetWindowFullscreen(_THIS, SDL_Window * window)
{
if (FULLSCREEN_VISIBLE(window)) {
SetWindowFullscreen(_this, window, SDL_TRUE);
} else {
SetWindowFullscreen(_this, window, SDL_FALSE);
}
}
Jul 27, 2006
Jul 27, 2006
906
907
908
void
X11_SetWindowGrab(_THIS, SDL_Window * window)
{
Dec 17, 2008
Dec 17, 2008
909
910
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jul 14, 2010
Jul 14, 2010
911
912
913
SDL_bool oldstyle_fullscreen;
/* ICCCM2.0-compliant window managers can handle fullscreen windows */
Jul 14, 2010
Jul 14, 2010
914
oldstyle_fullscreen = X11_IsWindowOldFullscreen(_this, window);
Dec 17, 2008
Dec 17, 2008
915
Jul 14, 2010
Jul 14, 2010
916
if (((window->flags & SDL_WINDOW_INPUT_GRABBED) || oldstyle_fullscreen)
Dec 17, 2008
Dec 17, 2008
917
&& (window->flags & SDL_WINDOW_INPUT_FOCUS)) {
Dec 17, 2008
Dec 17, 2008
918
/* Try to grab the mouse */
Dec 17, 2008
Dec 17, 2008
919
920
for (;;) {
int result =
Jan 21, 2010
Jan 21, 2010
921
922
XGrabPointer(display, data->xwindow, True, 0, GrabModeAsync,
GrabModeAsync, data->xwindow, None, CurrentTime);
Dec 17, 2008
Dec 17, 2008
923
if (result == GrabSuccess) {
Dec 17, 2008
Dec 17, 2008
924
925
926
927
928
929
break;
}
SDL_Delay(100);
}
/* Raise the window if we grab the mouse */
Jan 21, 2010
Jan 21, 2010
930
XRaiseWindow(display, data->xwindow);
Dec 17, 2008
Dec 17, 2008
931
932
/* Now grab the keyboard */
Jan 21, 2010
Jan 21, 2010
933
XGrabKeyboard(display, data->xwindow, True, GrabModeAsync,
Dec 17, 2008
Dec 17, 2008
934
GrabModeAsync, CurrentTime);
Dec 17, 2008
Dec 17, 2008
935
936
937
938
} else {
XUngrabPointer(display, CurrentTime);
XUngrabKeyboard(display, CurrentTime);
}
Jul 27, 2006
Jul 27, 2006
939
940
941
942
943
944
}
void
X11_DestroyWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Mar 6, 2008
Mar 6, 2008
945
window->driverdata = NULL;
Jul 27, 2006
Jul 27, 2006
946
947
if (data) {
Mar 6, 2008
Mar 6, 2008
948
949
950
951
952
953
954
SDL_VideoData *videodata = (SDL_VideoData *) data->videodata;
Display *display = videodata->display;
int numwindows = videodata->numwindows;
SDL_WindowData **windowlist = videodata->windowlist;
int i;
if (windowlist) {
Mar 7, 2008
Mar 7, 2008
955
for (i = 0; i < numwindows; ++i) {
Jan 21, 2010
Jan 21, 2010
956
if (windowlist[i] && (windowlist[i]->window == window)) {
Mar 7, 2008
Mar 7, 2008
957
958
959
960
961
windowlist[i] = windowlist[numwindows - 1];
windowlist[numwindows - 1] = NULL;
videodata->numwindows--;
break;
}
Mar 6, 2008
Mar 6, 2008
962
963
}
}
Jul 27, 2006
Jul 27, 2006
964
965
966
967
968
969
#ifdef X_HAVE_UTF8_STRING
if (data->ic) {
XDestroyIC(data->ic);
}
#endif
if (data->created) {
Jan 21, 2010
Jan 21, 2010
970
XDestroyWindow(display, data->xwindow);
Jan 19, 2011
Jan 19, 2011
971
XFlush(display);
Jul 27, 2006
Jul 27, 2006
972
973
974
975
976
977
978
979
}
SDL_free(data);
}
}
SDL_bool
X11_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
Jul 12, 2010
Jul 12, 2010
980
981
982
983
984
985
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
if (info->version.major == SDL_MAJOR_VERSION &&
info->version.minor == SDL_MINOR_VERSION) {
info->subsystem = SDL_SYSWM_X11;
Jan 21, 2011
Jan 21, 2011
986
987
info->info.x11.display = display;
info->info.x11.window = data->xwindow;
Jul 27, 2006
Jul 27, 2006
988
989
990
991
992
993
994
995
996
return SDL_TRUE;
} else {
SDL_SetError("Application not compiled with SDL %d.%d\n",
SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return SDL_FALSE;
}
}
/* vi: set ts=4 sw=4 expandtab: */