Fix an unsigned/signed warning.
[dana/openbox.git] / openbox / screen.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    screen.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "debug.h"
21 #include "openbox.h"
22 #include "dock.h"
23 #include "grab.h"
24 #include "startupnotify.h"
25 #include "moveresize.h"
26 #include "config.h"
27 #include "screen.h"
28 #include "client.h"
29 #include "session.h"
30 #include "frame.h"
31 #include "event.h"
32 #include "focus.h"
33 #include "popup.h"
34 #include "render/render.h"
35 #include "gettext.h"
36 #include "obt/display.h"
37 #include "obt/prop.h"
38 #include "obt/mainloop.h"
39
40 #include <X11/Xlib.h>
41 #ifdef HAVE_UNISTD_H
42 #  include <sys/types.h>
43 #  include <unistd.h>
44 #endif
45 #include <assert.h>
46
47 /*! The event mask to grab on the root window */
48 #define ROOT_EVENTMASK (StructureNotifyMask | PropertyChangeMask | \
49                         EnterWindowMask | LeaveWindowMask | \
50                         SubstructureRedirectMask | FocusChangeMask | \
51                         ButtonPressMask | ButtonReleaseMask)
52
53 static gboolean screen_validate_layout(ObDesktopLayout *l);
54 static gboolean replace_wm(void);
55 static void     screen_tell_ksplash(void);
56 static void     screen_fallback_focus(void);
57
58 guint           screen_num_desktops;
59 guint           screen_num_monitors;
60 guint           screen_desktop;
61 guint           screen_last_desktop;
62 gboolean        screen_showing_desktop;
63 ObDesktopLayout screen_desktop_layout;
64 gchar         **screen_desktop_names;
65 Window          screen_support_win;
66 Time            screen_desktop_user_time = CurrentTime;
67
68 static Size     screen_physical_size;
69 static guint    screen_old_desktop;
70 static gboolean screen_desktop_timeout = TRUE;
71 /*! An array of desktops, holding an array of areas per monitor */
72 static Rect  *monitor_area = NULL;
73 /*! An array of desktops, holding an array of struts */
74 static GSList *struts_top = NULL;
75 static GSList *struts_left = NULL;
76 static GSList *struts_right = NULL;
77 static GSList *struts_bottom = NULL;
78
79 static ObPagerPopup **desktop_popup;
80
81 /*! The number of microseconds that you need to be on a desktop before it will
82   replace the remembered "last desktop" */
83 #define REMEMBER_LAST_DESKTOP_TIME 750000
84
85 static gboolean replace_wm(void)
86 {
87     gchar *wm_sn;
88     Atom wm_sn_atom;
89     Window current_wm_sn_owner;
90     Time timestamp;
91
92     wm_sn = g_strdup_printf("WM_S%d", ob_screen);
93     wm_sn_atom = XInternAtom(obt_display, wm_sn, FALSE);
94     g_free(wm_sn);
95
96     current_wm_sn_owner = XGetSelectionOwner(obt_display, wm_sn_atom);
97     if (current_wm_sn_owner == screen_support_win)
98         current_wm_sn_owner = None;
99     if (current_wm_sn_owner) {
100         if (!ob_replace_wm) {
101             g_message(_("A window manager is already running on screen %d"),
102                       ob_screen);
103             return FALSE;
104         }
105         obt_display_ignore_errors(TRUE);
106
107         /* We want to find out when the current selection owner dies */
108         XSelectInput(obt_display, current_wm_sn_owner, StructureNotifyMask);
109         XSync(obt_display, FALSE);
110
111         obt_display_ignore_errors(FALSE);
112         if (obt_display_error_occured)
113             current_wm_sn_owner = None;
114     }
115
116     timestamp = event_get_server_time();
117
118     XSetSelectionOwner(obt_display, wm_sn_atom, screen_support_win,
119                        timestamp);
120
121     if (XGetSelectionOwner(obt_display, wm_sn_atom) != screen_support_win) {
122         g_message(_("Could not acquire window manager selection on screen %d"),
123                   ob_screen);
124         return FALSE;
125     }
126
127     /* Wait for old window manager to go away */
128     if (current_wm_sn_owner) {
129       XEvent event;
130       gulong wait = 0;
131       const gulong timeout = G_USEC_PER_SEC * 15; /* wait for 15s max */
132
133       while (wait < timeout) {
134           if (XCheckWindowEvent(obt_display, current_wm_sn_owner,
135                                 StructureNotifyMask, &event) &&
136               event.type == DestroyNotify)
137               break;
138           g_usleep(G_USEC_PER_SEC / 10);
139           wait += G_USEC_PER_SEC / 10;
140       }
141
142       if (wait >= timeout) {
143           g_message(_("The WM on screen %d is not exiting"), ob_screen);
144           return FALSE;
145       }
146     }
147
148     /* Send client message indicating that we are now the WM */
149     obt_prop_message(ob_screen, obt_root(ob_screen), OBT_PROP_ATOM(MANAGER),
150                      timestamp, wm_sn_atom, screen_support_win, 0, 0,
151                      SubstructureNotifyMask);
152
153     return TRUE;
154 }
155
156 gboolean screen_annex(void)
157 {
158     XSetWindowAttributes attrib;
159     pid_t pid;
160     gint i, num_support;
161     gulong *supported;
162
163     /* create the netwm support window */
164     attrib.override_redirect = TRUE;
165     attrib.event_mask = PropertyChangeMask;
166     screen_support_win = XCreateWindow(obt_display, obt_root(ob_screen),
167                                        -100, -100, 1, 1, 0,
168                                        CopyFromParent, InputOutput,
169                                        CopyFromParent,
170                                        CWEventMask | CWOverrideRedirect,
171                                        &attrib);
172     XMapWindow(obt_display, screen_support_win);
173     XLowerWindow(obt_display, screen_support_win);
174
175     if (!replace_wm()) {
176         XDestroyWindow(obt_display, screen_support_win);
177         return FALSE;
178     }
179
180     obt_display_ignore_errors(TRUE);
181     XSelectInput(obt_display, obt_root(ob_screen), ROOT_EVENTMASK);
182     obt_display_ignore_errors(FALSE);
183     if (obt_display_error_occured) {
184         g_message(_("A window manager is already running on screen %d"),
185                   ob_screen);
186
187         XDestroyWindow(obt_display, screen_support_win);
188         return FALSE;
189     }
190
191     screen_set_root_cursor();
192
193     /* set the OPENBOX_PID hint */
194     pid = getpid();
195     OBT_PROP_SET32(obt_root(ob_screen), OPENBOX_PID, CARDINAL, pid);
196
197     /* set supporting window */
198     OBT_PROP_SET32(obt_root(ob_screen),
199                    NET_SUPPORTING_WM_CHECK, WINDOW, screen_support_win);
200
201     /* set properties on the supporting window */
202     OBT_PROP_SETS(screen_support_win, NET_WM_NAME, utf8, "Openbox");
203     OBT_PROP_SET32(screen_support_win, NET_SUPPORTING_WM_CHECK,
204                    WINDOW, screen_support_win);
205
206     /* set the _NET_SUPPORTED_ATOMS hint */
207
208     /* this is all the atoms after NET_SUPPORTED in the ObtPropAtoms enum */
209     num_support = OBT_PROP_NUM_ATOMS - OBT_PROP_NET_SUPPORTED - 1;
210     i = 0;
211     supported = g_new(gulong, num_support);
212     supported[i++] = OBT_PROP_ATOM(NET_SUPPORTING_WM_CHECK);
213     supported[i++] = OBT_PROP_ATOM(NET_WM_FULL_PLACEMENT);
214     supported[i++] = OBT_PROP_ATOM(NET_CURRENT_DESKTOP);
215     supported[i++] = OBT_PROP_ATOM(NET_NUMBER_OF_DESKTOPS);
216     supported[i++] = OBT_PROP_ATOM(NET_DESKTOP_GEOMETRY);
217     supported[i++] = OBT_PROP_ATOM(NET_DESKTOP_VIEWPORT);
218     supported[i++] = OBT_PROP_ATOM(NET_ACTIVE_WINDOW);
219     supported[i++] = OBT_PROP_ATOM(NET_WORKAREA);
220     supported[i++] = OBT_PROP_ATOM(NET_CLIENT_LIST);
221     supported[i++] = OBT_PROP_ATOM(NET_CLIENT_LIST_STACKING);
222     supported[i++] = OBT_PROP_ATOM(NET_DESKTOP_NAMES);
223     supported[i++] = OBT_PROP_ATOM(NET_CLOSE_WINDOW);
224     supported[i++] = OBT_PROP_ATOM(NET_DESKTOP_LAYOUT);
225     supported[i++] = OBT_PROP_ATOM(NET_SHOWING_DESKTOP);
226     supported[i++] = OBT_PROP_ATOM(NET_WM_NAME);
227     supported[i++] = OBT_PROP_ATOM(NET_WM_VISIBLE_NAME);
228     supported[i++] = OBT_PROP_ATOM(NET_WM_ICON_NAME);
229     supported[i++] = OBT_PROP_ATOM(NET_WM_VISIBLE_ICON_NAME);
230     supported[i++] = OBT_PROP_ATOM(NET_WM_DESKTOP);
231     supported[i++] = OBT_PROP_ATOM(NET_WM_STRUT);
232     supported[i++] = OBT_PROP_ATOM(NET_WM_STRUT_PARTIAL);
233     supported[i++] = OBT_PROP_ATOM(NET_WM_ICON);
234     supported[i++] = OBT_PROP_ATOM(NET_WM_ICON_GEOMETRY);
235     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE);
236     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_DESKTOP);
237     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_DOCK);
238     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_TOOLBAR);
239     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_MENU);
240     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_UTILITY);
241     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_SPLASH);
242     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_DIALOG);
243     supported[i++] = OBT_PROP_ATOM(NET_WM_WINDOW_TYPE_NORMAL);
244     supported[i++] = OBT_PROP_ATOM(NET_WM_ALLOWED_ACTIONS);
245     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_MOVE);
246     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_RESIZE);
247     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_MINIMIZE);
248     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_SHADE);
249     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_MAXIMIZE_HORZ);
250     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_MAXIMIZE_VERT);
251     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_FULLSCREEN);
252     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_CHANGE_DESKTOP);
253     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_CLOSE);
254     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_ABOVE);
255     supported[i++] = OBT_PROP_ATOM(NET_WM_ACTION_BELOW);
256     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE);
257     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_MODAL);
258     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_MAXIMIZED_VERT);
259     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_MAXIMIZED_HORZ);
260     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_SHADED);
261     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_SKIP_TASKBAR);
262     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_SKIP_PAGER);
263     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_HIDDEN);
264     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_FULLSCREEN);
265     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_ABOVE);
266     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_BELOW);
267     supported[i++] = OBT_PROP_ATOM(NET_WM_STATE_DEMANDS_ATTENTION);
268     supported[i++] = OBT_PROP_ATOM(NET_MOVERESIZE_WINDOW);
269     supported[i++] = OBT_PROP_ATOM(NET_WM_MOVERESIZE);
270     supported[i++] = OBT_PROP_ATOM(NET_WM_USER_TIME);
271 /*
272     supported[i++] = OBT_PROP_ATOM(NET_WM_USER_TIME_WINDOW);
273 */
274     supported[i++] = OBT_PROP_ATOM(NET_FRAME_EXTENTS);
275     supported[i++] = OBT_PROP_ATOM(NET_REQUEST_FRAME_EXTENTS);
276     supported[i++] = OBT_PROP_ATOM(NET_RESTACK_WINDOW);
277     supported[i++] = OBT_PROP_ATOM(NET_STARTUP_ID);
278 #ifdef SYNC
279     supported[i++] = OBT_PROP_ATOM(NET_WM_SYNC_REQUEST);
280     supported[i++] = OBT_PROP_ATOM(NET_WM_SYNC_REQUEST_COUNTER);
281 #endif
282     supported[i++] = OBT_PROP_ATOM(NET_WM_PID);
283     supported[i++] = OBT_PROP_ATOM(NET_WM_PING);
284
285     supported[i++] = OBT_PROP_ATOM(KDE_WM_CHANGE_STATE);
286     supported[i++] = OBT_PROP_ATOM(KDE_NET_WM_FRAME_STRUT);
287     supported[i++] = OBT_PROP_ATOM(KDE_NET_WM_WINDOW_TYPE_OVERRIDE);
288
289     supported[i++] = OBT_PROP_ATOM(OB_WM_ACTION_UNDECORATE);
290     supported[i++] = OBT_PROP_ATOM(OB_WM_STATE_UNDECORATED);
291     supported[i++] = OBT_PROP_ATOM(OPENBOX_PID);
292     supported[i++] = OBT_PROP_ATOM(OB_THEME);
293     supported[i++] = OBT_PROP_ATOM(OB_CONFIG_FILE);
294     supported[i++] = OBT_PROP_ATOM(OB_CONTROL);
295     g_assert(i == num_support);
296
297     OBT_PROP_SETA32(obt_root(ob_screen),
298                     NET_SUPPORTED, ATOM, supported, num_support);
299     g_free(supported);
300
301     screen_tell_ksplash();
302
303     return TRUE;
304 }
305
306 static void screen_tell_ksplash(void)
307 {
308     XEvent e;
309     char **argv;
310
311     argv = g_new(gchar*, 6);
312     argv[0] = g_strdup("dcop");
313     argv[1] = g_strdup("ksplash");
314     argv[2] = g_strdup("ksplash");
315     argv[3] = g_strdup("upAndRunning(QString)");
316     argv[4] = g_strdup("wm started");
317     argv[5] = NULL;
318
319     /* tell ksplash through the dcop server command line interface */
320     g_spawn_async(NULL, argv, NULL,
321                   G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD |
322                   G_SPAWN_STDERR_TO_DEV_NULL | G_SPAWN_STDOUT_TO_DEV_NULL,
323                   NULL, NULL, NULL, NULL);
324     g_strfreev(argv);
325
326     /* i'm not sure why we do this, kwin does it, but ksplash doesn't seem to
327        hear it anyways. perhaps it is for old ksplash. or new ksplash. or
328        something. oh well. */
329     e.xclient.type = ClientMessage;
330     e.xclient.display = obt_display;
331     e.xclient.window = obt_root(ob_screen);
332     e.xclient.message_type =
333         XInternAtom(obt_display, "_KDE_SPLASH_PROGRESS", False);
334     e.xclient.format = 8;
335     strcpy(e.xclient.data.b, "wm started");
336     XSendEvent(obt_display, obt_root(ob_screen),
337                False, SubstructureNotifyMask, &e);
338 }
339
340 void screen_startup(gboolean reconfig)
341 {
342     gchar **names = NULL;
343     guint32 d;
344     gboolean namesexist = FALSE;
345
346     if (reconfig) {
347         guint i;
348         desktop_popup = g_new(ObPagerPopup*, screen_num_monitors);
349         for (i = 0; i < screen_num_monitors; i++) {
350             desktop_popup[i] = pager_popup_new();
351             pager_popup_height(desktop_popup[i], POPUP_HEIGHT);
352
353             /* update the pager popup's width */
354             pager_popup_text_width_to_strings(desktop_popup[i],
355                                               screen_desktop_names,
356                                               screen_num_desktops);
357         }
358
359         return;
360     } else {
361         desktop_popup = NULL;
362     }
363
364     /* get the initial size */
365     screen_resize();
366
367     /* have names already been set for the desktops? */
368     if (OBT_PROP_GETSS(obt_root(ob_screen), NET_DESKTOP_NAMES, utf8, &names)) {
369         g_strfreev(names);
370         namesexist = TRUE;
371     }
372
373     /* if names don't exist and we have session names, set those.
374        do this stuff BEFORE setting the number of desktops, because that
375        will create default names for them
376     */
377     if (!namesexist && session_desktop_names != NULL) {
378         guint i, numnames;
379         GSList *it;
380
381         /* get the desktop names */
382         numnames = g_slist_length(session_desktop_names);
383         names = g_new(gchar*, numnames + 1);
384         names[numnames] = NULL;
385         for (i = 0, it = session_desktop_names; it; ++i, it = g_slist_next(it))
386             names[i] = g_strdup(it->data);
387
388         /* set the root window property */
389         OBT_PROP_SETSS(obt_root(ob_screen),
390                        NET_DESKTOP_NAMES, utf8, (const gchar**)names);
391
392         g_strfreev(names);
393     }
394
395     /* set the number of desktops, if it's not already set.
396
397        this will also set the default names from the config file up for
398        desktops that don't have names yet */
399     screen_num_desktops = 0;
400     if (OBT_PROP_GET32(obt_root(ob_screen),
401                        NET_NUMBER_OF_DESKTOPS, CARDINAL, &d))
402     {
403         if (d != config_desktops_num) {
404             /* TRANSLATORS: If you need to specify a different order of the
405                arguments, you can use %1$d for the first one and %2$d for the
406                second one. For example,
407                "The current session has %2$d desktops, but Openbox is configured for %1$d ..." */
408             g_warning(ngettext("Openbox is configured for %d desktop, but the current session has %d.  Overriding the Openbox configuration.", "Openbox is configured for %d desktops, but the current session has %d.  Overriding the Openbox configuration.", config_desktops_num),
409                       config_desktops_num, d);
410         }
411         screen_set_num_desktops(d);
412     }
413     /* restore from session if possible */
414     else if (session_num_desktops)
415         screen_set_num_desktops(session_num_desktops);
416     else
417         screen_set_num_desktops(config_desktops_num);
418
419     screen_desktop = screen_num_desktops;  /* something invalid */
420     /* start on the current desktop when a wm was already running */
421     if (OBT_PROP_GET32(obt_root(ob_screen),
422                        NET_CURRENT_DESKTOP, CARDINAL, &d) &&
423         d < screen_num_desktops)
424     {
425         screen_set_desktop(d, FALSE);
426     } else if (session_desktop >= 0)
427         screen_set_desktop(MIN((guint)session_desktop,
428                                screen_num_desktops), FALSE);
429     else
430         screen_set_desktop(MIN(config_screen_firstdesk,
431                                screen_num_desktops) - 1, FALSE);
432     screen_last_desktop = screen_desktop;
433
434     /* don't start in showing-desktop mode */
435     screen_showing_desktop = FALSE;
436     OBT_PROP_SET32(obt_root(ob_screen),
437                    NET_SHOWING_DESKTOP, CARDINAL, screen_showing_desktop);
438
439     if (session_desktop_layout_present &&
440         screen_validate_layout(&session_desktop_layout))
441     {
442         screen_desktop_layout = session_desktop_layout;
443     }
444     else
445         screen_update_layout();
446 }
447
448 void screen_shutdown(gboolean reconfig)
449 {
450     guint i;
451
452     for (i = 0; i < screen_num_monitors; i++) {
453         pager_popup_free(desktop_popup[i]);
454     }
455     g_free(desktop_popup);
456
457     if (reconfig)
458         return;
459
460     XSelectInput(obt_display, obt_root(ob_screen), NoEventMask);
461
462     /* we're not running here no more! */
463     OBT_PROP_ERASE(obt_root(ob_screen), OPENBOX_PID);
464     /* not without us */
465     OBT_PROP_ERASE(obt_root(ob_screen), NET_SUPPORTED);
466     /* don't keep this mode */
467     OBT_PROP_ERASE(obt_root(ob_screen), NET_SHOWING_DESKTOP);
468
469     XDestroyWindow(obt_display, screen_support_win);
470
471     g_strfreev(screen_desktop_names);
472     screen_desktop_names = NULL;
473 }
474
475 void screen_resize(void)
476 {
477     static gint oldw = 0, oldh = 0;
478     gint w, h;
479     GList *it;
480     gulong geometry[2];
481
482     w = WidthOfScreen(ScreenOfDisplay(obt_display, ob_screen));
483     h = HeightOfScreen(ScreenOfDisplay(obt_display, ob_screen));
484
485     if (w == oldw && h == oldh) return;
486
487     oldw = w; oldh = h;
488
489     /* Set the _NET_DESKTOP_GEOMETRY hint */
490     screen_physical_size.width = geometry[0] = w;
491     screen_physical_size.height = geometry[1] = h;
492     OBT_PROP_SETA32(obt_root(ob_screen),
493                     NET_DESKTOP_GEOMETRY, CARDINAL, geometry, 2);
494
495     if (ob_state() != OB_STATE_RUNNING)
496         return;
497
498     screen_update_areas();
499     dock_configure();
500
501     for (it = client_list; it; it = g_list_next(it))
502         client_move_onscreen(it->data, FALSE);
503 }
504
505 void screen_set_num_desktops(guint num)
506 {
507     gulong *viewport;
508     GList *it, *stacking_copy;
509
510     g_assert(num > 0);
511
512     if (screen_num_desktops == num) return;
513
514     screen_num_desktops = num;
515     OBT_PROP_SET32(obt_root(ob_screen), NET_NUMBER_OF_DESKTOPS, CARDINAL, num);
516
517     /* set the viewport hint */
518     viewport = g_new0(gulong, num * 2);
519     OBT_PROP_SETA32(obt_root(ob_screen),
520                     NET_DESKTOP_VIEWPORT, CARDINAL, viewport, num * 2);
521     g_free(viewport);
522
523     /* the number of rows/columns will differ */
524     screen_update_layout();
525
526     /* move windows on desktops that will no longer exist!
527        make a copy of the list cuz we're changing it */
528     stacking_copy = g_list_copy(stacking_list);
529     for (it = g_list_last(stacking_copy); it; it = g_list_previous(it)) {
530         if (WINDOW_IS_CLIENT(it->data)) {
531             ObClient *c = it->data;
532             if (c->desktop != DESKTOP_ALL && c->desktop >= num)
533                 client_set_desktop(c, num - 1, FALSE, TRUE);
534             /* raise all the windows that are on the current desktop which
535                is being merged */
536             else if (screen_desktop == num - 1 &&
537                      (c->desktop == DESKTOP_ALL ||
538                       c->desktop == screen_desktop))
539                 stacking_raise(CLIENT_AS_WINDOW(c));
540         }
541     }
542     g_list_free(stacking_copy);
543
544     /* change our struts/area to match (after moving windows) */
545     screen_update_areas();
546
547     /* may be some unnamed desktops that we need to fill in with names
548        (after updating the areas so the popup can resize) */
549     screen_update_desktop_names();
550
551     /* change our desktop if we're on one that no longer exists! */
552     if (screen_desktop >= screen_num_desktops)
553         screen_set_desktop(num - 1, TRUE);
554 }
555
556 static void screen_fallback_focus(void)
557 {
558     ObClient *c;
559     gboolean allow_omni;
560
561     /* only allow omnipresent windows to get focus on desktop change if
562        an omnipresent window is already focused (it'll keep focus probably, but
563        maybe not depending on mouse-focus options) */
564     allow_omni = focus_client && (client_normal(focus_client) &&
565                                   focus_client->desktop == DESKTOP_ALL);
566
567     /* the client moved there already so don't move focus. prevent flicker
568        on sendtodesktop + follow */
569     if (focus_client && focus_client->desktop == screen_desktop)
570         return;
571
572     /* have to try focus here because when you leave an empty desktop
573        there is no focus out to watch for. also, we have different rules
574        here. we always allow it to look under the mouse pointer if
575        config_focus_last is FALSE
576
577        do this before hiding the windows so if helper windows are coming
578        with us, they don't get hidden
579     */
580     if ((c = focus_fallback(TRUE, !config_focus_last, allow_omni,
581                             !allow_omni)))
582     {
583         /* only do the flicker reducing stuff ahead of time if we are going
584            to call xsetinputfocus on the window ourselves. otherwise there is
585            no guarantee the window will actually take focus.. */
586         if (c->can_focus) {
587             /* reduce flicker by hiliting now rather than waiting for the
588                server FocusIn event */
589             frame_adjust_focus(c->frame, TRUE);
590             /* do this here so that if you switch desktops to a window with
591                helper windows then the helper windows won't flash */
592             client_bring_helper_windows(c);
593         }
594     }
595 }
596
597 static gboolean last_desktop_func(gpointer data)
598 {
599     screen_desktop_timeout = TRUE;
600     return FALSE;
601 }
602
603 void screen_set_desktop(guint num, gboolean dofocus)
604 {
605     GList *it;
606     guint previous;
607     gulong ignore_start;
608
609     g_assert(num < screen_num_desktops);
610
611     previous = screen_desktop;
612     screen_desktop = num;
613
614     if (previous == num) return;
615
616     OBT_PROP_SET32(obt_root(ob_screen), NET_CURRENT_DESKTOP, CARDINAL, num);
617
618     /* This whole thing decides when/how to save the screen_last_desktop so
619        that it can be restored later if you want */
620     if (screen_desktop_timeout) {
621         /* If screen_desktop_timeout is true, then we've been on this desktop
622            long enough and we can save it as the last desktop. */
623
624         if (screen_last_desktop == previous)
625             /* this is the startup state only */
626             screen_old_desktop = screen_desktop;
627         else {
628             /* save the "last desktop" as the "old desktop" */
629             screen_old_desktop = screen_last_desktop;
630             /* save the desktop we're coming from as the "last desktop" */
631             screen_last_desktop = previous;
632         }
633     }
634     else {
635         /* If screen_desktop_timeout is false, then we just got to this desktop
636            and we are moving away again. */
637
638         if (screen_desktop == screen_last_desktop) {
639             /* If we are moving to the "last desktop" .. */
640             if (previous == screen_old_desktop) {
641                 /* .. from the "old desktop", change the last desktop to
642                    be where we are coming from */
643                 screen_last_desktop = screen_old_desktop;
644             }
645             else if (screen_last_desktop == screen_old_desktop) {
646                 /* .. and also to the "old desktop", change the "last
647                    desktop" to be where we are coming from */
648                 screen_last_desktop = previous;
649             }
650             else {
651                 /* .. from some other desktop, then set the "last desktop" to
652                    be the saved "old desktop", i.e. where we were before the
653                    "last desktop" */
654                 screen_last_desktop = screen_old_desktop;
655             }
656         }
657         else {
658             /* If we are moving to any desktop besides the "last desktop"..
659                (this is the normal case) */
660             if (screen_desktop == screen_old_desktop) {
661                 /* If moving to the "old desktop", which is not the
662                    "last desktop", don't save anything */
663             }
664             else if (previous == screen_old_desktop) {
665                 /* If moving from the "old desktop", and not to the
666                    "last desktop", don't save anything */
667             }
668             else if (screen_last_desktop == screen_old_desktop) {
669                 /* If the "last desktop" is the same as "old desktop" and
670                    you're not moving to the "last desktop" then save where
671                    we're coming from as the "last desktop" */
672                 screen_last_desktop = previous;
673             }
674             else {
675                 /* If the "last desktop" is different from the "old desktop"
676                    and you're not moving to the "last desktop", then don't save
677                    anything */
678             }
679         }
680     }
681     screen_desktop_timeout = FALSE;
682     obt_main_loop_timeout_remove(ob_main_loop, last_desktop_func);
683     obt_main_loop_timeout_add(ob_main_loop, REMEMBER_LAST_DESKTOP_TIME,
684                               last_desktop_func, NULL, NULL, NULL);
685
686     ob_debug("Moving to desktop %d", num+1);
687
688     if (ob_state() == OB_STATE_RUNNING)
689         screen_show_desktop_popup(screen_desktop);
690
691     /* ignore enter events caused by the move */
692     ignore_start = event_start_ignore_all_enters();
693
694     if (moveresize_client)
695         client_set_desktop(moveresize_client, num, TRUE, FALSE);
696
697     /* show windows before hiding the rest to lessen the enter/leave events */
698
699     /* show windows from top to bottom */
700     for (it = stacking_list; it; it = g_list_next(it)) {
701         if (WINDOW_IS_CLIENT(it->data)) {
702             ObClient *c = it->data;
703             client_show(c);
704         }
705     }
706
707     if (dofocus) screen_fallback_focus();
708
709     /* hide windows from bottom to top */
710     for (it = g_list_last(stacking_list); it; it = g_list_previous(it)) {
711         if (WINDOW_IS_CLIENT(it->data)) {
712             ObClient *c = it->data;
713             client_hide(c);
714         }
715     }
716
717     event_end_ignore_all_enters(ignore_start);
718
719     if (event_curtime != CurrentTime)
720         screen_desktop_user_time = event_curtime;
721 }
722
723 void screen_add_desktop(gboolean current)
724 {
725     gulong ignore_start;
726
727     /* ignore enter events caused by this */
728     ignore_start = event_start_ignore_all_enters();
729
730     screen_set_num_desktops(screen_num_desktops+1);
731
732     /* move all the clients over */
733     if (current) {
734         GList *it;
735
736         for (it = client_list; it; it = g_list_next(it)) {
737             ObClient *c = it->data;
738             if (c->desktop != DESKTOP_ALL && c->desktop >= screen_desktop &&
739                 /* don't move direct children, they'll be moved with their
740                    parent - which will have to be on the same desktop */
741                 !client_direct_parent(c))
742             {
743                 ob_debug("moving window %s", c->title);
744                 client_set_desktop(c, c->desktop+1, FALSE, TRUE);
745             }
746         }
747     }
748
749     event_end_ignore_all_enters(ignore_start);
750 }
751
752 void screen_remove_desktop(gboolean current)
753 {
754     guint rmdesktop, movedesktop;
755     GList *it, *stacking_copy;
756     gulong ignore_start;
757
758     if (screen_num_desktops <= 1) return;
759
760     /* ignore enter events caused by this */
761     ignore_start = event_start_ignore_all_enters();
762
763     /* what desktop are we removing and moving to? */
764     if (current)
765         rmdesktop = screen_desktop;
766     else
767         rmdesktop = screen_num_desktops - 1;
768     if (rmdesktop < screen_num_desktops - 1)
769         movedesktop = rmdesktop + 1;
770     else
771         movedesktop = rmdesktop;
772
773     /* make a copy of the list cuz we're changing it */
774     stacking_copy = g_list_copy(stacking_list);
775     for (it = g_list_last(stacking_copy); it; it = g_list_previous(it)) {
776         if (WINDOW_IS_CLIENT(it->data)) {
777             ObClient *c = it->data;
778             guint d = c->desktop;
779             if (d != DESKTOP_ALL && d >= movedesktop &&
780                 /* don't move direct children, they'll be moved with their
781                    parent - which will have to be on the same desktop */
782                 !client_direct_parent(c))
783             {
784                 ob_debug("moving window %s", c->title);
785                 client_set_desktop(c, c->desktop - 1, TRUE, TRUE);
786             }
787             /* raise all the windows that are on the current desktop which
788                is being merged */
789             if ((screen_desktop == rmdesktop - 1 ||
790                  screen_desktop == rmdesktop) &&
791                 (d == DESKTOP_ALL || d == screen_desktop))
792             {
793                 stacking_raise(CLIENT_AS_WINDOW(c));
794                 ob_debug("raising window %s", c->title);
795             }
796         }
797     }
798     g_list_free(stacking_copy);
799
800     /* fallback focus like we're changing desktops */
801     if (screen_desktop < screen_num_desktops - 1) {
802         screen_fallback_focus();
803         ob_debug("fake desktop change");
804     }
805
806     screen_set_num_desktops(screen_num_desktops-1);
807
808     event_end_ignore_all_enters(ignore_start);
809 }
810
811 static void get_row_col(guint d, guint *r, guint *c)
812 {
813     switch (screen_desktop_layout.orientation) {
814     case OB_ORIENTATION_HORZ:
815         switch (screen_desktop_layout.start_corner) {
816         case OB_CORNER_TOPLEFT:
817             *r = d / screen_desktop_layout.columns;
818             *c = d % screen_desktop_layout.columns;
819             break;
820         case OB_CORNER_BOTTOMLEFT:
821             *r = screen_desktop_layout.rows - 1 -
822                 d / screen_desktop_layout.columns;
823             *c = d % screen_desktop_layout.columns;
824             break;
825         case OB_CORNER_TOPRIGHT:
826             *r = d / screen_desktop_layout.columns;
827             *c = screen_desktop_layout.columns - 1 -
828                 d % screen_desktop_layout.columns;
829             break;
830         case OB_CORNER_BOTTOMRIGHT:
831             *r = screen_desktop_layout.rows - 1 -
832                 d / screen_desktop_layout.columns;
833             *c = screen_desktop_layout.columns - 1 -
834                 d % screen_desktop_layout.columns;
835             break;
836         }
837         break;
838     case OB_ORIENTATION_VERT:
839         switch (screen_desktop_layout.start_corner) {
840         case OB_CORNER_TOPLEFT:
841             *r = d % screen_desktop_layout.rows;
842             *c = d / screen_desktop_layout.rows;
843             break;
844         case OB_CORNER_BOTTOMLEFT:
845             *r = screen_desktop_layout.rows - 1 -
846                 d % screen_desktop_layout.rows;
847             *c = d / screen_desktop_layout.rows;
848             break;
849         case OB_CORNER_TOPRIGHT:
850             *r = d % screen_desktop_layout.rows;
851             *c = screen_desktop_layout.columns - 1 -
852                 d / screen_desktop_layout.rows;
853             break;
854         case OB_CORNER_BOTTOMRIGHT:
855             *r = screen_desktop_layout.rows - 1 -
856                 d % screen_desktop_layout.rows;
857             *c = screen_desktop_layout.columns - 1 -
858                 d / screen_desktop_layout.rows;
859             break;
860         }
861         break;
862     }
863 }
864
865 static guint translate_row_col(guint r, guint c)
866 {
867     switch (screen_desktop_layout.orientation) {
868     case OB_ORIENTATION_HORZ:
869         switch (screen_desktop_layout.start_corner) {
870         case OB_CORNER_TOPLEFT:
871             return r % screen_desktop_layout.rows *
872                 screen_desktop_layout.columns +
873                 c % screen_desktop_layout.columns;
874         case OB_CORNER_BOTTOMLEFT:
875             return (screen_desktop_layout.rows - 1 -
876                     r % screen_desktop_layout.rows) *
877                 screen_desktop_layout.columns +
878                 c % screen_desktop_layout.columns;
879         case OB_CORNER_TOPRIGHT:
880             return r % screen_desktop_layout.rows *
881                 screen_desktop_layout.columns +
882                 (screen_desktop_layout.columns - 1 -
883                  c % screen_desktop_layout.columns);
884         case OB_CORNER_BOTTOMRIGHT:
885             return (screen_desktop_layout.rows - 1 -
886                     r % screen_desktop_layout.rows) *
887                 screen_desktop_layout.columns +
888                 (screen_desktop_layout.columns - 1 -
889                  c % screen_desktop_layout.columns);
890         }
891     case OB_ORIENTATION_VERT:
892         switch (screen_desktop_layout.start_corner) {
893         case OB_CORNER_TOPLEFT:
894             return c % screen_desktop_layout.columns *
895                 screen_desktop_layout.rows +
896                 r % screen_desktop_layout.rows;
897         case OB_CORNER_BOTTOMLEFT:
898             return c % screen_desktop_layout.columns *
899                 screen_desktop_layout.rows +
900                 (screen_desktop_layout.rows - 1 -
901                  r % screen_desktop_layout.rows);
902         case OB_CORNER_TOPRIGHT:
903             return (screen_desktop_layout.columns - 1 -
904                     c % screen_desktop_layout.columns) *
905                 screen_desktop_layout.rows +
906                 r % screen_desktop_layout.rows;
907         case OB_CORNER_BOTTOMRIGHT:
908             return (screen_desktop_layout.columns - 1 -
909                     c % screen_desktop_layout.columns) *
910                 screen_desktop_layout.rows +
911                 (screen_desktop_layout.rows - 1 -
912                  r % screen_desktop_layout.rows);
913         }
914     }
915     g_assert_not_reached();
916     return 0;
917 }
918
919 static gboolean hide_desktop_popup_func(gpointer data)
920 {
921     guint i;
922
923     for (i = 0; i < screen_num_monitors; i++) {
924         pager_popup_hide(desktop_popup[i]);
925     }
926     return FALSE; /* don't repeat */
927 }
928
929 void screen_show_desktop_popup(guint d)
930 {
931     Rect *a;
932     guint i;
933
934     /* 0 means don't show the popup */
935     if (!config_desktop_popup_time) return;
936
937     for (i = 0; i < screen_num_monitors; i++) {
938         a = screen_physical_area_monitor(i);
939         pager_popup_position(desktop_popup[i], CenterGravity,
940                              a->x + a->width / 2, a->y + a->height / 2);
941         pager_popup_icon_size_multiplier(desktop_popup[i],
942                                          (screen_desktop_layout.columns /
943                                           screen_desktop_layout.rows) / 2,
944                                          (screen_desktop_layout.rows/
945                                           screen_desktop_layout.columns) / 2);
946         pager_popup_max_width(desktop_popup[i],
947                               MAX(a->width/3, POPUP_WIDTH));
948         pager_popup_show(desktop_popup[i], screen_desktop_names[d], d);
949
950         obt_main_loop_timeout_remove(ob_main_loop, hide_desktop_popup_func);
951         obt_main_loop_timeout_add(ob_main_loop, config_desktop_popup_time * 1000,
952                                   hide_desktop_popup_func, desktop_popup[i],
953                                   g_direct_equal, NULL);
954         g_free(a);
955     }
956 }
957
958 void screen_hide_desktop_popup(void)
959 {
960     guint i;
961
962     for (i = 0; i < screen_num_monitors; i++) {
963         obt_main_loop_timeout_remove_data(ob_main_loop, hide_desktop_popup_func,
964                                           desktop_popup[i], FALSE);
965         pager_popup_hide(desktop_popup[i]);
966     }
967 }
968
969 guint screen_find_desktop(guint from, ObDirection dir,
970                           gboolean wrap, gboolean linear)
971 {
972     guint r, c;
973     guint d;
974
975     d = from;
976     get_row_col(d, &r, &c);
977     if (linear) {
978         switch (dir) {
979         case OB_DIRECTION_EAST:
980             if (d < screen_num_desktops - 1)
981                 ++d;
982             else if (wrap)
983                 d = 0;
984             else
985                 return from;
986             break;
987         case OB_DIRECTION_WEST:
988             if (d > 0)
989                 --d;
990             else if (wrap)
991                 d = screen_num_desktops - 1;
992             else
993                 return from;
994             break;
995         default:
996             g_assert_not_reached();
997             return from;
998         }
999     } else {
1000         switch (dir) {
1001         case OB_DIRECTION_EAST:
1002             ++c;
1003             if (c >= screen_desktop_layout.columns) {
1004                 if (wrap)
1005                     c = 0;
1006                 else
1007                     return from;
1008             }
1009             d = translate_row_col(r, c);
1010             if (d >= screen_num_desktops) {
1011                 if (wrap)
1012                     ++c;
1013                 else
1014                     return from;
1015             }
1016             break;
1017         case OB_DIRECTION_WEST:
1018             --c;
1019             if (c >= screen_desktop_layout.columns) {
1020                 if (wrap)
1021                     c = screen_desktop_layout.columns - 1;
1022                 else
1023                     return from;
1024             }
1025             d = translate_row_col(r, c);
1026             if (d >= screen_num_desktops) {
1027                 if (wrap)
1028                     --c;
1029                 else
1030                     return from;
1031             }
1032             break;
1033         case OB_DIRECTION_SOUTH:
1034             ++r;
1035             if (r >= screen_desktop_layout.rows) {
1036                 if (wrap)
1037                     r = 0;
1038                 else
1039                     return from;
1040             }
1041             d = translate_row_col(r, c);
1042             if (d >= screen_num_desktops) {
1043                 if (wrap)
1044                     ++r;
1045                 else
1046                     return from;
1047             }
1048             break;
1049         case OB_DIRECTION_NORTH:
1050             --r;
1051             if (r >= screen_desktop_layout.rows) {
1052                 if (wrap)
1053                     r = screen_desktop_layout.rows - 1;
1054                 else
1055                     return from;
1056             }
1057             d = translate_row_col(r, c);
1058             if (d >= screen_num_desktops) {
1059                 if (wrap)
1060                     --r;
1061                 else
1062                     return from;
1063             }
1064             break;
1065         default:
1066             g_assert_not_reached();
1067             return from;
1068         }
1069
1070         d = translate_row_col(r, c);
1071     }
1072     return d;
1073 }
1074
1075 static gboolean screen_validate_layout(ObDesktopLayout *l)
1076 {
1077     if (l->columns == 0 && l->rows == 0) /* both 0's is bad data.. */
1078         return FALSE;
1079
1080     /* fill in a zero rows/columns */
1081     if (l->columns == 0) {
1082         l->columns = screen_num_desktops / l->rows;
1083         if (l->rows * l->columns < screen_num_desktops)
1084             l->columns++;
1085         if (l->rows * l->columns >= screen_num_desktops + l->columns)
1086             l->rows--;
1087     } else if (l->rows == 0) {
1088         l->rows = screen_num_desktops / l->columns;
1089         if (l->columns * l->rows < screen_num_desktops)
1090             l->rows++;
1091         if (l->columns * l->rows >= screen_num_desktops + l->rows)
1092             l->columns--;
1093     }
1094
1095     /* bounds checking */
1096     if (l->orientation == OB_ORIENTATION_HORZ) {
1097         l->columns = MIN(screen_num_desktops, l->columns);
1098         l->rows = MIN(l->rows,
1099                       (screen_num_desktops + l->columns - 1) / l->columns);
1100         l->columns = screen_num_desktops / l->rows +
1101             !!(screen_num_desktops % l->rows);
1102     } else {
1103         l->rows = MIN(screen_num_desktops, l->rows);
1104         l->columns = MIN(l->columns,
1105                          (screen_num_desktops + l->rows - 1) / l->rows);
1106         l->rows = screen_num_desktops / l->columns +
1107             !!(screen_num_desktops % l->columns);
1108     }
1109     return TRUE;
1110 }
1111
1112 void screen_update_layout(void)
1113
1114 {
1115     ObDesktopLayout l;
1116     guint32 *data;
1117     guint num;
1118
1119     screen_desktop_layout.orientation = OB_ORIENTATION_HORZ;
1120     screen_desktop_layout.start_corner = OB_CORNER_TOPLEFT;
1121     screen_desktop_layout.rows = 1;
1122     screen_desktop_layout.columns = screen_num_desktops;
1123
1124     if (OBT_PROP_GETA32(obt_root(ob_screen),
1125                         NET_DESKTOP_LAYOUT, CARDINAL, &data, &num)) {
1126         if (num == 3 || num == 4) {
1127
1128             if (data[0] == OBT_PROP_ATOM(NET_WM_ORIENTATION_VERT))
1129                 l.orientation = OB_ORIENTATION_VERT;
1130             else if (data[0] == OBT_PROP_ATOM(NET_WM_ORIENTATION_HORZ))
1131                 l.orientation = OB_ORIENTATION_HORZ;
1132             else
1133                 return;
1134
1135             if (num < 4)
1136                 l.start_corner = OB_CORNER_TOPLEFT;
1137             else {
1138                 if (data[3] == OBT_PROP_ATOM(NET_WM_TOPLEFT))
1139                     l.start_corner = OB_CORNER_TOPLEFT;
1140                 else if (data[3] == OBT_PROP_ATOM(NET_WM_TOPRIGHT))
1141                     l.start_corner = OB_CORNER_TOPRIGHT;
1142                 else if (data[3] == OBT_PROP_ATOM(NET_WM_BOTTOMRIGHT))
1143                     l.start_corner = OB_CORNER_BOTTOMRIGHT;
1144                 else if (data[3] == OBT_PROP_ATOM(NET_WM_BOTTOMLEFT))
1145                     l.start_corner = OB_CORNER_BOTTOMLEFT;
1146                 else
1147                     return;
1148             }
1149
1150             l.columns = data[1];
1151             l.rows = data[2];
1152
1153             if (screen_validate_layout(&l))
1154                 screen_desktop_layout = l;
1155
1156             g_free(data);
1157         }
1158     }
1159 }
1160
1161 void screen_update_desktop_names(void)
1162 {
1163     guint i;
1164
1165     /* empty the array */
1166     g_strfreev(screen_desktop_names);
1167     screen_desktop_names = NULL;
1168
1169     if (OBT_PROP_GETSS(obt_root(ob_screen),
1170                        NET_DESKTOP_NAMES, utf8, &screen_desktop_names))
1171         for (i = 0; screen_desktop_names[i] && i < screen_num_desktops; ++i);
1172     else
1173         i = 0;
1174     if (i < screen_num_desktops) {
1175         GSList *it;
1176
1177         screen_desktop_names = g_renew(gchar*, screen_desktop_names,
1178                                        screen_num_desktops + 1);
1179         screen_desktop_names[screen_num_desktops] = NULL;
1180
1181         it = g_slist_nth(config_desktops_names, i);
1182
1183         for (; i < screen_num_desktops; ++i) {
1184             if (it && ((char*)it->data)[0]) /* not empty */
1185                 /* use the names from the config file when possible */
1186                 screen_desktop_names[i] = g_strdup(it->data);
1187             else
1188                 /* make up a nice name if it's not though */
1189                 screen_desktop_names[i] = g_strdup_printf(_("desktop %i"),
1190                                                           i + 1);
1191             if (it) it = g_slist_next(it);
1192         }
1193
1194         /* if we changed any names, then set the root property so we can
1195            all agree on the names */
1196         OBT_PROP_SETSS(obt_root(ob_screen), NET_DESKTOP_NAMES,
1197                        utf8, (const gchar**)screen_desktop_names);
1198     }
1199
1200     /* resize the pager for these names */
1201     for (i = 0; i < screen_num_monitors; i++) {
1202         pager_popup_text_width_to_strings(desktop_popup[i],
1203                                           screen_desktop_names,
1204                                           screen_num_desktops);
1205     }
1206 }
1207
1208 void screen_show_desktop(gboolean show, ObClient *show_only)
1209 {
1210     GList *it;
1211
1212     if (show == screen_showing_desktop) return; /* no change */
1213
1214     screen_showing_desktop = show;
1215
1216     if (show) {
1217         /* hide windows bottom to top */
1218         for (it = g_list_last(stacking_list); it; it = g_list_previous(it)) {
1219             if (WINDOW_IS_CLIENT(it->data)) {
1220                 ObClient *client = it->data;
1221                 client_showhide(client);
1222             }
1223         }
1224     }
1225     else {
1226         /* restore windows top to bottom */
1227         for (it = stacking_list; it; it = g_list_next(it)) {
1228             if (WINDOW_IS_CLIENT(it->data)) {
1229                 ObClient *client = it->data;
1230                 if (client_should_show(client)) {
1231                     if (!show_only || client == show_only)
1232                         client_show(client);
1233                     else
1234                         client_iconify(client, TRUE, FALSE, TRUE);
1235                 }
1236             }
1237         }
1238     }
1239
1240     if (show) {
1241         /* focus the desktop */
1242         for (it = focus_order; it; it = g_list_next(it)) {
1243             ObClient *c = it->data;
1244             if (c->type == OB_CLIENT_TYPE_DESKTOP &&
1245                 (c->desktop == screen_desktop || c->desktop == DESKTOP_ALL) &&
1246                 client_focus(it->data))
1247                 break;
1248         }
1249     }
1250     else if (!show_only) {
1251         ObClient *c;
1252
1253         if ((c = focus_fallback(TRUE, FALSE, TRUE, FALSE))) {
1254             /* only do the flicker reducing stuff ahead of time if we are going
1255                to call xsetinputfocus on the window ourselves. otherwise there
1256                is no guarantee the window will actually take focus.. */
1257             if (c->can_focus) {
1258                 /* reduce flicker by hiliting now rather than waiting for the
1259                    server FocusIn event */
1260                 frame_adjust_focus(c->frame, TRUE);
1261             }
1262         }
1263     }
1264
1265     show = !!show; /* make it boolean */
1266     OBT_PROP_SET32(obt_root(ob_screen), NET_SHOWING_DESKTOP, CARDINAL, show);
1267 }
1268
1269 void screen_install_colormap(ObClient *client, gboolean install)
1270 {
1271     if (client == NULL || client->colormap == None) {
1272         if (install)
1273             XInstallColormap(obt_display, RrColormap(ob_rr_inst));
1274         else
1275             XUninstallColormap(obt_display, RrColormap(ob_rr_inst));
1276     } else {
1277         obt_display_ignore_errors(TRUE);
1278         if (install)
1279             XInstallColormap(obt_display, client->colormap);
1280         else
1281             XUninstallColormap(obt_display, client->colormap);
1282         obt_display_ignore_errors(FALSE);
1283     }
1284 }
1285
1286 #define STRUT_LEFT_ON_MONITOR(s, i) \
1287     (RANGES_INTERSECT(s->left_start, s->left_end - s->left_start + 1, \
1288                       monitor_area[i].y, monitor_area[i].height))
1289 #define STRUT_RIGHT_ON_MONITOR(s, i) \
1290     (RANGES_INTERSECT(s->right_start, s->right_end - s->right_start + 1, \
1291                       monitor_area[i].y, monitor_area[i].height))
1292 #define STRUT_TOP_ON_MONITOR(s, i) \
1293     (RANGES_INTERSECT(s->top_start, s->top_end - s->top_start + 1, \
1294                       monitor_area[i].x, monitor_area[i].width))
1295 #define STRUT_BOTTOM_ON_MONITOR(s, i) \
1296     (RANGES_INTERSECT(s->bottom_start, s->bottom_end - s->bottom_start + 1, \
1297                       monitor_area[i].x, monitor_area[i].width))
1298
1299 typedef struct {
1300     guint desktop;
1301     StrutPartial *strut;
1302 } ObScreenStrut;
1303
1304 #define RESET_STRUT_LIST(sl) \
1305     (g_slist_free(sl), sl = NULL)
1306
1307 #define ADD_STRUT_TO_LIST(sl, d, s) \
1308 { \
1309     ObScreenStrut *ss = g_new(ObScreenStrut, 1); \
1310     ss->desktop = d; \
1311     ss->strut = s;  \
1312     sl = g_slist_prepend(sl, ss); \
1313 }
1314
1315 #define VALIDATE_STRUTS(sl, side, max) \
1316 { \
1317     GSList *it; \
1318     for (it = sl; it; it = g_slist_next(it)) { \
1319       ObScreenStrut *ss = it->data; \
1320       ss->strut->side = MIN(max, ss->strut->side); \
1321     } \
1322 }
1323
1324 static void get_xinerama_screens(Rect **xin_areas, guint *nxin)
1325 {
1326     guint i;
1327     gint n, l, r, t, b;
1328 #ifdef XINERAMA
1329     XineramaScreenInfo *info;
1330 #endif
1331
1332     if (ob_debug_xinerama) {
1333         gint w = WidthOfScreen(ScreenOfDisplay(obt_display, ob_screen));
1334         gint h = HeightOfScreen(ScreenOfDisplay(obt_display, ob_screen));
1335         *nxin = 2;
1336         *xin_areas = g_new(Rect, *nxin + 1);
1337         RECT_SET((*xin_areas)[0], 0, 0, w/2, h);
1338         RECT_SET((*xin_areas)[1], w/2, 0, w-(w/2), h);
1339     }
1340 #ifdef XINERAMA
1341     else if (obt_display_extension_xinerama &&
1342              (info = XineramaQueryScreens(obt_display, &n))) {
1343         *nxin = n;
1344         *xin_areas = g_new(Rect, *nxin + 1);
1345         for (i = 0; i < *nxin; ++i)
1346             RECT_SET((*xin_areas)[i], info[i].x_org, info[i].y_org,
1347                      info[i].width, info[i].height);
1348         XFree(info);
1349     }
1350 #endif
1351     else {
1352         *nxin = 1;
1353         *xin_areas = g_new(Rect, *nxin + 1);
1354         RECT_SET((*xin_areas)[0], 0, 0,
1355                  WidthOfScreen(ScreenOfDisplay(obt_display, ob_screen)),
1356                  HeightOfScreen(ScreenOfDisplay(obt_display, ob_screen)));
1357     }
1358
1359     /* returns one extra with the total area in it */
1360     l = (*xin_areas)[0].x;
1361     t = (*xin_areas)[0].y;
1362     r = (*xin_areas)[0].x + (*xin_areas)[0].width - 1;
1363     b = (*xin_areas)[0].y + (*xin_areas)[0].height - 1;
1364     for (i = 1; i < *nxin; ++i) {
1365         l = MIN(l, (*xin_areas)[i].x);
1366         t = MIN(l, (*xin_areas)[i].y);
1367         r = MAX(r, (*xin_areas)[i].x + (*xin_areas)[i].width - 1);
1368         b = MAX(b, (*xin_areas)[i].y + (*xin_areas)[i].height - 1);
1369     }
1370     RECT_SET((*xin_areas)[*nxin], l, t, r - l + 1, b - t + 1);
1371 }
1372
1373 void screen_update_areas(void)
1374 {
1375     guint i, j;
1376     gulong *dims;
1377     GList *it;
1378     GSList *sit;
1379
1380     g_free(monitor_area);
1381     get_xinerama_screens(&monitor_area, &screen_num_monitors);
1382
1383     if (!desktop_popup) {
1384         desktop_popup = g_new(ObPagerPopup*, screen_num_monitors);
1385         for (i = 0; i < screen_num_monitors; i++) {
1386             desktop_popup[i] = pager_popup_new();
1387             pager_popup_height(desktop_popup[i], POPUP_HEIGHT);
1388
1389             if (screen_desktop_names)
1390                 /* update the pager popup's width */
1391                 pager_popup_text_width_to_strings(desktop_popup[i],
1392                                                   screen_desktop_names,
1393                                                   screen_num_desktops);
1394         }
1395     }
1396
1397     /* set up the user-specified margins */
1398     config_margins.top_start = RECT_LEFT(monitor_area[screen_num_monitors]);
1399     config_margins.top_end = RECT_RIGHT(monitor_area[screen_num_monitors]);
1400     config_margins.bottom_start = RECT_LEFT(monitor_area[screen_num_monitors]);
1401     config_margins.bottom_end = RECT_RIGHT(monitor_area[screen_num_monitors]);
1402     config_margins.left_start = RECT_TOP(monitor_area[screen_num_monitors]);
1403     config_margins.left_end = RECT_BOTTOM(monitor_area[screen_num_monitors]);
1404     config_margins.right_start = RECT_TOP(monitor_area[screen_num_monitors]);
1405     config_margins.right_end = RECT_BOTTOM(monitor_area[screen_num_monitors]);
1406
1407     dims = g_new(gulong, 4 * screen_num_desktops * screen_num_monitors);
1408
1409     RESET_STRUT_LIST(struts_left);
1410     RESET_STRUT_LIST(struts_top);
1411     RESET_STRUT_LIST(struts_right);
1412     RESET_STRUT_LIST(struts_bottom);
1413
1414     /* collect the struts */
1415     for (it = client_list; it; it = g_list_next(it)) {
1416         ObClient *c = it->data;
1417         if (c->strut.left)
1418             ADD_STRUT_TO_LIST(struts_left, c->desktop, &c->strut);
1419         if (c->strut.top)
1420             ADD_STRUT_TO_LIST(struts_top, c->desktop, &c->strut);
1421         if (c->strut.right)
1422             ADD_STRUT_TO_LIST(struts_right, c->desktop, &c->strut);
1423         if (c->strut.bottom)
1424             ADD_STRUT_TO_LIST(struts_bottom, c->desktop, &c->strut);
1425     }
1426     if (dock_strut.left)
1427         ADD_STRUT_TO_LIST(struts_left, DESKTOP_ALL, &dock_strut);
1428     if (dock_strut.top)
1429         ADD_STRUT_TO_LIST(struts_top, DESKTOP_ALL, &dock_strut);
1430     if (dock_strut.right)
1431         ADD_STRUT_TO_LIST(struts_right, DESKTOP_ALL, &dock_strut);
1432     if (dock_strut.bottom)
1433         ADD_STRUT_TO_LIST(struts_bottom, DESKTOP_ALL, &dock_strut);
1434
1435     if (config_margins.left)
1436         ADD_STRUT_TO_LIST(struts_left, DESKTOP_ALL, &config_margins);
1437     if (config_margins.top)
1438         ADD_STRUT_TO_LIST(struts_top, DESKTOP_ALL, &config_margins);
1439     if (config_margins.right)
1440         ADD_STRUT_TO_LIST(struts_right, DESKTOP_ALL, &config_margins);
1441     if (config_margins.bottom)
1442         ADD_STRUT_TO_LIST(struts_bottom, DESKTOP_ALL, &config_margins);
1443
1444     VALIDATE_STRUTS(struts_left, left,
1445                     monitor_area[screen_num_monitors].width / 2);
1446     VALIDATE_STRUTS(struts_right, right,
1447                     monitor_area[screen_num_monitors].width / 2);
1448     VALIDATE_STRUTS(struts_top, top,
1449                     monitor_area[screen_num_monitors].height / 2);
1450     VALIDATE_STRUTS(struts_bottom, bottom,
1451                     monitor_area[screen_num_monitors].height / 2);
1452
1453     /* set up the work areas to be full screen */
1454     for (i = 0; i < screen_num_monitors; ++i)
1455         for (j = 0; j < screen_num_desktops; ++j) {
1456             dims[(i * screen_num_desktops + j) * 4+0] = monitor_area[i].x;
1457             dims[(i * screen_num_desktops + j) * 4+1] = monitor_area[i].y;
1458             dims[(i * screen_num_desktops + j) * 4+2] = monitor_area[i].width;
1459             dims[(i * screen_num_desktops + j) * 4+3] = monitor_area[i].height;
1460         }
1461
1462     /* calculate the work areas from the struts */
1463     for (i = 0; i < screen_num_monitors; ++i)
1464         for (j = 0; j < screen_num_desktops; ++j) {
1465             gint l = 0, r = 0, t = 0, b = 0;
1466
1467             /* only add the strut to the area if it touches the monitor */
1468
1469             for (sit = struts_left; sit; sit = g_slist_next(sit)) {
1470                 ObScreenStrut *s = sit->data;
1471                 if ((s->desktop == j || s->desktop == DESKTOP_ALL) &&
1472                     STRUT_LEFT_ON_MONITOR(s->strut, i))
1473                     l = MAX(l, s->strut->left);
1474             }
1475             for (sit = struts_top; sit; sit = g_slist_next(sit)) {
1476                 ObScreenStrut *s = sit->data;
1477                 if ((s->desktop == j || s->desktop == DESKTOP_ALL) &&
1478                     STRUT_TOP_ON_MONITOR(s->strut, i))
1479                     t = MAX(t, s->strut->top);
1480             }
1481             for (sit = struts_right; sit; sit = g_slist_next(sit)) {
1482                 ObScreenStrut *s = sit->data;
1483                 if ((s->desktop == j || s->desktop == DESKTOP_ALL) &&
1484                     STRUT_RIGHT_ON_MONITOR(s->strut, i))
1485                     r = MAX(r, s->strut->right);
1486             }
1487             for (sit = struts_bottom; sit; sit = g_slist_next(sit)) {
1488                 ObScreenStrut *s = sit->data;
1489                 if ((s->desktop == j || s->desktop == DESKTOP_ALL) &&
1490                     STRUT_BOTTOM_ON_MONITOR(s->strut, i))
1491                     b = MAX(b, s->strut->bottom);
1492             }
1493
1494             if (l) l += RECT_LEFT  (monitor_area[screen_num_monitors])
1495                         - RECT_LEFT  (monitor_area[i]);
1496             if (t) t += RECT_TOP   (monitor_area[screen_num_monitors])
1497                         - RECT_TOP   (monitor_area[i]);
1498             if (r) r -= RECT_RIGHT (monitor_area[screen_num_monitors])
1499                         - RECT_RIGHT (monitor_area[i]);
1500             if (b) b -= RECT_BOTTOM(monitor_area[screen_num_monitors])
1501                         - RECT_BOTTOM(monitor_area[i]);
1502
1503             /* based on these margins, set the work area for the
1504                monitor/desktop */
1505             dims[(i * screen_num_desktops + j) * 4 + 0] += l;
1506             dims[(i * screen_num_desktops + j) * 4 + 1] += t;
1507             dims[(i * screen_num_desktops + j) * 4 + 2] -= l + r;
1508             dims[(i * screen_num_desktops + j) * 4 + 3] -= t + b;
1509         }
1510
1511     /* all the work areas are not used here, only the ones for the first
1512        monitor are */
1513     OBT_PROP_SETA32(obt_root(ob_screen), NET_WORKAREA, CARDINAL,
1514                     dims, 4 * screen_num_desktops);
1515
1516     /* the area has changed, adjust all the windows if they need it */
1517     for (it = client_list; it; it = g_list_next(it))
1518         client_reconfigure(it->data, FALSE);
1519
1520     g_free(dims);
1521 }
1522
1523 #if 0
1524 Rect* screen_area_all_monitors(guint desktop)
1525 {
1526     guint i;
1527     Rect *a;
1528
1529     a = screen_area_monitor(desktop, 0);
1530
1531     /* combine all the monitors together */
1532     for (i = 1; i < screen_num_monitors; ++i) {
1533         Rect *m = screen_area_monitor(desktop, i);
1534         gint l, r, t, b;
1535
1536         l = MIN(RECT_LEFT(*a), RECT_LEFT(*m));
1537         t = MIN(RECT_TOP(*a), RECT_TOP(*m));
1538         r = MAX(RECT_RIGHT(*a), RECT_RIGHT(*m));
1539         b = MAX(RECT_BOTTOM(*a), RECT_BOTTOM(*m));
1540
1541         RECT_SET(*a, l, t, r - l + 1, b - t + 1);
1542
1543         g_free(m);
1544     }
1545
1546     return a;
1547 }
1548 #endif
1549
1550 #define STRUT_LEFT_IN_SEARCH(s, search) \
1551     (RANGES_INTERSECT(search->y, search->height, \
1552                       s->left_start, s->left_end - s->left_start + 1))
1553 #define STRUT_RIGHT_IN_SEARCH(s, search) \
1554     (RANGES_INTERSECT(search->y, search->height, \
1555                       s->right_start, s->right_end - s->right_start + 1))
1556 #define STRUT_TOP_IN_SEARCH(s, search) \
1557     (RANGES_INTERSECT(search->x, search->width, \
1558                       s->top_start, s->top_end - s->top_start + 1))
1559 #define STRUT_BOTTOM_IN_SEARCH(s, search) \
1560     (RANGES_INTERSECT(search->x, search->width, \
1561                       s->bottom_start, s->bottom_end - s->bottom_start + 1))
1562
1563 #define STRUT_LEFT_IGNORE(s, us, search) \
1564     (head == SCREEN_AREA_ALL_MONITORS && us && \
1565      RECT_LEFT(monitor_area[i]) + s->left > RECT_LEFT(*search))
1566 #define STRUT_RIGHT_IGNORE(s, us, search) \
1567     (head == SCREEN_AREA_ALL_MONITORS && us && \
1568      RECT_RIGHT(monitor_area[i]) - s->right < RECT_RIGHT(*search))
1569 #define STRUT_TOP_IGNORE(s, us, search) \
1570     (head == SCREEN_AREA_ALL_MONITORS && us && \
1571      RECT_TOP(monitor_area[i]) + s->top > RECT_TOP(*search))
1572 #define STRUT_BOTTOM_IGNORE(s, us, search) \
1573     (head == SCREEN_AREA_ALL_MONITORS && us && \
1574      RECT_BOTTOM(monitor_area[i]) - s->bottom < RECT_BOTTOM(*search))
1575
1576 Rect* screen_area(guint desktop, guint head, Rect *search)
1577 {
1578     Rect *a;
1579     GSList *it;
1580     gint l, r, t, b;
1581     guint i, d;
1582     gboolean us = search != NULL; /* user provided search */
1583
1584     g_assert(desktop < screen_num_desktops || desktop == DESKTOP_ALL);
1585     g_assert(head < screen_num_monitors || head == SCREEN_AREA_ONE_MONITOR ||
1586              head == SCREEN_AREA_ALL_MONITORS);
1587     g_assert(!(head == SCREEN_AREA_ONE_MONITOR && search == NULL));
1588
1589     /* find any struts for this monitor
1590        which will be affecting the search area.
1591     */
1592
1593     /* search everything if search is null */
1594     if (!search) {
1595         if (head < screen_num_monitors) search = &monitor_area[head];
1596         else search = &monitor_area[screen_num_monitors];
1597     }
1598     if (head == SCREEN_AREA_ONE_MONITOR) head = screen_find_monitor(search);
1599
1600     /* al is "all left" meaning the furthest left you can get, l is our
1601        "working left" meaning our current strut edge which we're calculating
1602     */
1603
1604     /* only include monitors which the search area lines up with */
1605     if (RECT_INTERSECTS_RECT(monitor_area[screen_num_monitors], *search)) {
1606         l = RECT_RIGHT(monitor_area[screen_num_monitors]);
1607         t = RECT_BOTTOM(monitor_area[screen_num_monitors]);
1608         r = RECT_LEFT(monitor_area[screen_num_monitors]);
1609         b = RECT_TOP(monitor_area[screen_num_monitors]);
1610         for (i = 0; i < screen_num_monitors; ++i) {
1611             /* add the monitor if applicable */
1612             if (RANGES_INTERSECT(search->x, search->width,
1613                                  monitor_area[i].x, monitor_area[i].width))
1614             {
1615                 t = MIN(t, RECT_TOP(monitor_area[i]));
1616                 b = MAX(b, RECT_BOTTOM(monitor_area[i]));
1617             }
1618             if (RANGES_INTERSECT(search->y, search->height,
1619                                  monitor_area[i].y, monitor_area[i].height))
1620             {
1621                 l = MIN(l, RECT_LEFT(monitor_area[i]));
1622                 r = MAX(r, RECT_RIGHT(monitor_area[i]));
1623             }
1624         }
1625     } else {
1626         l = RECT_LEFT(monitor_area[screen_num_monitors]);
1627         t = RECT_TOP(monitor_area[screen_num_monitors]);
1628         r = RECT_RIGHT(monitor_area[screen_num_monitors]);
1629         b = RECT_BOTTOM(monitor_area[screen_num_monitors]);
1630     }
1631
1632     for (d = 0; d < screen_num_desktops; ++d) {
1633         if (d != desktop && desktop != DESKTOP_ALL) continue;
1634
1635         for (i = 0; i < screen_num_monitors; ++i) {
1636             if (head != SCREEN_AREA_ALL_MONITORS && head != i) continue;
1637
1638             for (it = struts_left; it; it = g_slist_next(it)) {
1639                 ObScreenStrut *s = it->data;
1640                 if ((s->desktop == d || s->desktop == DESKTOP_ALL) &&
1641                     STRUT_LEFT_IN_SEARCH(s->strut, search) &&
1642                     !STRUT_LEFT_IGNORE(s->strut, us, search))
1643                     l = MAX(l, RECT_LEFT(monitor_area[screen_num_monitors])
1644                                + s->strut->left);
1645             }
1646             for (it = struts_top; it; it = g_slist_next(it)) {
1647                 ObScreenStrut *s = it->data;
1648                 if ((s->desktop == d || s->desktop == DESKTOP_ALL) &&
1649                     STRUT_TOP_IN_SEARCH(s->strut, search) &&
1650                     !STRUT_TOP_IGNORE(s->strut, us, search))
1651                     t = MAX(t, RECT_TOP(monitor_area[screen_num_monitors])
1652                                + s->strut->top);
1653             }
1654             for (it = struts_right; it; it = g_slist_next(it)) {
1655                 ObScreenStrut *s = it->data;
1656                 if ((s->desktop == d || s->desktop == DESKTOP_ALL) &&
1657                     STRUT_RIGHT_IN_SEARCH(s->strut, search) &&
1658                     !STRUT_RIGHT_IGNORE(s->strut, us, search))
1659                     r = MIN(r, RECT_RIGHT(monitor_area[screen_num_monitors])
1660                                - s->strut->right);
1661             }
1662             for (it = struts_bottom; it; it = g_slist_next(it)) {
1663                 ObScreenStrut *s = it->data;
1664                 if ((s->desktop == d || s->desktop == DESKTOP_ALL) &&
1665                     STRUT_BOTTOM_IN_SEARCH(s->strut, search) &&
1666                     !STRUT_BOTTOM_IGNORE(s->strut, us, search))
1667                     b = MIN(b, RECT_BOTTOM(monitor_area[screen_num_monitors])
1668                                - s->strut->bottom);
1669             }
1670
1671             /* limit to this monitor */
1672             if (head == i) {
1673                 l = MAX(l, RECT_LEFT(monitor_area[i]));
1674                 t = MAX(t, RECT_TOP(monitor_area[i]));
1675                 r = MIN(r, RECT_RIGHT(monitor_area[i]));
1676                 b = MIN(b, RECT_BOTTOM(monitor_area[i]));
1677             }
1678         }
1679     }
1680
1681     a = g_new(Rect, 1);
1682     a->x = l;
1683     a->y = t;
1684     a->width = r - l + 1;
1685     a->height = b - t + 1;
1686     return a;
1687 }
1688
1689 guint screen_find_monitor(Rect *search)
1690 {
1691     guint i;
1692     guint most = screen_num_monitors;
1693     guint mostv = 0;
1694
1695     for (i = 0; i < screen_num_monitors; ++i) {
1696         Rect *area = screen_physical_area_monitor(i);
1697         if (RECT_INTERSECTS_RECT(*area, *search)) {
1698             Rect r;
1699             guint v;
1700
1701             RECT_SET_INTERSECTION(r, *area, *search);
1702             v = r.width * r.height;
1703
1704             if (v > mostv) {
1705                 mostv = v;
1706                 most = i;
1707             }
1708         }
1709         g_free(area);
1710     }
1711     return most;
1712 }
1713
1714 Rect* screen_physical_area_all_monitors(void)
1715 {
1716     return screen_physical_area_monitor(screen_num_monitors);
1717 }
1718
1719 Rect* screen_physical_area_monitor(guint head)
1720 {
1721     Rect *a;
1722     g_assert(head <= screen_num_monitors);
1723
1724     a = g_new(Rect, 1);
1725     *a = monitor_area[head];
1726     return a;
1727 }
1728
1729 gboolean screen_physical_area_monitor_contains(guint head, Rect *search)
1730 {
1731     g_assert(head <= screen_num_monitors);
1732     g_assert(search);
1733     return RECT_INTERSECTS_RECT(monitor_area[head], *search);
1734 }
1735
1736 Rect* screen_physical_area_active(void)
1737 {
1738     Rect *a;
1739     gint x, y;
1740
1741     if (moveresize_client)
1742         a = screen_physical_area_monitor(client_monitor(focus_client));
1743     else if (focus_client)
1744         a = screen_physical_area_monitor(client_monitor(focus_client));
1745     else {
1746         Rect mon;
1747         if (screen_pointer_pos(&x, &y))
1748             RECT_SET(mon, x, y, 1, 1);
1749         else
1750             RECT_SET(mon, 0, 0, 1, 1);
1751         a = screen_physical_area_monitor(screen_find_monitor(&mon));
1752     }
1753     return a;
1754 }
1755
1756 void screen_set_root_cursor(void)
1757 {
1758     if (sn_app_starting())
1759         XDefineCursor(obt_display, obt_root(ob_screen),
1760                       ob_cursor(OB_CURSOR_BUSYPOINTER));
1761     else
1762         XDefineCursor(obt_display, obt_root(ob_screen),
1763                       ob_cursor(OB_CURSOR_POINTER));
1764 }
1765
1766 gboolean screen_pointer_pos(gint *x, gint *y)
1767 {
1768     Window w;
1769     gint i;
1770     guint u;
1771     gboolean ret;
1772
1773     ret = !!XQueryPointer(obt_display, obt_root(ob_screen),
1774                           &w, &w, x, y, &i, &i, &u);
1775     if (!ret) {
1776         for (i = 0; i < ScreenCount(obt_display); ++i)
1777             if (i != ob_screen)
1778                 if (XQueryPointer(obt_display, obt_root(i),
1779                                   &w, &w, x, y, &i, &i, &u))
1780                     break;
1781     }
1782     return ret;
1783 }