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

Latest commit

 

History

History
1327 lines (1144 loc) · 42.8 KB

SDL_x11window.c

File metadata and controls

1327 lines (1144 loc) · 42.8 KB
 
Oct 12, 2011
Oct 12, 2011
1
2
/*
Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
Oct 12, 2011
Oct 12, 2011
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
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_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_keyboard_c.h"
#include "../../events/SDL_mouse_c.h"
#include "SDL_x11video.h"
#include "SDL_x11mouse.h"
#include "SDL_x11shape.h"
May 31, 2012
May 31, 2012
33
#include "SDL_x11xinput2.h"
Oct 12, 2011
Oct 12, 2011
34
Jan 8, 2012
Jan 8, 2012
35
#if SDL_VIDEO_OPENGL_ES || SDL_VIDEO_OPENGL_ES2
Oct 12, 2011
Oct 12, 2011
36
37
38
39
40
#include "SDL_x11opengles.h"
#endif
#include "SDL_timer.h"
#include "SDL_syswm.h"
Sep 27, 2012
Sep 27, 2012
41
#include "SDL_assert.h"
Oct 12, 2011
Oct 12, 2011
42
43
44
45
46
#define _NET_WM_STATE_REMOVE 0l
#define _NET_WM_STATE_ADD 1l
#define _NET_WM_STATE_TOGGLE 2l
Sep 27, 2012
Sep 27, 2012
47
static Bool isMapNotify(Display *dpy, XEvent *ev, XPointer win)
Oct 12, 2011
Oct 12, 2011
48
{
Sep 27, 2012
Sep 27, 2012
49
50
51
52
53
54
55
56
return ev->type == MapNotify && ev->xmap.window == *((Window*)win);
}
static Bool isUnmapNotify(Display *dpy, XEvent *ev, XPointer win)
{
return ev->type == UnmapNotify && ev->xunmap.window == *((Window*)win);
}
static Bool isConfigureNotify(Display *dpy, XEvent *ev, XPointer win)
{
Sep 28, 2012
Sep 28, 2012
57
58
return ev->type == ConfigureNotify && ev->xconfigure.window == *((Window*)win);
}
Oct 12, 2011
Oct 12, 2011
59
Sep 27, 2012
Sep 27, 2012
60
61
62
63
64
static SDL_bool
X11_IsWindowLegacyFullscreen(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
return (data->fswindow != 0);
Oct 12, 2011
Oct 12, 2011
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
}
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;
}
}
Oct 3, 2012
Oct 3, 2012
82
#if 0
Sep 28, 2012
Sep 28, 2012
83
84
static SDL_bool
X11_IsActionAllowed(SDL_Window *window, Atom action)
Oct 12, 2011
Oct 12, 2011
85
{
Sep 28, 2012
Sep 28, 2012
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Atom _NET_WM_ALLOWED_ACTIONS = data->videodata->_NET_WM_ALLOWED_ACTIONS;
Atom type;
Display *display = data->videodata->display;
int form;
unsigned long remain;
unsigned long len, i;
Atom *list;
SDL_bool ret = SDL_FALSE;
if (XGetWindowProperty(display, data->xwindow, _NET_WM_ALLOWED_ACTIONS, 0, 1024, False, XA_ATOM, &type, &form, &len, &remain, (unsigned char **)&list) == Success)
{
for (i=0; i<len; ++i)
{
if (list[i] == action) {
ret = SDL_TRUE;
break;
}
}
XFree(list);
}
return ret;
}
Oct 3, 2012
Oct 3, 2012
109
#endif /* 0 */
Sep 28, 2012
Sep 28, 2012
110
Sep 28, 2012
Sep 28, 2012
111
112
void
X11_SetNetWMState(_THIS, Window xwindow, Uint32 flags)
Sep 28, 2012
Sep 28, 2012
113
114
{
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Sep 28, 2012
Sep 28, 2012
115
116
Display *display = videodata->display;
Atom _NET_WM_STATE = videodata->_NET_WM_STATE;
Sep 28, 2012
Sep 28, 2012
117
/*Atom _NET_WM_STATE_HIDDEN = videodata->_NET_WM_STATE_HIDDEN;*/
Sep 28, 2012
Sep 28, 2012
118
119
120
121
Atom _NET_WM_STATE_FOCUSED = videodata->_NET_WM_STATE_FOCUSED;
Atom _NET_WM_STATE_MAXIMIZED_VERT = videodata->_NET_WM_STATE_MAXIMIZED_VERT;
Atom _NET_WM_STATE_MAXIMIZED_HORZ = videodata->_NET_WM_STATE_MAXIMIZED_HORZ;
Atom _NET_WM_STATE_FULLSCREEN = videodata->_NET_WM_STATE_FULLSCREEN;
Sep 28, 2012
Sep 28, 2012
122
Atom atoms[5];
Oct 12, 2011
Oct 12, 2011
123
124
int count = 0;
Sep 28, 2012
Sep 28, 2012
125
126
127
128
/* The window manager sets this property, we shouldn't set it.
If we did, this would indicate to the window manager that we don't
actually want to be mapped during XMapRaised(), which would be bad.
*
Sep 28, 2012
Sep 28, 2012
129
130
if (flags & SDL_WINDOW_HIDDEN) {
atoms[count++] = _NET_WM_STATE_HIDDEN;
Oct 12, 2011
Oct 12, 2011
131
}
Sep 28, 2012
Sep 28, 2012
132
*/
Sep 28, 2012
Sep 28, 2012
133
134
135
136
137
138
139
140
141
if (flags & SDL_WINDOW_INPUT_FOCUS) {
atoms[count++] = _NET_WM_STATE_FOCUSED;
}
if (flags & SDL_WINDOW_MAXIMIZED) {
atoms[count++] = _NET_WM_STATE_MAXIMIZED_VERT;
atoms[count++] = _NET_WM_STATE_MAXIMIZED_HORZ;
}
if (flags & SDL_WINDOW_FULLSCREEN) {
atoms[count++] = _NET_WM_STATE_FULLSCREEN;
Oct 12, 2011
Oct 12, 2011
142
}
Sep 28, 2012
Sep 28, 2012
143
144
145
146
147
148
if (count > 0) {
XChangeProperty(display, xwindow, _NET_WM_STATE, XA_ATOM, 32,
PropModeReplace, (unsigned char *)atoms, count);
} else {
XDeleteProperty(display, xwindow, _NET_WM_STATE);
}
Oct 12, 2011
Oct 12, 2011
149
150
}
Sep 28, 2012
Sep 28, 2012
151
Uint32
Sep 28, 2012
Sep 28, 2012
152
X11_GetNetWMState(_THIS, Window xwindow)
Sep 28, 2012
Sep 28, 2012
153
154
{
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Sep 28, 2012
Sep 28, 2012
155
Display *display = videodata->display;
Sep 28, 2012
Sep 28, 2012
156
157
158
159
160
161
162
163
164
165
166
167
168
Atom _NET_WM_STATE = videodata->_NET_WM_STATE;
Atom _NET_WM_STATE_HIDDEN = videodata->_NET_WM_STATE_HIDDEN;
Atom _NET_WM_STATE_FOCUSED = videodata->_NET_WM_STATE_FOCUSED;
Atom _NET_WM_STATE_MAXIMIZED_VERT = videodata->_NET_WM_STATE_MAXIMIZED_VERT;
Atom _NET_WM_STATE_MAXIMIZED_HORZ = videodata->_NET_WM_STATE_MAXIMIZED_HORZ;
Atom _NET_WM_STATE_FULLSCREEN = videodata->_NET_WM_STATE_FULLSCREEN;
Atom actualType;
int actualFormat;
unsigned long i, numItems, bytesAfter;
unsigned char *propertyValue = NULL;
long maxLength = 1024;
Uint32 flags = 0;
Sep 28, 2012
Sep 28, 2012
169
if (XGetWindowProperty(display, xwindow, _NET_WM_STATE,
Sep 28, 2012
Sep 28, 2012
170
171
172
173
174
175
176
177
178
0l, maxLength, False, XA_ATOM, &actualType,
&actualFormat, &numItems, &bytesAfter,
&propertyValue) == Success) {
Atom *atoms = (Atom *) propertyValue;
int maximized = 0;
int fullscreen = 0;
for (i = 0; i < numItems; ++i) {
if (atoms[i] == _NET_WM_STATE_HIDDEN) {
Sep 28, 2012
Sep 28, 2012
179
flags |= SDL_WINDOW_HIDDEN;
Sep 28, 2012
Sep 28, 2012
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
} else if (atoms[i] == _NET_WM_STATE_FOCUSED) {
flags |= SDL_WINDOW_INPUT_FOCUS;
} else if (atoms[i] == _NET_WM_STATE_MAXIMIZED_VERT) {
maximized |= 1;
} else if (atoms[i] == _NET_WM_STATE_MAXIMIZED_HORZ) {
maximized |= 2;
} else if ( atoms[i] == _NET_WM_STATE_FULLSCREEN) {
fullscreen = 1;
}
}
if (maximized == 3) {
flags |= SDL_WINDOW_MAXIMIZED;
} else if (fullscreen == 1) {
flags |= SDL_WINDOW_FULLSCREEN;
}
XFree(propertyValue);
}
Sep 28, 2012
Sep 28, 2012
198
199
/* FIXME, check the size hints for resizable */
/*flags |= SDL_WINDOW_RESIZABLE;*/
Sep 28, 2012
Sep 28, 2012
200
201
202
203
return flags;
}
Oct 12, 2011
Oct 12, 2011
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
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;
int windowlistlength = videodata->windowlistlength;
SDL_WindowData **windowlist = videodata->windowlist;
/* Allocate the window data */
data = (SDL_WindowData *) SDL_calloc(1, sizeof(*data));
if (!data) {
SDL_OutOfMemory();
return -1;
}
data->window = window;
data->xwindow = w;
#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;
/* Associate the data with the window */
if (numwindows < windowlistlength) {
windowlist[numwindows] = data;
videodata->numwindows++;
} else {
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;
}
/* 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;
}
data->visual = attrib.visual;
data->colormap = attrib.colormap;
}
Sep 28, 2012
Sep 28, 2012
272
window->flags |= X11_GetNetWMState(_this, w);
Oct 12, 2011
Oct 12, 2011
273
Oct 22, 2011
Oct 22, 2011
274
275
276
277
278
279
280
{
Window FocalWindow;
int RevertTo=0;
XGetInputFocus(data->videodata->display, &FocalWindow, &RevertTo);
if (FocalWindow==w)
{
window->flags |= SDL_WINDOW_INPUT_FOCUS;
Sep 28, 2012
Sep 28, 2012
281
282
283
}
if (window->flags & SDL_WINDOW_INPUT_FOCUS) {
Oct 22, 2011
Oct 22, 2011
284
285
286
287
288
289
290
291
SDL_SetKeyboardFocus(data->window);
}
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
/* Tell x11 to clip mouse */
}
}
Oct 12, 2011
Oct 12, 2011
292
/* All done! */
Sep 28, 2012
Sep 28, 2012
293
window->driverdata = data;
Oct 12, 2011
Oct 12, 2011
294
295
296
return 0;
}
Sep 13, 2012
Sep 13, 2012
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
static void
SetWindowBordered(Display *display, int screen, Window window, SDL_bool border)
{
/*
* this code used to check for KWM_WIN_DECORATION, but KDE hasn't
* supported it for years and years. It now respects _MOTIF_WM_HINTS.
* Gnome is similar: just use the Motif atom.
*/
Atom WM_HINTS = XInternAtom(display, "_MOTIF_WM_HINTS", True);
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, border ? 1 : 0, 0, 0
};
XChangeProperty(display, window, WM_HINTS, WM_HINTS, 32,
PropModeReplace, (unsigned char *) &MWMHints,
sizeof(MWMHints) / 4);
} else { /* set the transient hints instead, if necessary */
XSetTransientForHint(display, window, RootWindow(display, screen));
}
}
Oct 12, 2011
Oct 12, 2011
328
329
330
331
332
333
334
335
336
337
338
339
int
X11_CreateWindow(_THIS, SDL_Window * window)
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
SDL_DisplayData *displaydata =
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Display *display = data->display;
int screen = displaydata->screen;
Visual *visual;
int depth;
XSetWindowAttributes xattr;
Window w;
Sep 26, 2012
Sep 26, 2012
340
341
342
XSizeHints *sizehints;
XWMHints *wmhints;
XClassHint *classhints;
Oct 12, 2011
Oct 12, 2011
343
344
Atom _NET_WM_WINDOW_TYPE;
Atom _NET_WM_WINDOW_TYPE_NORMAL;
Jun 27, 2011
Jun 27, 2011
345
Atom _NET_WM_PID;
Nov 1, 2011
Nov 1, 2011
346
Uint32 fevent = 0;
Oct 12, 2011
Oct 12, 2011
347
Jul 18, 2012
Jul 18, 2012
348
#if SDL_VIDEO_OPENGL_GLX || SDL_VIDEO_OPENGL_ES || SDL_VIDEO_OPENGL_ES2
Oct 12, 2011
Oct 12, 2011
349
350
351
if (window->flags & SDL_WINDOW_OPENGL) {
XVisualInfo *vinfo;
Jul 18, 2012
Jul 18, 2012
352
353
#if SDL_VIDEO_OPENGL_ES || SDL_VIDEO_OPENGL_ES2
if (_this->gl_config.use_egl == 1) {
Jul 18, 2012
Jul 18, 2012
354
355
356
357
vinfo = X11_GLES_GetVisual(_this, display, screen);
} else
#endif
{
Jul 18, 2012
Jul 18, 2012
358
#if SDL_VIDEO_OPENGL_GLX
Jul 18, 2012
Jul 18, 2012
359
vinfo = X11_GL_GetVisual(_this, display, screen);
Jul 18, 2012
Jul 18, 2012
360
#endif
Jul 18, 2012
Jul 18, 2012
361
}
Oct 12, 2011
Oct 12, 2011
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
if (!vinfo) {
return -1;
}
visual = vinfo->visual;
depth = vinfo->depth;
XFree(vinfo);
} else
#endif
{
visual = displaydata->visual;
depth = displaydata->depth;
}
xattr.override_redirect = False;
xattr.background_pixel = 0;
xattr.border_pixel = 0;
if (visual->class == DirectColor) {
XColor *colorcells;
int i;
int ncolors;
int rmax, gmax, bmax;
int rmask, gmask, bmask;
int rshift, gshift, bshift;
xattr.colormap =
XCreateColormap(display, RootWindow(display, screen),
visual, AllocAll);
/* If we can't create a colormap, then we must die */
if (!xattr.colormap) {
SDL_SetError("Could not create writable colormap");
return -1;
}
/* OK, we got a colormap, now fill it in as best as we can */
colorcells = SDL_malloc(visual->map_entries * sizeof(XColor));
if (!colorcells) {
SDL_OutOfMemory();
return -1;
}
ncolors = visual->map_entries;
rmax = 0xffff;
gmax = 0xffff;
bmax = 0xffff;
rshift = 0;
rmask = visual->red_mask;
while (0 == (rmask & 1)) {
rshift++;
rmask >>= 1;
}
gshift = 0;
gmask = visual->green_mask;
while (0 == (gmask & 1)) {
gshift++;
gmask >>= 1;
}
bshift = 0;
bmask = visual->blue_mask;
while (0 == (bmask & 1)) {
bshift++;
bmask >>= 1;
}
/* build the color table pixel values */
for (i = 0; i < ncolors; i++) {
Uint32 red = (rmax * i) / (ncolors - 1);
Uint32 green = (gmax * i) / (ncolors - 1);
Uint32 blue = (bmax * i) / (ncolors - 1);
Uint32 rbits = (rmask * i) / (ncolors - 1);
Uint32 gbits = (gmask * i) / (ncolors - 1);
Uint32 bbits = (bmask * i) / (ncolors - 1);
Uint32 pix =
(rbits << rshift) | (gbits << gshift) | (bbits << bshift);
colorcells[i].pixel = pix;
colorcells[i].red = red;
colorcells[i].green = green;
colorcells[i].blue = blue;
colorcells[i].flags = DoRed | DoGreen | DoBlue;
}
XStoreColors(display, xattr.colormap, colorcells, ncolors);
SDL_free(colorcells);
} else {
xattr.colormap =
XCreateColormap(display, RootWindow(display, screen),
visual, AllocNone);
}
w = XCreateWindow(display, RootWindow(display, screen),
window->x, window->y, window->w, window->h,
0, depth, InputOutput, visual,
(CWOverrideRedirect | CWBackPixel | CWBorderPixel |
CWColormap), &xattr);
if (!w) {
SDL_SetError("Couldn't create window");
return -1;
}
Jan 8, 2012
Jan 8, 2012
469
#if SDL_VIDEO_OPENGL_ES || SDL_VIDEO_OPENGL_ES2
Jul 19, 2012
Jul 19, 2012
470
471
472
473
474
475
if ((window->flags & SDL_WINDOW_OPENGL) && (_this->gl_config.use_egl == 1)) {
if (!_this->gles_data) {
XDestroyWindow(display, w);
return -1;
}
Jan 8, 2012
Jan 8, 2012
476
477
478
/* Create the GLES window surface */
_this->gles_data->egl_surface =
_this->gles_data->eglCreateWindowSurface(_this->gles_data->
Oct 12, 2011
Oct 12, 2011
479
480
481
482
egl_display,
_this->gles_data->egl_config,
(NativeWindowType) w, NULL);
Jan 8, 2012
Jan 8, 2012
483
484
if (_this->gles_data->egl_surface == EGL_NO_SURFACE) {
SDL_SetError("Could not create GLES window surface");
Jul 19, 2012
Jul 19, 2012
485
XDestroyWindow(display, w);
Jan 8, 2012
Jan 8, 2012
486
487
return -1;
}
Oct 12, 2011
Oct 12, 2011
488
489
490
}
#endif
Sep 13, 2012
Sep 13, 2012
491
492
SetWindowBordered(display, screen, w,
(window->flags & SDL_WINDOW_BORDERLESS) == 0);
Oct 12, 2011
Oct 12, 2011
493
Sep 26, 2012
Sep 26, 2012
494
sizehints = XAllocSizeHints();
Jun 27, 2011
Jun 27, 2011
495
/* Setup the normal size hints */
Sep 26, 2012
Sep 26, 2012
496
sizehints->flags = 0;
Jun 27, 2011
Jun 27, 2011
497
if (!(window->flags & SDL_WINDOW_RESIZABLE)) {
Sep 26, 2012
Sep 26, 2012
498
499
500
sizehints->min_width = sizehints->max_width = window->w;
sizehints->min_height = sizehints->max_height = window->h;
sizehints->flags |= (PMaxSize | PMinSize);
Oct 12, 2011
Oct 12, 2011
501
}
Sep 26, 2012
Sep 26, 2012
502
503
504
sizehints->x = window->x;
sizehints->y = window->y;
sizehints->flags |= USPosition;
Jun 27, 2011
Jun 27, 2011
505
506
/* Setup the input hints so we get keyboard input */
Sep 26, 2012
Sep 26, 2012
507
508
509
wmhints = XAllocWMHints();
wmhints->input = True;
wmhints->flags = InputHint;
Jun 27, 2011
Jun 27, 2011
510
511
/* Setup the class hints so we can get an icon (AfterStep) */
Sep 26, 2012
Sep 26, 2012
512
513
514
classhints = XAllocClassHint();
classhints->res_name = data->classname;
classhints->res_class = data->classname;
Jun 27, 2011
Jun 27, 2011
515
516
/* Set the size, input and class hints, and define WM_CLIENT_MACHINE and WM_LOCALE_NAME */
Sep 26, 2012
Sep 26, 2012
517
XSetWMProperties(display, w, NULL, NULL, NULL, 0, sizehints, wmhints, classhints);
Jun 27, 2011
Jun 27, 2011
518
Sep 26, 2012
Sep 26, 2012
519
520
521
XFree(sizehints);
XFree(wmhints);
XFree(classhints);
Jun 27, 2011
Jun 27, 2011
522
523
524
525
526
/* Set the PID related to the window for the given hostname, if possible */
if (data->pid > 0) {
_NET_WM_PID = XInternAtom(display, "_NET_WM_PID", False);
XChangeProperty(display, w, _NET_WM_PID, XA_CARDINAL, 32, PropModeReplace,
(unsigned char *)&data->pid, 1);
Oct 12, 2011
Oct 12, 2011
527
528
529
}
/* Set the window manager state */
Sep 28, 2012
Sep 28, 2012
530
X11_SetNetWMState(_this, w, window->flags);
Oct 12, 2011
Oct 12, 2011
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
/* 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);
/* Allow the window to be deleted by the window manager */
XSetWMProtocols(display, w, &data->WM_DELETE_WINDOW, 1);
if (SetupWindowData(_this, window, w, SDL_TRUE) < 0) {
XDestroyWindow(display, w);
return -1;
}
#ifdef X_HAVE_UTF8_STRING
Nov 1, 2011
Nov 1, 2011
548
if (SDL_X11_HAVE_UTF8) {
Oct 12, 2011
Oct 12, 2011
549
550
551
552
553
pXGetICValues(((SDL_WindowData *) window->driverdata)->ic,
XNFilterEvents, &fevent, NULL);
}
#endif
May 31, 2012
May 31, 2012
554
555
X11_Xinput2SelectTouch(_this, window);
Nov 1, 2011
Nov 1, 2011
556
557
558
559
560
561
562
XSelectInput(display, w,
(FocusChangeMask | EnterWindowMask | LeaveWindowMask |
ExposureMask | ButtonPressMask | ButtonReleaseMask |
PointerMotionMask | KeyPressMask | KeyReleaseMask |
PropertyChangeMask | StructureNotifyMask |
KeymapStateMask | fevent));
Oct 12, 2011
Oct 12, 2011
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
XFlush(display);
return 0;
}
int
X11_CreateWindowFrom(_THIS, SDL_Window * window, const void *data)
{
Window w = (Window) data;
window->title = X11_GetWindowTitle(_this, w);
if (SetupWindowData(_this, window, w, SDL_FALSE) < 0) {
return -1;
}
return 0;
}
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);
Oct 22, 2011
Oct 22, 2011
595
if (status == Success && propdata) {
Oct 12, 2011
Oct 12, 2011
596
597
598
599
600
601
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);
Oct 22, 2011
Oct 22, 2011
602
if (status == Success && propdata) {
Oct 12, 2011
Oct 12, 2011
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
title = SDL_iconv_string("UTF-8", "", SDL_static_cast(char*, propdata), items_read+1);
} else {
title = SDL_strdup("");
}
}
return title;
}
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
Atom _NET_WM_NAME = data->videodata->_NET_WM_NAME;
Atom _NET_WM_ICON_NAME = data->videodata->_NET_WM_ICON_NAME;
#endif
if (title != NULL) {
char *title_locale = SDL_iconv_utf8_locale(title);
if (!title_locale) {
SDL_OutOfMemory();
return;
}
status = XStringListToTextProperty(&title_locale, 1, &titleprop);
SDL_free(title_locale);
if (status) {
XSetTextProperty(display, data->xwindow, &titleprop, XA_WM_NAME);
XFree(titleprop.value);
}
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8) {
status =
Xutf8TextListToTextProperty(display, (char **) &title, 1,
XUTF8StringStyle, &titleprop);
if (status == Success) {
XSetTextProperty(display, data->xwindow, &titleprop,
_NET_WM_NAME);
XFree(titleprop.value);
}
}
#endif
}
if (icon != NULL) {
char *icon_locale = SDL_iconv_utf8_locale(icon);
if (!icon_locale) {
SDL_OutOfMemory();
return;
}
status = XStringListToTextProperty(&icon_locale, 1, &iconprop);
SDL_free(icon_locale);
if (status) {
XSetTextProperty(display, data->xwindow, &iconprop,
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) {
XSetTextProperty(display, data->xwindow, &iconprop,
_NET_WM_ICON_NAME);
XFree(iconprop.value);
}
}
#endif
}
XFlush(display);
}
void
X11_SetWindowIcon(_THIS, SDL_Window * window, SDL_Surface * icon)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Atom _NET_WM_ICON = data->videodata->_NET_WM_ICON;
if (icon) {
SDL_PixelFormat format;
SDL_Surface *surface;
int propsize;
long *propdata;
/* Convert the icon to ARGB for modern window managers */
SDL_InitFormat(&format, SDL_PIXELFORMAT_ARGB8888);
surface = SDL_ConvertSurface(icon, &format, 0);
if (!surface) {
return;
}
/* Set the _NET_WM_ICON property */
propsize = 2 + (icon->w * icon->h);
propdata = SDL_malloc(propsize * sizeof(long));
if (propdata) {
int x, y;
Uint32 *src;
long *dst;
propdata[0] = icon->w;
propdata[1] = icon->h;
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++;
}
}
XChangeProperty(display, data->xwindow, _NET_WM_ICON, XA_CARDINAL,
32, PropModeReplace, (unsigned char *) propdata,
propsize);
}
Oct 6, 2012
Oct 6, 2012
721
SDL_free(propdata);
Oct 12, 2011
Oct 12, 2011
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
SDL_FreeSurface(surface);
} else {
XDeleteProperty(display, data->xwindow, _NET_WM_ICON);
}
XFlush(display);
}
void
X11_SetWindowPosition(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
XMoveWindow(display, data->xwindow, window->x, window->y);
XFlush(display);
}
void
X11_SetWindowSize(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Sep 28, 2012
Sep 28, 2012
745
if (SDL_IsShapedWindow(window)) {
Oct 12, 2011
Oct 12, 2011
746
X11_ResizeWindowShape(window);
Sep 28, 2012
Sep 28, 2012
747
}
Oct 12, 2011
Oct 12, 2011
748
749
750
751
752
753
754
755
if (!(window->flags & SDL_WINDOW_RESIZABLE)) {
/* Apparently, if the X11 Window is set to a 'non-resizable' window, you cannot resize it using the XResizeWindow, thus
we must set the size hints to adjust the window size.*/
XSizeHints *sizehints = XAllocSizeHints();
long userhints;
XGetWMNormalHints(display, data->xwindow, sizehints, &userhints);
Jun 23, 2012
Jun 23, 2012
756
sizehints->min_width = sizehints->max_width = window->w;
Oct 12, 2011
Oct 12, 2011
757
758
759
760
761
sizehints->min_height = sizehints->max_height = window->h;
XSetWMNormalHints(display, data->xwindow, sizehints);
XFree(sizehints);
Oct 3, 2012
Oct 3, 2012
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
/* From Pierre-Loup:
For the windowed resize problem; WMs each have their little quirks with
that. When you change the size hints, they get a ConfigureNotify event
with the WM_NORMAL_SIZE_HINTS Atom. They all save the hints then, but
they don't all resize the window right away to enforce the new hints.
Those who do properly do it are:
- XFWM
- metacity
- KWin
These are great. Now, others are more problematic as you could observe
first hand. Compiz/Unity only falls into the code that does it on select
actions, such as window move, raise, map, etc.
WindowMaker is even more difficult and will _only_ do it on map.
Awesome only does it on user-initiated moves as far as I can tell.
Your raise workaround only fixes compiz/Unity. With that all "modern"
window managers are covered. Trying to Hide/Show on windowed resize
(UnMap/Map) fixes both Unity and WindowMaker, but introduces subtle
problems with transitioning from Windowed to Fullscreen on Unity. Since
some window moves happen after the transitions to fullscreen, that forces
SDL to fall from windowed to fullscreen repeatedly and it sometimes leaves
itself in a state where the fullscreen window is slightly offset by what
used to be the window decoration titlebar.
*/
XRaiseWindow(display, data->xwindow);
Sep 28, 2012
Sep 28, 2012
792
} else {
Oct 12, 2011
Oct 12, 2011
793
XResizeWindow(display, data->xwindow, window->w, window->h);
Sep 28, 2012
Sep 28, 2012
794
}
Oct 12, 2011
Oct 12, 2011
795
796
797
XFlush(display);
}
Sep 13, 2012
Sep 13, 2012
798
799
800
void
X11_SetWindowBordered(_THIS, SDL_Window * window, SDL_bool bordered)
{
Sep 13, 2012
Sep 13, 2012
801
802
const SDL_bool focused = ((window->flags & SDL_WINDOW_INPUT_FOCUS) != 0);
const SDL_bool visible = ((window->flags & SDL_WINDOW_HIDDEN) == 0);
Sep 13, 2012
Sep 13, 2012
803
804
805
806
807
808
809
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_DisplayData *displaydata =
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Display *display = data->videodata->display;
XEvent event;
SetWindowBordered(display, displaydata->screen, data->xwindow, bordered);
Sep 13, 2012
Sep 13, 2012
810
XFlush(display);
Sep 13, 2012
Sep 13, 2012
811
812
XIfEvent(display, &event, &isConfigureNotify, (XPointer)&data->xwindow);
Sep 13, 2012
Sep 13, 2012
813
814
815
816
817
818
if (visible) {
XWindowAttributes attr;
do {
XSync(display, False);
XGetWindowAttributes(display, data->xwindow, &attr);
} while (attr.map_state != IsViewable);
Sep 13, 2012
Sep 13, 2012
819
Sep 13, 2012
Sep 13, 2012
820
821
822
823
824
825
826
827
828
if (focused) {
XSetInputFocus(display, data->xwindow, RevertToParent, CurrentTime);
}
}
/* make sure these don't make it to the real event queue if they fired here. */
XSync(display, False);
XCheckIfEvent(display, &event, &isUnmapNotify, (XPointer)&data->xwindow);
XCheckIfEvent(display, &event, &isMapNotify, (XPointer)&data->xwindow);
Sep 13, 2012
Sep 13, 2012
829
}
Jun 21, 2012
Jun 21, 2012
830
Oct 12, 2011
Oct 12, 2011
831
832
833
834
835
void
X11_ShowWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jun 21, 2012
Jun 21, 2012
836
XEvent event;
Oct 12, 2011
Oct 12, 2011
837
Sep 28, 2012
Sep 28, 2012
838
839
840
841
842
843
844
845
if (!X11_IsWindowMapped(_this, window)) {
XMapRaised(display, data->xwindow);
/* Blocking wait for "MapNotify" event.
* We use XIfEvent because XWindowEvent takes a mask rather than a type,
* and XCheckTypedWindowEvent doesn't block */
XIfEvent(display, &event, &isMapNotify, (XPointer)&data->xwindow);
XFlush(display);
}
Oct 12, 2011
Oct 12, 2011
846
847
848
849
850
851
852
}
void
X11_HideWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Jun 21, 2012
Jun 21, 2012
853
XEvent event;
Oct 12, 2011
Oct 12, 2011
854
Sep 28, 2012
Sep 28, 2012
855
856
857
858
859
860
if (X11_IsWindowMapped(_this, window)) {
XUnmapWindow(display, data->xwindow);
/* Blocking wait for "UnmapNotify" event */
XIfEvent(display, &event, &isUnmapNotify, (XPointer)&data->xwindow);
XFlush(display);
}
Oct 12, 2011
Oct 12, 2011
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
}
void
X11_RaiseWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
XRaiseWindow(display, data->xwindow);
XFlush(display);
}
static void
SetWindowMaximized(_THIS, SDL_Window * window, SDL_bool maximized)
{
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;
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] =
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 {
Sep 28, 2012
Sep 28, 2012
901
Uint32 flags;
Oct 12, 2011
Oct 12, 2011
902
Sep 28, 2012
Sep 28, 2012
903
flags = window->flags;
Oct 12, 2011
Oct 12, 2011
904
if (maximized) {
Sep 28, 2012
Sep 28, 2012
905
906
907
flags |= SDL_WINDOW_MAXIMIZED;
} else {
flags &= ~SDL_WINDOW_MAXIMIZED;
Oct 12, 2011
Oct 12, 2011
908
}
Sep 28, 2012
Sep 28, 2012
909
X11_SetNetWMState(_this, data->xwindow, flags);
Oct 12, 2011
Oct 12, 2011
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
}
XFlush(display);
}
void
X11_MaximizeWindow(_THIS, SDL_Window * window)
{
SetWindowMaximized(_this, window, SDL_TRUE);
}
void
X11_MinimizeWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_DisplayData *displaydata =
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Display *display = data->videodata->display;
XIconifyWindow(display, data->xwindow, displaydata->screen);
XFlush(display);
}
void
X11_RestoreWindow(_THIS, SDL_Window * window)
{
SetWindowMaximized(_this, window, SDL_FALSE);
X11_ShowWindow(_this, window);
}
Sep 27, 2012
Sep 27, 2012
939
940
941
/* This asks the Window Manager to handle fullscreen for us. Most don't do it right, though. */
static void
X11_SetWindowFullscreenViaWM(_THIS, SDL_Window * window, SDL_VideoDisplay * _display, SDL_bool fullscreen)
Oct 12, 2011
Oct 12, 2011
942
943
944
945
946
947
948
949
950
951
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_DisplayData *displaydata = (SDL_DisplayData *) _display->driverdata;
Display *display = data->videodata->display;
Atom _NET_WM_STATE = data->videodata->_NET_WM_STATE;
Atom _NET_WM_STATE_FULLSCREEN = data->videodata->_NET_WM_STATE_FULLSCREEN;
if (X11_IsWindowMapped(_this, window)) {
XEvent e;
Oct 3, 2012
Oct 3, 2012
952
953
954
955
956
957
958
959
960
961
962
963
if (!(window->flags & SDL_WINDOW_RESIZABLE)) {
/* Compiz refuses fullscreen toggle if we're not resizable, so update the hints so we
can be resized to the fullscreen resolution (or reset so we're not resizable again) */
XSizeHints *sizehints = XAllocSizeHints();
long flags = 0;
XGetWMNormalHints(display, data->xwindow, sizehints, &flags);
/* set the resize flags on */
if (fullscreen) {
/* we are going fullscreen so turn the flags off */
sizehints->flags &= ~(PMinSize | PMaxSize);
} else {
/* Reset the min/max width height to make the window non-resizable again */
Sep 27, 2012
Sep 27, 2012
964
sizehints->flags |= PMinSize | PMaxSize;
Oct 3, 2012
Oct 3, 2012
965
966
sizehints->min_width = sizehints->max_width = window->windowed.w;
sizehints->min_height = sizehints->max_height = window->windowed.h;
Sep 27, 2012
Sep 27, 2012
967
}
Oct 3, 2012
Oct 3, 2012
968
969
XSetWMNormalHints(display, data->xwindow, sizehints);
XFree(sizehints);
Sep 27, 2012
Sep 27, 2012
970
}
Oct 3, 2012
Oct 3, 2012
971
Oct 12, 2011
Oct 12, 2011
972
973
974
975
976
977
978
979
980
981
982
983
984
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 {
Sep 28, 2012
Sep 28, 2012
985
Uint32 flags;
Oct 12, 2011
Oct 12, 2011
986
Sep 28, 2012
Sep 28, 2012
987
flags = window->flags;
Oct 12, 2011
Oct 12, 2011
988
if (fullscreen) {
Sep 28, 2012
Sep 28, 2012
989
990
991
flags |= SDL_WINDOW_FULLSCREEN;
} else {
flags &= ~SDL_WINDOW_FULLSCREEN;
Oct 12, 2011
Oct 12, 2011
992
}
Sep 28, 2012
Sep 28, 2012
993
X11_SetNetWMState(_this, data->xwindow, flags);
Oct 12, 2011
Oct 12, 2011
994
}
Oct 11, 2012
Oct 11, 2012
995
996
997
998
999
1000
if( fullscreen ) {
XInstallColormap(display, data->colormap);
} else {
XUninstallColormap(display, data->colormap);
}