]>
Commit | Line | Data |
---|---|---|
f618020a MB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/unix/utilsx11.cpp | |
3 | // Purpose: Miscellaneous X11 functions | |
8166ab43 | 4 | // Author: Mattia Barbon, Vaclav Slavik, Robert Roebling |
f618020a MB |
5 | // Modified by: |
6 | // Created: 25.03.02 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
6aa89a22 | 9 | // Licence: wxWindows licence |
f618020a MB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #if defined(__WXX11__) || defined(__WXGTK__) || defined(__WXMOTIF__) | |
13 | ||
14f355c2 VS |
14 | // for compilers that support precompilation, includes "wx.h". |
15 | #include "wx/wxprec.h" | |
16 | ||
f618020a MB |
17 | #include "wx/unix/utilsx11.h" |
18 | #include "wx/iconbndl.h" | |
19 | #include "wx/image.h" | |
20 | #include "wx/icon.h" | |
8166ab43 | 21 | #include "wx/log.h" |
f618020a | 22 | |
130d96dc JJ |
23 | #ifdef __VMS |
24 | #pragma message disable nosimpint | |
25 | #endif | |
f618020a MB |
26 | #include <X11/Xlib.h> |
27 | #include <X11/Xatom.h> | |
130d96dc JJ |
28 | #ifdef __VMS |
29 | #pragma message enable nosimpint | |
30 | #endif | |
f618020a | 31 | |
8166ab43 VS |
32 | #ifdef __WXGTK20__ |
33 | #include <gdk/gdk.h> | |
34 | #include <gdk/gdkx.h> | |
35 | #endif | |
36 | ||
37 | // Various X11 Atoms used in this file: | |
38 | static Atom _NET_WM_ICON = 0; | |
39 | static Atom _NET_WM_STATE = 0; | |
40 | static Atom _NET_WM_STATE_FULLSCREEN = 0; | |
41 | static Atom _NET_WM_STATE_STAYS_ON_TOP = 0; | |
42 | static Atom _NET_WM_WINDOW_TYPE = 0; | |
43 | static Atom _NET_WM_WINDOW_TYPE_NORMAL = 0; | |
44 | static Atom _KDE_NET_WM_WINDOW_TYPE_OVERRIDE = 0; | |
45 | static Atom _WIN_LAYER = 0; | |
46 | static Atom KWIN_RUNNING = 0; | |
47 | #ifndef __WXGTK20__ | |
48 | static Atom _NET_SUPPORTING_WM_CHECK = 0; | |
49 | static Atom _NET_SUPPORTED = 0; | |
50 | #endif | |
51 | ||
52 | #define wxMAKE_ATOM(name, display) \ | |
53 | if (name == 0) name = XInternAtom((display), #name, False) | |
54 | ||
55 | ||
56 | // Is the window mapped? | |
57 | static bool IsMapped(Display *display, Window window) | |
58 | { | |
59 | XWindowAttributes attr; | |
60 | XGetWindowAttributes(display, window, &attr); | |
61 | return (attr.map_state != IsUnmapped); | |
62 | } | |
63 | ||
64 | ||
65 | ||
66 | // Suspends X11 errors. Used when we expect errors but they are not fatal | |
67 | // for us. | |
68 | class wxX11ErrorsSuspender | |
69 | { | |
70 | public: | |
71 | wxX11ErrorsSuspender(Display *d) : m_display(d) | |
72 | { | |
73 | m_old = XSetErrorHandler(handler); | |
74 | } | |
75 | ~wxX11ErrorsSuspender() | |
76 | { | |
77 | XFlush(m_display); | |
78 | XSetErrorHandler(m_old); | |
79 | } | |
80 | private: | |
81 | Display *m_display; | |
82 | int (*m_old)(Display*, XErrorEvent *); | |
83 | static int handler(Display *, XErrorEvent *) { return 0; } | |
84 | }; | |
85 | ||
86 | ||
87 | ||
88 | // ---------------------------------------------------------------------------- | |
89 | // Setting icons for window manager: | |
90 | // ---------------------------------------------------------------------------- | |
91 | ||
f618020a MB |
92 | void wxSetIconsX11( WXDisplay* display, WXWindow window, |
93 | const wxIconBundle& ib ) | |
94 | { | |
8601b2e1 | 95 | #if !wxUSE_NANOX |
f618020a MB |
96 | size_t size = 0; |
97 | size_t i, max = ib.m_icons.GetCount(); | |
98 | ||
99 | for( i = 0; i < max; ++i ) | |
7efaed4d MB |
100 | if( ib.m_icons[i].Ok() ) |
101 | size += 2 + ib.m_icons[i].GetWidth() * ib.m_icons[i].GetHeight(); | |
f618020a | 102 | |
8166ab43 | 103 | wxMAKE_ATOM(_NET_WM_ICON, (Display*)display); |
f618020a MB |
104 | |
105 | if( size > 0 ) | |
106 | { | |
23c98a6e RR |
107 | // The code below is correct for 64-bit machines also. |
108 | // wxUint32* data = new wxUint32[size]; | |
109 | // wxUint32* ptr = data; | |
110 | unsigned long* data = new unsigned long[size]; | |
111 | unsigned long* ptr = data; | |
f618020a MB |
112 | |
113 | for( i = 0; i < max; ++i ) | |
114 | { | |
115 | const wxImage image = ib.m_icons[i].ConvertToImage(); | |
116 | int width = image.GetWidth(), height = image.GetHeight(); | |
117 | unsigned char* imageData = image.GetData(); | |
118 | unsigned char* imageDataEnd = imageData + ( width * height * 3 ); | |
119 | bool hasMask = image.HasMask(); | |
120 | unsigned char rMask, gMask, bMask; | |
121 | unsigned char r, g, b, a; | |
122 | ||
123 | if( hasMask ) | |
124 | { | |
125 | rMask = image.GetMaskRed(); | |
126 | gMask = image.GetMaskGreen(); | |
127 | bMask = image.GetMaskBlue(); | |
128 | } | |
0fc5dbf5 VZ |
129 | else // no mask, but still init the variables to avoid warnings |
130 | { | |
131 | rMask = | |
132 | gMask = | |
133 | bMask = 0; | |
134 | } | |
f618020a MB |
135 | |
136 | *ptr++ = width; | |
137 | *ptr++ = height; | |
138 | ||
139 | while( imageData < imageDataEnd ) { | |
140 | r = imageData[0]; | |
141 | g = imageData[1]; | |
142 | b = imageData[2]; | |
143 | if( hasMask && r == rMask && g == gMask && b == bMask ) | |
144 | a = 0; | |
145 | else | |
146 | a = 255; | |
147 | ||
148 | *ptr++ = ( a << 24 ) | ( r << 16 ) | ( g << 8 ) | b; | |
149 | ||
150 | imageData += 3; | |
151 | } | |
152 | } | |
153 | ||
154 | XChangeProperty( (Display*)display, | |
155 | (Window)window, | |
8166ab43 | 156 | _NET_WM_ICON, |
f618020a MB |
157 | XA_CARDINAL, 32, |
158 | PropModeReplace, | |
159 | (unsigned char*)data, size ); | |
160 | delete[] data; | |
161 | } | |
162 | else | |
163 | { | |
164 | XDeleteProperty( (Display*)display, | |
165 | (Window)window, | |
8166ab43 | 166 | _NET_WM_ICON ); |
f618020a | 167 | } |
8601b2e1 | 168 | #endif |
f618020a MB |
169 | } |
170 | ||
8166ab43 VS |
171 | |
172 | // ---------------------------------------------------------------------------- | |
173 | // Fullscreen mode: | |
174 | // ---------------------------------------------------------------------------- | |
175 | ||
176 | // NB: Setting fullscreen mode under X11 is a complicated matter. There was | |
177 | // no standard way of doing it until recently. ICCCM doesn't know the | |
178 | // concept of fullscreen windows and the only way to make a window | |
179 | // fullscreen is to remove decorations, resize it to cover entire screen | |
180 | // and set WIN_LAYER_ABOVE_DOCK. | |
181 | // | |
182 | // This doesn't always work, though. Specifically, at least kwin from | |
183 | // KDE 3 ignores the hint. The only way to make kwin accept our request | |
184 | // is to emulate the way Qt does it. That is, unmap the window, set | |
185 | // _NET_WM_WINDOW_TYPE to _KDE_NET_WM_WINDOW_TYPE_OVERRIDE (KDE extension), | |
186 | // add _NET_WM_STATE_STAYS_ON_TOP (ditto) to _NET_WM_STATE and map | |
187 | // the window again. | |
188 | // | |
189 | // Version 1.2 of Window Manager Specification (aka wm-spec aka | |
190 | // Extended Window Manager Hints) introduced _NET_WM_STATE_FULLSCREEN | |
191 | // window state which provides cleanest and simplest possible way of | |
192 | // making a window fullscreen. WM-spec is a de-facto standard adopted | |
193 | // by GNOME and KDE folks, but _NET_WM_STATE_FULLSCREEN isn't yet widely | |
194 | // supported. As of January 2003, only GNOME 2's default WM Metacity | |
195 | // implements, KDE will support it from version 3.2. At toolkits level, | |
196 | // GTK+ >= 2.1.2 uses it as the only method of making windows fullscreen | |
197 | // (that's why wxGTK will *not* switch to using gtk_window_fullscreen | |
198 | // unless it has better compatiblity with older WMs). | |
199 | // | |
200 | // | |
201 | // This is what wxWindows does in wxSetFullScreenStateX11: | |
202 | // 1) if _NET_WM_STATE_FULLSCREEN is supported, use it | |
203 | // 2) otherwise try WM-specific hacks (KDE, IceWM) | |
204 | // 3) use _WIN_LAYER and hope that the WM will recognize it | |
205 | // The code was tested with: | |
206 | // twm, IceWM, WindowMaker, Metacity, kwin, sawfish, lesstif-mwm | |
207 | ||
208 | ||
209 | #define WIN_LAYER_NORMAL 4 | |
210 | #define WIN_LAYER_ABOVE_DOCK 10 | |
211 | ||
212 | static void wxWinHintsSetLayer(Display *display, Window rootWnd, | |
213 | Window window, int layer) | |
214 | { | |
215 | wxX11ErrorsSuspender noerrors(display); | |
216 | ||
217 | XEvent xev; | |
218 | ||
219 | wxMAKE_ATOM( _WIN_LAYER, display ); | |
220 | ||
221 | if (IsMapped(display, window)) | |
222 | { | |
223 | xev.type = ClientMessage; | |
224 | xev.xclient.type = ClientMessage; | |
225 | xev.xclient.window = window; | |
226 | xev.xclient.message_type = _WIN_LAYER; | |
227 | xev.xclient.format = 32; | |
228 | xev.xclient.data.l[0] = (long)layer; | |
229 | xev.xclient.data.l[1] = CurrentTime; | |
230 | ||
231 | XSendEvent(display, rootWnd, False, | |
232 | SubstructureNotifyMask, (XEvent*) &xev); | |
233 | } | |
234 | else | |
235 | { | |
236 | long data[1]; | |
237 | ||
238 | data[0] = layer; | |
239 | XChangeProperty(display, window, | |
240 | _WIN_LAYER, XA_CARDINAL, 32, | |
241 | PropModeReplace, (unsigned char *)data, 1); | |
242 | } | |
243 | } | |
244 | ||
245 | ||
246 | ||
247 | #ifdef __WXGTK20__ | |
248 | static bool wxQueryWMspecSupport(Display* WXUNUSED(display), | |
249 | Window WXUNUSED(rootWnd), | |
250 | Atom (feature)) | |
251 | { | |
252 | GdkAtom gatom = gdk_x11_xatom_to_atom(feature); | |
253 | return gdk_net_wm_supports(gatom); | |
254 | } | |
255 | #else | |
256 | static bool wxQueryWMspecSupport(Display *display, Window rootWnd, Atom feature) | |
257 | { | |
258 | wxMAKE_ATOM(_NET_SUPPORTING_WM_CHECK, display); | |
259 | wxMAKE_ATOM(_NET_SUPPORTED, display); | |
260 | ||
261 | // FIXME: We may want to cache these checks. Note that we can't simply | |
262 | // remember the results in global variable because the WM may go | |
263 | // away and be replaced by another one! One possible approach | |
264 | // would be invalidate the case every 15 seconds or so. Since this | |
265 | // code is currently only used by wxTopLevelWindow::ShowFullScreen, | |
266 | // it is not important that it is not optimized. | |
267 | // | |
268 | // If the WM supports ICCCM (i.e. the root window has | |
269 | // _NET_SUPPORTING_WM_CHECK property that points to a WM-owned | |
270 | // window), we could watch for DestroyNotify event on the window | |
271 | // and invalidate our cache when the windows goes away (= WM | |
272 | // is replaced by another one). This is what GTK+ 2 does. | |
273 | // Let's do it only if it is needed, it requires changes to | |
274 | // the event loop. | |
275 | ||
276 | Atom type; | |
277 | Window *wins; | |
278 | Atom *atoms; | |
279 | int format; | |
280 | unsigned long after; | |
281 | unsigned long nwins, natoms; | |
282 | ||
283 | // Is the WM ICCCM supporting? | |
284 | XGetWindowProperty(display, rootWnd, | |
5a2db5f1 | 285 | _NET_SUPPORTING_WM_CHECK, 0, LONG_MAX, |
8166ab43 VS |
286 | False, XA_WINDOW, &type, &format, &nwins, |
287 | &after, (unsigned char **)&wins); | |
288 | if ( type != XA_WINDOW || nwins <= 0 || wins[0] == None ) | |
289 | return FALSE; | |
290 | XFree(wins); | |
291 | ||
292 | // Query for supported features: | |
293 | XGetWindowProperty(display, rootWnd, | |
7f891ef1 | 294 | _NET_SUPPORTED, 0, LONG_MAX, |
8166ab43 VS |
295 | False, XA_ATOM, &type, &format, &natoms, |
296 | &after, (unsigned char **)&atoms); | |
297 | if ( type != XA_ATOM || atoms == NULL ) | |
298 | return FALSE; | |
299 | ||
300 | // Lookup the feature we want: | |
301 | for (unsigned i = 0; i < natoms; i++) | |
302 | { | |
303 | if ( atoms[i] == feature ) | |
304 | { | |
305 | XFree(atoms); | |
306 | return TRUE; | |
307 | } | |
308 | } | |
309 | XFree(atoms); | |
310 | return FALSE; | |
311 | } | |
f618020a | 312 | #endif |
8166ab43 VS |
313 | |
314 | ||
315 | #define _NET_WM_STATE_REMOVE 0 | |
316 | #define _NET_WM_STATE_ADD 1 | |
317 | ||
318 | static void wxWMspecSetState(Display *display, Window rootWnd, | |
319 | Window window, int operation, Atom state) | |
320 | { | |
321 | wxMAKE_ATOM(_NET_WM_STATE, display); | |
322 | ||
323 | if ( IsMapped(display, window) ) | |
324 | { | |
325 | XEvent xev; | |
326 | xev.type = ClientMessage; | |
327 | xev.xclient.type = ClientMessage; | |
328 | xev.xclient.serial = 0; | |
329 | xev.xclient.send_event = True; | |
330 | xev.xclient.display = display; | |
331 | xev.xclient.window = window; | |
332 | xev.xclient.message_type = _NET_WM_STATE; | |
333 | xev.xclient.format = 32; | |
334 | xev.xclient.data.l[0] = operation; | |
335 | xev.xclient.data.l[1] = state; | |
336 | xev.xclient.data.l[2] = None; | |
337 | ||
338 | XSendEvent(display, rootWnd, | |
339 | False, | |
340 | SubstructureRedirectMask | SubstructureNotifyMask, | |
341 | &xev); | |
342 | } | |
343 | // FIXME - must modify _NET_WM_STATE property list if the window | |
344 | // wasn't mapped! | |
345 | } | |
346 | ||
347 | static void wxWMspecSetFullscreen(Display *display, Window rootWnd, | |
348 | Window window, bool fullscreen) | |
349 | { | |
350 | wxMAKE_ATOM(_NET_WM_STATE_FULLSCREEN, display); | |
351 | wxWMspecSetState(display, rootWnd, | |
352 | window, | |
353 | fullscreen ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE, | |
354 | _NET_WM_STATE_FULLSCREEN); | |
355 | } | |
356 | ||
357 | ||
358 | // Is the user running KDE's kwin window manager? At least kwin from KDE 3 | |
359 | // sets KWIN_RUNNING property on the root window. | |
360 | static bool wxKwinRunning(Display *display, Window rootWnd) | |
361 | { | |
362 | wxMAKE_ATOM(KWIN_RUNNING, display); | |
363 | ||
364 | long *data; | |
365 | Atom type; | |
366 | int format; | |
367 | unsigned long nitems, after; | |
368 | if (XGetWindowProperty(display, rootWnd, | |
369 | KWIN_RUNNING, 0, 1, False, KWIN_RUNNING, | |
370 | &type, &format, &nitems, &after, | |
371 | (unsigned char**)&data) != Success) | |
372 | { | |
373 | return FALSE; | |
374 | } | |
375 | ||
376 | bool retval = (type == KWIN_RUNNING && | |
377 | nitems == 1 && data && data[0] == 1); | |
378 | XFree(data); | |
379 | return retval; | |
380 | } | |
381 | ||
382 | // KDE's kwin is Qt-centric so much than no normal method of fullscreen | |
383 | // mode will work with it. We have to carefully emulate the Qt way. | |
384 | static void wxSetKDEFullscreen(Display *display, Window rootWnd, | |
385 | Window w, bool fullscreen, wxRect *origRect) | |
386 | { | |
387 | long data[2]; | |
388 | unsigned lng; | |
389 | ||
390 | wxMAKE_ATOM(_NET_WM_WINDOW_TYPE, display); | |
391 | wxMAKE_ATOM(_NET_WM_WINDOW_TYPE_NORMAL, display); | |
392 | wxMAKE_ATOM(_KDE_NET_WM_WINDOW_TYPE_OVERRIDE, display); | |
393 | wxMAKE_ATOM(_NET_WM_STATE_STAYS_ON_TOP, display); | |
394 | ||
395 | if (fullscreen) | |
396 | { | |
397 | data[0] = _KDE_NET_WM_WINDOW_TYPE_OVERRIDE; | |
398 | data[1] = _NET_WM_WINDOW_TYPE_NORMAL; | |
399 | lng = 2; | |
400 | } | |
401 | else | |
402 | { | |
403 | data[0] = _NET_WM_WINDOW_TYPE_NORMAL; | |
404 | data[1] = None; | |
405 | lng = 1; | |
406 | } | |
407 | ||
408 | // it is neccessary to unmap the window, otherwise kwin will ignore us: | |
1cff04de VS |
409 | XSync(display, False); |
410 | ||
8166ab43 VS |
411 | bool wasMapped = IsMapped(display, w); |
412 | if (wasMapped) | |
1cff04de | 413 | { |
8166ab43 | 414 | XUnmapWindow(display, w); |
1cff04de VS |
415 | XSync(display, False); |
416 | } | |
417 | ||
8166ab43 VS |
418 | XChangeProperty(display, w, _NET_WM_WINDOW_TYPE, XA_ATOM, 32, |
419 | PropModeReplace, (unsigned char *) &data, lng); | |
1cff04de VS |
420 | XSync(display, False); |
421 | ||
8166ab43 | 422 | if (wasMapped) |
1cff04de | 423 | { |
8166ab43 | 424 | XMapRaised(display, w); |
1cff04de VS |
425 | XSync(display, False); |
426 | } | |
8166ab43 VS |
427 | |
428 | wxWMspecSetState(display, rootWnd, w, | |
429 | fullscreen ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE, | |
430 | _NET_WM_STATE_STAYS_ON_TOP); | |
1cff04de | 431 | XSync(display, False); |
8166ab43 VS |
432 | |
433 | if (!fullscreen) | |
434 | { | |
435 | // NB: like many other WMs, kwin ignores first request for window | |
436 | // position change after the window was mapped. This additional | |
437 | // move+resize event will ensure that the window is restored in | |
438 | // exactly same position as before it was made fullscreen (because | |
439 | // wxTopLevelWindow::ShowFullScreen will call SetSize, thus | |
440 | // setting the position for second time). | |
441 | XMoveResizeWindow(display, w, | |
442 | origRect->x, origRect->y, | |
443 | origRect->width, origRect->height); | |
1cff04de | 444 | XSync(display, False); |
8166ab43 VS |
445 | } |
446 | } | |
447 | ||
448 | ||
449 | wxX11FullScreenMethod wxGetFullScreenMethodX11(WXDisplay* display, | |
450 | WXWindow rootWindow) | |
451 | { | |
452 | Window root = (Window)rootWindow; | |
453 | Display *disp = (Display*)display; | |
454 | ||
455 | // if WM supports _NET_WM_STATE_FULLSCREEN from wm-spec 1.2, use it: | |
456 | wxMAKE_ATOM(_NET_WM_STATE_FULLSCREEN, disp); | |
457 | if (wxQueryWMspecSupport(disp, root, _NET_WM_STATE_FULLSCREEN)) | |
458 | { | |
459 | wxLogTrace(_T("fullscreen"), | |
460 | _T("detected _NET_WM_STATE_FULLSCREEN support")); | |
461 | return wxX11_FS_WMSPEC; | |
462 | } | |
463 | ||
464 | // if the user is running KDE's kwin WM, use a legacy hack because | |
465 | // kwin doesn't understand any other method: | |
466 | if (wxKwinRunning(disp, root)) | |
467 | { | |
468 | wxLogTrace(_T("fullscreen"), _T("detected kwin")); | |
469 | return wxX11_FS_KDE; | |
470 | } | |
471 | ||
472 | // finally, fall back to ICCCM heuristic method: | |
473 | wxLogTrace(_T("fullscreen"), _T("unknown WM, using _WIN_LAYER")); | |
474 | return wxX11_FS_GENERIC; | |
475 | } | |
476 | ||
477 | ||
478 | void wxSetFullScreenStateX11(WXDisplay* display, WXWindow rootWindow, | |
479 | WXWindow window, bool show, | |
480 | wxRect *origRect, | |
481 | wxX11FullScreenMethod method) | |
482 | { | |
483 | // NB: please see the comment under "Fullscreen mode:" title above | |
484 | // for implications of changing this code. | |
485 | ||
486 | Window wnd = (Window)window; | |
487 | Window root = (Window)rootWindow; | |
488 | Display *disp = (Display*)display; | |
489 | ||
490 | if (method == wxX11_FS_AUTODETECT) | |
491 | method = wxGetFullScreenMethodX11(display, rootWindow); | |
492 | ||
493 | switch (method) | |
494 | { | |
495 | case wxX11_FS_WMSPEC: | |
496 | wxWMspecSetFullscreen(disp, root, wnd, show); | |
497 | break; | |
498 | case wxX11_FS_KDE: | |
499 | wxSetKDEFullscreen(disp, root, wnd, show, origRect); | |
500 | break; | |
501 | default: | |
502 | wxWinHintsSetLayer(disp, root, wnd, | |
503 | show ? WIN_LAYER_ABOVE_DOCK : WIN_LAYER_NORMAL); | |
504 | break; | |
505 | } | |
506 | } | |
507 | ||
508 | #endif | |
509 |