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