Skip to content

Latest commit

 

History

History
1446 lines (1240 loc) · 47.3 KB

SDL_x11window.c

File metadata and controls

1446 lines (1240 loc) · 47.3 KB
 
1
2
3
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
33
34
35
36
/*
Simple DirectMedia Layer
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
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_assert.h"
#include "SDL_hints.h"
#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"
#include "SDL_x11xinput2.h"
Aug 19, 2013
Aug 19, 2013
37
#if SDL_VIDEO_OPENGL_EGL
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include "SDL_x11opengles.h"
#endif
#include "SDL_timer.h"
#include "SDL_syswm.h"
#include "SDL_assert.h"
#define _NET_WM_STATE_REMOVE 0l
#define _NET_WM_STATE_ADD 1l
#define _NET_WM_STATE_TOGGLE 2l
static Bool isMapNotify(Display *dpy, XEvent *ev, XPointer win)
{
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)
{
return ev->type == ConfigureNotify && ev->xconfigure.window == *((Window*)win);
}
/*
static Bool
Oct 18, 2013
Oct 18, 2013
64
X11_XIfEventTimeout(Display *display, XEvent *event_return, Bool (*predicate)(), XPointer arg, int timeoutMS)
65
66
67
{
Uint32 start = SDL_GetTicks();
Oct 18, 2013
Oct 18, 2013
68
while (!X11_XCheckIfEvent(display, event_return, predicate, arg)) {
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
if ((SDL_GetTicks() - start) >= timeoutMS) {
return False;
}
}
return True;
}
*/
static SDL_bool
X11_IsWindowLegacyFullscreen(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
return (data->fswindow != 0);
}
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;
Oct 18, 2013
Oct 18, 2013
91
X11_XGetWindowAttributes(videodata->display, data->xwindow, &attr);
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
if (attr.map_state != IsUnmapped) {
return SDL_TRUE;
} else {
return SDL_FALSE;
}
}
#if 0
static SDL_bool
X11_IsActionAllowed(SDL_Window *window, Atom action)
{
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;
Oct 18, 2013
Oct 18, 2013
113
if (X11_XGetWindowProperty(display, data->xwindow, _NET_WM_ALLOWED_ACTIONS, 0, 1024, False, XA_ATOM, &type, &form, &len, &remain, (unsigned char **)&list) == Success)
114
115
116
117
118
119
120
121
{
for (i=0; i<len; ++i)
{
if (list[i] == action) {
ret = SDL_TRUE;
break;
}
}
Oct 18, 2013
Oct 18, 2013
122
X11_XFree(list);
123
124
125
126
127
128
129
130
131
132
133
}
return ret;
}
#endif /* 0 */
void
X11_SetNetWMState(_THIS, Window xwindow, Uint32 flags)
{
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Display *display = videodata->display;
Atom _NET_WM_STATE = videodata->_NET_WM_STATE;
Aug 21, 2013
Aug 21, 2013
134
/* Atom _NET_WM_STATE_HIDDEN = videodata->_NET_WM_STATE_HIDDEN; */
135
136
137
138
139
140
141
142
143
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 atoms[5];
int count = 0;
/* 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
Oct 18, 2013
Oct 18, 2013
144
actually want to be mapped during X11_XMapRaised(), which would be bad.
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
*
if (flags & SDL_WINDOW_HIDDEN) {
atoms[count++] = _NET_WM_STATE_HIDDEN;
}
*/
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;
}
if (count > 0) {
Oct 18, 2013
Oct 18, 2013
161
X11_XChangeProperty(display, xwindow, _NET_WM_STATE, XA_ATOM, 32,
162
163
PropModeReplace, (unsigned char *)atoms, count);
} else {
Oct 18, 2013
Oct 18, 2013
164
X11_XDeleteProperty(display, xwindow, _NET_WM_STATE);
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
}
}
Uint32
X11_GetNetWMState(_THIS, Window xwindow)
{
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Display *display = videodata->display;
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;
Oct 18, 2013
Oct 18, 2013
186
if (X11_XGetWindowProperty(display, xwindow, _NET_WM_STATE,
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
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) {
flags |= SDL_WINDOW_HIDDEN;
} 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;
}
Oct 18, 2013
Oct 18, 2013
212
X11_XFree(propertyValue);
213
214
215
}
/* FIXME, check the size hints for resizable */
Aug 21, 2013
Aug 21, 2013
216
/* flags |= SDL_WINDOW_RESIZABLE; */
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
return flags;
}
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) {
return SDL_OutOfMemory();
}
data->window = window;
data->xwindow = w;
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8 && videodata->im) {
data->ic =
Oct 18, 2013
Oct 18, 2013
240
X11_XCreateIC(videodata->im, XNClientWindow, w, XNFocusWindow, w,
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
272
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_free(data);
return SDL_OutOfMemory();
}
windowlist[numwindows] = data;
videodata->numwindows++;
videodata->windowlistlength++;
videodata->windowlist = windowlist;
}
/* Fill in the SDL window with the window data */
{
XWindowAttributes attrib;
Oct 18, 2013
Oct 18, 2013
273
X11_XGetWindowAttributes(data->videodata->display, w, &attrib);
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
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;
}
window->flags |= X11_GetNetWMState(_this, w);
{
Window FocalWindow;
int RevertTo=0;
Oct 18, 2013
Oct 18, 2013
292
X11_XGetInputFocus(data->videodata->display, &FocalWindow, &RevertTo);
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
if (FocalWindow==w)
{
window->flags |= SDL_WINDOW_INPUT_FOCUS;
}
if (window->flags & SDL_WINDOW_INPUT_FOCUS) {
SDL_SetKeyboardFocus(data->window);
}
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
/* Tell x11 to clip mouse */
}
}
/* All done! */
window->driverdata = data;
return 0;
}
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.
*/
Oct 18, 2013
Oct 18, 2013
321
Atom WM_HINTS = X11_XInternAtom(display, "_MOTIF_WM_HINTS", True);
322
323
324
325
326
327
328
329
330
331
332
333
334
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
};
Oct 18, 2013
Oct 18, 2013
335
X11_XChangeProperty(display, window, WM_HINTS, WM_HINTS, 32,
336
337
338
PropModeReplace, (unsigned char *) &MWMHints,
sizeof(MWMHints) / 4);
} else { /* set the transient hints instead, if necessary */
Oct 18, 2013
Oct 18, 2013
339
X11_XSetTransientForHint(display, window, RootWindow(display, screen));
340
341
342
343
344
345
346
347
348
}
}
int
X11_CreateWindow(_THIS, SDL_Window * window)
{
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
SDL_DisplayData *displaydata =
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
Aug 21, 2013
Aug 21, 2013
349
SDL_WindowData *windowdata;
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
Display *display = data->display;
int screen = displaydata->screen;
Visual *visual;
int depth;
XSetWindowAttributes xattr;
Window w;
XSizeHints *sizehints;
XWMHints *wmhints;
XClassHint *classhints;
const long _NET_WM_BYPASS_COMPOSITOR_HINT_ON = 1;
Atom _NET_WM_BYPASS_COMPOSITOR;
Atom _NET_WM_WINDOW_TYPE;
Atom _NET_WM_WINDOW_TYPE_NORMAL;
Atom _NET_WM_PID;
Atom XdndAware, xdnd_version = 5;
Uint32 fevent = 0;
Aug 19, 2013
Aug 19, 2013
367
#if SDL_VIDEO_OPENGL_GLX || SDL_VIDEO_OPENGL_EGL
Sep 11, 2013
Sep 11, 2013
368
369
if ((window->flags & SDL_WINDOW_OPENGL) &&
!SDL_getenv("SDL_VIDEO_X11_VISUALID")) {
Aug 29, 2013
Aug 29, 2013
370
XVisualInfo *vinfo = NULL;
Aug 19, 2013
Aug 19, 2013
372
#if SDL_VIDEO_OPENGL_EGL
Oct 12, 2013
Oct 12, 2013
373
374
375
376
377
if (_this->gl_config.profile_mask == SDL_GL_CONTEXT_PROFILE_ES
#if SDL_VIDEO_OPENGL_GLX
&& ( !_this->gl_data || ! _this->gl_data->HAS_GLX_EXT_create_context_es2_profile )
#endif
){
378
379
380
381
382
383
384
385
vinfo = X11_GLES_GetVisual(_this, display, screen);
} else
#endif
{
#if SDL_VIDEO_OPENGL_GLX
vinfo = X11_GL_GetVisual(_this, display, screen);
#endif
}
Aug 29, 2013
Aug 29, 2013
386
387
388
389
390
391
if (!vinfo) {
return -1;
}
visual = vinfo->visual;
depth = vinfo->depth;
Oct 18, 2013
Oct 18, 2013
392
X11_XFree(vinfo);
393
394
395
396
397
398
399
400
} else
#endif
{
visual = displaydata->visual;
depth = displaydata->depth;
}
xattr.override_redirect = False;
Sep 28, 2013
Sep 28, 2013
401
xattr.background_pixmap = None;
402
403
404
405
406
407
408
409
410
411
412
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 =
Oct 18, 2013
Oct 18, 2013
413
X11_XCreateColormap(display, RootWindow(display, screen),
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
469
470
471
472
473
visual, AllocAll);
/* If we can't create a colormap, then we must die */
if (!xattr.colormap) {
return SDL_SetError("Could not create writable colormap");
}
/* OK, we got a colormap, now fill it in as best as we can */
colorcells = SDL_malloc(visual->map_entries * sizeof(XColor));
if (!colorcells) {
return SDL_OutOfMemory();
}
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;
}
Oct 18, 2013
Oct 18, 2013
474
X11_XStoreColors(display, xattr.colormap, colorcells, ncolors);
475
476
477
478
SDL_free(colorcells);
} else {
xattr.colormap =
Oct 18, 2013
Oct 18, 2013
479
X11_XCreateColormap(display, RootWindow(display, screen),
480
481
482
visual, AllocNone);
}
Oct 18, 2013
Oct 18, 2013
483
w = X11_XCreateWindow(display, RootWindow(display, screen),
484
485
window->x, window->y, window->w, window->h,
0, depth, InputOutput, visual,
Sep 28, 2013
Sep 28, 2013
486
(CWOverrideRedirect | CWBackPixmap | CWBorderPixel |
487
488
489
490
491
492
493
494
CWColormap), &xattr);
if (!w) {
return SDL_SetError("Couldn't create window");
}
SetWindowBordered(display, screen, w,
(window->flags & SDL_WINDOW_BORDERLESS) == 0);
Oct 18, 2013
Oct 18, 2013
495
sizehints = X11_XAllocSizeHints();
496
497
498
499
500
501
502
503
504
505
506
507
/* Setup the normal size hints */
sizehints->flags = 0;
if (!(window->flags & SDL_WINDOW_RESIZABLE)) {
sizehints->min_width = sizehints->max_width = window->w;
sizehints->min_height = sizehints->max_height = window->h;
sizehints->flags |= (PMaxSize | PMinSize);
}
sizehints->x = window->x;
sizehints->y = window->y;
sizehints->flags |= USPosition;
/* Setup the input hints so we get keyboard input */
Oct 18, 2013
Oct 18, 2013
508
wmhints = X11_XAllocWMHints();
509
510
511
512
wmhints->input = True;
wmhints->flags = InputHint;
/* Setup the class hints so we can get an icon (AfterStep) */
Oct 18, 2013
Oct 18, 2013
513
classhints = X11_XAllocClassHint();
514
515
516
517
classhints->res_name = data->classname;
classhints->res_class = data->classname;
/* Set the size, input and class hints, and define WM_CLIENT_MACHINE and WM_LOCALE_NAME */
Oct 18, 2013
Oct 18, 2013
518
X11_XSetWMProperties(display, w, NULL, NULL, NULL, 0, sizehints, wmhints, classhints);
Oct 18, 2013
Oct 18, 2013
520
521
522
X11_XFree(sizehints);
X11_XFree(wmhints);
X11_XFree(classhints);
523
524
/* Set the PID related to the window for the given hostname, if possible */
if (data->pid > 0) {
Oct 18, 2013
Oct 18, 2013
525
526
_NET_WM_PID = X11_XInternAtom(display, "_NET_WM_PID", False);
X11_XChangeProperty(display, w, _NET_WM_PID, XA_CARDINAL, 32, PropModeReplace,
527
528
529
530
531
532
533
(unsigned char *)&data->pid, 1);
}
/* Set the window manager state */
X11_SetNetWMState(_this, w, window->flags);
/* Let the window manager know we're a "normal" window */
Oct 18, 2013
Oct 18, 2013
534
535
536
_NET_WM_WINDOW_TYPE = X11_XInternAtom(display, "_NET_WM_WINDOW_TYPE", False);
_NET_WM_WINDOW_TYPE_NORMAL = X11_XInternAtom(display, "_NET_WM_WINDOW_TYPE_NORMAL", False);
X11_XChangeProperty(display, w, _NET_WM_WINDOW_TYPE, XA_ATOM, 32,
537
538
539
PropModeReplace,
(unsigned char *)&_NET_WM_WINDOW_TYPE_NORMAL, 1);
Oct 18, 2013
Oct 18, 2013
540
541
_NET_WM_BYPASS_COMPOSITOR = X11_XInternAtom(display, "_NET_WM_BYPASS_COMPOSITOR", False);
X11_XChangeProperty(display, w, _NET_WM_BYPASS_COMPOSITOR, XA_CARDINAL, 32,
542
543
544
545
546
547
548
549
PropModeReplace,
(unsigned char *)&_NET_WM_BYPASS_COMPOSITOR_HINT_ON, 1);
{
Atom protocols[] = {
data->WM_DELETE_WINDOW, /* Allow window to be deleted by the WM */
data->_NET_WM_PING, /* Respond so WM knows we're alive */
};
Oct 18, 2013
Oct 18, 2013
550
X11_XSetWMProtocols(display, w, protocols, sizeof (protocols) / sizeof (protocols[0]));
551
552
553
}
if (SetupWindowData(_this, window, w, SDL_TRUE) < 0) {
Oct 18, 2013
Oct 18, 2013
554
X11_XDestroyWindow(display, w);
555
556
return -1;
}
Aug 21, 2013
Aug 21, 2013
557
windowdata = (SDL_WindowData *) window->driverdata;
Aug 19, 2013
Aug 19, 2013
559
#if SDL_VIDEO_OPENGL_ES || SDL_VIDEO_OPENGL_ES2
Aug 29, 2013
Aug 29, 2013
560
if ((window->flags & SDL_WINDOW_OPENGL) &&
Oct 12, 2013
Oct 12, 2013
561
562
563
564
565
_this->gl_config.profile_mask == SDL_GL_CONTEXT_PROFILE_ES
#if SDL_VIDEO_OPENGL_GLX
&& ( !_this->gl_data || ! _this->gl_data->HAS_GLX_EXT_create_context_es2_profile )
#endif
) {
Aug 19, 2013
Aug 19, 2013
566
if (!_this->egl_data) {
Oct 18, 2013
Oct 18, 2013
567
X11_XDestroyWindow(display, w);
Aug 19, 2013
Aug 19, 2013
568
569
570
571
return -1;
}
/* Create the GLES window surface */
Aug 21, 2013
Aug 21, 2013
572
windowdata->egl_surface = SDL_EGL_CreateSurface(_this, (NativeWindowType) w);
Aug 19, 2013
Aug 19, 2013
573
Aug 21, 2013
Aug 21, 2013
574
if (windowdata->egl_surface == EGL_NO_SURFACE) {
Oct 18, 2013
Oct 18, 2013
575
X11_XDestroyWindow(display, w);
Aug 19, 2013
Aug 19, 2013
576
577
578
579
580
581
return SDL_SetError("Could not create GLES window surface");
}
}
#endif
582
#ifdef X_HAVE_UTF8_STRING
Aug 21, 2013
Aug 21, 2013
583
if (SDL_X11_HAVE_UTF8 && windowdata->ic) {
Oct 18, 2013
Oct 18, 2013
584
X11_XGetICValues(windowdata->ic, XNFilterEvents, &fevent, NULL);
585
586
587
588
589
}
#endif
X11_Xinput2SelectTouch(_this, window);
Oct 18, 2013
Oct 18, 2013
590
X11_XSelectInput(display, w,
591
592
593
594
595
596
(FocusChangeMask | EnterWindowMask | LeaveWindowMask |
ExposureMask | ButtonPressMask | ButtonReleaseMask |
PointerMotionMask | KeyPressMask | KeyReleaseMask |
PropertyChangeMask | StructureNotifyMask |
KeymapStateMask | fevent));
Oct 18, 2013
Oct 18, 2013
597
598
XdndAware = X11_XInternAtom(display, "XdndAware", False);
X11_XChangeProperty(display, w, XdndAware, XA_ATOM, 32,
599
600
601
PropModeReplace,
(unsigned char*)&xdnd_version, 1);
Oct 18, 2013
Oct 18, 2013
602
X11_XFlush(display);
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
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;
Oct 18, 2013
Oct 18, 2013
631
status = X11_XGetWindowProperty(display, xwindow, data->_NET_WM_NAME,
632
633
634
635
0L, 8192L, False, data->UTF8_STRING, &real_type, &real_format,
&items_read, &items_left, &propdata);
if (status == Success && propdata) {
title = SDL_strdup(SDL_static_cast(char*, propdata));
Oct 18, 2013
Oct 18, 2013
636
X11_XFree(propdata);
Oct 18, 2013
Oct 18, 2013
638
status = X11_XGetWindowProperty(display, xwindow, XA_WM_NAME,
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
0L, 8192L, False, XA_STRING, &real_type, &real_format,
&items_read, &items_left, &propdata);
if (status == Success && propdata) {
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;
}
Oct 18, 2013
Oct 18, 2013
671
status = X11_XStringListToTextProperty(&title_locale, 1, &titleprop);
672
673
SDL_free(title_locale);
if (status) {
Oct 18, 2013
Oct 18, 2013
674
675
X11_XSetTextProperty(display, data->xwindow, &titleprop, XA_WM_NAME);
X11_XFree(titleprop.value);
676
677
678
679
}
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8) {
status =
Oct 18, 2013
Oct 18, 2013
680
X11_Xutf8TextListToTextProperty(display, (char **) &title, 1,
681
682
XUTF8StringStyle, &titleprop);
if (status == Success) {
Oct 18, 2013
Oct 18, 2013
683
X11_XSetTextProperty(display, data->xwindow, &titleprop,
684
_NET_WM_NAME);
Oct 18, 2013
Oct 18, 2013
685
X11_XFree(titleprop.value);
686
687
688
689
690
691
692
693
694
695
}
}
#endif
}
if (icon != NULL) {
char *icon_locale = SDL_iconv_utf8_locale(icon);
if (!icon_locale) {
SDL_OutOfMemory();
return;
}
Oct 18, 2013
Oct 18, 2013
696
status = X11_XStringListToTextProperty(&icon_locale, 1, &iconprop);
697
698
SDL_free(icon_locale);
if (status) {
Oct 18, 2013
Oct 18, 2013
699
X11_XSetTextProperty(display, data->xwindow, &iconprop,
700
XA_WM_ICON_NAME);
Oct 18, 2013
Oct 18, 2013
701
X11_XFree(iconprop.value);
702
703
704
705
}
#ifdef X_HAVE_UTF8_STRING
if (SDL_X11_HAVE_UTF8) {
status =
Oct 18, 2013
Oct 18, 2013
706
X11_Xutf8TextListToTextProperty(display, (char **) &icon, 1,
707
708
XUTF8StringStyle, &iconprop);
if (status == Success) {
Oct 18, 2013
Oct 18, 2013
709
X11_XSetTextProperty(display, data->xwindow, &iconprop,
710
_NET_WM_ICON_NAME);
Oct 18, 2013
Oct 18, 2013
711
X11_XFree(iconprop.value);
712
713
714
715
}
}
#endif
}
Oct 18, 2013
Oct 18, 2013
716
X11_XFlush(display);
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
}
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) {
int propsize;
long *propdata;
/* Set the _NET_WM_ICON property */
SDL_assert(icon->format->format == SDL_PIXELFORMAT_ARGB8888);
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*)icon->pixels + y * icon->pitch);
for (x = 0; x < icon->w; ++x) {
*dst++ = *src++;
}
}
Oct 18, 2013
Oct 18, 2013
748
X11_XChangeProperty(display, data->xwindow, _NET_WM_ICON, XA_CARDINAL,
749
750
751
752
753
32, PropModeReplace, (unsigned char *) propdata,
propsize);
}
SDL_free(propdata);
} else {
Oct 18, 2013
Oct 18, 2013
754
X11_XDeleteProperty(display, data->xwindow, _NET_WM_ICON);
Oct 18, 2013
Oct 18, 2013
756
X11_XFlush(display);
757
758
759
760
761
762
763
764
}
void
X11_SetWindowPosition(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Oct 18, 2013
Oct 18, 2013
765
766
X11_XMoveWindow(display, data->xwindow, window->x, window->y);
X11_XFlush(display);
767
768
769
770
771
772
773
774
775
}
void
X11_SetWindowMinimumSize(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
if (window->flags & SDL_WINDOW_RESIZABLE) {
Oct 18, 2013
Oct 18, 2013
776
XSizeHints *sizehints = X11_XAllocSizeHints();
777
778
long userhints;
Oct 18, 2013
Oct 18, 2013
779
X11_XGetWMNormalHints(display, data->xwindow, sizehints, &userhints);
780
781
782
783
784
sizehints->min_width = window->min_w;
sizehints->min_height = window->min_h;
sizehints->flags |= PMinSize;
Oct 18, 2013
Oct 18, 2013
785
X11_XSetWMNormalHints(display, data->xwindow, sizehints);
Oct 18, 2013
Oct 18, 2013
787
X11_XFree(sizehints);
788
789
/* See comment in X11_SetWindowSize. */
Oct 18, 2013
Oct 18, 2013
790
791
792
X11_XResizeWindow(display, data->xwindow, window->w, window->h);
X11_XMoveWindow(display, data->xwindow, window->x, window->y);
X11_XRaiseWindow(display, data->xwindow);
Oct 18, 2013
Oct 18, 2013
795
X11_XFlush(display);
796
797
798
799
800
801
802
803
804
}
void
X11_SetWindowMaximumSize(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
if (window->flags & SDL_WINDOW_RESIZABLE) {
Oct 18, 2013
Oct 18, 2013
805
XSizeHints *sizehints = X11_XAllocSizeHints();
806
807
long userhints;
Oct 18, 2013
Oct 18, 2013
808
X11_XGetWMNormalHints(display, data->xwindow, sizehints, &userhints);
809
810
811
812
813
sizehints->max_width = window->max_w;
sizehints->max_height = window->max_h;
sizehints->flags |= PMaxSize;
Oct 18, 2013
Oct 18, 2013
814
X11_XSetWMNormalHints(display, data->xwindow, sizehints);
Oct 18, 2013
Oct 18, 2013
816
X11_XFree(sizehints);
817
818
/* See comment in X11_SetWindowSize. */
Oct 18, 2013
Oct 18, 2013
819
820
821
X11_XResizeWindow(display, data->xwindow, window->w, window->h);
X11_XMoveWindow(display, data->xwindow, window->x, window->y);
X11_XRaiseWindow(display, data->xwindow);
Oct 18, 2013
Oct 18, 2013
824
X11_XFlush(display);
825
826
827
828
829
830
831
832
833
834
835
836
}
void
X11_SetWindowSize(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
if (SDL_IsShapedWindow(window)) {
X11_ResizeWindowShape(window);
}
if (!(window->flags & SDL_WINDOW_RESIZABLE)) {
Oct 18, 2013
Oct 18, 2013
837
/* Apparently, if the X11 Window is set to a 'non-resizable' window, you cannot resize it using the X11_XResizeWindow, thus
Aug 21, 2013
Aug 21, 2013
838
we must set the size hints to adjust the window size. */
Oct 18, 2013
Oct 18, 2013
839
XSizeHints *sizehints = X11_XAllocSizeHints();
840
841
long userhints;
Oct 18, 2013
Oct 18, 2013
842
X11_XGetWMNormalHints(display, data->xwindow, sizehints, &userhints);
843
844
845
846
847
sizehints->min_width = sizehints->max_width = window->w;
sizehints->min_height = sizehints->max_height = window->h;
sizehints->flags |= PMinSize | PMaxSize;
Oct 18, 2013
Oct 18, 2013
848
X11_XSetWMNormalHints(display, data->xwindow, sizehints);
Oct 18, 2013
Oct 18, 2013
850
X11_XFree(sizehints);
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
/* From Pierre-Loup:
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.
Some of them resize only after:
- A user-initiated move or resize
- A code-initiated move or resize
- Hiding & showing window (Unmap & map)
The following move & resize seems to help a lot of WMs that didn't
properly update after the hints were changed. We don't do a
hide/show, because there are supposedly subtle problems with doing so
and transitioning from windowed to fullscreen in Unity.
*/
Oct 18, 2013
Oct 18, 2013
868
869
870
X11_XResizeWindow(display, data->xwindow, window->w, window->h);
X11_XMoveWindow(display, data->xwindow, window->x, window->y);
X11_XRaiseWindow(display, data->xwindow);
Oct 18, 2013
Oct 18, 2013
872
X11_XResizeWindow(display, data->xwindow, window->w, window->h);
Oct 18, 2013
Oct 18, 2013
875
X11_XFlush(display);
876
877
878
879
880
881
882
883
884
885
886
887
888
889
}
void
X11_SetWindowBordered(_THIS, SDL_Window * window, SDL_bool bordered)
{
const SDL_bool focused = ((window->flags & SDL_WINDOW_INPUT_FOCUS) != 0);
const SDL_bool visible = ((window->flags & SDL_WINDOW_HIDDEN) == 0);
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);
Oct 18, 2013
Oct 18, 2013
890
891
X11_XFlush(display);
X11_XIfEvent(display, &event, &isConfigureNotify, (XPointer)&data->xwindow);
892
893
894
895
if (visible) {
XWindowAttributes attr;
do {
Oct 18, 2013
Oct 18, 2013
896
897
X11_XSync(display, False);
X11_XGetWindowAttributes(display, data->xwindow, &attr);
898
899
900
} while (attr.map_state != IsViewable);
if (focused) {
Oct 18, 2013
Oct 18, 2013
901
X11_XSetInputFocus(display, data->xwindow, RevertToParent, CurrentTime);
902
903
904
905
}
}
/* make sure these don't make it to the real event queue if they fired here. */
Oct 18, 2013
Oct 18, 2013
906
907
908
X11_XSync(display, False);
X11_XCheckIfEvent(display, &event, &isUnmapNotify, (XPointer)&data->xwindow);
X11_XCheckIfEvent(display, &event, &isMapNotify, (XPointer)&data->xwindow);
909
910
911
912
913
914
915
916
917
918
}
void
X11_ShowWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
XEvent event;
if (!X11_IsWindowMapped(_this, window)) {
Oct 18, 2013
Oct 18, 2013
919
X11_XMapRaised(display, data->xwindow);
920
/* Blocking wait for "MapNotify" event.
Oct 18, 2013
Oct 18, 2013
921
* We use X11_XIfEvent because pXWindowEvent takes a mask rather than a type,
922
* and XCheckTypedWindowEvent doesn't block */
Oct 18, 2013
Oct 18, 2013
923
924
X11_XIfEvent(display, &event, &isMapNotify, (XPointer)&data->xwindow);
X11_XFlush(display);
925
926
927
928
929
930
931
932
933
934
935
936
}
}
void
X11_HideWindow(_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;
XEvent event;
if (X11_IsWindowMapped(_this, window)) {
Oct 18, 2013
Oct 18, 2013
937
X11_XWithdrawWindow(display, data->xwindow, displaydata->screen);
938
/* Blocking wait for "UnmapNotify" event */
Oct 18, 2013
Oct 18, 2013
939
940
X11_XIfEvent(display, &event, &isUnmapNotify, (XPointer)&data->xwindow);
X11_XFlush(display);
941
942
943
}
}
Sep 14, 2013
Sep 14, 2013
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
static void
SetWindowActive(_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;
Atom _NET_ACTIVE_WINDOW = data->videodata->_NET_ACTIVE_WINDOW;
if (X11_IsWindowMapped(_this, window)) {
XEvent e;
SDL_zero(e);
e.xany.type = ClientMessage;
e.xclient.message_type = _NET_ACTIVE_WINDOW;
e.xclient.format = 32;
e.xclient.window = data->xwindow;
e.xclient.data.l[0] = 1; /* source indication. 1 = application */
e.xclient.data.l[1] = CurrentTime;
e.xclient.data.l[2] = 0;
Oct 18, 2013
Oct 18, 2013
965
X11_XSendEvent(display, RootWindow(display, displaydata->screen), 0,
Sep 14, 2013
Sep 14, 2013
966
967
SubstructureNotifyMask | SubstructureRedirectMask, &e);
Oct 18, 2013
Oct 18, 2013
968
X11_XFlush(display);
Sep 14, 2013
Sep 14, 2013
969
970
971
}
}
972
973
974
975
976
977
void
X11_RaiseWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Oct 18, 2013
Oct 18, 2013
978
X11_XRaiseWindow(display, data->xwindow);
Sep 14, 2013
Sep 14, 2013
979
SetWindowActive(_this, window);
Oct 18, 2013
Oct 18, 2013
980
X11_XFlush(display);
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
}
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 (maximized) {
window->flags |= SDL_WINDOW_MAXIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MAXIMIZED;
}
if (X11_IsWindowMapped(_this, window)) {