]> Dogcows Code - chaz/openbox/blob - openbox/screen.c
add a slight delay to the focus/desktop switch dialogs. so if you hit the key really...
[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 "screen.h"
30 #include "client.h"
31 #include "frame.h"
32 #include "event.h"
33 #include "focus.h"
34 #include "popup.h"
35 #include "extensions.h"
36 #include "render/render.h"
37 #include "gettext.h"
38
39 #include <X11/Xlib.h>
40 #ifdef HAVE_UNISTD_H
41 # include <sys/types.h>
42 # include <unistd.h>
43 #endif
44 #include <assert.h>
45
46 /*! The event mask to grab on the root window */
47 #define ROOT_EVENTMASK (StructureNotifyMask | PropertyChangeMask | \
48 EnterWindowMask | LeaveWindowMask | \
49 SubstructureRedirectMask | FocusChangeMask | \
50 ButtonPressMask | ButtonReleaseMask | ButtonMotionMask)
51
52 guint screen_num_desktops;
53 guint screen_num_monitors;
54 guint screen_desktop;
55 guint screen_last_desktop;
56 Size screen_physical_size;
57 gboolean screen_showing_desktop;
58 DesktopLayout screen_desktop_layout;
59 gchar **screen_desktop_names;
60 Window screen_support_win;
61 Time screen_desktop_user_time = CurrentTime;
62
63 static Rect **area; /* array of desktop holding array of xinerama areas */
64 static Rect *monitor_area;
65
66 static ObPagerPopup *desktop_cycle_popup;
67
68 static gboolean replace_wm()
69 {
70 gchar *wm_sn;
71 Atom wm_sn_atom;
72 Window current_wm_sn_owner;
73 Time timestamp;
74
75 wm_sn = g_strdup_printf("WM_S%d", ob_screen);
76 wm_sn_atom = XInternAtom(ob_display, wm_sn, FALSE);
77 g_free(wm_sn);
78
79 current_wm_sn_owner = XGetSelectionOwner(ob_display, wm_sn_atom);
80 if (current_wm_sn_owner == screen_support_win)
81 current_wm_sn_owner = None;
82 if (current_wm_sn_owner) {
83 if (!ob_replace_wm) {
84 g_message(_("A window manager is already running on screen %d"),
85 ob_screen);
86 return FALSE;
87 }
88 xerror_set_ignore(TRUE);
89 xerror_occured = FALSE;
90
91 /* We want to find out when the current selection owner dies */
92 XSelectInput(ob_display, current_wm_sn_owner, StructureNotifyMask);
93 XSync(ob_display, FALSE);
94
95 xerror_set_ignore(FALSE);
96 if (xerror_occured)
97 current_wm_sn_owner = None;
98 }
99
100 {
101 /* Generate a timestamp */
102 XEvent event;
103
104 XSelectInput(ob_display, screen_support_win, PropertyChangeMask);
105
106 XChangeProperty(ob_display, screen_support_win,
107 prop_atoms.wm_class, prop_atoms.string,
108 8, PropModeAppend, NULL, 0);
109 XWindowEvent(ob_display, screen_support_win,
110 PropertyChangeMask, &event);
111
112 XSelectInput(ob_display, screen_support_win, NoEventMask);
113
114 timestamp = event.xproperty.time;
115 }
116
117 XSetSelectionOwner(ob_display, wm_sn_atom, screen_support_win,
118 timestamp);
119
120 if (XGetSelectionOwner(ob_display, wm_sn_atom) != screen_support_win) {
121 g_message(_("Could not acquire window manager selection on screen %d"),
122 ob_screen);
123 return FALSE;
124 }
125
126 /* Wait for old window manager to go away */
127 if (current_wm_sn_owner) {
128 XEvent event;
129 gulong wait = 0;
130 const gulong timeout = G_USEC_PER_SEC * 15; /* wait for 15s max */
131
132 while (wait < timeout) {
133 if (XCheckWindowEvent(ob_display, current_wm_sn_owner,
134 StructureNotifyMask, &event) &&
135 event.type == DestroyNotify)
136 break;
137 g_usleep(G_USEC_PER_SEC / 10);
138 wait += G_USEC_PER_SEC / 10;
139 }
140
141 if (wait >= timeout) {
142 g_message(_("The WM on screen %d is not exiting"), ob_screen);
143 return FALSE;
144 }
145 }
146
147 /* Send client message indicating that we are now the WM */
148 prop_message(RootWindow(ob_display, ob_screen), prop_atoms.manager,
149 timestamp, wm_sn_atom, screen_support_win, 0,
150 SubstructureNotifyMask);
151
152 return TRUE;
153 }
154
155 gboolean screen_annex()
156 {
157 XSetWindowAttributes attrib;
158 pid_t pid;
159 gint i, num_support;
160 gulong *supported;
161
162 /* create the netwm support window */
163 attrib.override_redirect = TRUE;
164 screen_support_win = XCreateWindow(ob_display,
165 RootWindow(ob_display, ob_screen),
166 -100, -100, 1, 1, 0,
167 CopyFromParent, InputOutput,
168 CopyFromParent,
169 CWOverrideRedirect, &attrib);
170 XMapWindow(ob_display, screen_support_win);
171
172 if (!replace_wm()) {
173 XDestroyWindow(ob_display, screen_support_win);
174 return FALSE;
175 }
176
177 xerror_set_ignore(TRUE);
178 xerror_occured = FALSE;
179 XSelectInput(ob_display, RootWindow(ob_display, ob_screen),
180 ROOT_EVENTMASK);
181 xerror_set_ignore(FALSE);
182 if (xerror_occured) {
183 g_message(_("A window manager is already running on screen %d"),
184 ob_screen);
185
186 XDestroyWindow(ob_display, screen_support_win);
187 return FALSE;
188 }
189
190
191 screen_set_root_cursor();
192
193 /* set the OPENBOX_PID hint */
194 pid = getpid();
195 PROP_SET32(RootWindow(ob_display, ob_screen),
196 openbox_pid, cardinal, pid);
197
198 /* set supporting window */
199 PROP_SET32(RootWindow(ob_display, ob_screen),
200 net_supporting_wm_check, window, screen_support_win);
201
202 /* set properties on the supporting window */
203 PROP_SETS(screen_support_win, net_wm_name, "Openbox");
204 PROP_SET32(screen_support_win, net_supporting_wm_check,
205 window, screen_support_win);
206
207 /* set the _NET_SUPPORTED_ATOMS hint */
208 num_support = 55;
209 #ifdef SYNC
210 num_support += 2;
211 #endif
212 i = 0;
213 supported = g_new(gulong, num_support);
214 supported[i++] = prop_atoms.net_wm_full_placement;
215 supported[i++] = prop_atoms.net_current_desktop;
216 supported[i++] = prop_atoms.net_number_of_desktops;
217 supported[i++] = prop_atoms.net_desktop_geometry;
218 supported[i++] = prop_atoms.net_desktop_viewport;
219 supported[i++] = prop_atoms.net_active_window;
220 supported[i++] = prop_atoms.net_workarea;
221 supported[i++] = prop_atoms.net_client_list;
222 supported[i++] = prop_atoms.net_client_list_stacking;
223 supported[i++] = prop_atoms.net_desktop_names;
224 supported[i++] = prop_atoms.net_close_window;
225 supported[i++] = prop_atoms.net_desktop_layout;
226 supported[i++] = prop_atoms.net_showing_desktop;
227 supported[i++] = prop_atoms.net_wm_name;
228 supported[i++] = prop_atoms.net_wm_visible_name;
229 supported[i++] = prop_atoms.net_wm_icon_name;
230 supported[i++] = prop_atoms.net_wm_visible_icon_name;
231 supported[i++] = prop_atoms.net_wm_desktop;
232 supported[i++] = prop_atoms.net_wm_strut;
233 supported[i++] = prop_atoms.net_wm_window_type;
234 supported[i++] = prop_atoms.net_wm_window_type_desktop;
235 supported[i++] = prop_atoms.net_wm_window_type_dock;
236 supported[i++] = prop_atoms.net_wm_window_type_toolbar;
237 supported[i++] = prop_atoms.net_wm_window_type_menu;
238 supported[i++] = prop_atoms.net_wm_window_type_utility;
239 supported[i++] = prop_atoms.net_wm_window_type_splash;
240 supported[i++] = prop_atoms.net_wm_window_type_dialog;
241 supported[i++] = prop_atoms.net_wm_window_type_normal;
242 supported[i++] = prop_atoms.net_wm_allowed_actions;
243 supported[i++] = prop_atoms.net_wm_action_move;
244 supported[i++] = prop_atoms.net_wm_action_resize;
245 supported[i++] = prop_atoms.net_wm_action_minimize;
246 supported[i++] = prop_atoms.net_wm_action_shade;
247 supported[i++] = prop_atoms.net_wm_action_maximize_horz;
248 supported[i++] = prop_atoms.net_wm_action_maximize_vert;
249 supported[i++] = prop_atoms.net_wm_action_fullscreen;
250 supported[i++] = prop_atoms.net_wm_action_change_desktop;
251 supported[i++] = prop_atoms.net_wm_action_close;
252 supported[i++] = prop_atoms.net_wm_state;
253 supported[i++] = prop_atoms.net_wm_state_modal;
254 supported[i++] = prop_atoms.net_wm_state_maximized_vert;
255 supported[i++] = prop_atoms.net_wm_state_maximized_horz;
256 supported[i++] = prop_atoms.net_wm_state_shaded;
257 supported[i++] = prop_atoms.net_wm_state_skip_taskbar;
258 supported[i++] = prop_atoms.net_wm_state_skip_pager;
259 supported[i++] = prop_atoms.net_wm_state_hidden;
260 supported[i++] = prop_atoms.net_wm_state_fullscreen;
261 supported[i++] = prop_atoms.net_wm_state_above;
262 supported[i++] = prop_atoms.net_wm_state_below;
263 supported[i++] = prop_atoms.net_wm_state_demands_attention;
264 supported[i++] = prop_atoms.net_moveresize_window;
265 supported[i++] = prop_atoms.net_wm_moveresize;
266 supported[i++] = prop_atoms.net_wm_user_time;
267 supported[i++] = prop_atoms.net_frame_extents;
268 #ifdef SYNC
269 supported[i++] = prop_atoms.net_wm_sync_request;
270 supported[i++] = prop_atoms.net_wm_sync_request_counter;
271 #endif
272 supported[i++] = prop_atoms.ob_wm_state_undecorated;
273 g_assert(i == num_support);
274
275 PROP_SETA32(RootWindow(ob_display, ob_screen),
276 net_supported, atom, supported, num_support);
277 g_free(supported);
278
279 return TRUE;
280 }
281
282 void screen_startup(gboolean reconfig)
283 {
284 GSList *it;
285 guint i;
286
287 desktop_cycle_popup = pager_popup_new(FALSE);
288
289 if (!reconfig)
290 /* get the initial size */
291 screen_resize();
292
293 /* set the names */
294 screen_desktop_names = g_new(gchar*,
295 g_slist_length(config_desktops_names) + 1);
296 for (i = 0, it = config_desktops_names; it; ++i, it = g_slist_next(it))
297 screen_desktop_names[i] = it->data; /* dont strdup */
298 screen_desktop_names[i] = NULL;
299 PROP_SETSS(RootWindow(ob_display, ob_screen),
300 net_desktop_names, screen_desktop_names);
301 g_free(screen_desktop_names); /* dont free the individual strings */
302 screen_desktop_names = NULL;
303
304 if (!reconfig)
305 screen_num_desktops = 0;
306 screen_set_num_desktops(config_desktops_num);
307 if (!reconfig) {
308 guint32 d;
309 /* start on the current desktop when a wm was already running */
310 if (PROP_GET32(RootWindow(ob_display, ob_screen),
311 net_current_desktop, cardinal, &d) &&
312 d < screen_num_desktops)
313 {
314 screen_set_desktop(d);
315 } else
316 screen_set_desktop(MIN(config_screen_firstdesk,
317 screen_num_desktops) - 1);
318
319 /* don't start in showing-desktop mode */
320 screen_showing_desktop = FALSE;
321 PROP_SET32(RootWindow(ob_display, ob_screen),
322 net_showing_desktop, cardinal, screen_showing_desktop);
323
324 screen_update_layout();
325 }
326 }
327
328 void screen_shutdown(gboolean reconfig)
329 {
330 Rect **r;
331
332 pager_popup_free(desktop_cycle_popup);
333
334 if (!reconfig) {
335 XSelectInput(ob_display, RootWindow(ob_display, ob_screen),
336 NoEventMask);
337
338 /* we're not running here no more! */
339 PROP_ERASE(RootWindow(ob_display, ob_screen), openbox_pid);
340 /* not without us */
341 PROP_ERASE(RootWindow(ob_display, ob_screen), net_supported);
342 /* don't keep this mode */
343 PROP_ERASE(RootWindow(ob_display, ob_screen), net_showing_desktop);
344
345 XDestroyWindow(ob_display, screen_support_win);
346 }
347
348 g_strfreev(screen_desktop_names);
349 screen_desktop_names = NULL;
350 for (r = area; *r; ++r)
351 g_free(*r);
352 g_free(area);
353 area = NULL;
354 }
355
356 void screen_resize()
357 {
358 static gint oldw = 0, oldh = 0;
359 gint w, h;
360 GList *it;
361 gulong geometry[2];
362
363 w = WidthOfScreen(ScreenOfDisplay(ob_display, ob_screen));
364 h = HeightOfScreen(ScreenOfDisplay(ob_display, ob_screen));
365
366 if (w == oldw && h == oldh) return;
367
368 oldw = w; oldh = h;
369
370 /* Set the _NET_DESKTOP_GEOMETRY hint */
371 screen_physical_size.width = geometry[0] = w;
372 screen_physical_size.height = geometry[1] = h;
373 PROP_SETA32(RootWindow(ob_display, ob_screen),
374 net_desktop_geometry, cardinal, geometry, 2);
375
376 if (ob_state() == OB_STATE_STARTING)
377 return;
378
379 screen_update_areas();
380 dock_configure();
381
382 for (it = client_list; it; it = g_list_next(it))
383 client_move_onscreen(it->data, FALSE);
384 }
385
386 void screen_set_num_desktops(guint num)
387 {
388 guint old;
389 gulong *viewport;
390 GList *it;
391
392 g_assert(num > 0);
393
394 if (screen_num_desktops == num) return;
395
396 old = screen_num_desktops;
397 screen_num_desktops = num;
398 PROP_SET32(RootWindow(ob_display, ob_screen),
399 net_number_of_desktops, cardinal, num);
400
401 /* set the viewport hint */
402 viewport = g_new0(gulong, num * 2);
403 PROP_SETA32(RootWindow(ob_display, ob_screen),
404 net_desktop_viewport, cardinal, viewport, num * 2);
405 g_free(viewport);
406
407 /* the number of rows/columns will differ */
408 screen_update_layout();
409
410 /* may be some unnamed desktops that we need to fill in with names */
411 screen_update_desktop_names();
412
413 /* move windows on desktops that will no longer exist! */
414 for (it = client_list; it; it = g_list_next(it)) {
415 ObClient *c = it->data;
416 if (c->desktop >= num && c->desktop != DESKTOP_ALL)
417 client_set_desktop(c, num - 1, FALSE);
418 }
419
420 /* change our struts/area to match (after moving windows) */
421 screen_update_areas();
422
423 /* change our desktop if we're on one that no longer exists! */
424 if (screen_desktop >= screen_num_desktops)
425 screen_set_desktop(num - 1);
426 }
427
428 void screen_set_desktop(guint num)
429 {
430 ObClient *c;
431 GList *it;
432 guint old;
433
434 g_assert(num < screen_num_desktops);
435
436 old = screen_desktop;
437 screen_desktop = num;
438 PROP_SET32(RootWindow(ob_display, ob_screen),
439 net_current_desktop, cardinal, num);
440
441 if (old == num) return;
442
443 screen_last_desktop = old;
444
445 ob_debug("Moving to desktop %d\n", num+1);
446
447 if (moveresize_client)
448 client_set_desktop(moveresize_client, num, TRUE);
449
450 /* show windows before hiding the rest to lessen the enter/leave events */
451
452 /* show/hide windows from top to bottom */
453 for (it = stacking_list; it; it = g_list_next(it)) {
454 if (WINDOW_IS_CLIENT(it->data)) {
455 ObClient *c = it->data;
456 client_show(c);
457 }
458 }
459
460 /* hide windows from bottom to top */
461 for (it = g_list_last(stacking_list); it; it = g_list_previous(it)) {
462 if (WINDOW_IS_CLIENT(it->data)) {
463 ObClient *c = it->data;
464 client_hide(c);
465 }
466 }
467
468 /* have to try focus here because when you leave an empty desktop
469 there is no focus out to watch for */
470 if ((c = focus_fallback_target(TRUE, focus_client))) {
471 /* reduce flicker by hiliting now rather than waiting for the server
472 FocusIn event */
473 frame_adjust_focus(c->frame, TRUE);
474 client_focus(c);
475 }
476
477 event_ignore_queued_enters();
478
479 if (event_curtime != CurrentTime)
480 screen_desktop_user_time = event_curtime;
481 }
482
483 static void get_row_col(guint d, guint *r, guint *c)
484 {
485 switch (screen_desktop_layout.orientation) {
486 case OB_ORIENTATION_HORZ:
487 switch (screen_desktop_layout.start_corner) {
488 case OB_CORNER_TOPLEFT:
489 *r = d / screen_desktop_layout.columns;
490 *c = d % screen_desktop_layout.columns;
491 break;
492 case OB_CORNER_BOTTOMLEFT:
493 *r = screen_desktop_layout.rows - 1 -
494 d / screen_desktop_layout.columns;
495 *c = d % screen_desktop_layout.columns;
496 break;
497 case OB_CORNER_TOPRIGHT:
498 *r = d / screen_desktop_layout.columns;
499 *c = screen_desktop_layout.columns - 1 -
500 d % screen_desktop_layout.columns;
501 break;
502 case OB_CORNER_BOTTOMRIGHT:
503 *r = screen_desktop_layout.rows - 1 -
504 d / screen_desktop_layout.columns;
505 *c = screen_desktop_layout.columns - 1 -
506 d % screen_desktop_layout.columns;
507 break;
508 }
509 break;
510 case OB_ORIENTATION_VERT:
511 switch (screen_desktop_layout.start_corner) {
512 case OB_CORNER_TOPLEFT:
513 *r = d % screen_desktop_layout.rows;
514 *c = d / screen_desktop_layout.rows;
515 break;
516 case OB_CORNER_BOTTOMLEFT:
517 *r = screen_desktop_layout.rows - 1 -
518 d % screen_desktop_layout.rows;
519 *c = d / screen_desktop_layout.rows;
520 break;
521 case OB_CORNER_TOPRIGHT:
522 *r = d % screen_desktop_layout.rows;
523 *c = screen_desktop_layout.columns - 1 -
524 d / screen_desktop_layout.rows;
525 break;
526 case OB_CORNER_BOTTOMRIGHT:
527 *r = screen_desktop_layout.rows - 1 -
528 d % screen_desktop_layout.rows;
529 *c = screen_desktop_layout.columns - 1 -
530 d / screen_desktop_layout.rows;
531 break;
532 }
533 break;
534 }
535 }
536
537 static guint translate_row_col(guint r, guint c)
538 {
539 switch (screen_desktop_layout.orientation) {
540 case OB_ORIENTATION_HORZ:
541 switch (screen_desktop_layout.start_corner) {
542 case OB_CORNER_TOPLEFT:
543 return r % screen_desktop_layout.rows *
544 screen_desktop_layout.columns +
545 c % screen_desktop_layout.columns;
546 case OB_CORNER_BOTTOMLEFT:
547 return (screen_desktop_layout.rows - 1 -
548 r % screen_desktop_layout.rows) *
549 screen_desktop_layout.columns +
550 c % screen_desktop_layout.columns;
551 case OB_CORNER_TOPRIGHT:
552 return r % screen_desktop_layout.rows *
553 screen_desktop_layout.columns +
554 (screen_desktop_layout.columns - 1 -
555 c % screen_desktop_layout.columns);
556 case OB_CORNER_BOTTOMRIGHT:
557 return (screen_desktop_layout.rows - 1 -
558 r % screen_desktop_layout.rows) *
559 screen_desktop_layout.columns +
560 (screen_desktop_layout.columns - 1 -
561 c % screen_desktop_layout.columns);
562 }
563 case OB_ORIENTATION_VERT:
564 switch (screen_desktop_layout.start_corner) {
565 case OB_CORNER_TOPLEFT:
566 return c % screen_desktop_layout.columns *
567 screen_desktop_layout.rows +
568 r % screen_desktop_layout.rows;
569 case OB_CORNER_BOTTOMLEFT:
570 return c % screen_desktop_layout.columns *
571 screen_desktop_layout.rows +
572 (screen_desktop_layout.rows - 1 -
573 r % screen_desktop_layout.rows);
574 case OB_CORNER_TOPRIGHT:
575 return (screen_desktop_layout.columns - 1 -
576 c % screen_desktop_layout.columns) *
577 screen_desktop_layout.rows +
578 r % screen_desktop_layout.rows;
579 case OB_CORNER_BOTTOMRIGHT:
580 return (screen_desktop_layout.columns - 1 -
581 c % screen_desktop_layout.columns) *
582 screen_desktop_layout.rows +
583 (screen_desktop_layout.rows - 1 -
584 r % screen_desktop_layout.rows);
585 }
586 }
587 g_assert_not_reached();
588 return 0;
589 }
590
591 void screen_desktop_popup(guint d, gboolean show)
592 {
593 Rect *a;
594
595 if (!show) {
596 pager_popup_hide(desktop_cycle_popup);
597 } else {
598 a = screen_physical_area_monitor(0);
599 pager_popup_position(desktop_cycle_popup, CenterGravity,
600 a->x + a->width / 2, a->y + a->height / 2);
601 pager_popup_width(desktop_cycle_popup, MAX(a->width/3, POPUP_WIDTH));
602 pager_popup_height(desktop_cycle_popup, POPUP_HEIGHT);
603
604 pager_popup_delay_show(desktop_cycle_popup, G_USEC_PER_SEC/12,
605 screen_desktop_names[d], d);
606 }
607 }
608
609 guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
610 gboolean dialog, gboolean done, gboolean cancel)
611 {
612 static gboolean first = TRUE;
613 static guint origd, d;
614 guint r, c;
615
616 if (cancel) {
617 d = origd;
618 goto done_cycle;
619 } else if (done && dialog) {
620 goto done_cycle;
621 }
622 if (first) {
623 first = FALSE;
624 d = origd = screen_desktop;
625 }
626
627 get_row_col(d, &r, &c);
628
629 if (linear) {
630 switch (dir) {
631 case OB_DIRECTION_EAST:
632 if (d < screen_num_desktops - 1)
633 ++d;
634 else if (wrap)
635 d = 0;
636 break;
637 case OB_DIRECTION_WEST:
638 if (d > 0)
639 --d;
640 else if (wrap)
641 d = screen_num_desktops - 1;
642 break;
643 default:
644 assert(0);
645 return screen_desktop;
646 }
647 } else {
648 switch (dir) {
649 case OB_DIRECTION_EAST:
650 ++c;
651 if (c >= screen_desktop_layout.columns) {
652 if (wrap) {
653 c = 0;
654 } else {
655 d = screen_desktop;
656 goto show_cycle_dialog;
657 }
658 }
659 d = translate_row_col(r, c);
660 if (d >= screen_num_desktops) {
661 if (wrap) {
662 ++c;
663 } else {
664 d = screen_desktop;
665 goto show_cycle_dialog;
666 }
667 }
668 break;
669 case OB_DIRECTION_WEST:
670 --c;
671 if (c >= screen_desktop_layout.columns) {
672 if (wrap) {
673 c = screen_desktop_layout.columns - 1;
674 } else {
675 d = screen_desktop;
676 goto show_cycle_dialog;
677 }
678 }
679 d = translate_row_col(r, c);
680 if (d >= screen_num_desktops) {
681 if (wrap) {
682 --c;
683 } else {
684 d = screen_desktop;
685 goto show_cycle_dialog;
686 }
687 }
688 break;
689 case OB_DIRECTION_SOUTH:
690 ++r;
691 if (r >= screen_desktop_layout.rows) {
692 if (wrap) {
693 r = 0;
694 } else {
695 d = screen_desktop;
696 goto show_cycle_dialog;
697 }
698 }
699 d = translate_row_col(r, c);
700 if (d >= screen_num_desktops) {
701 if (wrap) {
702 ++r;
703 } else {
704 d = screen_desktop;
705 goto show_cycle_dialog;
706 }
707 }
708 break;
709 case OB_DIRECTION_NORTH:
710 --r;
711 if (r >= screen_desktop_layout.rows) {
712 if (wrap) {
713 r = screen_desktop_layout.rows - 1;
714 } else {
715 d = screen_desktop;
716 goto show_cycle_dialog;
717 }
718 }
719 d = translate_row_col(r, c);
720 if (d >= screen_num_desktops) {
721 if (wrap) {
722 --r;
723 } else {
724 d = screen_desktop;
725 goto show_cycle_dialog;
726 }
727 }
728 break;
729 default:
730 assert(0);
731 return d = screen_desktop;
732 }
733
734 d = translate_row_col(r, c);
735 }
736
737 show_cycle_dialog:
738 if (dialog) {
739 screen_desktop_popup(d, TRUE);
740 return d;
741 }
742
743 done_cycle:
744 first = TRUE;
745
746 screen_desktop_popup(0, FALSE);
747
748 return d;
749 }
750
751 void screen_update_layout()
752 {
753 ObOrientation orient;
754 ObCorner corner;
755 guint rows;
756 guint cols;
757 guint32 *data;
758 guint num;
759 gboolean valid = FALSE;
760
761 if (PROP_GETA32(RootWindow(ob_display, ob_screen),
762 net_desktop_layout, cardinal, &data, &num)) {
763 if (num == 3 || num == 4) {
764
765 if (data[0] == prop_atoms.net_wm_orientation_vert)
766 orient = OB_ORIENTATION_VERT;
767 else if (data[0] == prop_atoms.net_wm_orientation_horz)
768 orient = OB_ORIENTATION_HORZ;
769 else
770 goto screen_update_layout_bail;
771
772 if (num < 4)
773 corner = OB_CORNER_TOPLEFT;
774 else {
775 if (data[3] == prop_atoms.net_wm_topleft)
776 corner = OB_CORNER_TOPLEFT;
777 else if (data[3] == prop_atoms.net_wm_topright)
778 corner = OB_CORNER_TOPRIGHT;
779 else if (data[3] == prop_atoms.net_wm_bottomright)
780 corner = OB_CORNER_BOTTOMRIGHT;
781 else if (data[3] == prop_atoms.net_wm_bottomleft)
782 corner = OB_CORNER_BOTTOMLEFT;
783 else
784 goto screen_update_layout_bail;
785 }
786
787 cols = data[1];
788 rows = data[2];
789
790 /* fill in a zero rows/columns */
791 if ((cols == 0 && rows == 0)) { /* both 0's is bad data.. */
792 goto screen_update_layout_bail;
793 } else {
794 if (cols == 0) {
795 cols = screen_num_desktops / rows;
796 if (rows * cols < screen_num_desktops)
797 cols++;
798 if (rows * cols >= screen_num_desktops + cols)
799 rows--;
800 } else if (rows == 0) {
801 rows = screen_num_desktops / cols;
802 if (cols * rows < screen_num_desktops)
803 rows++;
804 if (cols * rows >= screen_num_desktops + rows)
805 cols--;
806 }
807 }
808
809 /* bounds checking */
810 if (orient == OB_ORIENTATION_HORZ) {
811 cols = MIN(screen_num_desktops, cols);
812 rows = MIN(rows, (screen_num_desktops + cols - 1) / cols);
813 cols = screen_num_desktops / rows +
814 !!(screen_num_desktops % rows);
815 } else {
816 rows = MIN(screen_num_desktops, rows);
817 cols = MIN(cols, (screen_num_desktops + rows - 1) / rows);
818 rows = screen_num_desktops / cols +
819 !!(screen_num_desktops % cols);
820 }
821
822 valid = TRUE;
823 }
824 screen_update_layout_bail:
825 g_free(data);
826 }
827
828 if (!valid) {
829 /* defaults */
830 orient = OB_ORIENTATION_HORZ;
831 corner = OB_CORNER_TOPLEFT;
832 rows = 1;
833 cols = screen_num_desktops;
834 }
835
836 screen_desktop_layout.orientation = orient;
837 screen_desktop_layout.start_corner = corner;
838 screen_desktop_layout.rows = rows;
839 screen_desktop_layout.columns = cols;
840 }
841
842 void screen_update_desktop_names()
843 {
844 guint i;
845
846 /* empty the array */
847 g_strfreev(screen_desktop_names);
848 screen_desktop_names = NULL;
849
850 if (PROP_GETSS(RootWindow(ob_display, ob_screen),
851 net_desktop_names, utf8, &screen_desktop_names))
852 for (i = 0; screen_desktop_names[i] && i <= screen_num_desktops; ++i);
853 else
854 i = 0;
855 if (i <= screen_num_desktops) {
856 screen_desktop_names = g_renew(gchar*, screen_desktop_names,
857 screen_num_desktops + 1);
858 screen_desktop_names[screen_num_desktops] = NULL;
859 for (; i < screen_num_desktops; ++i)
860 screen_desktop_names[i] = g_strdup_printf("Desktop %i", i + 1);
861 }
862 }
863
864 void screen_show_desktop(gboolean show)
865 {
866 GList *it;
867
868 if (show == screen_showing_desktop) return; /* no change */
869
870 screen_showing_desktop = show;
871
872 if (show) {
873 /* bottom to top */
874 for (it = g_list_last(stacking_list); it; it = g_list_previous(it)) {
875 if (WINDOW_IS_CLIENT(it->data)) {
876 ObClient *client = it->data;
877 client_showhide(client);
878 }
879 }
880 } else {
881 /* top to bottom */
882 for (it = stacking_list; it; it = g_list_next(it)) {
883 if (WINDOW_IS_CLIENT(it->data)) {
884 ObClient *client = it->data;
885 client_showhide(client);
886 }
887 }
888 }
889
890 if (show) {
891 /* focus desktop */
892 for (it = focus_order; it; it = g_list_next(it)) {
893 ObClient *c = it->data;
894 if (c->type == OB_CLIENT_TYPE_DESKTOP &&
895 (c->desktop == screen_desktop || c->desktop == DESKTOP_ALL) &&
896 client_focus(it->data))
897 break;
898 }
899 } else {
900 ObClient *c;
901
902 /* use NULL for the "old" argument because the desktop was focused
903 and we don't want to fallback to the desktop by default */
904 if ((c = focus_fallback_target(TRUE, NULL)))
905 client_focus(c);
906 }
907
908 show = !!show; /* make it boolean */
909 PROP_SET32(RootWindow(ob_display, ob_screen),
910 net_showing_desktop, cardinal, show);
911 }
912
913 void screen_install_colormap(ObClient *client, gboolean install)
914 {
915 if (client == NULL) {
916 if (install)
917 XInstallColormap(RrDisplay(ob_rr_inst), RrColormap(ob_rr_inst));
918 else
919 XUninstallColormap(RrDisplay(ob_rr_inst), RrColormap(ob_rr_inst));
920 } else {
921 xerror_set_ignore(TRUE);
922 if (install) {
923 if (client->colormap != None)
924 XInstallColormap(RrDisplay(ob_rr_inst), client->colormap);
925 } else
926 XUninstallColormap(RrDisplay(ob_rr_inst), client->colormap);
927 xerror_set_ignore(FALSE);
928 }
929 }
930
931 static inline void
932 screen_area_add_strut_left(const StrutPartial *s, const Rect *monitor_area,
933 gint edge, Strut *ret)
934 {
935 if (s->left &&
936 ((s->left_end <= s->left_start) ||
937 (RECT_TOP(*monitor_area) < s->left_end &&
938 RECT_BOTTOM(*monitor_area) > s->left_start)))
939 ret->left = MAX(ret->left, edge);
940 }
941
942 static inline void
943 screen_area_add_strut_top(const StrutPartial *s, const Rect *monitor_area,
944 gint edge, Strut *ret)
945 {
946 if (s->top &&
947 ((s->top_end <= s->top_start) ||
948 (RECT_LEFT(*monitor_area) < s->top_end &&
949 RECT_RIGHT(*monitor_area) > s->top_start)))
950 ret->top = MAX(ret->top, edge);
951 }
952
953 static inline void
954 screen_area_add_strut_right(const StrutPartial *s, const Rect *monitor_area,
955 gint edge, Strut *ret)
956 {
957 if (s->right &&
958 ((s->right_end <= s->right_start) ||
959 (RECT_TOP(*monitor_area) < s->right_end &&
960 RECT_BOTTOM(*monitor_area) > s->right_start)))
961 ret->right = MAX(ret->right, edge);
962 }
963
964 static inline void
965 screen_area_add_strut_bottom(const StrutPartial *s, const Rect *monitor_area,
966 gint edge, Strut *ret)
967 {
968 if (s->bottom &&
969 ((s->bottom_end <= s->bottom_start) ||
970 (RECT_LEFT(*monitor_area) < s->bottom_end &&
971 RECT_RIGHT(*monitor_area) > s->bottom_start)))
972 ret->bottom = MAX(ret->bottom, edge);
973 }
974
975 void screen_update_areas()
976 {
977 guint i, x;
978 gulong *dims;
979 GList *it;
980 gint o;
981
982 g_free(monitor_area);
983 extensions_xinerama_screens(&monitor_area, &screen_num_monitors);
984
985 if (area) {
986 for (i = 0; area[i]; ++i)
987 g_free(area[i]);
988 g_free(area);
989 }
990
991 area = g_new(Rect*, screen_num_desktops + 2);
992 for (i = 0; i < screen_num_desktops + 1; ++i)
993 area[i] = g_new0(Rect, screen_num_monitors + 1);
994 area[i] = NULL;
995
996 dims = g_new(gulong, 4 * screen_num_desktops);
997
998 for (i = 0; i < screen_num_desktops + 1; ++i) {
999 Strut *struts;
1000 gint l, r, t, b;
1001
1002 struts = g_new0(Strut, screen_num_monitors);
1003
1004 /* calc the xinerama areas */
1005 for (x = 0; x < screen_num_monitors; ++x) {
1006 area[i][x] = monitor_area[x];
1007 if (x == 0) {
1008 l = monitor_area[x].x;
1009 t = monitor_area[x].y;
1010 r = monitor_area[x].x + monitor_area[x].width - 1;
1011 b = monitor_area[x].y + monitor_area[x].height - 1;
1012 } else {
1013 l = MIN(l, monitor_area[x].x);
1014 t = MIN(t, monitor_area[x].y);
1015 r = MAX(r, monitor_area[x].x + monitor_area[x].width - 1);
1016 b = MAX(b, monitor_area[x].y + monitor_area[x].height - 1);
1017 }
1018 }
1019 RECT_SET(area[i][x], l, t, r - l + 1, b - t + 1);
1020
1021 /* apply the struts */
1022
1023 /* find the left-most xin heads, i do this in 2 loops :| */
1024 o = area[i][0].x;
1025 for (x = 1; x < screen_num_monitors; ++x)
1026 o = MIN(o, area[i][x].x);
1027
1028 for (x = 0; x < screen_num_monitors; ++x) {
1029 for (it = client_list; it; it = g_list_next(it)) {
1030 ObClient *c = it->data;
1031 screen_area_add_strut_left(&c->strut,
1032 &monitor_area[x],
1033 o + c->strut.left - area[i][x].x,
1034 &struts[x]);
1035 }
1036 screen_area_add_strut_left(&dock_strut,
1037 &monitor_area[x],
1038 o + dock_strut.left - area[i][x].x,
1039 &struts[x]);
1040
1041 area[i][x].x += struts[x].left;
1042 area[i][x].width -= struts[x].left;
1043 }
1044
1045 /* find the top-most xin heads, i do this in 2 loops :| */
1046 o = area[i][0].y;
1047 for (x = 1; x < screen_num_monitors; ++x)
1048 o = MIN(o, area[i][x].y);
1049
1050 for (x = 0; x < screen_num_monitors; ++x) {
1051 for (it = client_list; it; it = g_list_next(it)) {
1052 ObClient *c = it->data;
1053 screen_area_add_strut_top(&c->strut,
1054 &monitor_area[x],
1055 o + c->strut.top - area[i][x].y,
1056 &struts[x]);
1057 }
1058 screen_area_add_strut_top(&dock_strut,
1059 &monitor_area[x],
1060 o + dock_strut.top - area[i][x].y,
1061 &struts[x]);
1062
1063 area[i][x].y += struts[x].top;
1064 area[i][x].height -= struts[x].top;
1065 }
1066
1067 /* find the right-most xin heads, i do this in 2 loops :| */
1068 o = area[i][0].x + area[i][0].width - 1;
1069 for (x = 1; x < screen_num_monitors; ++x)
1070 o = MAX(o, area[i][x].x + area[i][x].width - 1);
1071
1072 for (x = 0; x < screen_num_monitors; ++x) {
1073 for (it = client_list; it; it = g_list_next(it)) {
1074 ObClient *c = it->data;
1075 screen_area_add_strut_right(&c->strut,
1076 &monitor_area[x],
1077 (area[i][x].x +
1078 area[i][x].width - 1) -
1079 (o - c->strut.right),
1080 &struts[x]);
1081 }
1082 screen_area_add_strut_right(&dock_strut,
1083 &monitor_area[x],
1084 (area[i][x].x +
1085 area[i][x].width - 1) -
1086 (o - dock_strut.right),
1087 &struts[x]);
1088
1089 area[i][x].width -= struts[x].right;
1090 }
1091
1092 /* find the bottom-most xin heads, i do this in 2 loops :| */
1093 o = area[i][0].y + area[i][0].height - 1;
1094 for (x = 1; x < screen_num_monitors; ++x)
1095 o = MAX(o, area[i][x].y + area[i][x].height - 1);
1096
1097 for (x = 0; x < screen_num_monitors; ++x) {
1098 for (it = client_list; it; it = g_list_next(it)) {
1099 ObClient *c = it->data;
1100 screen_area_add_strut_bottom(&c->strut,
1101 &monitor_area[x],
1102 (area[i][x].y +
1103 area[i][x].height - 1) - \
1104 (o - c->strut.bottom),
1105 &struts[x]);
1106 }
1107 screen_area_add_strut_bottom(&dock_strut,
1108 &monitor_area[x],
1109 (area[i][x].y +
1110 area[i][x].height - 1) - \
1111 (o - dock_strut.bottom),
1112 &struts[x]);
1113
1114 area[i][x].height -= struts[x].bottom;
1115 }
1116
1117 l = RECT_LEFT(area[i][0]);
1118 t = RECT_TOP(area[i][0]);
1119 r = RECT_RIGHT(area[i][0]);
1120 b = RECT_BOTTOM(area[i][0]);
1121 for (x = 1; x < screen_num_monitors; ++x) {
1122 l = MIN(l, RECT_LEFT(area[i][x]));
1123 t = MIN(l, RECT_TOP(area[i][x]));
1124 r = MAX(r, RECT_RIGHT(area[i][x]));
1125 b = MAX(b, RECT_BOTTOM(area[i][x]));
1126 }
1127 RECT_SET(area[i][screen_num_monitors], l, t,
1128 r - l + 1, b - t + 1);
1129
1130 /* XXX optimize when this is run? */
1131
1132 /* the area has changed, adjust all the maximized
1133 windows */
1134 for (it = client_list; it; it = g_list_next(it)) {
1135 ObClient *c = it->data;
1136 if (i < screen_num_desktops) {
1137 if (c->desktop == i)
1138 client_reconfigure(c);
1139 } else if (c->desktop == DESKTOP_ALL)
1140 client_reconfigure(c);
1141 }
1142 if (i < screen_num_desktops) {
1143 /* don't set these for the 'all desktops' area */
1144 dims[(i * 4) + 0] = area[i][screen_num_monitors].x;
1145 dims[(i * 4) + 1] = area[i][screen_num_monitors].y;
1146 dims[(i * 4) + 2] = area[i][screen_num_monitors].width;
1147 dims[(i * 4) + 3] = area[i][screen_num_monitors].height;
1148 }
1149
1150 g_free(struts);
1151 }
1152
1153 PROP_SETA32(RootWindow(ob_display, ob_screen), net_workarea, cardinal,
1154 dims, 4 * screen_num_desktops);
1155
1156 g_free(dims);
1157 }
1158
1159 Rect *screen_area(guint desktop)
1160 {
1161 return screen_area_monitor(desktop, screen_num_monitors);
1162 }
1163
1164 Rect *screen_area_monitor(guint desktop, guint head)
1165 {
1166 if (head > screen_num_monitors)
1167 return NULL;
1168 if (desktop >= screen_num_desktops) {
1169 if (desktop == DESKTOP_ALL)
1170 return &area[screen_num_desktops][head];
1171 return NULL;
1172 }
1173 return &area[desktop][head];
1174 }
1175
1176 guint screen_find_monitor(Rect *search)
1177 {
1178 guint i;
1179 guint most = 0;
1180 guint mostv = 0;
1181
1182 for (i = 0; i < screen_num_monitors; ++i) {
1183 Rect *area = screen_physical_area_monitor(i);
1184 if (RECT_INTERSECTS_RECT(*area, *search)) {
1185 Rect r;
1186 guint v;
1187
1188 RECT_SET_INTERSECTION(r, *area, *search);
1189 v = r.width * r.height;
1190
1191 if (v > mostv) {
1192 mostv = v;
1193 most = i;
1194 }
1195 }
1196 }
1197 return most;
1198 }
1199
1200 Rect *screen_physical_area()
1201 {
1202 return screen_physical_area_monitor(screen_num_monitors);
1203 }
1204
1205 Rect *screen_physical_area_monitor(guint head)
1206 {
1207 if (head > screen_num_monitors)
1208 return NULL;
1209 return &monitor_area[head];
1210 }
1211
1212 void screen_set_root_cursor()
1213 {
1214 if (sn_app_starting())
1215 XDefineCursor(ob_display, RootWindow(ob_display, ob_screen),
1216 ob_cursor(OB_CURSOR_BUSY));
1217 else
1218 XDefineCursor(ob_display, RootWindow(ob_display, ob_screen),
1219 ob_cursor(OB_CURSOR_POINTER));
1220 }
1221
1222 gboolean screen_pointer_pos(gint *x, gint *y)
1223 {
1224 Window w;
1225 gint i;
1226 guint u;
1227
1228 return !!XQueryPointer(ob_display, RootWindow(ob_display, ob_screen),
1229 &w, &w, x, y, &i, &i, &u);
1230 }
This page took 0.091251 seconds and 4 git commands to generate.