]> Dogcows Code - chaz/openbox/blob - openbox/client.c
turn on demands_attention when urgent gets set, and turn it off when urgent is remove...
[chaz/openbox] / openbox / client.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 client.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 "client.h"
21 #include "debug.h"
22 #include "startupnotify.h"
23 #include "dock.h"
24 #include "xerror.h"
25 #include "screen.h"
26 #include "moveresize.h"
27 #include "place.h"
28 #include "prop.h"
29 #include "extensions.h"
30 #include "frame.h"
31 #include "session.h"
32 #include "event.h"
33 #include "grab.h"
34 #include "focus.h"
35 #include "stacking.h"
36 #include "openbox.h"
37 #include "group.h"
38 #include "config.h"
39 #include "menuframe.h"
40 #include "keyboard.h"
41 #include "mouse.h"
42 #include "render/render.h"
43
44 #ifdef HAVE_UNISTD_H
45 # include <unistd.h>
46 #endif
47
48 #include <glib.h>
49 #include <X11/Xutil.h>
50
51 /*! The event mask to grab on client windows */
52 #define CLIENT_EVENTMASK (PropertyChangeMask | StructureNotifyMask | \
53 ColormapChangeMask)
54
55 #define CLIENT_NOPROPAGATEMASK (ButtonPressMask | ButtonReleaseMask | \
56 ButtonMotionMask)
57
58 typedef struct
59 {
60 ObClientDestructor func;
61 gpointer data;
62 } Destructor;
63
64 GList *client_list = NULL;
65
66 static GSList *client_destructors = NULL;
67
68 static void client_get_all(ObClient *self);
69 static void client_toggle_border(ObClient *self, gboolean show);
70 static void client_get_startup_id(ObClient *self);
71 static void client_get_area(ObClient *self);
72 static void client_get_desktop(ObClient *self);
73 static void client_get_state(ObClient *self);
74 static void client_get_layer(ObClient *self);
75 static void client_get_shaped(ObClient *self);
76 static void client_get_mwm_hints(ObClient *self);
77 static void client_get_gravity(ObClient *self);
78 static void client_get_client_machine(ObClient *self);
79 static void client_get_colormap(ObClient *self);
80 static void client_change_allowed_actions(ObClient *self);
81 static void client_change_state(ObClient *self);
82 static void client_change_wm_state(ObClient *self);
83 static void client_apply_startup_state(ObClient *self, gint x, gint y);
84 static void client_restore_session_state(ObClient *self);
85 static void client_restore_session_stacking(ObClient *self);
86 static ObAppSettings *client_get_settings_state(ObClient *self);
87
88 void client_startup(gboolean reconfig)
89 {
90 if (reconfig) return;
91
92 client_set_list();
93 }
94
95 void client_shutdown(gboolean reconfig)
96 {
97 }
98
99 void client_add_destructor(ObClientDestructor func, gpointer data)
100 {
101 Destructor *d = g_new(Destructor, 1);
102 d->func = func;
103 d->data = data;
104 client_destructors = g_slist_prepend(client_destructors, d);
105 }
106
107 void client_remove_destructor(ObClientDestructor func)
108 {
109 GSList *it;
110
111 for (it = client_destructors; it; it = g_slist_next(it)) {
112 Destructor *d = it->data;
113 if (d->func == func) {
114 g_free(d);
115 client_destructors = g_slist_delete_link(client_destructors, it);
116 break;
117 }
118 }
119 }
120
121 void client_set_list()
122 {
123 Window *windows, *win_it;
124 GList *it;
125 guint size = g_list_length(client_list);
126
127 /* create an array of the window ids */
128 if (size > 0) {
129 windows = g_new(Window, size);
130 win_it = windows;
131 for (it = client_list; it; it = g_list_next(it), ++win_it)
132 *win_it = ((ObClient*)it->data)->window;
133 } else
134 windows = NULL;
135
136 PROP_SETA32(RootWindow(ob_display, ob_screen),
137 net_client_list, window, (gulong*)windows, size);
138
139 if (windows)
140 g_free(windows);
141
142 stacking_set_list();
143 }
144
145 /*
146 void client_foreach_transient(ObClient *self, ObClientForeachFunc func, gpointer data)
147 {
148 GSList *it;
149
150 for (it = self->transients; it; it = g_slist_next(it)) {
151 if (!func(it->data, data)) return;
152 client_foreach_transient(it->data, func, data);
153 }
154 }
155
156 void client_foreach_ancestor(ObClient *self, ObClientForeachFunc func, gpointer data)
157 {
158 if (self->transient_for) {
159 if (self->transient_for != OB_TRAN_GROUP) {
160 if (!func(self->transient_for, data)) return;
161 client_foreach_ancestor(self->transient_for, func, data);
162 } else {
163 GSList *it;
164
165 for (it = self->group->members; it; it = g_slist_next(it))
166 if (it->data != self &&
167 !((ObClient*)it->data)->transient_for) {
168 if (!func(it->data, data)) return;
169 client_foreach_ancestor(it->data, func, data);
170 }
171 }
172 }
173 }
174 */
175
176 void client_manage_all()
177 {
178 guint i, j, nchild;
179 Window w, *children;
180 XWMHints *wmhints;
181 XWindowAttributes attrib;
182
183 XQueryTree(ob_display, RootWindow(ob_display, ob_screen),
184 &w, &w, &children, &nchild);
185
186 /* remove all icon windows from the list */
187 for (i = 0; i < nchild; i++) {
188 if (children[i] == None) continue;
189 wmhints = XGetWMHints(ob_display, children[i]);
190 if (wmhints) {
191 if ((wmhints->flags & IconWindowHint) &&
192 (wmhints->icon_window != children[i]))
193 for (j = 0; j < nchild; j++)
194 if (children[j] == wmhints->icon_window) {
195 children[j] = None;
196 break;
197 }
198 XFree(wmhints);
199 }
200 }
201
202 for (i = 0; i < nchild; ++i) {
203 if (children[i] == None)
204 continue;
205 if (XGetWindowAttributes(ob_display, children[i], &attrib)) {
206 if (attrib.override_redirect) continue;
207
208 if (attrib.map_state != IsUnmapped)
209 client_manage(children[i]);
210 }
211 }
212 XFree(children);
213 }
214
215 void client_manage(Window window)
216 {
217 ObClient *self;
218 XEvent e;
219 XWindowAttributes attrib;
220 XSetWindowAttributes attrib_set;
221 XWMHints *wmhint;
222 gboolean activate = FALSE;
223 ObAppSettings *settings;
224 gint newx, newy;
225
226 grab_server(TRUE);
227
228 /* check if it has already been unmapped by the time we started mapping.
229 the grab does a sync so we don't have to here */
230 if (XCheckTypedWindowEvent(ob_display, window, DestroyNotify, &e) ||
231 XCheckTypedWindowEvent(ob_display, window, UnmapNotify, &e))
232 {
233 XPutBackEvent(ob_display, &e);
234
235 ob_debug("Trying to manage unmapped window. Aborting that.\n");
236 grab_server(FALSE);
237 return; /* don't manage it */
238 }
239
240 /* make sure it isn't an override-redirect window */
241 if (!XGetWindowAttributes(ob_display, window, &attrib) ||
242 attrib.override_redirect)
243 {
244 grab_server(FALSE);
245 return; /* don't manage it */
246 }
247
248 /* is the window a docking app */
249 if ((wmhint = XGetWMHints(ob_display, window))) {
250 if ((wmhint->flags & StateHint) &&
251 wmhint->initial_state == WithdrawnState)
252 {
253 dock_add(window, wmhint);
254 grab_server(FALSE);
255 XFree(wmhint);
256 return;
257 }
258 XFree(wmhint);
259 }
260
261 ob_debug("Managing window: %lx\n", window);
262
263 /* choose the events we want to receive on the CLIENT window */
264 attrib_set.event_mask = CLIENT_EVENTMASK;
265 attrib_set.do_not_propagate_mask = CLIENT_NOPROPAGATEMASK;
266 XChangeWindowAttributes(ob_display, window,
267 CWEventMask|CWDontPropagate, &attrib_set);
268
269
270 /* create the ObClient struct, and populate it from the hints on the
271 window */
272 self = g_new0(ObClient, 1);
273 self->obwin.type = Window_Client;
274 self->window = window;
275
276 /* non-zero defaults */
277 self->wmstate = WithdrawnState; /* make sure it gets updated first time */
278 self->layer = -1;
279 self->desktop = screen_num_desktops; /* always an invalid value */
280 self->user_time = CurrentTime;
281
282 client_get_all(self);
283 /* per-app settings override stuff, and return the settings for other
284 uses too */
285 settings = client_get_settings_state(self);
286 /* the session should get the last say */
287 client_restore_session_state(self);
288
289 client_calc_layer(self);
290
291 {
292 Time t = sn_app_started(self->startup_id, self->class);
293 if (t) self->user_time = t;
294 }
295
296 /* update the focus lists, do this before the call to change_state or
297 it can end up in the list twice! */
298 focus_order_add_new(self);
299
300 /* remove the client's border (and adjust re gravity) */
301 client_toggle_border(self, FALSE);
302
303 /* specify that if we exit, the window should not be destroyed and should
304 be reparented back to root automatically */
305 XChangeSaveSet(ob_display, window, SetModeInsert);
306
307 /* create the decoration frame for the client window */
308 self->frame = frame_new(self);
309
310 frame_grab_client(self->frame, self);
311
312 /* do this after we have a frame.. it uses the frame to help determine the
313 WM_STATE to apply. */
314 client_change_state(self);
315
316 grab_server(FALSE);
317
318 stacking_add_nonintrusive(CLIENT_AS_WINDOW(self));
319 client_restore_session_stacking(self);
320
321 /* focus the new window? */
322 if (ob_state() != OB_STATE_STARTING &&
323 !self->iconic &&
324 /* this means focus=true for window is same as config_focus_new=true */
325 ((config_focus_new || (settings && settings->focus == 1)) ||
326 client_search_focus_parent(self)) &&
327 /* this checks for focus=false for the window */
328 (!settings || settings->focus != 0) &&
329 /* note the check against Type_Normal/Dialog, not client_normal(self),
330 which would also include other types. in this case we want more
331 strict rules for focus */
332 (self->type == OB_CLIENT_TYPE_NORMAL ||
333 self->type == OB_CLIENT_TYPE_DIALOG))
334 {
335 activate = TRUE;
336 }
337
338 /* get the current position */
339 newx = self->area.x;
340 newy = self->area.y;
341
342 /* figure out placement for the window */
343 if (ob_state() == OB_STATE_RUNNING) {
344 gboolean transient;
345
346 transient = place_client(self, &newx, &newy, settings);
347
348 /* make sure the window is visible. */
349 client_find_onscreen(self, &newx, &newy,
350 self->frame->area.width,
351 self->frame->area.height,
352 /* non-normal clients has less rules, and
353 windows that are being restored from a
354 session do also. we can assume you want
355 it back where you saved it. Clients saying
356 they placed themselves are subjected to
357 harder rules, ones that are placed by
358 place.c or by the user are allowed partially
359 off-screen and on xinerama divides (ie,
360 it is up to the placement routines to avoid
361 the xinerama divides) */
362 transient ||
363 (((self->positioned & PPosition) &&
364 !(self->positioned & USPosition)) &&
365 client_normal(self) &&
366 !self->session));
367 }
368
369 /* do this after the window is placed, so the premax/prefullscreen numbers
370 won't be all wacko!!
371 also, this moves the window to the position where it has been placed
372 */
373 ob_debug("placing window 0x%x at %d, %d with size %d x %d\n",
374 self->window, newx, newy, self->area.width, self->area.height);
375 client_apply_startup_state(self, newx, newy);
376
377 mouse_grab_for_client(self, TRUE);
378
379 if (activate) {
380 guint32 last_time = focus_client ?
381 focus_client->user_time : CurrentTime;
382
383 /* This is focus stealing prevention */
384 ob_debug("Want to focus new window 0x%x with time %u (last time %u)\n",
385 self->window, self->user_time, last_time);
386
387 /* if it's on another desktop */
388 if (!(self->desktop == screen_desktop || self->desktop == DESKTOP_ALL)
389 && /* the timestamp is from before you changed desktops */
390 self->user_time && screen_desktop_user_time &&
391 !event_time_after(self->user_time, screen_desktop_user_time))
392 {
393 activate = FALSE;
394 }
395 /* If nothing is focused, or a parent was focused, then focus this
396 always
397 */
398 else if (!focus_client || client_search_focus_parent(self) != NULL)
399 activate = TRUE;
400 else
401 {
402 /* If time stamp is old, don't steal focus */
403 if (self->user_time && last_time &&
404 !event_time_after(self->user_time, last_time))
405 {
406 activate = FALSE;
407 }
408 /* Don't steal focus from globally active clients.
409 I stole this idea from KWin. It seems nice.
410 */
411 if (!(focus_client->can_focus || focus_client->focus_notify))
412 activate = FALSE;
413 }
414
415 if (!activate) {
416 ob_debug("Focus stealing prevention activated for %s with time %u "
417 "(last time %u)\n",
418 self->title, self->user_time, last_time);
419 /* if the client isn't focused, then hilite it so the user
420 knows it is there */
421 client_hilite(self, TRUE);
422 }
423 }
424 else {
425 /* This may look rather odd. Well it's because new windows are added
426 to the stacking order non-intrusively. If we're not going to focus
427 the new window or hilite it, then we raise it to the top. This will
428 take affect for things that don't get focused like splash screens.
429 Also if you don't have focus_new enabled, then it's going to get
430 raised to the top. Legacy begets legacy I guess?
431 */
432 client_raise(self);
433 }
434
435 /* this has to happen before we try focus the window, but we want it to
436 happen after the client's stacking has been determined or it looks bad
437 */
438 client_show(self);
439
440 /* use client_focus instead of client_activate cuz client_activate does
441 stuff like switch desktops etc and I'm not interested in all that when
442 a window maps since its not based on an action from the user like
443 clicking a window to activate it. so keep the new window out of the way
444 but do focus it. */
445 if (activate)
446 client_activate(self, FALSE, TRUE);
447
448 /* add to client list/map */
449 client_list = g_list_append(client_list, self);
450 g_hash_table_insert(window_map, &self->window, self);
451
452 /* this has to happen after we're in the client_list */
453 if (STRUT_EXISTS(self->strut))
454 screen_update_areas();
455
456 /* update the list hints */
457 client_set_list();
458
459 ob_debug("Managed window 0x%lx (%s)\n", window, self->class);
460 }
461
462 void client_unmanage_all()
463 {
464 while (client_list != NULL)
465 client_unmanage(client_list->data);
466 }
467
468 void client_unmanage(ObClient *self)
469 {
470 guint j;
471 GSList *it;
472
473 ob_debug("Unmanaging window: %lx (%s) (%s)\n", self->window, self->class,
474 self->title ? self->title : "");
475
476 g_assert(self != NULL);
477
478 /* we dont want events no more. do this before hiding the frame so we
479 don't generate more events */
480 XSelectInput(ob_display, self->window, NoEventMask);
481
482 frame_hide(self->frame);
483 /* flush to send the hide to the server quickly */
484 XFlush(ob_display);
485
486 /* ignore enter events from the unmap so it doesnt mess with the focus */
487 event_ignore_queued_enters();
488
489 mouse_grab_for_client(self, FALSE);
490
491 /* remove the window from our save set */
492 XChangeSaveSet(ob_display, self->window, SetModeDelete);
493
494 /* update the focus lists */
495 focus_order_remove(self);
496 if (client_focused(self)) {
497 /* we have to fall back here because we might not get a focus out.
498 1. we need to xselectinput off the window before we unmap it because
499 otherwise we end up getting unmapnotifies we don't want and they
500 can mess up mapping it again quickly
501 2. this means that if we unmanage from a synthetic unmapnotify, we
502 are the ones unmapped it, and causing the focusout. so we won't
503 get the focusout event.
504 3. we can't handle focusin events on the root window because they
505 come from all screens, so the focus change gets lost
506
507 if this ever gets removed in the future MAKE SURE to replace it
508 with:
509 /- don't leave an invalid focus_client -/
510 focus_client = NULL;
511 */
512 focus_fallback(FALSE);
513 }
514
515 client_list = g_list_remove(client_list, self);
516 stacking_remove(self);
517 g_hash_table_remove(window_map, &self->window);
518
519 /* once the client is out of the list, update the struts to remove its
520 influence */
521 if (STRUT_EXISTS(self->strut))
522 screen_update_areas();
523
524 for (it = client_destructors; it; it = g_slist_next(it)) {
525 Destructor *d = it->data;
526 d->func(self, d->data);
527 }
528
529 /* tell our parent(s) that we're gone */
530 if (self->transient_for == OB_TRAN_GROUP) { /* transient of group */
531 for (it = self->group->members; it; it = g_slist_next(it))
532 if (it->data != self)
533 ((ObClient*)it->data)->transients =
534 g_slist_remove(((ObClient*)it->data)->transients, self);
535 } else if (self->transient_for) { /* transient of window */
536 self->transient_for->transients =
537 g_slist_remove(self->transient_for->transients, self);
538 }
539
540 /* tell our transients that we're gone */
541 for (it = self->transients; it; it = g_slist_next(it)) {
542 if (((ObClient*)it->data)->transient_for != OB_TRAN_GROUP) {
543 ((ObClient*)it->data)->transient_for = NULL;
544 client_calc_layer(it->data);
545 }
546 }
547
548 /* remove from its group */
549 if (self->group) {
550 group_remove(self->group, self);
551 self->group = NULL;
552 }
553
554 /* restore the window's original geometry so it is not lost */
555 {
556 Rect a = self->area;
557
558 if (self->fullscreen)
559 a = self->pre_fullscreen_area;
560 else if (self->max_horz || self->max_vert) {
561 if (self->max_horz) {
562 a.x = self->pre_max_area.x;
563 a.width = self->pre_max_area.width;
564 }
565 if (self->max_vert) {
566 a.y = self->pre_max_area.y;
567 a.height = self->pre_max_area.height;
568 }
569 }
570
571 /* give the client its border back */
572 client_toggle_border(self, TRUE);
573
574 self->fullscreen = self->max_horz = self->max_vert = FALSE;
575 self->decorations = 0; /* unmanaged windows have no decor */
576
577 client_move_resize(self, a.x, a.y, a.width, a.height);
578 }
579
580 /* reparent the window out of the frame, and free the frame */
581 frame_release_client(self->frame, self);
582 self->frame = NULL;
583
584 if (ob_state() != OB_STATE_EXITING) {
585 /* these values should not be persisted across a window
586 unmapping/mapping */
587 PROP_ERASE(self->window, net_wm_desktop);
588 PROP_ERASE(self->window, net_wm_state);
589 PROP_ERASE(self->window, wm_state);
590 } else {
591 /* if we're left in an unmapped state, the client wont be mapped. this
592 is bad, since we will no longer be managing the window on restart */
593 XMapWindow(ob_display, self->window);
594 }
595
596 ob_debug("Unmanaged window 0x%lx\n", self->window);
597
598 /* free all data allocated in the client struct */
599 g_slist_free(self->transients);
600 for (j = 0; j < self->nicons; ++j)
601 g_free(self->icons[j].data);
602 if (self->nicons > 0)
603 g_free(self->icons);
604 g_free(self->title);
605 g_free(self->icon_title);
606 g_free(self->name);
607 g_free(self->class);
608 g_free(self->role);
609 g_free(self->client_machine);
610 g_free(self->sm_client_id);
611 g_free(self);
612
613 /* update the list hints */
614 client_set_list();
615 }
616
617 static ObAppSettings *client_get_settings_state(ObClient *self)
618 {
619 ObAppSettings *settings = NULL;
620 GSList *it;
621
622 for (it = config_per_app_settings; it; it = g_slist_next(it)) {
623 ObAppSettings *app = it->data;
624
625 if ((app->name && !app->class && !strcmp(app->name, self->name))
626 || (app->class && !app->name && !strcmp(app->class, self->class))
627 || (app->class && app->name && !strcmp(app->class, self->class)
628 && !strcmp(app->name, self->name)))
629 {
630 ob_debug("Window matching: %s\n", app->name);
631 /* Match if no role was specified in the per app setting, or if the
632 * string matches the beginning of the role, since apps like to set
633 * the role to things like browser-window-23c4b2f */
634 if (!app->role
635 || !strncmp(app->role, self->role, strlen(app->role)))
636 {
637 /* use this one */
638 settings = app;
639 break;
640 }
641 }
642 }
643
644 if (settings) {
645 if (settings->shade != -1)
646 self->shaded = !!settings->shade;
647 if (settings->decor != -1)
648 self->undecorated = !settings->decor;
649 if (settings->iconic != -1)
650 self->iconic = !!settings->iconic;
651 if (settings->skip_pager != -1)
652 self->skip_pager = !!settings->skip_pager;
653 if (settings->skip_taskbar != -1)
654 self->skip_taskbar = !!settings->skip_taskbar;
655
656 if (settings->max_vert != -1)
657 self->max_vert = !!settings->max_vert;
658 if (settings->max_horz != -1)
659 self->max_horz = !!settings->max_horz;
660
661 if (settings->fullscreen != -1)
662 self->fullscreen = !!settings->fullscreen;
663
664 if (settings->desktop < screen_num_desktops
665 || settings->desktop == DESKTOP_ALL)
666 self->desktop = settings->desktop;
667
668 if (settings->layer == -1) {
669 self->below = TRUE;
670 self->above = FALSE;
671 }
672 else if (settings->layer == 0) {
673 self->below = FALSE;
674 self->above = FALSE;
675 }
676 else if (settings->layer == 1) {
677 self->below = FALSE;
678 self->above = TRUE;
679 }
680 }
681 return settings;
682 }
683
684 static void client_restore_session_state(ObClient *self)
685 {
686 GList *it;
687
688 if (!(it = session_state_find(self)))
689 return;
690
691 self->session = it->data;
692
693 RECT_SET_POINT(self->area, self->session->x, self->session->y);
694 self->positioned = PPosition;
695 if (self->session->w > 0)
696 self->area.width = self->session->w;
697 if (self->session->h > 0)
698 self->area.height = self->session->h;
699 XResizeWindow(ob_display, self->window,
700 self->area.width, self->area.height);
701
702 self->desktop = (self->session->desktop == DESKTOP_ALL ?
703 self->session->desktop :
704 MIN(screen_num_desktops - 1, self->session->desktop));
705 PROP_SET32(self->window, net_wm_desktop, cardinal, self->desktop);
706
707 self->shaded = self->session->shaded;
708 self->iconic = self->session->iconic;
709 self->skip_pager = self->session->skip_pager;
710 self->skip_taskbar = self->session->skip_taskbar;
711 self->fullscreen = self->session->fullscreen;
712 self->above = self->session->above;
713 self->below = self->session->below;
714 self->max_horz = self->session->max_horz;
715 self->max_vert = self->session->max_vert;
716 }
717
718 static void client_restore_session_stacking(ObClient *self)
719 {
720 GList *it;
721
722 if (!self->session) return;
723
724 it = g_list_find(session_saved_state, self->session);
725 for (it = g_list_previous(it); it; it = g_list_previous(it)) {
726 GList *cit;
727
728 for (cit = client_list; cit; cit = g_list_next(cit))
729 if (session_state_cmp(it->data, cit->data))
730 break;
731 if (cit) {
732 client_calc_layer(self);
733 stacking_below(CLIENT_AS_WINDOW(self),
734 CLIENT_AS_WINDOW(cit->data));
735 break;
736 }
737 }
738 }
739
740 void client_move_onscreen(ObClient *self, gboolean rude)
741 {
742 gint x = self->area.x;
743 gint y = self->area.y;
744 if (client_find_onscreen(self, &x, &y,
745 self->frame->area.width,
746 self->frame->area.height, rude)) {
747 client_move(self, x, y);
748 }
749 }
750
751 gboolean client_find_onscreen(ObClient *self, gint *x, gint *y, gint w, gint h,
752 gboolean rude)
753 {
754 Rect *mon_a, *all_a;
755 gint ox = *x, oy = *y;
756 gboolean rudel = rude, ruder = rude, rudet = rude, rudeb = rude;
757 gint fw, fh;
758
759 all_a = screen_area(self->desktop);
760 mon_a = screen_area_monitor(self->desktop, client_monitor(self));
761
762 /* get where the frame would be */
763 frame_client_gravity(self->frame, x, y, w, h);
764
765 /* get the requested size of the window with decorations */
766 fw = self->frame->size.left + w + self->frame->size.right;
767 fh = self->frame->size.top + h + self->frame->size.bottom;
768
769 /* This makes sure windows aren't entirely outside of the screen so you
770 can't see them at all.
771 It makes sure 10% of the window is on the screen at least. At don't let
772 it move itself off the top of the screen, which would hide the titlebar
773 on you. (The user can still do this if they want too, it's only limiting
774 the application.
775
776 XXX watch for xinerama dead areas...
777 */
778 if (client_normal(self)) {
779 if (!self->strut.right && *x + fw/10 >= all_a->x + all_a->width - 1)
780 *x = all_a->x + all_a->width - fw/10;
781 if (!self->strut.bottom && *y + fh/10 >= all_a->y + all_a->height - 1)
782 *y = all_a->y + all_a->height - fh/10;
783 if (!self->strut.left && *x + fw*9/10 - 1 < all_a->x)
784 *x = all_a->x - fw*9/10;
785 if (!self->strut.top && *y + fh*9/10 - 1 < all_a->y)
786 *y = all_a->y - fw*9/10;
787 }
788
789 /* If rudeness wasn't requested, then figure out of the client is currently
790 entirely on the screen. If it is, and the position isn't changing by
791 request, and it is enlarging, then be rude even though it wasn't
792 requested */
793 if (!rude) {
794 Point oldtl, oldtr, oldbl, oldbr;
795 Point newtl, newtr, newbl, newbr;
796 gboolean stationary;
797
798 POINT_SET(oldtl, self->frame->area.x, self->frame->area.y);
799 POINT_SET(oldbr, self->frame->area.x + self->frame->area.width - 1,
800 self->frame->area.y + self->frame->area.height - 1);
801 POINT_SET(oldtr, oldbr.x, oldtl.y);
802 POINT_SET(oldbl, oldtl.x, oldbr.y);
803
804 POINT_SET(newtl, *x, *y);
805 POINT_SET(newbr, *x + fw - 1, *y + fh - 1);
806 POINT_SET(newtr, newbr.x, newtl.y);
807 POINT_SET(newbl, newtl.x, newbr.y);
808
809 /* is it moving or just resizing from some corner? */
810 stationary = (POINT_EQUAL(oldtl, newtl) || POINT_EQUAL(oldtr, newtr) ||
811 POINT_EQUAL(oldbl, newbl) || POINT_EQUAL(oldbr, newbr));
812
813 /* if left edge is growing */
814 if (stationary && newtl.x < oldtl.x)
815 rudel = TRUE;
816 /* if right edge is growing */
817 if (stationary && newtr.x > oldtr.x)
818 ruder = TRUE;
819 /* if top edge is growing */
820 if (stationary && newtl.y < oldtl.y)
821 rudet = TRUE;
822 /* if bottom edge is growing */
823 if (stationary && newbl.y > oldbl.y)
824 rudeb = TRUE;
825 }
826
827 /* This here doesn't let windows even a pixel outside the struts/screen.
828 * When called from client_manage, programs placing themselves are
829 * forced completely onscreen, while things like
830 * xterm -geometry resolution-width/2 will work fine. Trying to
831 * place it completely offscreen will be handled in the above code.
832 * Sorry for this confused comment, i am tired. */
833 if (fw <= mon_a->width) {
834 if (rudel && !self->strut.left && *x < mon_a->x) *x = mon_a->x;
835 if (ruder && !self->strut.right && *x + fw > mon_a->x + mon_a->width)
836 *x = mon_a->x + mon_a->width - fw;
837 }
838 if (fh <= mon_a->height) {
839 if (rudet && !self->strut.top && *y < mon_a->y) *y = mon_a->y;
840 if (rudeb && !self->strut.bottom && *y + fh > mon_a->y + mon_a->height)
841 *y = mon_a->y + mon_a->height - fh;
842 }
843
844 /* get where the client should be */
845 frame_frame_gravity(self->frame, x, y, w, h);
846
847 return ox != *x || oy != *y;
848 }
849
850 static void client_toggle_border(ObClient *self, gboolean show)
851 {
852 /* adjust our idea of where the client is, based on its border. When the
853 border is removed, the client should now be considered to be in a
854 different position.
855 when re-adding the border to the client, the same operation needs to be
856 reversed. */
857 gint oldx = self->area.x, oldy = self->area.y;
858 gint x = oldx, y = oldy;
859 switch(self->gravity) {
860 default:
861 case NorthWestGravity:
862 case WestGravity:
863 case SouthWestGravity:
864 break;
865 case NorthEastGravity:
866 case EastGravity:
867 case SouthEastGravity:
868 if (show) x -= self->border_width * 2;
869 else x += self->border_width * 2;
870 break;
871 case NorthGravity:
872 case SouthGravity:
873 case CenterGravity:
874 case ForgetGravity:
875 case StaticGravity:
876 if (show) x -= self->border_width;
877 else x += self->border_width;
878 break;
879 }
880 switch(self->gravity) {
881 default:
882 case NorthWestGravity:
883 case NorthGravity:
884 case NorthEastGravity:
885 break;
886 case SouthWestGravity:
887 case SouthGravity:
888 case SouthEastGravity:
889 if (show) y -= self->border_width * 2;
890 else y += self->border_width * 2;
891 break;
892 case WestGravity:
893 case EastGravity:
894 case CenterGravity:
895 case ForgetGravity:
896 case StaticGravity:
897 if (show) y -= self->border_width;
898 else y += self->border_width;
899 break;
900 }
901 self->area.x = x;
902 self->area.y = y;
903
904 if (show) {
905 XSetWindowBorderWidth(ob_display, self->window, self->border_width);
906
907 /* set border_width to 0 because there is no border to add into
908 calculations anymore */
909 self->border_width = 0;
910 } else
911 XSetWindowBorderWidth(ob_display, self->window, 0);
912 }
913
914
915 static void client_get_all(ObClient *self)
916 {
917 client_get_area(self);
918 client_get_mwm_hints(self);
919
920 /* The transient hint is used to pick a type, but the type can also affect
921 transiency (dialogs are always made transients of their group if they
922 have one). This is Havoc's idea, but it is needed to make some apps
923 work right (eg tsclient). */
924 client_update_transient_for(self);
925 client_get_type(self);/* this can change the mwmhints for special cases */
926 client_get_state(self);
927 client_update_transient_for(self);
928
929 client_update_wmhints(self);
930 client_get_startup_id(self);
931 client_get_desktop(self);/* uses transient data/group/startup id if a
932 desktop is not specified */
933 client_get_shaped(self);
934
935 client_get_layer(self); /* if layer hasn't been specified, get it from
936 other sources if possible */
937
938 {
939 /* a couple type-based defaults for new windows */
940
941 /* this makes sure that these windows appear on all desktops */
942 if (self->type == OB_CLIENT_TYPE_DESKTOP)
943 self->desktop = DESKTOP_ALL;
944 }
945
946 client_update_protocols(self);
947
948 client_get_gravity(self); /* get the attribute gravity */
949 client_update_normal_hints(self); /* this may override the attribute
950 gravity */
951
952 /* got the type, the mwmhints, the protocols, and the normal hints
953 (min/max sizes), so we're ready to set up the decorations/functions */
954 client_setup_decor_and_functions(self);
955
956 #ifdef SYNC
957 client_update_sync_request_counter(self);
958 #endif
959 client_get_client_machine(self);
960 client_get_colormap(self);
961 client_update_title(self);
962 client_update_class(self);
963 client_update_sm_client_id(self);
964 client_update_strut(self);
965 client_update_icons(self);
966 client_update_user_time(self);
967 }
968
969 static void client_get_startup_id(ObClient *self)
970 {
971 if (!(PROP_GETS(self->window, net_startup_id, utf8, &self->startup_id)))
972 if (self->group)
973 PROP_GETS(self->group->leader,
974 net_startup_id, utf8, &self->startup_id);
975 }
976
977 static void client_get_area(ObClient *self)
978 {
979 XWindowAttributes wattrib;
980 Status ret;
981
982 ret = XGetWindowAttributes(ob_display, self->window, &wattrib);
983 g_assert(ret != BadWindow);
984
985 RECT_SET(self->area, wattrib.x, wattrib.y, wattrib.width, wattrib.height);
986 POINT_SET(self->root_pos, wattrib.x, wattrib.y);
987 self->border_width = wattrib.border_width;
988
989 ob_debug("client area: %d %d %d %d\n", wattrib.x, wattrib.y,
990 wattrib.width, wattrib.height);
991 }
992
993 static void client_get_desktop(ObClient *self)
994 {
995 guint32 d = screen_num_desktops; /* an always-invalid value */
996
997 if (PROP_GET32(self->window, net_wm_desktop, cardinal, &d)) {
998 if (d >= screen_num_desktops && d != DESKTOP_ALL)
999 self->desktop = screen_num_desktops - 1;
1000 else
1001 self->desktop = d;
1002 } else {
1003 gboolean trdesk = FALSE;
1004
1005 if (self->transient_for) {
1006 if (self->transient_for != OB_TRAN_GROUP) {
1007 self->desktop = self->transient_for->desktop;
1008 trdesk = TRUE;
1009 } else {
1010 GSList *it;
1011
1012 for (it = self->group->members; it; it = g_slist_next(it))
1013 if (it->data != self &&
1014 !((ObClient*)it->data)->transient_for) {
1015 self->desktop = ((ObClient*)it->data)->desktop;
1016 trdesk = TRUE;
1017 break;
1018 }
1019 }
1020 }
1021 if (!trdesk) {
1022 /* try get from the startup-notification protocol */
1023 if (sn_get_desktop(self->startup_id, &self->desktop)) {
1024 if (self->desktop >= screen_num_desktops &&
1025 self->desktop != DESKTOP_ALL)
1026 self->desktop = screen_num_desktops - 1;
1027 } else
1028 /* defaults to the current desktop */
1029 self->desktop = screen_desktop;
1030 }
1031 }
1032 }
1033
1034 static void client_get_layer(ObClient *self)
1035 {
1036 if (!(self->above || self->below)) {
1037 if (self->group) {
1038 /* apply stuff from the group */
1039 GSList *it;
1040 gint layer = -2;
1041
1042 for (it = self->group->members; it; it = g_slist_next(it)) {
1043 ObClient *c = it->data;
1044 if (c != self && !client_search_transient(self, c) &&
1045 client_normal(self) && client_normal(c))
1046 {
1047 layer = MAX(layer,
1048 (c->above ? 1 : (c->below ? -1 : 0)));
1049 }
1050 }
1051 switch (layer) {
1052 case -1:
1053 self->below = TRUE;
1054 break;
1055 case -2:
1056 case 0:
1057 break;
1058 case 1:
1059 self->above = TRUE;
1060 break;
1061 default:
1062 g_assert_not_reached();
1063 break;
1064 }
1065 }
1066 }
1067 }
1068
1069 static void client_get_state(ObClient *self)
1070 {
1071 guint32 *state;
1072 guint num;
1073
1074 if (PROP_GETA32(self->window, net_wm_state, atom, &state, &num)) {
1075 gulong i;
1076 for (i = 0; i < num; ++i) {
1077 if (state[i] == prop_atoms.net_wm_state_modal)
1078 self->modal = TRUE;
1079 else if (state[i] == prop_atoms.net_wm_state_shaded)
1080 self->shaded = TRUE;
1081 else if (state[i] == prop_atoms.net_wm_state_hidden)
1082 self->iconic = TRUE;
1083 else if (state[i] == prop_atoms.net_wm_state_skip_taskbar)
1084 self->skip_taskbar = TRUE;
1085 else if (state[i] == prop_atoms.net_wm_state_skip_pager)
1086 self->skip_pager = TRUE;
1087 else if (state[i] == prop_atoms.net_wm_state_fullscreen)
1088 self->fullscreen = TRUE;
1089 else if (state[i] == prop_atoms.net_wm_state_maximized_vert)
1090 self->max_vert = TRUE;
1091 else if (state[i] == prop_atoms.net_wm_state_maximized_horz)
1092 self->max_horz = TRUE;
1093 else if (state[i] == prop_atoms.net_wm_state_above)
1094 self->above = TRUE;
1095 else if (state[i] == prop_atoms.net_wm_state_below)
1096 self->below = TRUE;
1097 else if (state[i] == prop_atoms.net_wm_state_demands_attention)
1098 self->demands_attention = TRUE;
1099 else if (state[i] == prop_atoms.ob_wm_state_undecorated)
1100 self->undecorated = TRUE;
1101 }
1102
1103 g_free(state);
1104 }
1105 }
1106
1107 static void client_get_shaped(ObClient *self)
1108 {
1109 self->shaped = FALSE;
1110 #ifdef SHAPE
1111 if (extensions_shape) {
1112 gint foo;
1113 guint ufoo;
1114 gint s;
1115
1116 XShapeSelectInput(ob_display, self->window, ShapeNotifyMask);
1117
1118 XShapeQueryExtents(ob_display, self->window, &s, &foo,
1119 &foo, &ufoo, &ufoo, &foo, &foo, &foo, &ufoo,
1120 &ufoo);
1121 self->shaped = (s != 0);
1122 }
1123 #endif
1124 }
1125
1126 void client_update_transient_for(ObClient *self)
1127 {
1128 Window t = None;
1129 ObClient *target = NULL;
1130
1131 if (XGetTransientForHint(ob_display, self->window, &t)) {
1132 self->transient = TRUE;
1133 if (t != self->window) { /* cant be transient to itself! */
1134 target = g_hash_table_lookup(window_map, &t);
1135 /* if this happens then we need to check for it*/
1136 g_assert(target != self);
1137 if (target && !WINDOW_IS_CLIENT(target)) {
1138 /* this can happen when a dialog is a child of
1139 a dockapp, for example */
1140 target = NULL;
1141 }
1142
1143 /* THIS IS SO ANNOYING ! ! ! ! Let me explain.... have a seat..
1144
1145 Setting the transient_for to Root is actually illegal, however
1146 applications from time have done this to specify transient for
1147 their group.
1148
1149 Now you can do that by being a TYPE_DIALOG and not setting
1150 the transient_for hint at all on your window. But people still
1151 use Root, and Kwin is very strange in this regard.
1152
1153 KWin 3.0 will not consider windows with transient_for set to
1154 Root as transient for their group *UNLESS* they are also modal.
1155 In that case, it will make them transient for the group. This
1156 leads to all sorts of weird behavior from KDE apps which are
1157 only tested in KWin. I'd like to follow their behavior just to
1158 make this work right with KDE stuff, but that seems wrong.
1159 */
1160 if (!target && self->group) {
1161 /* not transient to a client, see if it is transient for a
1162 group */
1163 if (t == RootWindow(ob_display, ob_screen)) {
1164 /* window is a transient for its group! */
1165 target = OB_TRAN_GROUP;
1166 }
1167 }
1168 }
1169 } else if (self->group) {
1170 if (self->type == OB_CLIENT_TYPE_DIALOG ||
1171 self->type == OB_CLIENT_TYPE_TOOLBAR ||
1172 self->type == OB_CLIENT_TYPE_MENU ||
1173 self->type == OB_CLIENT_TYPE_UTILITY)
1174 {
1175 self->transient = TRUE;
1176 target = OB_TRAN_GROUP;
1177 }
1178 } else
1179 self->transient = FALSE;
1180
1181 /* if anything has changed... */
1182 if (target != self->transient_for) {
1183 if (self->transient_for == OB_TRAN_GROUP) { /* transient of group */
1184 GSList *it;
1185
1186 /* remove from old parents */
1187 for (it = self->group->members; it; it = g_slist_next(it)) {
1188 ObClient *c = it->data;
1189 if (c != self && (!c->transient_for ||
1190 c->transient_for != OB_TRAN_GROUP))
1191 c->transients = g_slist_remove(c->transients, self);
1192 }
1193 } else if (self->transient_for != NULL) { /* transient of window */
1194 /* remove from old parent */
1195 self->transient_for->transients =
1196 g_slist_remove(self->transient_for->transients, self);
1197 }
1198 self->transient_for = target;
1199 if (self->transient_for == OB_TRAN_GROUP) { /* transient of group */
1200 GSList *it;
1201
1202 /* add to new parents */
1203 for (it = self->group->members; it; it = g_slist_next(it)) {
1204 ObClient *c = it->data;
1205 if (c != self && (!c->transient_for ||
1206 c->transient_for != OB_TRAN_GROUP))
1207 c->transients = g_slist_append(c->transients, self);
1208 }
1209
1210 /* remove all transients which are in the group, that causes
1211 circlular pointer hell of doom */
1212 for (it = self->group->members; it; it = g_slist_next(it)) {
1213 GSList *sit, *next;
1214 for (sit = self->transients; sit; sit = next) {
1215 next = g_slist_next(sit);
1216 if (sit->data == it->data)
1217 self->transients =
1218 g_slist_delete_link(self->transients, sit);
1219 }
1220 }
1221 } else if (self->transient_for != NULL) { /* transient of window */
1222 /* add to new parent */
1223 self->transient_for->transients =
1224 g_slist_append(self->transient_for->transients, self);
1225 }
1226 }
1227 }
1228
1229 static void client_get_mwm_hints(ObClient *self)
1230 {
1231 guint num;
1232 guint32 *hints;
1233
1234 self->mwmhints.flags = 0; /* default to none */
1235
1236 if (PROP_GETA32(self->window, motif_wm_hints, motif_wm_hints,
1237 &hints, &num)) {
1238 if (num >= OB_MWM_ELEMENTS) {
1239 self->mwmhints.flags = hints[0];
1240 self->mwmhints.functions = hints[1];
1241 self->mwmhints.decorations = hints[2];
1242 }
1243 g_free(hints);
1244 }
1245 }
1246
1247 void client_get_type(ObClient *self)
1248 {
1249 guint num, i;
1250 guint32 *val;
1251
1252 self->type = -1;
1253
1254 if (PROP_GETA32(self->window, net_wm_window_type, atom, &val, &num)) {
1255 /* use the first value that we know about in the array */
1256 for (i = 0; i < num; ++i) {
1257 if (val[i] == prop_atoms.net_wm_window_type_desktop)
1258 self->type = OB_CLIENT_TYPE_DESKTOP;
1259 else if (val[i] == prop_atoms.net_wm_window_type_dock)
1260 self->type = OB_CLIENT_TYPE_DOCK;
1261 else if (val[i] == prop_atoms.net_wm_window_type_toolbar)
1262 self->type = OB_CLIENT_TYPE_TOOLBAR;
1263 else if (val[i] == prop_atoms.net_wm_window_type_menu)
1264 self->type = OB_CLIENT_TYPE_MENU;
1265 else if (val[i] == prop_atoms.net_wm_window_type_utility)
1266 self->type = OB_CLIENT_TYPE_UTILITY;
1267 else if (val[i] == prop_atoms.net_wm_window_type_splash)
1268 self->type = OB_CLIENT_TYPE_SPLASH;
1269 else if (val[i] == prop_atoms.net_wm_window_type_dialog)
1270 self->type = OB_CLIENT_TYPE_DIALOG;
1271 else if (val[i] == prop_atoms.net_wm_window_type_normal)
1272 self->type = OB_CLIENT_TYPE_NORMAL;
1273 else if (val[i] == prop_atoms.kde_net_wm_window_type_override) {
1274 /* prevent this window from getting any decor or
1275 functionality */
1276 self->mwmhints.flags &= (OB_MWM_FLAG_FUNCTIONS |
1277 OB_MWM_FLAG_DECORATIONS);
1278 self->mwmhints.decorations = 0;
1279 self->mwmhints.functions = 0;
1280 }
1281 if (self->type != (ObClientType) -1)
1282 break; /* grab the first legit type */
1283 }
1284 g_free(val);
1285 }
1286
1287 if (self->type == (ObClientType) -1) {
1288 /*the window type hint was not set, which means we either classify
1289 ourself as a normal window or a dialog, depending on if we are a
1290 transient. */
1291 if (self->transient)
1292 self->type = OB_CLIENT_TYPE_DIALOG;
1293 else
1294 self->type = OB_CLIENT_TYPE_NORMAL;
1295 }
1296 }
1297
1298 void client_update_protocols(ObClient *self)
1299 {
1300 guint32 *proto;
1301 guint num_return, i;
1302
1303 self->focus_notify = FALSE;
1304 self->delete_window = FALSE;
1305
1306 if (PROP_GETA32(self->window, wm_protocols, atom, &proto, &num_return)) {
1307 for (i = 0; i < num_return; ++i) {
1308 if (proto[i] == prop_atoms.wm_delete_window)
1309 /* this means we can request the window to close */
1310 self->delete_window = TRUE;
1311 else if (proto[i] == prop_atoms.wm_take_focus)
1312 /* if this protocol is requested, then the window will be
1313 notified whenever we want it to receive focus */
1314 self->focus_notify = TRUE;
1315 #ifdef SYNC
1316 else if (proto[i] == prop_atoms.net_wm_sync_request)
1317 /* if this protocol is requested, then resizing the
1318 window will be synchronized between the frame and the
1319 client */
1320 self->sync_request = TRUE;
1321 #endif
1322 }
1323 g_free(proto);
1324 }
1325 }
1326
1327 #ifdef SYNC
1328 void client_update_sync_request_counter(ObClient *self)
1329 {
1330 guint32 i;
1331
1332 if (PROP_GET32(self->window, net_wm_sync_request_counter, cardinal, &i)) {
1333 self->sync_counter = i;
1334 } else
1335 self->sync_counter = None;
1336 }
1337 #endif
1338
1339 static void client_get_gravity(ObClient *self)
1340 {
1341 XWindowAttributes wattrib;
1342 Status ret;
1343
1344 ret = XGetWindowAttributes(ob_display, self->window, &wattrib);
1345 g_assert(ret != BadWindow);
1346 self->gravity = wattrib.win_gravity;
1347 }
1348
1349 void client_get_colormap(ObClient *self)
1350 {
1351 XWindowAttributes wa;
1352
1353 if (XGetWindowAttributes(ob_display, self->window, &wa))
1354 client_update_colormap(self, wa.colormap);
1355 }
1356
1357 void client_update_colormap(ObClient *self, Colormap colormap)
1358 {
1359 self->colormap = colormap;
1360 }
1361
1362 void client_update_normal_hints(ObClient *self)
1363 {
1364 XSizeHints size;
1365 glong ret;
1366 gint oldgravity = self->gravity;
1367
1368 /* defaults */
1369 self->min_ratio = 0.0f;
1370 self->max_ratio = 0.0f;
1371 SIZE_SET(self->size_inc, 1, 1);
1372 SIZE_SET(self->base_size, 0, 0);
1373 SIZE_SET(self->min_size, 0, 0);
1374 SIZE_SET(self->max_size, G_MAXINT, G_MAXINT);
1375
1376 /* get the hints from the window */
1377 if (XGetWMNormalHints(ob_display, self->window, &size, &ret)) {
1378 /* normal windows can't request placement! har har
1379 if (!client_normal(self))
1380 */
1381 self->positioned = (size.flags & (PPosition|USPosition));
1382
1383 if (size.flags & PWinGravity) {
1384 self->gravity = size.win_gravity;
1385
1386 /* if the client has a frame, i.e. has already been mapped and
1387 is changing its gravity */
1388 if (self->frame && self->gravity != oldgravity) {
1389 /* move our idea of the client's position based on its new
1390 gravity */
1391 client_convert_gravity(self, oldgravity,
1392 &self->area.x, &self->area.y,
1393 self->area.width, self->area.height);
1394 }
1395 }
1396
1397 if (size.flags & PAspect) {
1398 if (size.min_aspect.y)
1399 self->min_ratio =
1400 (gfloat) size.min_aspect.x / size.min_aspect.y;
1401 if (size.max_aspect.y)
1402 self->max_ratio =
1403 (gfloat) size.max_aspect.x / size.max_aspect.y;
1404 }
1405
1406 if (size.flags & PMinSize)
1407 SIZE_SET(self->min_size, size.min_width, size.min_height);
1408
1409 if (size.flags & PMaxSize)
1410 SIZE_SET(self->max_size, size.max_width, size.max_height);
1411
1412 if (size.flags & PBaseSize)
1413 SIZE_SET(self->base_size, size.base_width, size.base_height);
1414
1415 if (size.flags & PResizeInc && size.width_inc && size.height_inc)
1416 SIZE_SET(self->size_inc, size.width_inc, size.height_inc);
1417 }
1418 }
1419
1420 void client_setup_decor_and_functions(ObClient *self)
1421 {
1422 /* start with everything (cept fullscreen) */
1423 self->decorations =
1424 (OB_FRAME_DECOR_TITLEBAR |
1425 OB_FRAME_DECOR_HANDLE |
1426 OB_FRAME_DECOR_GRIPS |
1427 OB_FRAME_DECOR_BORDER |
1428 OB_FRAME_DECOR_ICON |
1429 OB_FRAME_DECOR_ALLDESKTOPS |
1430 OB_FRAME_DECOR_ICONIFY |
1431 OB_FRAME_DECOR_MAXIMIZE |
1432 OB_FRAME_DECOR_SHADE |
1433 OB_FRAME_DECOR_CLOSE);
1434 self->functions =
1435 (OB_CLIENT_FUNC_RESIZE |
1436 OB_CLIENT_FUNC_MOVE |
1437 OB_CLIENT_FUNC_ICONIFY |
1438 OB_CLIENT_FUNC_MAXIMIZE |
1439 OB_CLIENT_FUNC_SHADE |
1440 OB_CLIENT_FUNC_CLOSE);
1441
1442 if (!(self->min_size.width < self->max_size.width ||
1443 self->min_size.height < self->max_size.height))
1444 self->functions &= ~OB_CLIENT_FUNC_RESIZE;
1445
1446 switch (self->type) {
1447 case OB_CLIENT_TYPE_NORMAL:
1448 /* normal windows retain all of the possible decorations and
1449 functionality, and are the only windows that you can fullscreen */
1450 self->functions |= OB_CLIENT_FUNC_FULLSCREEN;
1451 break;
1452
1453 case OB_CLIENT_TYPE_DIALOG:
1454 case OB_CLIENT_TYPE_UTILITY:
1455 /* these windows cannot be maximized */
1456 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1457 break;
1458
1459 case OB_CLIENT_TYPE_MENU:
1460 case OB_CLIENT_TYPE_TOOLBAR:
1461 /* these windows get less functionality */
1462 self->functions &= ~(OB_CLIENT_FUNC_ICONIFY | OB_CLIENT_FUNC_RESIZE);
1463 break;
1464
1465 case OB_CLIENT_TYPE_DESKTOP:
1466 case OB_CLIENT_TYPE_DOCK:
1467 case OB_CLIENT_TYPE_SPLASH:
1468 /* none of these windows are manipulated by the window manager */
1469 self->decorations = 0;
1470 self->functions = 0;
1471 break;
1472 }
1473
1474 /* Mwm Hints are applied subtractively to what has already been chosen for
1475 decor and functionality */
1476 if (self->mwmhints.flags & OB_MWM_FLAG_DECORATIONS) {
1477 if (! (self->mwmhints.decorations & OB_MWM_DECOR_ALL)) {
1478 if (! ((self->mwmhints.decorations & OB_MWM_DECOR_HANDLE) ||
1479 (self->mwmhints.decorations & OB_MWM_DECOR_TITLE)))
1480 {
1481 /* if the mwm hints request no handle or title, then all
1482 decorations are disabled, but keep the border if that's
1483 specified */
1484 if (self->mwmhints.decorations & OB_MWM_DECOR_BORDER)
1485 self->decorations = OB_FRAME_DECOR_BORDER;
1486 else
1487 self->decorations = 0;
1488 }
1489 }
1490 }
1491
1492 if (self->mwmhints.flags & OB_MWM_FLAG_FUNCTIONS) {
1493 if (! (self->mwmhints.functions & OB_MWM_FUNC_ALL)) {
1494 if (! (self->mwmhints.functions & OB_MWM_FUNC_RESIZE))
1495 self->functions &= ~OB_CLIENT_FUNC_RESIZE;
1496 if (! (self->mwmhints.functions & OB_MWM_FUNC_MOVE))
1497 self->functions &= ~OB_CLIENT_FUNC_MOVE;
1498 /* dont let mwm hints kill any buttons
1499 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1500 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1501 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1502 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1503 */
1504 /* dont let mwm hints kill the close button
1505 if (! (self->mwmhints.functions & MwmFunc_Close))
1506 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1507 }
1508 }
1509
1510 if (!(self->functions & OB_CLIENT_FUNC_SHADE))
1511 self->decorations &= ~OB_FRAME_DECOR_SHADE;
1512 if (!(self->functions & OB_CLIENT_FUNC_ICONIFY))
1513 self->decorations &= ~OB_FRAME_DECOR_ICONIFY;
1514 if (!(self->functions & OB_CLIENT_FUNC_RESIZE))
1515 self->decorations &= ~OB_FRAME_DECOR_GRIPS;
1516
1517 /* can't maximize without moving/resizing */
1518 if (!((self->functions & OB_CLIENT_FUNC_MAXIMIZE) &&
1519 (self->functions & OB_CLIENT_FUNC_MOVE) &&
1520 (self->functions & OB_CLIENT_FUNC_RESIZE))) {
1521 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1522 self->decorations &= ~OB_FRAME_DECOR_MAXIMIZE;
1523 }
1524
1525 /* kill the handle on fully maxed windows */
1526 if (self->max_vert && self->max_horz)
1527 self->decorations &= ~OB_FRAME_DECOR_HANDLE;
1528
1529 /* finally, the user can have requested no decorations, which overrides
1530 everything (but doesnt give it a border if it doesnt have one) */
1531 if (self->undecorated) {
1532 if (config_theme_keepborder)
1533 self->decorations &= OB_FRAME_DECOR_BORDER;
1534 else
1535 self->decorations = 0;
1536 }
1537
1538 /* if we don't have a titlebar, then we cannot shade! */
1539 if (!(self->decorations & OB_FRAME_DECOR_TITLEBAR))
1540 self->functions &= ~OB_CLIENT_FUNC_SHADE;
1541
1542 /* now we need to check against rules for the client's current state */
1543 if (self->fullscreen) {
1544 self->functions &= (OB_CLIENT_FUNC_CLOSE |
1545 OB_CLIENT_FUNC_FULLSCREEN |
1546 OB_CLIENT_FUNC_ICONIFY);
1547 self->decorations = 0;
1548 }
1549
1550 client_change_allowed_actions(self);
1551
1552 if (self->frame) {
1553 /* adjust the client's decorations, etc. */
1554 client_reconfigure(self);
1555 }
1556 }
1557
1558 static void client_change_allowed_actions(ObClient *self)
1559 {
1560 gulong actions[9];
1561 gint num = 0;
1562
1563 /* desktop windows are kept on all desktops */
1564 if (self->type != OB_CLIENT_TYPE_DESKTOP)
1565 actions[num++] = prop_atoms.net_wm_action_change_desktop;
1566
1567 if (self->functions & OB_CLIENT_FUNC_SHADE)
1568 actions[num++] = prop_atoms.net_wm_action_shade;
1569 if (self->functions & OB_CLIENT_FUNC_CLOSE)
1570 actions[num++] = prop_atoms.net_wm_action_close;
1571 if (self->functions & OB_CLIENT_FUNC_MOVE)
1572 actions[num++] = prop_atoms.net_wm_action_move;
1573 if (self->functions & OB_CLIENT_FUNC_ICONIFY)
1574 actions[num++] = prop_atoms.net_wm_action_minimize;
1575 if (self->functions & OB_CLIENT_FUNC_RESIZE)
1576 actions[num++] = prop_atoms.net_wm_action_resize;
1577 if (self->functions & OB_CLIENT_FUNC_FULLSCREEN)
1578 actions[num++] = prop_atoms.net_wm_action_fullscreen;
1579 if (self->functions & OB_CLIENT_FUNC_MAXIMIZE) {
1580 actions[num++] = prop_atoms.net_wm_action_maximize_horz;
1581 actions[num++] = prop_atoms.net_wm_action_maximize_vert;
1582 }
1583
1584 PROP_SETA32(self->window, net_wm_allowed_actions, atom, actions, num);
1585
1586 /* make sure the window isn't breaking any rules now */
1587
1588 if (!(self->functions & OB_CLIENT_FUNC_SHADE) && self->shaded) {
1589 if (self->frame) client_shade(self, FALSE);
1590 else self->shaded = FALSE;
1591 }
1592 if (!(self->functions & OB_CLIENT_FUNC_ICONIFY) && self->iconic) {
1593 if (self->frame) client_iconify(self, FALSE, TRUE);
1594 else self->iconic = FALSE;
1595 }
1596 if (!(self->functions & OB_CLIENT_FUNC_FULLSCREEN) && self->fullscreen) {
1597 if (self->frame) client_fullscreen(self, FALSE);
1598 else self->fullscreen = FALSE;
1599 }
1600 if (!(self->functions & OB_CLIENT_FUNC_MAXIMIZE) && (self->max_horz ||
1601 self->max_vert)) {
1602 if (self->frame) client_maximize(self, FALSE, 0);
1603 else self->max_vert = self->max_horz = FALSE;
1604 }
1605 }
1606
1607 void client_reconfigure(ObClient *self)
1608 {
1609 /* by making this pass FALSE for user, we avoid the emacs event storm where
1610 every configurenotify causes an update in its normal hints, i think this
1611 is generally what we want anyways... */
1612 client_configure(self, self->area.x, self->area.y,
1613 self->area.width, self->area.height, FALSE, TRUE);
1614 }
1615
1616 void client_update_wmhints(ObClient *self)
1617 {
1618 XWMHints *hints;
1619 GSList *it;
1620
1621 /* assume a window takes input if it doesnt specify */
1622 self->can_focus = TRUE;
1623
1624 if ((hints = XGetWMHints(ob_display, self->window)) != NULL) {
1625 gboolean ur;
1626
1627 if (hints->flags & InputHint)
1628 self->can_focus = hints->input;
1629
1630 /* only do this when first managing the window *AND* when we aren't
1631 starting up! */
1632 if (ob_state() != OB_STATE_STARTING && self->frame == NULL)
1633 if (hints->flags & StateHint)
1634 self->iconic = hints->initial_state == IconicState;
1635
1636 ur = self->urgent;
1637 self->urgent = (hints->flags & XUrgencyHint);
1638 if (self->urgent && !ur)
1639 client_hilite(self, TRUE);
1640 else if (!self->urgent && ur && self->demands_attention)
1641 client_hilite(self, FALSE);
1642
1643 if (!(hints->flags & WindowGroupHint))
1644 hints->window_group = None;
1645
1646 /* did the group state change? */
1647 if (hints->window_group !=
1648 (self->group ? self->group->leader : None)) {
1649 /* remove from the old group if there was one */
1650 if (self->group != NULL) {
1651 /* remove transients of the group */
1652 for (it = self->group->members; it; it = g_slist_next(it))
1653 self->transients = g_slist_remove(self->transients,
1654 it->data);
1655
1656 /* remove myself from parents in the group */
1657 if (self->transient_for == OB_TRAN_GROUP) {
1658 for (it = self->group->members; it;
1659 it = g_slist_next(it))
1660 {
1661 ObClient *c = it->data;
1662
1663 if (c != self && !c->transient_for)
1664 c->transients = g_slist_remove(c->transients,
1665 self);
1666 }
1667 }
1668
1669 group_remove(self->group, self);
1670 self->group = NULL;
1671 }
1672 if (hints->window_group != None) {
1673 self->group = group_add(hints->window_group, self);
1674
1675 /* i can only have transients from the group if i am not
1676 transient myself */
1677 if (!self->transient_for) {
1678 /* add other transients of the group that are already
1679 set up */
1680 for (it = self->group->members; it;
1681 it = g_slist_next(it))
1682 {
1683 ObClient *c = it->data;
1684 if (c != self && c->transient_for == OB_TRAN_GROUP)
1685 self->transients =
1686 g_slist_append(self->transients, c);
1687 }
1688 }
1689 }
1690
1691 /* because the self->transient flag wont change from this call,
1692 we don't need to update the window's type and such, only its
1693 transient_for, and the transients lists of other windows in
1694 the group may be affected */
1695 client_update_transient_for(self);
1696 }
1697
1698 /* the WM_HINTS can contain an icon */
1699 client_update_icons(self);
1700
1701 XFree(hints);
1702 }
1703 }
1704
1705 void client_update_title(ObClient *self)
1706 {
1707 gchar *data = NULL;
1708 gchar *visible = NULL;
1709
1710 g_free(self->title);
1711
1712 /* try netwm */
1713 if (!PROP_GETS(self->window, net_wm_name, utf8, &data)) {
1714 /* try old x stuff */
1715 if (!(PROP_GETS(self->window, wm_name, locale, &data)
1716 || PROP_GETS(self->window, wm_name, utf8, &data))) {
1717 if (self->transient) {
1718 /*
1719 GNOME alert windows are not given titles:
1720 http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
1721 */
1722 data = g_strdup("");
1723 } else
1724 data = g_strdup("Unnamed Window");
1725 }
1726 }
1727
1728 if (self->client_machine) {
1729 visible = g_strdup_printf("%s (%s)", data, self->client_machine);
1730 g_free(data);
1731 } else
1732 visible = data;
1733
1734 PROP_SETS(self->window, net_wm_visible_name, visible);
1735 self->title = visible;
1736
1737 if (self->frame)
1738 frame_adjust_title(self->frame);
1739
1740 /* update the icon title */
1741 data = NULL;
1742 g_free(self->icon_title);
1743
1744 /* try netwm */
1745 if (!PROP_GETS(self->window, net_wm_icon_name, utf8, &data))
1746 /* try old x stuff */
1747 if (!(PROP_GETS(self->window, wm_icon_name, locale, &data) ||
1748 PROP_GETS(self->window, wm_icon_name, utf8, &data)))
1749 data = g_strdup(self->title);
1750
1751 PROP_SETS(self->window, net_wm_visible_icon_name, data);
1752 self->icon_title = data;
1753 }
1754
1755 void client_update_class(ObClient *self)
1756 {
1757 gchar **data;
1758 gchar *s;
1759
1760 if (self->name) g_free(self->name);
1761 if (self->class) g_free(self->class);
1762 if (self->role) g_free(self->role);
1763
1764 self->name = self->class = self->role = NULL;
1765
1766 if (PROP_GETSS(self->window, wm_class, locale, &data)) {
1767 if (data[0]) {
1768 self->name = g_strdup(data[0]);
1769 if (data[1])
1770 self->class = g_strdup(data[1]);
1771 }
1772 g_strfreev(data);
1773 }
1774
1775 if (PROP_GETS(self->window, wm_window_role, locale, &s))
1776 self->role = s;
1777
1778 if (self->name == NULL) self->name = g_strdup("");
1779 if (self->class == NULL) self->class = g_strdup("");
1780 if (self->role == NULL) self->role = g_strdup("");
1781 }
1782
1783 void client_update_strut(ObClient *self)
1784 {
1785 guint num;
1786 guint32 *data;
1787 gboolean got = FALSE;
1788 StrutPartial strut;
1789
1790 if (PROP_GETA32(self->window, net_wm_strut_partial, cardinal,
1791 &data, &num)) {
1792 if (num == 12) {
1793 got = TRUE;
1794 STRUT_PARTIAL_SET(strut,
1795 data[0], data[2], data[1], data[3],
1796 data[4], data[5], data[8], data[9],
1797 data[6], data[7], data[10], data[11]);
1798 }
1799 g_free(data);
1800 }
1801
1802 if (!got &&
1803 PROP_GETA32(self->window, net_wm_strut, cardinal, &data, &num)) {
1804 if (num == 4) {
1805 const Rect *a;
1806
1807 got = TRUE;
1808
1809 /* use the screen's width/height */
1810 a = screen_physical_area();
1811
1812 STRUT_PARTIAL_SET(strut,
1813 data[0], data[2], data[1], data[3],
1814 a->y, a->y + a->height - 1,
1815 a->x, a->x + a->width - 1,
1816 a->y, a->y + a->height - 1,
1817 a->x, a->x + a->width - 1);
1818 }
1819 g_free(data);
1820 }
1821
1822 if (!got)
1823 STRUT_PARTIAL_SET(strut, 0, 0, 0, 0,
1824 0, 0, 0, 0, 0, 0, 0, 0);
1825
1826 if (!STRUT_EQUAL(strut, self->strut)) {
1827 self->strut = strut;
1828
1829 /* updating here is pointless while we're being mapped cuz we're not in
1830 the client list yet */
1831 if (self->frame)
1832 screen_update_areas();
1833 }
1834 }
1835
1836 void client_update_icons(ObClient *self)
1837 {
1838 guint num;
1839 guint32 *data;
1840 guint w, h, i, j;
1841
1842 for (i = 0; i < self->nicons; ++i)
1843 g_free(self->icons[i].data);
1844 if (self->nicons > 0)
1845 g_free(self->icons);
1846 self->nicons = 0;
1847
1848 if (PROP_GETA32(self->window, net_wm_icon, cardinal, &data, &num)) {
1849 /* figure out how many valid icons are in here */
1850 i = 0;
1851 while (num - i > 2) {
1852 w = data[i++];
1853 h = data[i++];
1854 i += w * h;
1855 if (i > num || w*h == 0) break;
1856 ++self->nicons;
1857 }
1858
1859 self->icons = g_new(ObClientIcon, self->nicons);
1860
1861 /* store the icons */
1862 i = 0;
1863 for (j = 0; j < self->nicons; ++j) {
1864 guint x, y, t;
1865
1866 w = self->icons[j].width = data[i++];
1867 h = self->icons[j].height = data[i++];
1868
1869 if (w*h == 0) continue;
1870
1871 self->icons[j].data = g_new(RrPixel32, w * h);
1872 for (x = 0, y = 0, t = 0; t < w * h; ++t, ++x, ++i) {
1873 if (x >= w) {
1874 x = 0;
1875 ++y;
1876 }
1877 self->icons[j].data[t] =
1878 (((data[i] >> 24) & 0xff) << RrDefaultAlphaOffset) +
1879 (((data[i] >> 16) & 0xff) << RrDefaultRedOffset) +
1880 (((data[i] >> 8) & 0xff) << RrDefaultGreenOffset) +
1881 (((data[i] >> 0) & 0xff) << RrDefaultBlueOffset);
1882 }
1883 g_assert(i <= num);
1884 }
1885
1886 g_free(data);
1887 } else {
1888 XWMHints *hints;
1889
1890 if ((hints = XGetWMHints(ob_display, self->window))) {
1891 if (hints->flags & IconPixmapHint) {
1892 self->nicons++;
1893 self->icons = g_new(ObClientIcon, self->nicons);
1894 xerror_set_ignore(TRUE);
1895 if (!RrPixmapToRGBA(ob_rr_inst,
1896 hints->icon_pixmap,
1897 (hints->flags & IconMaskHint ?
1898 hints->icon_mask : None),
1899 &self->icons[self->nicons-1].width,
1900 &self->icons[self->nicons-1].height,
1901 &self->icons[self->nicons-1].data)){
1902 g_free(&self->icons[self->nicons-1]);
1903 self->nicons--;
1904 }
1905 xerror_set_ignore(FALSE);
1906 }
1907 XFree(hints);
1908 }
1909 }
1910
1911 /* set the default icon onto the window
1912 in theory, this could be a race, but if a window doesn't set an icon
1913 or removes it entirely, it's not very likely it is going to set one
1914 right away afterwards */
1915 if (self->nicons == 0) {
1916 RrPixel32 *icon = ob_rr_theme->def_win_icon;
1917 gulong *data;
1918
1919 data = g_new(gulong, 48*48+2);
1920 data[0] = data[1] = 48;
1921 for (i = 0; i < 48*48; ++i)
1922 data[i+2] = (((icon[i] >> RrDefaultAlphaOffset) & 0xff) << 24) +
1923 (((icon[i] >> RrDefaultRedOffset) & 0xff) << 16) +
1924 (((icon[i] >> RrDefaultGreenOffset) & 0xff) << 8) +
1925 (((icon[i] >> RrDefaultBlueOffset) & 0xff) << 0);
1926 PROP_SETA32(self->window, net_wm_icon, cardinal, data, 48*48+2);
1927 g_free(data);
1928 } else if (self->frame)
1929 /* don't draw the icon empty if we're just setting one now anyways,
1930 we'll get the property change any second */
1931 frame_adjust_icon(self->frame);
1932 }
1933
1934 void client_update_user_time(ObClient *self)
1935 {
1936 guint32 time;
1937
1938 if (PROP_GET32(self->window, net_wm_user_time, cardinal, &time)) {
1939 /* we set this every time, not just when it grows, because in practice
1940 sometimes time goes backwards! (ntpdate.. yay....) so.. if it goes
1941 backward we don't want all windows to stop focusing. we'll just
1942 assume noone is setting times older than the last one, cuz that
1943 would be pretty stupid anyways
1944 */
1945 self->user_time = time;
1946
1947 /*
1948 ob_debug("window %s user time %u\n", self->title, time);
1949 */
1950 }
1951 }
1952
1953 static void client_get_client_machine(ObClient *self)
1954 {
1955 gchar *data = NULL;
1956 gchar localhost[128];
1957
1958 g_free(self->client_machine);
1959
1960 if (PROP_GETS(self->window, wm_client_machine, locale, &data)) {
1961 gethostname(localhost, 127);
1962 localhost[127] = '\0';
1963 if (strcmp(localhost, data))
1964 self->client_machine = data;
1965 }
1966 }
1967
1968 static void client_change_wm_state(ObClient *self)
1969 {
1970 gulong state[2];
1971 glong old;
1972
1973 old = self->wmstate;
1974
1975 if (self->shaded || self->iconic || !self->frame->visible)
1976 self->wmstate = IconicState;
1977 else
1978 self->wmstate = NormalState;
1979
1980 if (old != self->wmstate) {
1981 PROP_MSG(self->window, kde_wm_change_state,
1982 self->wmstate, 1, 0, 0);
1983
1984 state[0] = self->wmstate;
1985 state[1] = None;
1986 PROP_SETA32(self->window, wm_state, wm_state, state, 2);
1987 }
1988 }
1989
1990 static void client_change_state(ObClient *self)
1991 {
1992 gulong netstate[11];
1993 guint num;
1994
1995 num = 0;
1996 if (self->modal)
1997 netstate[num++] = prop_atoms.net_wm_state_modal;
1998 if (self->shaded)
1999 netstate[num++] = prop_atoms.net_wm_state_shaded;
2000 if (self->iconic)
2001 netstate[num++] = prop_atoms.net_wm_state_hidden;
2002 if (self->skip_taskbar)
2003 netstate[num++] = prop_atoms.net_wm_state_skip_taskbar;
2004 if (self->skip_pager)
2005 netstate[num++] = prop_atoms.net_wm_state_skip_pager;
2006 if (self->fullscreen)
2007 netstate[num++] = prop_atoms.net_wm_state_fullscreen;
2008 if (self->max_vert)
2009 netstate[num++] = prop_atoms.net_wm_state_maximized_vert;
2010 if (self->max_horz)
2011 netstate[num++] = prop_atoms.net_wm_state_maximized_horz;
2012 if (self->above)
2013 netstate[num++] = prop_atoms.net_wm_state_above;
2014 if (self->below)
2015 netstate[num++] = prop_atoms.net_wm_state_below;
2016 if (self->demands_attention)
2017 netstate[num++] = prop_atoms.net_wm_state_demands_attention;
2018 if (self->undecorated)
2019 netstate[num++] = prop_atoms.ob_wm_state_undecorated;
2020 PROP_SETA32(self->window, net_wm_state, atom, netstate, num);
2021
2022 if (self->frame)
2023 frame_adjust_state(self->frame);
2024 }
2025
2026 ObClient *client_search_focus_tree(ObClient *self)
2027 {
2028 GSList *it;
2029 ObClient *ret;
2030
2031 for (it = self->transients; it; it = g_slist_next(it)) {
2032 if (client_focused(it->data)) return it->data;
2033 if ((ret = client_search_focus_tree(it->data))) return ret;
2034 }
2035 return NULL;
2036 }
2037
2038 ObClient *client_search_focus_tree_full(ObClient *self)
2039 {
2040 if (self->transient_for) {
2041 if (self->transient_for != OB_TRAN_GROUP) {
2042 return client_search_focus_tree_full(self->transient_for);
2043 } else {
2044 GSList *it;
2045 gboolean recursed = FALSE;
2046
2047 for (it = self->group->members; it; it = g_slist_next(it))
2048 if (!((ObClient*)it->data)->transient_for) {
2049 ObClient *c;
2050 if ((c = client_search_focus_tree_full(it->data)))
2051 return c;
2052 recursed = TRUE;
2053 }
2054 if (recursed)
2055 return NULL;
2056 }
2057 }
2058
2059 /* this function checks the whole tree, the client_search_focus_tree~
2060 does not, so we need to check this window */
2061 if (client_focused(self))
2062 return self;
2063 return client_search_focus_tree(self);
2064 }
2065
2066 static ObStackingLayer calc_layer(ObClient *self)
2067 {
2068 ObStackingLayer l;
2069
2070 if (self->fullscreen &&
2071 (client_focused(self) || client_search_focus_tree(self)))
2072 l = OB_STACKING_LAYER_FULLSCREEN;
2073 else if (self->type == OB_CLIENT_TYPE_DESKTOP)
2074 l = OB_STACKING_LAYER_DESKTOP;
2075 else if (self->type == OB_CLIENT_TYPE_DOCK) {
2076 if (self->below) l = OB_STACKING_LAYER_NORMAL;
2077 else l = OB_STACKING_LAYER_ABOVE;
2078 }
2079 else if (self->above) l = OB_STACKING_LAYER_ABOVE;
2080 else if (self->below) l = OB_STACKING_LAYER_BELOW;
2081 else l = OB_STACKING_LAYER_NORMAL;
2082
2083 return l;
2084 }
2085
2086 static void client_calc_layer_recursive(ObClient *self, ObClient *orig,
2087 ObStackingLayer min, gboolean raised)
2088 {
2089 ObStackingLayer old, own;
2090 GSList *it;
2091
2092 old = self->layer;
2093 own = calc_layer(self);
2094 self->layer = MAX(own, min);
2095
2096 for (it = self->transients; it; it = g_slist_next(it))
2097 client_calc_layer_recursive(it->data, orig,
2098 self->layer,
2099 raised ? raised : self->layer != old);
2100
2101 if (!raised && self->layer != old)
2102 if (orig->frame) { /* only restack if the original window is managed */
2103 stacking_remove(CLIENT_AS_WINDOW(self));
2104 stacking_add(CLIENT_AS_WINDOW(self));
2105 }
2106 }
2107
2108 void client_calc_layer(ObClient *self)
2109 {
2110 ObClient *orig;
2111 GSList *it;
2112
2113 orig = self;
2114
2115 /* transients take on the layer of their parents */
2116 it = client_search_all_top_parents(self);
2117
2118 for (; it; it = g_slist_next(it))
2119 client_calc_layer_recursive(it->data, orig, 0, FALSE);
2120 }
2121
2122 gboolean client_should_show(ObClient *self)
2123 {
2124 if (self->iconic)
2125 return FALSE;
2126 if (client_normal(self) && screen_showing_desktop)
2127 return FALSE;
2128 /*
2129 if (self->transient_for) {
2130 if (self->transient_for != OB_TRAN_GROUP)
2131 return client_should_show(self->transient_for);
2132 else {
2133 GSList *it;
2134
2135 for (it = self->group->members; it; it = g_slist_next(it)) {
2136 ObClient *c = it->data;
2137 if (c != self && !c->transient_for) {
2138 if (client_should_show(c))
2139 return TRUE;
2140 }
2141 }
2142 }
2143 }
2144 */
2145 if (self->desktop == screen_desktop || self->desktop == DESKTOP_ALL)
2146 return TRUE;
2147
2148 return FALSE;
2149 }
2150
2151 void client_show(ObClient *self)
2152 {
2153
2154 if (client_should_show(self)) {
2155 frame_show(self->frame);
2156 }
2157
2158 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible, it
2159 needs to be in IconicState. This includes when it is on another
2160 desktop!
2161 */
2162 client_change_wm_state(self);
2163 }
2164
2165 void client_hide(ObClient *self)
2166 {
2167 if (!client_should_show(self)) {
2168 frame_hide(self->frame);
2169 }
2170
2171 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible, it
2172 needs to be in IconicState. This includes when it is on another
2173 desktop!
2174 */
2175 client_change_wm_state(self);
2176 }
2177
2178 void client_showhide(ObClient *self)
2179 {
2180
2181 if (client_should_show(self)) {
2182 frame_show(self->frame);
2183 }
2184 else {
2185 frame_hide(self->frame);
2186 }
2187
2188 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible, it
2189 needs to be in IconicState. This includes when it is on another
2190 desktop!
2191 */
2192 client_change_wm_state(self);
2193 }
2194
2195 gboolean client_normal(ObClient *self) {
2196 return ! (self->type == OB_CLIENT_TYPE_DESKTOP ||
2197 self->type == OB_CLIENT_TYPE_DOCK ||
2198 self->type == OB_CLIENT_TYPE_SPLASH);
2199 }
2200
2201 static void client_apply_startup_state(ObClient *self, gint x, gint y)
2202 {
2203 gboolean pos = FALSE; /* has the window's position been configured? */
2204 gint ox, oy;
2205
2206 /* save the position, and set self->area for these to use */
2207 ox = self->area.x;
2208 oy = self->area.y;
2209 self->area.x = x;
2210 self->area.y = y;
2211
2212 /* set the desktop hint, to make sure that it always exists */
2213 PROP_SET32(self->window, net_wm_desktop, cardinal, self->desktop);
2214
2215 /* these are in a carefully crafted order.. */
2216
2217 if (self->iconic) {
2218 self->iconic = FALSE;
2219 client_iconify(self, TRUE, FALSE);
2220 }
2221 if (self->fullscreen) {
2222 self->fullscreen = FALSE;
2223 client_fullscreen(self, TRUE);
2224 pos = TRUE;
2225 }
2226 if (self->undecorated) {
2227 self->undecorated = FALSE;
2228 client_set_undecorated(self, TRUE);
2229 }
2230 if (self->shaded) {
2231 self->shaded = FALSE;
2232 client_shade(self, TRUE);
2233 }
2234 if (self->demands_attention) {
2235 self->demands_attention = FALSE;
2236 client_hilite(self, TRUE);
2237 }
2238
2239 if (self->max_vert && self->max_horz) {
2240 self->max_vert = self->max_horz = FALSE;
2241 client_maximize(self, TRUE, 0);
2242 pos = TRUE;
2243 } else if (self->max_vert) {
2244 self->max_vert = FALSE;
2245 client_maximize(self, TRUE, 2);
2246 pos = TRUE;
2247 } else if (self->max_horz) {
2248 self->max_horz = FALSE;
2249 client_maximize(self, TRUE, 1);
2250 pos = TRUE;
2251 }
2252
2253 /* if the client didn't get positioned yet, then do so now
2254 call client_move even if the window is not being moved anywhere, because
2255 when we reparent it and decorate it, it is getting moved and we need to
2256 be telling it so with a ConfigureNotify event.
2257 */
2258 if (!pos) {
2259 /* use the saved position */
2260 self->area.x = ox;
2261 self->area.y = oy;
2262 client_move(self, x, y);
2263 }
2264
2265 /* nothing to do for the other states:
2266 skip_taskbar
2267 skip_pager
2268 modal
2269 above
2270 below
2271 */
2272 }
2273
2274 void client_convert_gravity(ObClient *self, gint gravity, gint *x, gint *y,
2275 gint w, gint h)
2276 {
2277 gint oldg = self->gravity;
2278
2279 /* get the frame's position from the requested stuff */
2280 self->gravity = gravity;
2281 frame_client_gravity(self->frame, x, y, w, h);
2282 self->gravity = oldg;
2283
2284 /* get the client's position in its true gravity from that */
2285 frame_frame_gravity(self->frame, x, y, w, h);
2286 }
2287
2288 void client_try_configure(ObClient *self, gint *x, gint *y, gint *w, gint *h,
2289 gint *logicalw, gint *logicalh,
2290 gboolean user)
2291 {
2292 Rect desired_area = {*x, *y, *w, *h};
2293
2294 /* make the frame recalculate its dimentions n shit without changing
2295 anything visible for real, this way the constraints below can work with
2296 the updated frame dimensions. */
2297 frame_adjust_area(self->frame, TRUE, TRUE, TRUE);
2298
2299 /* work within the prefered sizes given by the window */
2300 if (!(*w == self->area.width && *h == self->area.height)) {
2301 gint basew, baseh, minw, minh;
2302
2303 /* base size is substituted with min size if not specified */
2304 if (self->base_size.width || self->base_size.height) {
2305 basew = self->base_size.width;
2306 baseh = self->base_size.height;
2307 } else {
2308 basew = self->min_size.width;
2309 baseh = self->min_size.height;
2310 }
2311 /* min size is substituted with base size if not specified */
2312 if (self->min_size.width || self->min_size.height) {
2313 minw = self->min_size.width;
2314 minh = self->min_size.height;
2315 } else {
2316 minw = self->base_size.width;
2317 minh = self->base_size.height;
2318 }
2319
2320 /* if this is a user-requested resize, then check against min/max
2321 sizes */
2322
2323 /* smaller than min size or bigger than max size? */
2324 if (*w > self->max_size.width) *w = self->max_size.width;
2325 if (*w < minw) *w = minw;
2326 if (*h > self->max_size.height) *h = self->max_size.height;
2327 if (*h < minh) *h = minh;
2328
2329 *w -= basew;
2330 *h -= baseh;
2331
2332 /* keep to the increments */
2333 *w /= self->size_inc.width;
2334 *h /= self->size_inc.height;
2335
2336 /* you cannot resize to nothing */
2337 if (basew + *w < 1) *w = 1 - basew;
2338 if (baseh + *h < 1) *h = 1 - baseh;
2339
2340 /* save the logical size */
2341 *logicalw = self->size_inc.width > 1 ? *w : *w + basew;
2342 *logicalh = self->size_inc.height > 1 ? *h : *h + baseh;
2343
2344 *w *= self->size_inc.width;
2345 *h *= self->size_inc.height;
2346
2347 *w += basew;
2348 *h += baseh;
2349
2350 /* adjust the height to match the width for the aspect ratios.
2351 for this, min size is not substituted for base size ever. */
2352 *w -= self->base_size.width;
2353 *h -= self->base_size.height;
2354
2355 if (!self->fullscreen) {
2356 if (self->min_ratio)
2357 if (*h * self->min_ratio > *w) {
2358 *h = (gint)(*w / self->min_ratio);
2359
2360 /* you cannot resize to nothing */
2361 if (*h < 1) {
2362 *h = 1;
2363 *w = (gint)(*h * self->min_ratio);
2364 }
2365 }
2366 if (self->max_ratio)
2367 if (*h * self->max_ratio < *w) {
2368 *h = (gint)(*w / self->max_ratio);
2369
2370 /* you cannot resize to nothing */
2371 if (*h < 1) {
2372 *h = 1;
2373 *w = (gint)(*h * self->min_ratio);
2374 }
2375 }
2376 }
2377
2378 *w += self->base_size.width;
2379 *h += self->base_size.height;
2380 }
2381
2382 /* gets the frame's position */
2383 frame_client_gravity(self->frame, x, y, *w, *h);
2384
2385 /* these positions are frame positions, not client positions */
2386
2387 /* set the size and position if fullscreen */
2388 if (self->fullscreen) {
2389 Rect *a;
2390 guint i;
2391
2392 i = screen_find_monitor(&desired_area);
2393 a = screen_physical_area_monitor(i);
2394
2395 *x = a->x;
2396 *y = a->y;
2397 *w = a->width;
2398 *h = a->height;
2399
2400 user = FALSE; /* ignore if the client can't be moved/resized when it
2401 is entering fullscreen */
2402 } else if (self->max_horz || self->max_vert) {
2403 Rect *a;
2404 guint i;
2405
2406 i = screen_find_monitor(&desired_area);
2407 a = screen_area_monitor(self->desktop, i);
2408
2409 /* set the size and position if maximized */
2410 if (self->max_horz) {
2411 *x = a->x;
2412 *w = a->width - self->frame->size.left - self->frame->size.right;
2413 }
2414 if (self->max_vert) {
2415 *y = a->y;
2416 *h = a->height - self->frame->size.top - self->frame->size.bottom;
2417 }
2418
2419 /* maximizing is not allowed if the user can't move+resize the window
2420 */
2421 }
2422
2423 /* gets the client's position */
2424 frame_frame_gravity(self->frame, x, y, *w, *h);
2425
2426 /* these override the above states! if you cant move you can't move! */
2427 if (user) {
2428 if (!(self->functions & OB_CLIENT_FUNC_MOVE)) {
2429 *x = self->area.x;
2430 *y = self->area.y;
2431 }
2432 if (!(self->functions & OB_CLIENT_FUNC_RESIZE)) {
2433 *w = self->area.width;
2434 *h = self->area.height;
2435 }
2436 }
2437
2438 g_assert(*w > 0);
2439 g_assert(*h > 0);
2440 }
2441
2442
2443 void client_configure_full(ObClient *self, gint x, gint y, gint w, gint h,
2444 gboolean user, gboolean final,
2445 gboolean force_reply)
2446 {
2447 gint oldw, oldh, oldrx, oldry;
2448 gboolean send_resize_client;
2449 gboolean moved = FALSE, resized = FALSE, rootmoved = FALSE;
2450 guint fdecor = self->frame->decorations;
2451 gboolean fhorz = self->frame->max_horz;
2452 gint logicalw, logicalh;
2453
2454 /* find the new x, y, width, and height (and logical size) */
2455 client_try_configure(self, &x, &y, &w, &h, &logicalw, &logicalh, user);
2456
2457 /* set the logical size if things changed */
2458 if (!(w == self->area.width && h == self->area.height))
2459 SIZE_SET(self->logical_size, logicalw, logicalh);
2460
2461 /* figure out if we moved or resized or what */
2462 moved = x != self->area.x || y != self->area.y;
2463 resized = w != self->area.width || h != self->area.height;
2464
2465 oldw = self->area.width;
2466 oldh = self->area.height;
2467 RECT_SET(self->area, x, y, w, h);
2468
2469 /* for app-requested resizes, always resize if 'resized' is true.
2470 for user-requested ones, only resize if final is true, or when
2471 resizing in redraw mode */
2472 send_resize_client = ((!user && resized) ||
2473 (user && (final ||
2474 (resized && config_resize_redraw))));
2475
2476 /* if the client is enlarging, then resize the client before the frame */
2477 if (send_resize_client && user && (w > oldw || h > oldh)) {
2478 XResizeWindow(ob_display, self->window, MAX(w, oldw), MAX(h, oldh));
2479 /* resize the plate to show the client padding color underneath */
2480 frame_adjust_client_area(self->frame);
2481 }
2482
2483 /* find the frame's dimensions and move/resize it */
2484 if (self->decorations != fdecor || self->max_horz != fhorz)
2485 moved = resized = TRUE;
2486 if (moved || resized)
2487 frame_adjust_area(self->frame, moved, resized, FALSE);
2488
2489 /* find the client's position relative to the root window */
2490 oldrx = self->root_pos.x;
2491 oldry = self->root_pos.y;
2492 rootmoved = (oldrx != (signed)(self->frame->area.x +
2493 self->frame->size.left -
2494 self->border_width) ||
2495 oldry != (signed)(self->frame->area.y +
2496 self->frame->size.top -
2497 self->border_width));
2498
2499 if (force_reply || ((!user || (user && final)) && rootmoved))
2500 {
2501 XEvent event;
2502
2503 POINT_SET(self->root_pos,
2504 self->frame->area.x + self->frame->size.left -
2505 self->border_width,
2506 self->frame->area.y + self->frame->size.top -
2507 self->border_width);
2508
2509 event.type = ConfigureNotify;
2510 event.xconfigure.display = ob_display;
2511 event.xconfigure.event = self->window;
2512 event.xconfigure.window = self->window;
2513
2514 /* root window real coords */
2515 event.xconfigure.x = self->root_pos.x;
2516 event.xconfigure.y = self->root_pos.y;
2517 event.xconfigure.width = w;
2518 event.xconfigure.height = h;
2519 event.xconfigure.border_width = 0;
2520 event.xconfigure.above = self->frame->plate;
2521 event.xconfigure.override_redirect = FALSE;
2522 XSendEvent(event.xconfigure.display, event.xconfigure.window,
2523 FALSE, StructureNotifyMask, &event);
2524 }
2525
2526 /* if the client is shrinking, then resize the frame before the client */
2527 if (send_resize_client && (!user || (w <= oldw || h <= oldh))) {
2528 /* resize the plate to show the client padding color underneath */
2529 frame_adjust_client_area(self->frame);
2530
2531 XResizeWindow(ob_display, self->window, w, h);
2532 }
2533
2534 XFlush(ob_display);
2535 }
2536
2537 void client_fullscreen(ObClient *self, gboolean fs)
2538 {
2539 gint x, y, w, h;
2540
2541 if (!(self->functions & OB_CLIENT_FUNC_FULLSCREEN) || /* can't */
2542 self->fullscreen == fs) return; /* already done */
2543
2544 self->fullscreen = fs;
2545 client_change_state(self); /* change the state hints on the client */
2546 client_calc_layer(self); /* and adjust out layer/stacking */
2547
2548 if (fs) {
2549 self->pre_fullscreen_area = self->area;
2550 /* if the window is maximized, its area isn't all that meaningful.
2551 save it's premax area instead. */
2552 if (self->max_horz) {
2553 self->pre_fullscreen_area.x = self->pre_max_area.x;
2554 self->pre_fullscreen_area.width = self->pre_max_area.width;
2555 }
2556 if (self->max_vert) {
2557 self->pre_fullscreen_area.y = self->pre_max_area.y;
2558 self->pre_fullscreen_area.height = self->pre_max_area.height;
2559 }
2560
2561 /* these are not actually used cuz client_configure will set them
2562 as appropriate when the window is fullscreened */
2563 x = y = w = h = 0;
2564 } else {
2565 Rect *a;
2566
2567 if (self->pre_fullscreen_area.width > 0 &&
2568 self->pre_fullscreen_area.height > 0)
2569 {
2570 x = self->pre_fullscreen_area.x;
2571 y = self->pre_fullscreen_area.y;
2572 w = self->pre_fullscreen_area.width;
2573 h = self->pre_fullscreen_area.height;
2574 RECT_SET(self->pre_fullscreen_area, 0, 0, 0, 0);
2575 } else {
2576 /* pick some fallbacks... */
2577 a = screen_area_monitor(self->desktop, 0);
2578 x = a->x + a->width / 4;
2579 y = a->y + a->height / 4;
2580 w = a->width / 2;
2581 h = a->height / 2;
2582 }
2583 }
2584
2585 client_setup_decor_and_functions(self);
2586
2587 client_move_resize(self, x, y, w, h);
2588
2589 /* try focus us when we go into fullscreen mode */
2590 client_focus(self);
2591 }
2592
2593 static void client_iconify_recursive(ObClient *self,
2594 gboolean iconic, gboolean curdesk)
2595 {
2596 GSList *it;
2597 gboolean changed = FALSE;
2598
2599
2600 if (self->iconic != iconic) {
2601 ob_debug("%sconifying window: 0x%lx\n", (iconic ? "I" : "Uni"),
2602 self->window);
2603
2604 if (iconic) {
2605 if (self->functions & OB_CLIENT_FUNC_ICONIFY) {
2606 self->iconic = iconic;
2607
2608 /* update the focus lists.. iconic windows go to the bottom of
2609 the list, put the new iconic window at the 'top of the
2610 bottom'. */
2611 focus_order_to_top(self);
2612
2613 changed = TRUE;
2614 }
2615 } else {
2616 self->iconic = iconic;
2617
2618 if (curdesk)
2619 client_set_desktop(self, screen_desktop, FALSE);
2620
2621 /* this puts it after the current focused window */
2622 focus_order_remove(self);
2623 focus_order_add_new(self);
2624
2625 changed = TRUE;
2626 }
2627 }
2628
2629 if (changed) {
2630 client_change_state(self);
2631 client_showhide(self);
2632 if (STRUT_EXISTS(self->strut))
2633 screen_update_areas();
2634 }
2635
2636 /* iconify all direct transients */
2637 for (it = self->transients; it; it = g_slist_next(it))
2638 if (it->data != self)
2639 if (client_is_direct_child(self, it->data))
2640 client_iconify_recursive(it->data, iconic, curdesk);
2641 }
2642
2643 void client_iconify(ObClient *self, gboolean iconic, gboolean curdesk)
2644 {
2645 /* move up the transient chain as far as possible first */
2646 self = client_search_top_parent(self);
2647 client_iconify_recursive(self, iconic, curdesk);
2648 }
2649
2650 void client_maximize(ObClient *self, gboolean max, gint dir)
2651 {
2652 gint x, y, w, h;
2653
2654 g_assert(dir == 0 || dir == 1 || dir == 2);
2655 if (!(self->functions & OB_CLIENT_FUNC_MAXIMIZE)) return; /* can't */
2656
2657 /* check if already done */
2658 if (max) {
2659 if (dir == 0 && self->max_horz && self->max_vert) return;
2660 if (dir == 1 && self->max_horz) return;
2661 if (dir == 2 && self->max_vert) return;
2662 } else {
2663 if (dir == 0 && !self->max_horz && !self->max_vert) return;
2664 if (dir == 1 && !self->max_horz) return;
2665 if (dir == 2 && !self->max_vert) return;
2666 }
2667
2668 /* we just tell it to configure in the same place and client_configure
2669 worries about filling the screen with the window */
2670 x = self->area.x;
2671 y = self->area.y;
2672 w = self->area.width;
2673 h = self->area.height;
2674
2675 if (max) {
2676 if ((dir == 0 || dir == 1) && !self->max_horz) { /* horz */
2677 RECT_SET(self->pre_max_area,
2678 self->area.x, self->pre_max_area.y,
2679 self->area.width, self->pre_max_area.height);
2680 }
2681 if ((dir == 0 || dir == 2) && !self->max_vert) { /* vert */
2682 RECT_SET(self->pre_max_area,
2683 self->pre_max_area.x, self->area.y,
2684 self->pre_max_area.width, self->area.height);
2685 }
2686 } else {
2687 Rect *a;
2688
2689 a = screen_area_monitor(self->desktop, 0);
2690 if ((dir == 0 || dir == 1) && self->max_horz) { /* horz */
2691 if (self->pre_max_area.width > 0) {
2692 x = self->pre_max_area.x;
2693 w = self->pre_max_area.width;
2694
2695 RECT_SET(self->pre_max_area, 0, self->pre_max_area.y,
2696 0, self->pre_max_area.height);
2697 } else {
2698 /* pick some fallbacks... */
2699 x = a->x + a->width / 4;
2700 w = a->width / 2;
2701 }
2702 }
2703 if ((dir == 0 || dir == 2) && self->max_vert) { /* vert */
2704 if (self->pre_max_area.height > 0) {
2705 y = self->pre_max_area.y;
2706 h = self->pre_max_area.height;
2707
2708 RECT_SET(self->pre_max_area, self->pre_max_area.x, 0,
2709 self->pre_max_area.width, 0);
2710 } else {
2711 /* pick some fallbacks... */
2712 y = a->y + a->height / 4;
2713 h = a->height / 2;
2714 }
2715 }
2716 }
2717
2718 if (dir == 0 || dir == 1) /* horz */
2719 self->max_horz = max;
2720 if (dir == 0 || dir == 2) /* vert */
2721 self->max_vert = max;
2722
2723 client_change_state(self); /* change the state hints on the client */
2724
2725 client_setup_decor_and_functions(self);
2726
2727 client_move_resize(self, x, y, w, h);
2728 }
2729
2730 void client_shade(ObClient *self, gboolean shade)
2731 {
2732 if ((!(self->functions & OB_CLIENT_FUNC_SHADE) &&
2733 shade) || /* can't shade */
2734 self->shaded == shade) return; /* already done */
2735
2736 self->shaded = shade;
2737 client_change_state(self);
2738 client_change_wm_state(self); /* the window is being hidden/shown */
2739 /* resize the frame to just the titlebar */
2740 frame_adjust_area(self->frame, FALSE, FALSE, FALSE);
2741 }
2742
2743 void client_close(ObClient *self)
2744 {
2745 XEvent ce;
2746
2747 if (!(self->functions & OB_CLIENT_FUNC_CLOSE)) return;
2748
2749 /* in the case that the client provides no means to requesting that it
2750 close, we just kill it */
2751 if (!self->delete_window)
2752 client_kill(self);
2753
2754 /*
2755 XXX: itd be cool to do timeouts and shit here for killing the client's
2756 process off
2757 like... if the window is around after 5 seconds, then the close button
2758 turns a nice red, and if this function is called again, the client is
2759 explicitly killed.
2760 */
2761
2762 ce.xclient.type = ClientMessage;
2763 ce.xclient.message_type = prop_atoms.wm_protocols;
2764 ce.xclient.display = ob_display;
2765 ce.xclient.window = self->window;
2766 ce.xclient.format = 32;
2767 ce.xclient.data.l[0] = prop_atoms.wm_delete_window;
2768 ce.xclient.data.l[1] = event_curtime;
2769 ce.xclient.data.l[2] = 0l;
2770 ce.xclient.data.l[3] = 0l;
2771 ce.xclient.data.l[4] = 0l;
2772 XSendEvent(ob_display, self->window, FALSE, NoEventMask, &ce);
2773 }
2774
2775 void client_kill(ObClient *self)
2776 {
2777 XKillClient(ob_display, self->window);
2778 }
2779
2780 void client_hilite(ObClient *self, gboolean hilite)
2781 {
2782 if (self->demands_attention == hilite)
2783 return; /* no change */
2784
2785 /* don't allow focused windows to hilite */
2786 self->demands_attention = hilite && !client_focused(self);
2787 if (self->frame != NULL) { /* if we're mapping, just set the state */
2788 if (self->demands_attention)
2789 frame_flash_start(self->frame);
2790 else
2791 frame_flash_stop(self->frame);
2792 client_change_state(self);
2793 }
2794 }
2795
2796 void client_set_desktop_recursive(ObClient *self,
2797 guint target, gboolean donthide)
2798 {
2799 guint old;
2800 GSList *it;
2801
2802 if (target != self->desktop) {
2803
2804 ob_debug("Setting desktop %u\n", target+1);
2805
2806 g_assert(target < screen_num_desktops || target == DESKTOP_ALL);
2807
2808 /* remove from the old desktop(s) */
2809 focus_order_remove(self);
2810
2811 old = self->desktop;
2812 self->desktop = target;
2813 PROP_SET32(self->window, net_wm_desktop, cardinal, target);
2814 /* the frame can display the current desktop state */
2815 frame_adjust_state(self->frame);
2816 /* 'move' the window to the new desktop */
2817 if (!donthide)
2818 client_showhide(self);
2819 /* raise if it was not already on the desktop */
2820 if (old != DESKTOP_ALL)
2821 client_raise(self);
2822 if (STRUT_EXISTS(self->strut))
2823 screen_update_areas();
2824
2825 /* add to the new desktop(s) */
2826 if (config_focus_new)
2827 focus_order_to_top(self);
2828 else
2829 focus_order_to_bottom(self);
2830 }
2831
2832 /* move all transients */
2833 for (it = self->transients; it; it = g_slist_next(it))
2834 if (it->data != self)
2835 if (client_is_direct_child(self, it->data))
2836 client_set_desktop_recursive(it->data, target, donthide);
2837 }
2838
2839 void client_set_desktop(ObClient *self, guint target, gboolean donthide)
2840 {
2841 self = client_search_top_parent(self);
2842 client_set_desktop_recursive(self, target, donthide);
2843 }
2844
2845 gboolean client_is_direct_child(ObClient *parent, ObClient *child)
2846 {
2847 while (child != parent &&
2848 child->transient_for && child->transient_for != OB_TRAN_GROUP)
2849 child = child->transient_for;
2850 return child == parent;
2851 }
2852
2853 ObClient *client_search_modal_child(ObClient *self)
2854 {
2855 GSList *it;
2856 ObClient *ret;
2857
2858 for (it = self->transients; it; it = g_slist_next(it)) {
2859 ObClient *c = it->data;
2860 if ((ret = client_search_modal_child(c))) return ret;
2861 if (c->modal) return c;
2862 }
2863 return NULL;
2864 }
2865
2866 gboolean client_validate(ObClient *self)
2867 {
2868 XEvent e;
2869
2870 XSync(ob_display, FALSE); /* get all events on the server */
2871
2872 if (XCheckTypedWindowEvent(ob_display, self->window, DestroyNotify, &e) ||
2873 XCheckTypedWindowEvent(ob_display, self->window, UnmapNotify, &e)) {
2874 XPutBackEvent(ob_display, &e);
2875 return FALSE;
2876 }
2877
2878 return TRUE;
2879 }
2880
2881 void client_set_wm_state(ObClient *self, glong state)
2882 {
2883 if (state == self->wmstate) return; /* no change */
2884
2885 switch (state) {
2886 case IconicState:
2887 client_iconify(self, TRUE, TRUE);
2888 break;
2889 case NormalState:
2890 client_iconify(self, FALSE, TRUE);
2891 break;
2892 }
2893 }
2894
2895 void client_set_state(ObClient *self, Atom action, glong data1, glong data2)
2896 {
2897 gboolean shaded = self->shaded;
2898 gboolean fullscreen = self->fullscreen;
2899 gboolean undecorated = self->undecorated;
2900 gboolean max_horz = self->max_horz;
2901 gboolean max_vert = self->max_vert;
2902 gboolean modal = self->modal;
2903 gboolean iconic = self->iconic;
2904 gboolean demands_attention = self->demands_attention;
2905 gint i;
2906
2907 if (!(action == prop_atoms.net_wm_state_add ||
2908 action == prop_atoms.net_wm_state_remove ||
2909 action == prop_atoms.net_wm_state_toggle))
2910 /* an invalid action was passed to the client message, ignore it */
2911 return;
2912
2913 for (i = 0; i < 2; ++i) {
2914 Atom state = i == 0 ? data1 : data2;
2915
2916 if (!state) continue;
2917
2918 /* if toggling, then pick whether we're adding or removing */
2919 if (action == prop_atoms.net_wm_state_toggle) {
2920 if (state == prop_atoms.net_wm_state_modal)
2921 action = modal ? prop_atoms.net_wm_state_remove :
2922 prop_atoms.net_wm_state_add;
2923 else if (state == prop_atoms.net_wm_state_maximized_vert)
2924 action = self->max_vert ? prop_atoms.net_wm_state_remove :
2925 prop_atoms.net_wm_state_add;
2926 else if (state == prop_atoms.net_wm_state_maximized_horz)
2927 action = self->max_horz ? prop_atoms.net_wm_state_remove :
2928 prop_atoms.net_wm_state_add;
2929 else if (state == prop_atoms.net_wm_state_shaded)
2930 action = shaded ? prop_atoms.net_wm_state_remove :
2931 prop_atoms.net_wm_state_add;
2932 else if (state == prop_atoms.net_wm_state_skip_taskbar)
2933 action = self->skip_taskbar ?
2934 prop_atoms.net_wm_state_remove :
2935 prop_atoms.net_wm_state_add;
2936 else if (state == prop_atoms.net_wm_state_skip_pager)
2937 action = self->skip_pager ?
2938 prop_atoms.net_wm_state_remove :
2939 prop_atoms.net_wm_state_add;
2940 else if (state == prop_atoms.net_wm_state_hidden)
2941 action = self->iconic ?
2942 prop_atoms.net_wm_state_remove :
2943 prop_atoms.net_wm_state_add;
2944 else if (state == prop_atoms.net_wm_state_fullscreen)
2945 action = fullscreen ?
2946 prop_atoms.net_wm_state_remove :
2947 prop_atoms.net_wm_state_add;
2948 else if (state == prop_atoms.net_wm_state_above)
2949 action = self->above ? prop_atoms.net_wm_state_remove :
2950 prop_atoms.net_wm_state_add;
2951 else if (state == prop_atoms.net_wm_state_below)
2952 action = self->below ? prop_atoms.net_wm_state_remove :
2953 prop_atoms.net_wm_state_add;
2954 else if (state == prop_atoms.net_wm_state_demands_attention)
2955 action = self->demands_attention ?
2956 prop_atoms.net_wm_state_remove :
2957 prop_atoms.net_wm_state_add;
2958 else if (state == prop_atoms.ob_wm_state_undecorated)
2959 action = undecorated ? prop_atoms.net_wm_state_remove :
2960 prop_atoms.net_wm_state_add;
2961 }
2962
2963 if (action == prop_atoms.net_wm_state_add) {
2964 if (state == prop_atoms.net_wm_state_modal) {
2965 modal = TRUE;
2966 } else if (state == prop_atoms.net_wm_state_maximized_vert) {
2967 max_vert = TRUE;
2968 } else if (state == prop_atoms.net_wm_state_maximized_horz) {
2969 max_horz = TRUE;
2970 } else if (state == prop_atoms.net_wm_state_shaded) {
2971 shaded = TRUE;
2972 } else if (state == prop_atoms.net_wm_state_skip_taskbar) {
2973 self->skip_taskbar = TRUE;
2974 } else if (state == prop_atoms.net_wm_state_skip_pager) {
2975 self->skip_pager = TRUE;
2976 } else if (state == prop_atoms.net_wm_state_hidden) {
2977 iconic = TRUE;
2978 } else if (state == prop_atoms.net_wm_state_fullscreen) {
2979 fullscreen = TRUE;
2980 } else if (state == prop_atoms.net_wm_state_above) {
2981 self->above = TRUE;
2982 self->below = FALSE;
2983 } else if (state == prop_atoms.net_wm_state_below) {
2984 self->above = FALSE;
2985 self->below = TRUE;
2986 } else if (state == prop_atoms.net_wm_state_demands_attention) {
2987 demands_attention = TRUE;
2988 } else if (state == prop_atoms.ob_wm_state_undecorated) {
2989 undecorated = TRUE;
2990 }
2991
2992 } else { /* action == prop_atoms.net_wm_state_remove */
2993 if (state == prop_atoms.net_wm_state_modal) {
2994 modal = FALSE;
2995 } else if (state == prop_atoms.net_wm_state_maximized_vert) {
2996 max_vert = FALSE;
2997 } else if (state == prop_atoms.net_wm_state_maximized_horz) {
2998 max_horz = FALSE;
2999 } else if (state == prop_atoms.net_wm_state_shaded) {
3000 shaded = FALSE;
3001 } else if (state == prop_atoms.net_wm_state_skip_taskbar) {
3002 self->skip_taskbar = FALSE;
3003 } else if (state == prop_atoms.net_wm_state_skip_pager) {
3004 self->skip_pager = FALSE;
3005 } else if (state == prop_atoms.net_wm_state_hidden) {
3006 iconic = FALSE;
3007 } else if (state == prop_atoms.net_wm_state_fullscreen) {
3008 fullscreen = FALSE;
3009 } else if (state == prop_atoms.net_wm_state_above) {
3010 self->above = FALSE;
3011 } else if (state == prop_atoms.net_wm_state_below) {
3012 self->below = FALSE;
3013 } else if (state == prop_atoms.net_wm_state_demands_attention) {
3014 demands_attention = FALSE;
3015 } else if (state == prop_atoms.ob_wm_state_undecorated) {
3016 undecorated = FALSE;
3017 }
3018 }
3019 }
3020 if (max_horz != self->max_horz || max_vert != self->max_vert) {
3021 if (max_horz != self->max_horz && max_vert != self->max_vert) {
3022 /* toggling both */
3023 if (max_horz == max_vert) { /* both going the same way */
3024 client_maximize(self, max_horz, 0);
3025 } else {
3026 client_maximize(self, max_horz, 1);
3027 client_maximize(self, max_vert, 2);
3028 }
3029 } else {
3030 /* toggling one */
3031 if (max_horz != self->max_horz)
3032 client_maximize(self, max_horz, 1);
3033 else
3034 client_maximize(self, max_vert, 2);
3035 }
3036 }
3037 /* change fullscreen state before shading, as it will affect if the window
3038 can shade or not */
3039 if (fullscreen != self->fullscreen)
3040 client_fullscreen(self, fullscreen);
3041 if (shaded != self->shaded)
3042 client_shade(self, shaded);
3043 if (undecorated != self->undecorated)
3044 client_set_undecorated(self, undecorated);
3045 if (modal != self->modal) {
3046 self->modal = modal;
3047 /* when a window changes modality, then its stacking order with its
3048 transients needs to change */
3049 client_raise(self);
3050 }
3051 if (iconic != self->iconic)
3052 client_iconify(self, iconic, FALSE);
3053
3054 if (demands_attention != self->demands_attention)
3055 client_hilite(self, demands_attention);
3056
3057 client_change_state(self); /* change the hint to reflect these changes */
3058 }
3059
3060 ObClient *client_focus_target(ObClient *self)
3061 {
3062 ObClient *child = NULL;
3063
3064 child = client_search_modal_child(self);
3065 if (child) return child;
3066 return self;
3067 }
3068
3069 gboolean client_can_focus(ObClient *self)
3070 {
3071 XEvent ev;
3072
3073 /* choose the correct target */
3074 self = client_focus_target(self);
3075
3076 if (!self->frame->visible)
3077 return FALSE;
3078
3079 if (!(self->can_focus || self->focus_notify))
3080 return FALSE;
3081
3082 /* do a check to see if the window has already been unmapped or destroyed
3083 do this intelligently while watching out for unmaps we've generated
3084 (ignore_unmaps > 0) */
3085 if (XCheckTypedWindowEvent(ob_display, self->window,
3086 DestroyNotify, &ev)) {
3087 XPutBackEvent(ob_display, &ev);
3088 return FALSE;
3089 }
3090 while (XCheckTypedWindowEvent(ob_display, self->window,
3091 UnmapNotify, &ev)) {
3092 if (self->ignore_unmaps) {
3093 self->ignore_unmaps--;
3094 } else {
3095 XPutBackEvent(ob_display, &ev);
3096 return FALSE;
3097 }
3098 }
3099
3100 return TRUE;
3101 }
3102
3103 gboolean client_focus(ObClient *self)
3104 {
3105 /* choose the correct target */
3106 self = client_focus_target(self);
3107
3108 if (!client_can_focus(self)) {
3109 if (!self->frame->visible) {
3110 /* update the focus lists */
3111 focus_order_to_top(self);
3112 }
3113 return FALSE;
3114 }
3115
3116 ob_debug_type(OB_DEBUG_FOCUS,
3117 "Focusing client \"%s\" at time %u\n",
3118 self->title, event_curtime);
3119
3120 if (self->can_focus) {
3121 /* This can cause a BadMatch error with CurrentTime, or if an app
3122 passed in a bad time for _NET_WM_ACTIVE_WINDOW. */
3123 xerror_set_ignore(TRUE);
3124 XSetInputFocus(ob_display, self->window, RevertToPointerRoot,
3125 event_curtime);
3126 xerror_set_ignore(FALSE);
3127 }
3128
3129 if (self->focus_notify) {
3130 XEvent ce;
3131 ce.xclient.type = ClientMessage;
3132 ce.xclient.message_type = prop_atoms.wm_protocols;
3133 ce.xclient.display = ob_display;
3134 ce.xclient.window = self->window;
3135 ce.xclient.format = 32;
3136 ce.xclient.data.l[0] = prop_atoms.wm_take_focus;
3137 ce.xclient.data.l[1] = event_curtime;
3138 ce.xclient.data.l[2] = 0l;
3139 ce.xclient.data.l[3] = 0l;
3140 ce.xclient.data.l[4] = 0l;
3141 XSendEvent(ob_display, self->window, FALSE, NoEventMask, &ce);
3142 }
3143
3144 #ifdef DEBUG_FOCUS
3145 ob_debug("%sively focusing %lx at %d\n",
3146 (self->can_focus ? "act" : "pass"),
3147 self->window, (gint) event_curtime);
3148 #endif
3149
3150 /* Cause the FocusIn to come back to us. Important for desktop switches,
3151 since otherwise we'll have no FocusIn on the queue and send it off to
3152 the focus_backup. */
3153 XSync(ob_display, FALSE);
3154 return TRUE;
3155 }
3156
3157 void client_activate(ObClient *self, gboolean here, gboolean user)
3158 {
3159 guint32 last_time = focus_client ? focus_client->user_time : CurrentTime;
3160
3161 /* XXX do some stuff here if user is false to determine if we really want
3162 to activate it or not (a parent or group member is currently
3163 active)?
3164 */
3165 ob_debug_type(OB_DEBUG_FOCUS,
3166 "Want to activate window 0x%x with time %u (last time %u), "
3167 "source=%s\n",
3168 self->window, event_curtime, last_time,
3169 (user ? "user" : "application"));
3170
3171 if (!user && event_curtime && last_time &&
3172 !event_time_after(event_curtime, last_time))
3173 {
3174 client_hilite(self, TRUE);
3175 } else {
3176 if (event_curtime != CurrentTime)
3177 self->user_time = event_curtime;
3178
3179 /* if using focus_delay, stop the timer now so that focus doesn't
3180 go moving on us */
3181 event_halt_focus_delay();
3182
3183 if (client_normal(self) && screen_showing_desktop)
3184 screen_show_desktop(FALSE);
3185 if (self->iconic)
3186 client_iconify(self, FALSE, here);
3187 if (self->desktop != DESKTOP_ALL &&
3188 self->desktop != screen_desktop) {
3189 if (here)
3190 client_set_desktop(self, screen_desktop, FALSE);
3191 else
3192 screen_set_desktop(self->desktop);
3193 } else if (!self->frame->visible)
3194 /* if its not visible for other reasons, then don't mess
3195 with it */
3196 return;
3197 if (self->shaded)
3198 client_shade(self, FALSE);
3199
3200 client_focus(self);
3201
3202 /* we do this as an action here. this is rather important. this is
3203 because we want the results from the focus change to take place
3204 BEFORE we go about raising the window. when a fullscreen window
3205 loses focus, we need this or else the raise wont be able to raise
3206 above the to-lose-focus fullscreen window. */
3207 client_raise(self);
3208 }
3209 }
3210
3211 void client_raise(ObClient *self)
3212 {
3213 action_run_string("Raise", self, CurrentTime);
3214 }
3215
3216 void client_lower(ObClient *self)
3217 {
3218 action_run_string("Lower", self, CurrentTime);
3219 }
3220
3221 gboolean client_focused(ObClient *self)
3222 {
3223 return self == focus_client;
3224 }
3225
3226 static ObClientIcon* client_icon_recursive(ObClient *self, gint w, gint h)
3227 {
3228 guint i;
3229 /* si is the smallest image >= req */
3230 /* li is the largest image < req */
3231 gulong size, smallest = 0xffffffff, largest = 0, si = 0, li = 0;
3232
3233 if (!self->nicons) {
3234 ObClientIcon *parent = NULL;
3235
3236 if (self->transient_for) {
3237 if (self->transient_for != OB_TRAN_GROUP)
3238 parent = client_icon_recursive(self->transient_for, w, h);
3239 else {
3240 GSList *it;
3241 for (it = self->group->members; it; it = g_slist_next(it)) {
3242 ObClient *c = it->data;
3243 if (c != self && !c->transient_for) {
3244 if ((parent = client_icon_recursive(c, w, h)))
3245 break;
3246 }
3247 }
3248 }
3249 }
3250
3251 return parent;
3252 }
3253
3254 for (i = 0; i < self->nicons; ++i) {
3255 size = self->icons[i].width * self->icons[i].height;
3256 if (size < smallest && size >= (unsigned)(w * h)) {
3257 smallest = size;
3258 si = i;
3259 }
3260 if (size > largest && size <= (unsigned)(w * h)) {
3261 largest = size;
3262 li = i;
3263 }
3264 }
3265 if (largest == 0) /* didnt find one smaller than the requested size */
3266 return &self->icons[si];
3267 return &self->icons[li];
3268 }
3269
3270 const ObClientIcon* client_icon(ObClient *self, gint w, gint h)
3271 {
3272 ObClientIcon *ret;
3273 static ObClientIcon deficon;
3274
3275 if (!(ret = client_icon_recursive(self, w, h))) {
3276 deficon.width = deficon.height = 48;
3277 deficon.data = ob_rr_theme->def_win_icon;
3278 ret = &deficon;
3279 }
3280 return ret;
3281 }
3282
3283 void client_set_layer(ObClient *self, gint layer)
3284 {
3285 if (layer < 0) {
3286 self->below = TRUE;
3287 self->above = FALSE;
3288 } else if (layer == 0) {
3289 self->below = self->above = FALSE;
3290 } else {
3291 self->below = FALSE;
3292 self->above = TRUE;
3293 }
3294 client_calc_layer(self);
3295 client_change_state(self); /* reflect this in the state hints */
3296 }
3297
3298 void client_set_undecorated(ObClient *self, gboolean undecorated)
3299 {
3300 if (self->undecorated != undecorated) {
3301 self->undecorated = undecorated;
3302 client_setup_decor_and_functions(self);
3303 /* Make sure the client knows it might have moved. Maybe there is a
3304 * better way of doing this so only one client_configure is sent, but
3305 * since 125 of these are sent per second when moving the window (with
3306 * user = FALSE) i doubt it matters much.
3307 */
3308 client_configure(self, self->area.x, self->area.y,
3309 self->area.width, self->area.height, TRUE, TRUE);
3310 client_change_state(self); /* reflect this in the state hints */
3311 }
3312 }
3313
3314 guint client_monitor(ObClient *self)
3315 {
3316 return screen_find_monitor(&self->frame->area);
3317 }
3318
3319 ObClient *client_search_top_parent(ObClient *self)
3320 {
3321 while (self->transient_for && self->transient_for != OB_TRAN_GROUP &&
3322 client_normal(self))
3323 self = self->transient_for;
3324 return self;
3325 }
3326
3327 GSList *client_search_all_top_parents(ObClient *self)
3328 {
3329 GSList *ret = NULL;
3330
3331 /* move up the direct transient chain as far as possible */
3332 while (self->transient_for && self->transient_for != OB_TRAN_GROUP)
3333 self = self->transient_for;
3334
3335 if (!self->transient_for)
3336 ret = g_slist_prepend(ret, self);
3337 else {
3338 GSList *it;
3339
3340 g_assert(self->group);
3341
3342 for (it = self->group->members; it; it = g_slist_next(it)) {
3343 ObClient *c = it->data;
3344
3345 if (!c->transient_for && client_normal(c))
3346 ret = g_slist_prepend(ret, c);
3347 }
3348
3349 if (ret == NULL) /* no group parents */
3350 ret = g_slist_prepend(ret, self);
3351 }
3352
3353 return ret;
3354 }
3355
3356 ObClient *client_search_focus_parent(ObClient *self)
3357 {
3358 if (self->transient_for) {
3359 if (self->transient_for != OB_TRAN_GROUP) {
3360 if (client_focused(self->transient_for))
3361 return self->transient_for;
3362 } else {
3363 GSList *it;
3364
3365 for (it = self->group->members; it; it = g_slist_next(it)) {
3366 ObClient *c = it->data;
3367
3368 /* checking transient_for prevents infinate loops! */
3369 if (c != self && !c->transient_for)
3370 if (client_focused(c))
3371 return c;
3372 }
3373 }
3374 }
3375
3376 return NULL;
3377 }
3378
3379 ObClient *client_search_parent(ObClient *self, ObClient *search)
3380 {
3381 if (self->transient_for) {
3382 if (self->transient_for != OB_TRAN_GROUP) {
3383 if (self->transient_for == search)
3384 return search;
3385 } else {
3386 GSList *it;
3387
3388 for (it = self->group->members; it; it = g_slist_next(it)) {
3389 ObClient *c = it->data;
3390
3391 /* checking transient_for prevents infinate loops! */
3392 if (c != self && !c->transient_for)
3393 if (c == search)
3394 return search;
3395 }
3396 }
3397 }
3398
3399 return NULL;
3400 }
3401
3402 ObClient *client_search_transient(ObClient *self, ObClient *search)
3403 {
3404 GSList *sit;
3405
3406 for (sit = self->transients; sit; sit = g_slist_next(sit)) {
3407 if (sit->data == search)
3408 return search;
3409 if (client_search_transient(sit->data, search))
3410 return search;
3411 }
3412 return NULL;
3413 }
3414
3415 void client_update_sm_client_id(ObClient *self)
3416 {
3417 g_free(self->sm_client_id);
3418 self->sm_client_id = NULL;
3419
3420 if (!PROP_GETS(self->window, sm_client_id, locale, &self->sm_client_id) &&
3421 self->group)
3422 PROP_GETS(self->group->leader, sm_client_id, locale,
3423 &self->sm_client_id);
3424 }
3425
3426 #define WANT_EDGE(cur, c) \
3427 if(cur == c) \
3428 continue; \
3429 if(!client_normal(cur)) \
3430 continue; \
3431 if(screen_desktop != cur->desktop && cur->desktop != DESKTOP_ALL) \
3432 continue; \
3433 if(cur->iconic) \
3434 continue; \
3435 if(cur->layer < c->layer && !config_resist_layers_below) \
3436 continue;
3437
3438 #define HIT_EDGE(my_edge_start, my_edge_end, his_edge_start, his_edge_end) \
3439 if ((his_edge_start >= my_edge_start && \
3440 his_edge_start <= my_edge_end) || \
3441 (my_edge_start >= his_edge_start && \
3442 my_edge_start <= his_edge_end)) \
3443 dest = his_offset;
3444
3445 /* finds the nearest edge in the given direction from the current client
3446 * note to self: the edge is the -frame- edge (the actual one), not the
3447 * client edge.
3448 */
3449 gint client_directional_edge_search(ObClient *c, ObDirection dir, gboolean hang)
3450 {
3451 gint dest, monitor_dest;
3452 gint my_edge_start, my_edge_end, my_offset;
3453 GList *it;
3454 Rect *a, *monitor;
3455
3456 if(!client_list)
3457 return -1;
3458
3459 a = screen_area(c->desktop);
3460 monitor = screen_area_monitor(c->desktop, client_monitor(c));
3461
3462 switch(dir) {
3463 case OB_DIRECTION_NORTH:
3464 my_edge_start = c->frame->area.x;
3465 my_edge_end = c->frame->area.x + c->frame->area.width;
3466 my_offset = c->frame->area.y + (hang ? c->frame->area.height : 0);
3467
3468 /* default: top of screen */
3469 dest = a->y + (hang ? c->frame->area.height : 0);
3470 monitor_dest = monitor->y + (hang ? c->frame->area.height : 0);
3471 /* if the monitor edge comes before the screen edge, */
3472 /* use that as the destination instead. (For xinerama) */
3473 if (monitor_dest != dest && my_offset > monitor_dest)
3474 dest = monitor_dest;
3475
3476 for(it = client_list; it && my_offset != dest; it = g_list_next(it)) {
3477 gint his_edge_start, his_edge_end, his_offset;
3478 ObClient *cur = it->data;
3479
3480 WANT_EDGE(cur, c)
3481
3482 his_edge_start = cur->frame->area.x;
3483 his_edge_end = cur->frame->area.x + cur->frame->area.width;
3484 his_offset = cur->frame->area.y +
3485 (hang ? 0 : cur->frame->area.height);
3486
3487 if(his_offset + 1 > my_offset)
3488 continue;
3489
3490 if(his_offset < dest)
3491 continue;
3492
3493 HIT_EDGE(my_edge_start, my_edge_end, his_edge_start, his_edge_end)
3494 }
3495 break;
3496 case OB_DIRECTION_SOUTH:
3497 my_edge_start = c->frame->area.x;
3498 my_edge_end = c->frame->area.x + c->frame->area.width;
3499 my_offset = c->frame->area.y + (hang ? 0 : c->frame->area.height);
3500
3501 /* default: bottom of screen */
3502 dest = a->y + a->height - (hang ? c->frame->area.height : 0);
3503 monitor_dest = monitor->y + monitor->height -
3504 (hang ? c->frame->area.height : 0);
3505 /* if the monitor edge comes before the screen edge, */
3506 /* use that as the destination instead. (For xinerama) */
3507 if (monitor_dest != dest && my_offset < monitor_dest)
3508 dest = monitor_dest;
3509
3510 for(it = client_list; it && my_offset != dest; it = g_list_next(it)) {
3511 gint his_edge_start, his_edge_end, his_offset;
3512 ObClient *cur = it->data;
3513
3514 WANT_EDGE(cur, c)
3515
3516 his_edge_start = cur->frame->area.x;
3517 his_edge_end = cur->frame->area.x + cur->frame->area.width;
3518 his_offset = cur->frame->area.y +
3519 (hang ? cur->frame->area.height : 0);
3520
3521
3522 if(his_offset - 1 < my_offset)
3523 continue;
3524
3525 if(his_offset > dest)
3526 continue;
3527
3528 HIT_EDGE(my_edge_start, my_edge_end, his_edge_start, his_edge_end)
3529 }
3530 break;
3531 case OB_DIRECTION_WEST:
3532 my_edge_start = c->frame->area.y;
3533 my_edge_end = c->frame->area.y + c->frame->area.height;
3534 my_offset = c->frame->area.x + (hang ? c->frame->area.width : 0);
3535
3536 /* default: leftmost egde of screen */
3537 dest = a->x + (hang ? c->frame->area.width : 0);
3538 monitor_dest = monitor->x + (hang ? c->frame->area.width : 0);
3539 /* if the monitor edge comes before the screen edge, */
3540 /* use that as the destination instead. (For xinerama) */
3541 if (monitor_dest != dest && my_offset > monitor_dest)
3542 dest = monitor_dest;
3543
3544 for(it = client_list; it && my_offset != dest; it = g_list_next(it)) {
3545 gint his_edge_start, his_edge_end, his_offset;
3546 ObClient *cur = it->data;
3547
3548 WANT_EDGE(cur, c)
3549
3550 his_edge_start = cur->frame->area.y;
3551 his_edge_end = cur->frame->area.y + cur->frame->area.height;
3552 his_offset = cur->frame->area.x +
3553 (hang ? 0 : cur->frame->area.width);
3554
3555 if(his_offset + 1 > my_offset)
3556 continue;
3557
3558 if(his_offset < dest)
3559 continue;
3560
3561 HIT_EDGE(my_edge_start, my_edge_end, his_edge_start, his_edge_end)
3562 }
3563 break;
3564 case OB_DIRECTION_EAST:
3565 my_edge_start = c->frame->area.y;
3566 my_edge_end = c->frame->area.y + c->frame->area.height;
3567 my_offset = c->frame->area.x + (hang ? 0 : c->frame->area.width);
3568
3569 /* default: rightmost edge of screen */
3570 dest = a->x + a->width - (hang ? c->frame->area.width : 0);
3571 monitor_dest = monitor->x + monitor->width -
3572 (hang ? c->frame->area.width : 0);
3573 /* if the monitor edge comes before the screen edge, */
3574 /* use that as the destination instead. (For xinerama) */
3575 if (monitor_dest != dest && my_offset < monitor_dest)
3576 dest = monitor_dest;
3577
3578 for(it = client_list; it && my_offset != dest; it = g_list_next(it)) {
3579 gint his_edge_start, his_edge_end, his_offset;
3580 ObClient *cur = it->data;
3581
3582 WANT_EDGE(cur, c)
3583
3584 his_edge_start = cur->frame->area.y;
3585 his_edge_end = cur->frame->area.y + cur->frame->area.height;
3586 his_offset = cur->frame->area.x +
3587 (hang ? cur->frame->area.width : 0);
3588
3589 if(his_offset - 1 < my_offset)
3590 continue;
3591
3592 if(his_offset > dest)
3593 continue;
3594
3595 HIT_EDGE(my_edge_start, my_edge_end, his_edge_start, his_edge_end)
3596 }
3597 break;
3598 case OB_DIRECTION_NORTHEAST:
3599 case OB_DIRECTION_SOUTHEAST:
3600 case OB_DIRECTION_NORTHWEST:
3601 case OB_DIRECTION_SOUTHWEST:
3602 /* not implemented */
3603 default:
3604 g_assert_not_reached();
3605 dest = 0; /* suppress warning */
3606 }
3607 return dest;
3608 }
3609
3610 ObClient* client_under_pointer()
3611 {
3612 gint x, y;
3613 GList *it;
3614 ObClient *ret = NULL;
3615
3616 if (screen_pointer_pos(&x, &y)) {
3617 for (it = stacking_list; it; it = g_list_next(it)) {
3618 if (WINDOW_IS_CLIENT(it->data)) {
3619 ObClient *c = WINDOW_AS_CLIENT(it->data);
3620 if (c->frame->visible &&
3621 RECT_CONTAINS(c->frame->area, x, y)) {
3622 ret = c;
3623 break;
3624 }
3625 }
3626 }
3627 }
3628 return ret;
3629 }
3630
3631 gboolean client_has_group_siblings(ObClient *self)
3632 {
3633 return self->group && self->group->members->next;
3634 }
This page took 0.188291 seconds and 5 git commands to generate.