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