1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 client.c for the Openbox window manager
4 Copyright (c) 2004 Mikael Magnusson
5 Copyright (c) 2003 Ben Jansens
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.
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.
17 See the COPYING file for a copy of the GNU General Public License.
22 #include "startupnotify.h"
26 #include "moveresize.h"
29 #include "extensions.h"
39 #include "menuframe.h"
42 #include "render/render.h"
45 #include <X11/Xutil.h>
47 /*! The event mask to grab on client windows */
48 #define CLIENT_EVENTMASK (PropertyChangeMask | FocusChangeMask | \
51 #define CLIENT_NOPROPAGATEMASK (ButtonPressMask | ButtonReleaseMask | \
56 ObClientDestructor func
;
60 GList
*client_list
= NULL
;
61 GSList
*client_destructors
= NULL
;
63 static void client_get_all(ObClient
*self
);
64 static void client_toggle_border(ObClient
*self
, gboolean show
);
65 static void client_get_startup_id(ObClient
*self
);
66 static void client_get_area(ObClient
*self
);
67 static void client_get_desktop(ObClient
*self
);
68 static void client_get_state(ObClient
*self
);
69 static void client_get_shaped(ObClient
*self
);
70 static void client_get_mwm_hints(ObClient
*self
);
71 static void client_get_gravity(ObClient
*self
);
72 static void client_showhide(ObClient
*self
);
73 static void client_change_allowed_actions(ObClient
*self
);
74 static void client_change_state(ObClient
*self
);
75 static void client_apply_startup_state(ObClient
*self
);
76 static void client_restore_session_state(ObClient
*self
);
77 static void client_restore_session_stacking(ObClient
*self
);
78 static void client_urgent_notify(ObClient
*self
);
80 void client_startup(gboolean reconfig
)
87 void client_shutdown(gboolean reconfig
)
91 void client_add_destructor(ObClientDestructor func
, gpointer data
)
93 Destructor
*d
= g_new(Destructor
, 1);
96 client_destructors
= g_slist_prepend(client_destructors
, d
);
99 void client_remove_destructor(ObClientDestructor func
)
103 for (it
= client_destructors
; it
; it
= g_slist_next(it
)) {
104 Destructor
*d
= it
->data
;
105 if (d
->func
== func
) {
107 client_destructors
= g_slist_delete_link(client_destructors
, it
);
113 void client_set_list()
115 Window
*windows
, *win_it
;
117 guint size
= g_list_length(client_list
);
119 /* create an array of the window ids */
121 windows
= g_new(Window
, size
);
123 for (it
= client_list
; it
; it
= g_list_next(it
), ++win_it
)
124 *win_it
= ((ObClient
*)it
->data
)->window
;
128 PROP_SETA32(RootWindow(ob_display
, ob_screen
),
129 net_client_list
, window
, (gulong
*)windows
, size
);
138 void client_foreach_transient(ObClient *self, ObClientForeachFunc func, gpointer data)
142 for (it = self->transients; it; it = g_slist_next(it)) {
143 if (!func(it->data, data)) return;
144 client_foreach_transient(it->data, func, data);
148 void client_foreach_ancestor(ObClient *self, ObClientForeachFunc func, gpointer data)
150 if (self->transient_for) {
151 if (self->transient_for != OB_TRAN_GROUP) {
152 if (!func(self->transient_for, data)) return;
153 client_foreach_ancestor(self->transient_for, func, data);
157 for (it = self->group->members; it; it = g_slist_next(it))
158 if (it->data != self &&
159 !((ObClient*)it->data)->transient_for) {
160 if (!func(it->data, data)) return;
161 client_foreach_ancestor(it->data, func, data);
168 void client_manage_all()
173 XWindowAttributes attrib
;
175 XQueryTree(ob_display
, RootWindow(ob_display
, ob_screen
),
176 &w
, &w
, &children
, &nchild
);
178 /* remove all icon windows from the list */
179 for (i
= 0; i
< nchild
; i
++) {
180 if (children
[i
] == None
) continue;
181 wmhints
= XGetWMHints(ob_display
, children
[i
]);
183 if ((wmhints
->flags
& IconWindowHint
) &&
184 (wmhints
->icon_window
!= children
[i
]))
185 for (j
= 0; j
< nchild
; j
++)
186 if (children
[j
] == wmhints
->icon_window
) {
194 for (i
= 0; i
< nchild
; ++i
) {
195 if (children
[i
] == None
)
197 if (XGetWindowAttributes(ob_display
, children
[i
], &attrib
)) {
198 if (attrib
.override_redirect
) continue;
200 if (attrib
.map_state
!= IsUnmapped
)
201 client_manage(children
[i
]);
207 static ObAppSettings
*get_settings(ObClient
*client
)
209 GSList
*a
= config_per_app_settings
;
212 ObAppSettings
*app
= (ObAppSettings
*) a
->data
;
215 (app
->name
&& !app
->class && !strcmp(app
->name
, client
->name
))
216 || (app
->class && !app
->name
&& !strcmp(app
->class, client
->class))
217 || (app
->class && app
->name
&& !strcmp(app
->class, client
->class)
218 && !strcmp(app
->name
, client
->name
))
220 ob_debug("Window matching: %s\n", app
->name
);
221 /* Match if no role was specified in the per app setting, or if the string
222 * matches the beginning of the role, since apps like to set the role to
223 * things like browser-window-23c4b2f */
224 if (!app
->role
|| !strncmp(app
->role
, client
->role
, strlen(app
->role
)))
233 void client_manage(Window window
)
237 XWindowAttributes attrib
;
238 XSetWindowAttributes attrib_set
;
240 gboolean activate
= FALSE
;
241 ObAppSettings
*settings
;
245 /* check if it has already been unmapped by the time we started mapping
246 the grab does a sync so we don't have to here */
247 if (XCheckTypedWindowEvent(ob_display
, window
, DestroyNotify
, &e
) ||
248 XCheckTypedWindowEvent(ob_display
, window
, UnmapNotify
, &e
)) {
249 XPutBackEvent(ob_display
, &e
);
252 return; /* don't manage it */
255 /* make sure it isn't an override-redirect window */
256 if (!XGetWindowAttributes(ob_display
, window
, &attrib
) ||
257 attrib
.override_redirect
) {
259 return; /* don't manage it */
262 /* is the window a docking app */
263 if ((wmhint
= XGetWMHints(ob_display
, window
))) {
264 if ((wmhint
->flags
& StateHint
) &&
265 wmhint
->initial_state
== WithdrawnState
) {
266 dock_add(window
, wmhint
);
274 ob_debug("Managing window: %lx\n", window
);
276 /* choose the events we want to receive on the CLIENT window */
277 attrib_set
.event_mask
= CLIENT_EVENTMASK
;
278 attrib_set
.do_not_propagate_mask
= CLIENT_NOPROPAGATEMASK
;
279 XChangeWindowAttributes(ob_display
, window
,
280 CWEventMask
|CWDontPropagate
, &attrib_set
);
283 /* create the ObClient struct, and populate it from the hints on the
285 self
= g_new0(ObClient
, 1);
286 self
->obwin
.type
= Window_Client
;
287 self
->window
= window
;
289 /* non-zero defaults */
290 self
->title_count
= 1;
291 self
->wmstate
= NormalState
;
293 self
->desktop
= screen_num_desktops
; /* always an invalid value */
295 client_get_all(self
);
296 client_restore_session_state(self
);
298 sn_app_started(self
->class);
300 /* update the focus lists, do this before the call to change_state or
301 it can end up in the list twice! */
302 focus_order_add_new(self
);
304 client_change_state(self
);
306 /* remove the client's border (and adjust re gravity) */
307 client_toggle_border(self
, FALSE
);
309 /* specify that if we exit, the window should not be destroyed and should
310 be reparented back to root automatically */
311 XChangeSaveSet(ob_display
, window
, SetModeInsert
);
313 /* create the decoration frame for the client window */
314 self
->frame
= frame_new();
316 frame_grab_client(self
->frame
, self
);
320 client_apply_startup_state(self
);
322 /* get and set application level settings */
323 settings
= get_settings(self
);
326 /* Don't worry, we won't actually both shade and undecorate the
327 * window when push comes to shove. */
328 if (settings
->shade
!= -1)
329 client_shade(self
, settings
->shade
);
330 if (settings
->decor
!= -1)
331 client_set_undecorated(self
, !settings
->decor
);
332 if (settings
->iconic
!= -1)
333 client_iconify(self
, settings
->iconic
, FALSE
);
334 if (settings
->skip_pager
!= -1) {
335 self
->skip_pager
= !!settings
->skip_pager
;
336 client_change_state(self
);
338 if (settings
->skip_taskbar
!= -1) {
339 self
->skip_taskbar
= !!settings
->skip_taskbar
;
340 client_change_state(self
);
343 /* 1 && -1 shouldn't be possible by the code in config.c */
344 if (settings
->max_vert
== 1 && settings
->max_horz
== 1)
345 client_maximize(self
, TRUE
, 0, TRUE
);
346 else if (settings
->max_vert
== 0 && settings
->max_horz
== 0)
347 client_maximize(self
, FALSE
, 0, TRUE
);
348 else if (settings
->max_vert
== 1 && settings
->max_horz
== 0) {
349 client_maximize(self
, TRUE
, 2, TRUE
);
350 client_maximize(self
, FALSE
, 1, TRUE
);
351 } else if (settings
->max_vert
== 0 && settings
->max_horz
== 1) {
352 client_maximize(self
, TRUE
, 1, TRUE
);
353 client_maximize(self
, FALSE
, 2, TRUE
);
356 if (settings
->fullscreen
!= -1)
357 client_fullscreen(self
, !!settings
->fullscreen
, TRUE
);
359 if (settings
->desktop
< screen_num_desktops
)
360 client_set_desktop(self
, settings
->desktop
, FALSE
);
362 if (settings
->layer
> -2 && settings
->layer
< 2)
363 client_set_layer(self
, settings
->layer
);
367 stacking_add(CLIENT_AS_WINDOW(self
));
368 client_restore_session_stacking(self
);
370 /* focus the new window? */
371 if (ob_state() != OB_STATE_STARTING
&&
372 (config_focus_new
|| client_search_focus_parent(self
)) ||
373 (settings
&& settings
->focus
== TRUE
) &&
374 /* note the check against Type_Normal/Dialog, not client_normal(self),
375 which would also include other types. in this case we want more
376 strict rules for focus */
377 (self
->type
== OB_CLIENT_TYPE_NORMAL
||
378 self
->type
== OB_CLIENT_TYPE_DIALOG
))
382 if (self
->desktop
!= screen_desktop
) {
383 /* activate the window */
386 gboolean group_foc
= FALSE
;
391 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
))
393 if (client_focused(it
->data
))
401 (!self
->transient_for
&& (!self
->group
||
402 !self
->group
->members
->next
))) ||
403 client_search_focus_tree_full(self
) ||
405 !client_normal(focus_client
))
407 /* activate the window */
414 if (ob_state() == OB_STATE_RUNNING
) {
415 gint x
= self
->area
.x
, ox
= x
;
416 gint y
= self
->area
.y
, oy
= y
;
418 place_client(self
, &x
, &y
, settings
);
420 /* make sure the window is visible. */
421 client_find_onscreen(self
, &x
, &y
,
422 self
->frame
->area
.width
,
423 self
->frame
->area
.height
,
424 /* non-normal clients has less rules, and
425 windows that are being restored from a
426 session do also. we can assume you want
427 it back where you saved it. Clients saying
428 they placed themselves are subjected to
429 harder rules, ones that are placed by
430 place.c or by the user are allowed partially
431 off-screen and on xinerama divides (ie,
432 it is up to the placement routines to avoid
433 the xinerama divides) */
434 ((self
->positioned
& PPosition
) &&
435 !(self
->positioned
& USPosition
)) &&
436 client_normal(self
) &&
438 if (x
!= ox
|| y
!= oy
)
439 client_move(self
, x
, y
);
442 keyboard_grab_for_client(self
, TRUE
);
443 mouse_grab_for_client(self
, TRUE
);
445 client_showhide(self
);
447 /* use client_focus instead of client_activate cuz client_activate does
448 stuff like switch desktops etc and I'm not interested in all that when
449 a window maps since its not based on an action from the user like
450 clicking a window to activate is. so keep the new window out of the way
453 /* if using focus_delay, stop the timer now so that focus doesn't go
455 event_halt_focus_delay();
458 /* since focus can change the stacking orders, if we focus the window
459 then the standard raise it gets is not enough, we need to queue one
460 for after the focus change takes place */
464 /* client_activate does this but we aret using it so we have to do it
466 if (screen_showing_desktop
)
467 screen_show_desktop(FALSE
);
469 /* add to client list/map */
470 client_list
= g_list_append(client_list
, self
);
471 g_hash_table_insert(window_map
, &self
->window
, self
);
473 /* this has to happen after we're in the client_list */
474 screen_update_areas();
476 /* update the list hints */
479 ob_debug("Managed window 0x%lx (%s)\n", window
, self
->class);
482 void client_unmanage_all()
484 while (client_list
!= NULL
)
485 client_unmanage(client_list
->data
);
488 void client_unmanage(ObClient
*self
)
493 ob_debug("Unmanaging window: %lx (%s)\n", self
->window
, self
->class);
495 g_assert(self
!= NULL
);
497 keyboard_grab_for_client(self
, FALSE
);
498 mouse_grab_for_client(self
, FALSE
);
500 /* potentially fix focusLast */
501 if (config_focus_last
)
502 grab_pointer(TRUE
, OB_CURSOR_NONE
);
504 /* remove the window from our save set */
505 XChangeSaveSet(ob_display
, self
->window
, SetModeDelete
);
507 /* we dont want events no more */
508 XSelectInput(ob_display
, self
->window
, NoEventMask
);
510 frame_hide(self
->frame
);
512 client_list
= g_list_remove(client_list
, self
);
513 stacking_remove(self
);
514 g_hash_table_remove(window_map
, &self
->window
);
516 /* update the focus lists */
517 focus_order_remove(self
);
519 /* once the client is out of the list, update the struts to remove it's
521 screen_update_areas();
523 for (it
= client_destructors
; it
; it
= g_slist_next(it
)) {
524 Destructor
*d
= it
->data
;
525 d
->func(self
, d
->data
);
528 if (focus_client
== self
) {
531 /* focus the last focused window on the desktop, and ignore enter
532 events from the unmap so it doesnt mess with the focus */
533 while (XCheckTypedEvent(ob_display
, EnterNotify
, &e
));
534 /* remove these flags so we don't end up getting focused in the
536 self
->can_focus
= FALSE
;
537 self
->focus_notify
= FALSE
;
539 client_unfocus(self
);
542 /* tell our parent(s) that we're gone */
543 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
544 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
))
545 if (it
->data
!= self
)
546 ((ObClient
*)it
->data
)->transients
=
547 g_slist_remove(((ObClient
*)it
->data
)->transients
, self
);
548 } else if (self
->transient_for
) { /* transient of window */
549 self
->transient_for
->transients
=
550 g_slist_remove(self
->transient_for
->transients
, self
);
553 /* tell our transients that we're gone */
554 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
555 if (((ObClient
*)it
->data
)->transient_for
!= OB_TRAN_GROUP
) {
556 ((ObClient
*)it
->data
)->transient_for
= NULL
;
557 client_calc_layer(it
->data
);
561 /* remove from its group */
563 group_remove(self
->group
, self
);
567 /* give the client its border back */
568 client_toggle_border(self
, TRUE
);
570 /* reparent the window out of the frame, and free the frame */
571 frame_release_client(self
->frame
, self
);
574 if (ob_state() != OB_STATE_EXITING
) {
575 /* these values should not be persisted across a window
577 PROP_ERASE(self
->window
, net_wm_desktop
);
578 PROP_ERASE(self
->window
, net_wm_state
);
579 PROP_ERASE(self
->window
, wm_state
);
581 /* if we're left in an unmapped state, the client wont be mapped. this
582 is bad, since we will no longer be managing the window on restart */
583 XMapWindow(ob_display
, self
->window
);
587 ob_debug("Unmanaged window 0x%lx\n", self
->window
);
589 /* free all data allocated in the client struct */
590 g_slist_free(self
->transients
);
591 for (j
= 0; j
< self
->nicons
; ++j
)
592 g_free(self
->icons
[j
].data
);
593 if (self
->nicons
> 0)
596 g_free(self
->icon_title
);
600 g_free(self
->sm_client_id
);
603 /* update the list hints */
606 if (config_focus_last
)
607 grab_pointer(FALSE
, OB_CURSOR_NONE
);
610 static void client_urgent_notify(ObClient
*self
)
613 frame_flash_start(self
->frame
);
615 frame_flash_stop(self
->frame
);
618 static void client_restore_session_state(ObClient
*self
)
622 if (!(it
= session_state_find(self
)))
625 self
->session
= it
->data
;
627 RECT_SET_POINT(self
->area
, self
->session
->x
, self
->session
->y
);
628 self
->positioned
= PPosition
;
629 if (self
->session
->w
> 0)
630 self
->area
.width
= self
->session
->w
;
631 if (self
->session
->h
> 0)
632 self
->area
.height
= self
->session
->h
;
633 XResizeWindow(ob_display
, self
->window
,
634 self
->area
.width
, self
->area
.height
);
636 self
->desktop
= (self
->session
->desktop
== DESKTOP_ALL
?
637 self
->session
->desktop
:
638 MIN(screen_num_desktops
- 1, self
->session
->desktop
));
639 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
641 self
->shaded
= self
->session
->shaded
;
642 self
->iconic
= self
->session
->iconic
;
643 self
->skip_pager
= self
->session
->skip_pager
;
644 self
->skip_taskbar
= self
->session
->skip_taskbar
;
645 self
->fullscreen
= self
->session
->fullscreen
;
646 self
->above
= self
->session
->above
;
647 self
->below
= self
->session
->below
;
648 self
->max_horz
= self
->session
->max_horz
;
649 self
->max_vert
= self
->session
->max_vert
;
652 static void client_restore_session_stacking(ObClient
*self
)
656 if (!self
->session
) return;
658 it
= g_list_find(session_saved_state
, self
->session
);
659 for (it
= g_list_previous(it
); it
; it
= g_list_previous(it
)) {
662 for (cit
= client_list
; cit
; cit
= g_list_next(cit
))
663 if (session_state_cmp(it
->data
, cit
->data
))
666 client_calc_layer(self
);
667 stacking_below(CLIENT_AS_WINDOW(self
),
668 CLIENT_AS_WINDOW(cit
->data
));
674 void client_move_onscreen(ObClient
*self
, gboolean rude
)
676 gint x
= self
->area
.x
;
677 gint y
= self
->area
.y
;
678 if (client_find_onscreen(self
, &x
, &y
,
679 self
->frame
->area
.width
,
680 self
->frame
->area
.height
, rude
)) {
681 client_move(self
, x
, y
);
685 gboolean
client_find_onscreen(ObClient
*self
, gint
*x
, gint
*y
, gint w
, gint h
,
689 gint ox
= *x
, oy
= *y
;
691 frame_client_gravity(self
->frame
, x
, y
); /* get where the frame
694 /* XXX watch for xinerama dead areas */
695 /* This makes sure windows aren't entirely outside of the screen so you
696 * can't see them at all */
697 if (client_normal(self
)) {
698 a
= screen_area(self
->desktop
);
699 if (!self
->strut
.right
&& *x
>= a
->x
+ a
->width
- 1)
700 *x
= a
->x
+ a
->width
- self
->frame
->area
.width
;
701 if (!self
->strut
.bottom
&& *y
>= a
->y
+ a
->height
- 1)
702 *y
= a
->y
+ a
->height
- self
->frame
->area
.height
;
703 if (!self
->strut
.left
&& *x
+ self
->frame
->area
.width
- 1 < a
->x
)
705 if (!self
->strut
.top
&& *y
+ self
->frame
->area
.height
- 1 < a
->y
)
709 /* This here doesn't let windows even a pixel outside the screen,
710 * when called from client_manage, programs placing themselves are
711 * forced completely onscreen, while things like
712 * xterm -geometry resolution-width/2 will work fine. Trying to
713 * place it completely offscreen will be handled in the above code.
714 * Sorry for this confused comment, i am tired. */
716 /* avoid the xinerama monitor divide while we're at it,
717 * remember to fix the placement stuff to avoid it also and
718 * then remove this XXX */
719 a
= screen_physical_area_monitor(client_monitor(self
));
720 /* dont let windows map/move into the strut unless they
721 are bigger than the available area */
723 if (!self
->strut
.left
&& *x
< a
->x
) *x
= a
->x
;
724 if (!self
->strut
.right
&& *x
+ w
> a
->x
+ a
->width
)
725 *x
= a
->x
+ a
->width
- w
;
727 if (h
<= a
->height
) {
728 if (!self
->strut
.top
&& *y
< a
->y
) *y
= a
->y
;
729 if (!self
->strut
.bottom
&& *y
+ h
> a
->y
+ a
->height
)
730 *y
= a
->y
+ a
->height
- h
;
734 frame_frame_gravity(self
->frame
, x
, y
); /* get where the client
737 return ox
!= *x
|| oy
!= *y
;
740 static void client_toggle_border(ObClient
*self
, gboolean show
)
742 /* adjust our idea of where the client is, based on its border. When the
743 border is removed, the client should now be considered to be in a
745 when re-adding the border to the client, the same operation needs to be
747 gint oldx
= self
->area
.x
, oldy
= self
->area
.y
;
748 gint x
= oldx
, y
= oldy
;
749 switch(self
->gravity
) {
751 case NorthWestGravity
:
753 case SouthWestGravity
:
755 case NorthEastGravity
:
757 case SouthEastGravity
:
758 if (show
) x
-= self
->border_width
* 2;
759 else x
+= self
->border_width
* 2;
766 if (show
) x
-= self
->border_width
;
767 else x
+= self
->border_width
;
770 switch(self
->gravity
) {
772 case NorthWestGravity
:
774 case NorthEastGravity
:
776 case SouthWestGravity
:
778 case SouthEastGravity
:
779 if (show
) y
-= self
->border_width
* 2;
780 else y
+= self
->border_width
* 2;
787 if (show
) y
-= self
->border_width
;
788 else y
+= self
->border_width
;
795 XSetWindowBorderWidth(ob_display
, self
->window
, self
->border_width
);
797 /* move the client so it is back it the right spot _with_ its
799 if (x
!= oldx
|| y
!= oldy
)
800 XMoveWindow(ob_display
, self
->window
, x
, y
);
802 XSetWindowBorderWidth(ob_display
, self
->window
, 0);
806 static void client_get_all(ObClient
*self
)
808 client_get_area(self
);
809 client_update_transient_for(self
);
810 client_update_wmhints(self
);
811 client_get_startup_id(self
);
812 client_get_desktop(self
);
813 client_get_shaped(self
);
815 client_get_mwm_hints(self
);
816 client_get_type(self
);/* this can change the mwmhints for special cases */
818 /* The transient hint is used to pick a type, but the type can also affect
819 transiency (dialogs are always made transients). This is Havoc's idea,
820 but it is needed to make some apps work right (eg tsclient). */
821 client_update_transient_for(self
);
823 client_get_state(self
);
826 /* a couple type-based defaults for new windows */
828 /* this makes sure that these windows appear on all desktops */
829 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
830 self
->desktop
= DESKTOP_ALL
;
833 client_update_protocols(self
);
835 client_get_gravity(self
); /* get the attribute gravity */
836 client_update_normal_hints(self
); /* this may override the attribute
839 /* got the type, the mwmhints, the protocols, and the normal hints
840 (min/max sizes), so we're ready to set up the decorations/functions */
841 client_setup_decor_and_functions(self
);
843 client_update_title(self
);
844 client_update_class(self
);
845 client_update_sm_client_id(self
);
846 client_update_strut(self
);
847 client_update_icons(self
);
850 static void client_get_startup_id(ObClient
*self
)
852 if (!(PROP_GETS(self
->window
, net_startup_id
, utf8
, &self
->startup_id
)))
854 PROP_GETS(self
->group
->leader
,
855 net_startup_id
, utf8
, &self
->startup_id
);
858 static void client_get_area(ObClient
*self
)
860 XWindowAttributes wattrib
;
863 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
864 g_assert(ret
!= BadWindow
);
866 RECT_SET(self
->area
, wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
867 self
->border_width
= wattrib
.border_width
;
870 static void client_get_desktop(ObClient
*self
)
872 guint32 d
= screen_num_desktops
; /* an always-invalid value */
874 if (PROP_GET32(self
->window
, net_wm_desktop
, cardinal
, &d
)) {
875 if (d
>= screen_num_desktops
&& d
!= DESKTOP_ALL
)
876 self
->desktop
= screen_num_desktops
- 1;
880 gboolean trdesk
= FALSE
;
882 if (self
->transient_for
) {
883 if (self
->transient_for
!= OB_TRAN_GROUP
) {
884 self
->desktop
= self
->transient_for
->desktop
;
889 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
))
890 if (it
->data
!= self
&&
891 !((ObClient
*)it
->data
)->transient_for
) {
892 self
->desktop
= ((ObClient
*)it
->data
)->desktop
;
899 /* try get from the startup-notification protocol */
900 if (sn_get_desktop(self
->startup_id
, &self
->desktop
)) {
901 if (self
->desktop
>= screen_num_desktops
&&
902 self
->desktop
!= DESKTOP_ALL
)
903 self
->desktop
= screen_num_desktops
- 1;
905 /* defaults to the current desktop */
906 self
->desktop
= screen_desktop
;
909 if (self
->desktop
!= d
) {
910 /* set the desktop hint, to make sure that it always exists */
911 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
915 static void client_get_state(ObClient
*self
)
920 if (PROP_GETA32(self
->window
, net_wm_state
, atom
, &state
, &num
)) {
922 for (i
= 0; i
< num
; ++i
) {
923 if (state
[i
] == prop_atoms
.net_wm_state_modal
)
925 else if (state
[i
] == prop_atoms
.net_wm_state_shaded
)
927 else if (state
[i
] == prop_atoms
.net_wm_state_hidden
)
929 else if (state
[i
] == prop_atoms
.net_wm_state_skip_taskbar
)
930 self
->skip_taskbar
= TRUE
;
931 else if (state
[i
] == prop_atoms
.net_wm_state_skip_pager
)
932 self
->skip_pager
= TRUE
;
933 else if (state
[i
] == prop_atoms
.net_wm_state_fullscreen
)
934 self
->fullscreen
= TRUE
;
935 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_vert
)
936 self
->max_vert
= TRUE
;
937 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_horz
)
938 self
->max_horz
= TRUE
;
939 else if (state
[i
] == prop_atoms
.net_wm_state_above
)
941 else if (state
[i
] == prop_atoms
.net_wm_state_below
)
943 else if (state
[i
] == prop_atoms
.ob_wm_state_undecorated
)
944 self
->undecorated
= TRUE
;
950 if (!(self
->above
|| self
->below
)) {
952 /* apply stuff from the group */
956 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
957 ObClient
*c
= it
->data
;
958 if (c
!= self
&& !client_search_transient(self
, c
) &&
959 client_normal(self
) && client_normal(c
))
962 (c
->above
? 1 : (c
->below
? -1 : 0)));
976 g_assert_not_reached();
983 static void client_get_shaped(ObClient
*self
)
985 self
->shaped
= FALSE
;
987 if (extensions_shape
) {
992 XShapeSelectInput(ob_display
, self
->window
, ShapeNotifyMask
);
994 XShapeQueryExtents(ob_display
, self
->window
, &s
, &foo
,
995 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
,
997 self
->shaped
= (s
!= 0);
1002 void client_update_transient_for(ObClient
*self
)
1005 ObClient
*target
= NULL
;
1007 if (XGetTransientForHint(ob_display
, self
->window
, &t
)) {
1008 self
->transient
= TRUE
;
1009 if (t
!= self
->window
) { /* cant be transient to itself! */
1010 target
= g_hash_table_lookup(window_map
, &t
);
1011 /* if this happens then we need to check for it*/
1012 g_assert(target
!= self
);
1013 if (target
&& !WINDOW_IS_CLIENT(target
)) {
1014 /* this can happen when a dialog is a child of
1015 a dockapp, for example */
1019 if (!target
&& self
->group
) {
1020 /* not transient to a client, see if it is transient for a
1022 if (t
== self
->group
->leader
||
1024 t
== RootWindow(ob_display
, ob_screen
))
1026 /* window is a transient for its group! */
1027 target
= OB_TRAN_GROUP
;
1031 } else if (self
->type
== OB_CLIENT_TYPE_DIALOG
&& self
->group
) {
1032 self
->transient
= TRUE
;
1033 target
= OB_TRAN_GROUP
;
1035 self
->transient
= FALSE
;
1037 /* if anything has changed... */
1038 if (target
!= self
->transient_for
) {
1039 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
1042 /* remove from old parents */
1043 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
1044 ObClient
*c
= it
->data
;
1045 if (c
!= self
&& !c
->transient_for
)
1046 c
->transients
= g_slist_remove(c
->transients
, self
);
1048 } else if (self
->transient_for
!= NULL
) { /* transient of window */
1049 /* remove from old parent */
1050 self
->transient_for
->transients
=
1051 g_slist_remove(self
->transient_for
->transients
, self
);
1053 self
->transient_for
= target
;
1054 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
1057 /* add to new parents */
1058 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
1059 ObClient
*c
= it
->data
;
1060 if (c
!= self
&& !c
->transient_for
)
1061 c
->transients
= g_slist_append(c
->transients
, self
);
1064 /* remove all transients which are in the group, that causes
1065 circlular pointer hell of doom */
1066 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
1068 for (sit
= self
->transients
; sit
; sit
= next
) {
1069 next
= g_slist_next(sit
);
1070 if (sit
->data
== it
->data
)
1072 g_slist_delete_link(self
->transients
, sit
);
1075 } else if (self
->transient_for
!= NULL
) { /* transient of window */
1076 /* add to new parent */
1077 self
->transient_for
->transients
=
1078 g_slist_append(self
->transient_for
->transients
, self
);
1083 static void client_get_mwm_hints(ObClient
*self
)
1088 self
->mwmhints
.flags
= 0; /* default to none */
1090 if (PROP_GETA32(self
->window
, motif_wm_hints
, motif_wm_hints
,
1092 if (num
>= OB_MWM_ELEMENTS
) {
1093 self
->mwmhints
.flags
= hints
[0];
1094 self
->mwmhints
.functions
= hints
[1];
1095 self
->mwmhints
.decorations
= hints
[2];
1101 void client_get_type(ObClient
*self
)
1108 if (PROP_GETA32(self
->window
, net_wm_window_type
, atom
, &val
, &num
)) {
1109 /* use the first value that we know about in the array */
1110 for (i
= 0; i
< num
; ++i
) {
1111 if (val
[i
] == prop_atoms
.net_wm_window_type_desktop
)
1112 self
->type
= OB_CLIENT_TYPE_DESKTOP
;
1113 else if (val
[i
] == prop_atoms
.net_wm_window_type_dock
)
1114 self
->type
= OB_CLIENT_TYPE_DOCK
;
1115 else if (val
[i
] == prop_atoms
.net_wm_window_type_toolbar
)
1116 self
->type
= OB_CLIENT_TYPE_TOOLBAR
;
1117 else if (val
[i
] == prop_atoms
.net_wm_window_type_menu
)
1118 self
->type
= OB_CLIENT_TYPE_MENU
;
1119 else if (val
[i
] == prop_atoms
.net_wm_window_type_utility
)
1120 self
->type
= OB_CLIENT_TYPE_UTILITY
;
1121 else if (val
[i
] == prop_atoms
.net_wm_window_type_splash
)
1122 self
->type
= OB_CLIENT_TYPE_SPLASH
;
1123 else if (val
[i
] == prop_atoms
.net_wm_window_type_dialog
)
1124 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1125 else if (val
[i
] == prop_atoms
.net_wm_window_type_normal
)
1126 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1127 else if (val
[i
] == prop_atoms
.kde_net_wm_window_type_override
) {
1128 /* prevent this window from getting any decor or
1130 self
->mwmhints
.flags
&= (OB_MWM_FLAG_FUNCTIONS
|
1131 OB_MWM_FLAG_DECORATIONS
);
1132 self
->mwmhints
.decorations
= 0;
1133 self
->mwmhints
.functions
= 0;
1135 if (self
->type
!= (ObClientType
) -1)
1136 break; /* grab the first legit type */
1141 if (self
->type
== (ObClientType
) -1) {
1142 /*the window type hint was not set, which means we either classify
1143 ourself as a normal window or a dialog, depending on if we are a
1145 if (self
->transient
)
1146 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1148 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1152 void client_update_protocols(ObClient
*self
)
1155 guint num_return
, i
;
1157 self
->focus_notify
= FALSE
;
1158 self
->delete_window
= FALSE
;
1160 if (PROP_GETA32(self
->window
, wm_protocols
, atom
, &proto
, &num_return
)) {
1161 for (i
= 0; i
< num_return
; ++i
) {
1162 if (proto
[i
] == prop_atoms
.wm_delete_window
) {
1163 /* this means we can request the window to close */
1164 self
->delete_window
= TRUE
;
1165 } else if (proto
[i
] == prop_atoms
.wm_take_focus
)
1166 /* if this protocol is requested, then the window will be
1167 notified whenever we want it to receive focus */
1168 self
->focus_notify
= TRUE
;
1174 static void client_get_gravity(ObClient
*self
)
1176 XWindowAttributes wattrib
;
1179 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
1180 g_assert(ret
!= BadWindow
);
1181 self
->gravity
= wattrib
.win_gravity
;
1184 void client_update_normal_hints(ObClient
*self
)
1188 gint oldgravity
= self
->gravity
;
1191 self
->min_ratio
= 0.0f
;
1192 self
->max_ratio
= 0.0f
;
1193 SIZE_SET(self
->size_inc
, 1, 1);
1194 SIZE_SET(self
->base_size
, 0, 0);
1195 SIZE_SET(self
->min_size
, 0, 0);
1196 SIZE_SET(self
->max_size
, G_MAXINT
, G_MAXINT
);
1198 /* get the hints from the window */
1199 if (XGetWMNormalHints(ob_display
, self
->window
, &size
, &ret
)) {
1200 /* normal windows can't request placement! har har
1201 if (!client_normal(self))
1203 self
->positioned
= (size
.flags
& (PPosition
|USPosition
));
1205 if (size
.flags
& PWinGravity
) {
1206 self
->gravity
= size
.win_gravity
;
1208 /* if the client has a frame, i.e. has already been mapped and
1209 is changing its gravity */
1210 if (self
->frame
&& self
->gravity
!= oldgravity
) {
1211 /* move our idea of the client's position based on its new
1213 self
->area
.x
= self
->frame
->area
.x
;
1214 self
->area
.y
= self
->frame
->area
.y
;
1215 frame_frame_gravity(self
->frame
, &self
->area
.x
, &self
->area
.y
);
1219 if (size
.flags
& PAspect
) {
1220 if (size
.min_aspect
.y
)
1222 (gfloat
) size
.min_aspect
.x
/ size
.min_aspect
.y
;
1223 if (size
.max_aspect
.y
)
1225 (gfloat
) size
.max_aspect
.x
/ size
.max_aspect
.y
;
1228 if (size
.flags
& PMinSize
)
1229 SIZE_SET(self
->min_size
, size
.min_width
, size
.min_height
);
1231 if (size
.flags
& PMaxSize
)
1232 SIZE_SET(self
->max_size
, size
.max_width
, size
.max_height
);
1234 if (size
.flags
& PBaseSize
)
1235 SIZE_SET(self
->base_size
, size
.base_width
, size
.base_height
);
1237 if (size
.flags
& PResizeInc
&& size
.width_inc
&& size
.height_inc
)
1238 SIZE_SET(self
->size_inc
, size
.width_inc
, size
.height_inc
);
1242 void client_setup_decor_and_functions(ObClient
*self
)
1244 /* start with everything (cept fullscreen) */
1246 (OB_FRAME_DECOR_TITLEBAR
|
1247 OB_FRAME_DECOR_HANDLE
|
1248 OB_FRAME_DECOR_GRIPS
|
1249 OB_FRAME_DECOR_BORDER
|
1250 OB_FRAME_DECOR_ICON
|
1251 OB_FRAME_DECOR_ALLDESKTOPS
|
1252 OB_FRAME_DECOR_ICONIFY
|
1253 OB_FRAME_DECOR_MAXIMIZE
|
1254 OB_FRAME_DECOR_SHADE
|
1255 OB_FRAME_DECOR_CLOSE
);
1257 (OB_CLIENT_FUNC_RESIZE
|
1258 OB_CLIENT_FUNC_MOVE
|
1259 OB_CLIENT_FUNC_ICONIFY
|
1260 OB_CLIENT_FUNC_MAXIMIZE
|
1261 OB_CLIENT_FUNC_SHADE
|
1262 OB_CLIENT_FUNC_CLOSE
);
1264 if (!(self
->min_size
.width
< self
->max_size
.width
||
1265 self
->min_size
.height
< self
->max_size
.height
))
1266 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1268 switch (self
->type
) {
1269 case OB_CLIENT_TYPE_NORMAL
:
1270 /* normal windows retain all of the possible decorations and
1271 functionality, and are the only windows that you can fullscreen */
1272 self
->functions
|= OB_CLIENT_FUNC_FULLSCREEN
;
1275 case OB_CLIENT_TYPE_DIALOG
:
1276 case OB_CLIENT_TYPE_UTILITY
:
1277 /* these windows cannot be maximized */
1278 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1281 case OB_CLIENT_TYPE_MENU
:
1282 case OB_CLIENT_TYPE_TOOLBAR
:
1283 /* these windows get less functionality */
1284 self
->functions
&= ~(OB_CLIENT_FUNC_ICONIFY
| OB_CLIENT_FUNC_RESIZE
);
1287 case OB_CLIENT_TYPE_DESKTOP
:
1288 case OB_CLIENT_TYPE_DOCK
:
1289 case OB_CLIENT_TYPE_SPLASH
:
1290 /* none of these windows are manipulated by the window manager */
1291 self
->decorations
= 0;
1292 self
->functions
= 0;
1296 /* Mwm Hints are applied subtractively to what has already been chosen for
1297 decor and functionality */
1298 if (self
->mwmhints
.flags
& OB_MWM_FLAG_DECORATIONS
) {
1299 if (! (self
->mwmhints
.decorations
& OB_MWM_DECOR_ALL
)) {
1300 if (! ((self
->mwmhints
.decorations
& OB_MWM_DECOR_HANDLE
) ||
1301 (self
->mwmhints
.decorations
& OB_MWM_DECOR_TITLE
)))
1302 /* if the mwm hints request no handle or title, then all
1303 decorations are disabled */
1304 self
->decorations
= config_theme_keepborder
? OB_FRAME_DECOR_BORDER
: 0;
1308 if (self
->mwmhints
.flags
& OB_MWM_FLAG_FUNCTIONS
) {
1309 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_ALL
)) {
1310 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_RESIZE
))
1311 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1312 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_MOVE
))
1313 self
->functions
&= ~OB_CLIENT_FUNC_MOVE
;
1314 /* dont let mwm hints kill any buttons
1315 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1316 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1317 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1318 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1320 /* dont let mwm hints kill the close button
1321 if (! (self->mwmhints.functions & MwmFunc_Close))
1322 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1326 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
))
1327 self
->decorations
&= ~OB_FRAME_DECOR_SHADE
;
1328 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
))
1329 self
->decorations
&= ~OB_FRAME_DECOR_ICONIFY
;
1330 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
))
1331 self
->decorations
&= ~OB_FRAME_DECOR_GRIPS
;
1333 /* can't maximize without moving/resizing */
1334 if (!((self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) &&
1335 (self
->functions
& OB_CLIENT_FUNC_MOVE
) &&
1336 (self
->functions
& OB_CLIENT_FUNC_RESIZE
))) {
1337 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1338 self
->decorations
&= ~OB_FRAME_DECOR_MAXIMIZE
;
1341 /* kill the handle on fully maxed windows */
1342 if (self
->max_vert
&& self
->max_horz
)
1343 self
->decorations
&= ~OB_FRAME_DECOR_HANDLE
;
1345 /* finally, the user can have requested no decorations, which overrides
1346 everything (but doesnt give it a border if it doesnt have one) */
1347 if (self
->undecorated
) {
1348 if (config_theme_keepborder
)
1349 self
->decorations
&= OB_FRAME_DECOR_BORDER
;
1351 self
->decorations
= 0;
1354 /* if we don't have a titlebar, then we cannot shade! */
1355 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1356 self
->functions
&= ~OB_CLIENT_FUNC_SHADE
;
1358 /* now we need to check against rules for the client's current state */
1359 if (self
->fullscreen
) {
1360 self
->functions
&= (OB_CLIENT_FUNC_CLOSE
|
1361 OB_CLIENT_FUNC_FULLSCREEN
|
1362 OB_CLIENT_FUNC_ICONIFY
);
1363 self
->decorations
= 0;
1366 client_change_allowed_actions(self
);
1369 /* adjust the client's decorations, etc. */
1370 client_reconfigure(self
);
1374 static void client_change_allowed_actions(ObClient
*self
)
1379 /* desktop windows are kept on all desktops */
1380 if (self
->type
!= OB_CLIENT_TYPE_DESKTOP
)
1381 actions
[num
++] = prop_atoms
.net_wm_action_change_desktop
;
1383 if (self
->functions
& OB_CLIENT_FUNC_SHADE
)
1384 actions
[num
++] = prop_atoms
.net_wm_action_shade
;
1385 if (self
->functions
& OB_CLIENT_FUNC_CLOSE
)
1386 actions
[num
++] = prop_atoms
.net_wm_action_close
;
1387 if (self
->functions
& OB_CLIENT_FUNC_MOVE
)
1388 actions
[num
++] = prop_atoms
.net_wm_action_move
;
1389 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
)
1390 actions
[num
++] = prop_atoms
.net_wm_action_minimize
;
1391 if (self
->functions
& OB_CLIENT_FUNC_RESIZE
)
1392 actions
[num
++] = prop_atoms
.net_wm_action_resize
;
1393 if (self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
)
1394 actions
[num
++] = prop_atoms
.net_wm_action_fullscreen
;
1395 if (self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) {
1396 actions
[num
++] = prop_atoms
.net_wm_action_maximize_horz
;
1397 actions
[num
++] = prop_atoms
.net_wm_action_maximize_vert
;
1400 PROP_SETA32(self
->window
, net_wm_allowed_actions
, atom
, actions
, num
);
1402 /* make sure the window isn't breaking any rules now */
1404 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
) && self
->shaded
) {
1405 if (self
->frame
) client_shade(self
, FALSE
);
1406 else self
->shaded
= FALSE
;
1408 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
) && self
->iconic
) {
1409 if (self
->frame
) client_iconify(self
, FALSE
, TRUE
);
1410 else self
->iconic
= FALSE
;
1412 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) && self
->fullscreen
) {
1413 if (self
->frame
) client_fullscreen(self
, FALSE
, TRUE
);
1414 else self
->fullscreen
= FALSE
;
1416 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) && (self
->max_horz
||
1418 if (self
->frame
) client_maximize(self
, FALSE
, 0, TRUE
);
1419 else self
->max_vert
= self
->max_horz
= FALSE
;
1423 void client_reconfigure(ObClient
*self
)
1425 /* by making this pass FALSE for user, we avoid the emacs event storm where
1426 every configurenotify causes an update in its normal hints, i think this
1427 is generally what we want anyways... */
1428 client_configure(self
, OB_CORNER_TOPLEFT
, self
->area
.x
, self
->area
.y
,
1429 self
->area
.width
, self
->area
.height
, FALSE
, TRUE
);
1432 void client_update_wmhints(ObClient
*self
)
1435 gboolean ur
= FALSE
;
1438 /* assume a window takes input if it doesnt specify */
1439 self
->can_focus
= TRUE
;
1441 if ((hints
= XGetWMHints(ob_display
, self
->window
)) != NULL
) {
1442 if (hints
->flags
& InputHint
)
1443 self
->can_focus
= hints
->input
;
1445 /* only do this when first managing the window *AND* when we aren't
1447 if (ob_state() != OB_STATE_STARTING
&& self
->frame
== NULL
)
1448 if (hints
->flags
& StateHint
)
1449 self
->iconic
= hints
->initial_state
== IconicState
;
1451 if (hints
->flags
& XUrgencyHint
)
1454 if (!(hints
->flags
& WindowGroupHint
))
1455 hints
->window_group
= None
;
1457 /* did the group state change? */
1458 if (hints
->window_group
!=
1459 (self
->group
? self
->group
->leader
: None
)) {
1460 /* remove from the old group if there was one */
1461 if (self
->group
!= NULL
) {
1462 /* remove transients of the group */
1463 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
))
1464 self
->transients
= g_slist_remove(self
->transients
,
1467 /* remove myself from parents in the group */
1468 if (self
->transient_for
== OB_TRAN_GROUP
) {
1469 for (it
= self
->group
->members
; it
;
1470 it
= g_slist_next(it
))
1472 ObClient
*c
= it
->data
;
1474 if (c
!= self
&& !c
->transient_for
)
1475 c
->transients
= g_slist_remove(c
->transients
,
1480 group_remove(self
->group
, self
);
1483 if (hints
->window_group
!= None
) {
1484 self
->group
= group_add(hints
->window_group
, self
);
1486 /* i can only have transients from the group if i am not
1488 if (!self
->transient_for
) {
1489 /* add other transients of the group that are already
1491 for (it
= self
->group
->members
; it
;
1492 it
= g_slist_next(it
))
1494 ObClient
*c
= it
->data
;
1495 if (c
!= self
&& c
->transient_for
== OB_TRAN_GROUP
)
1497 g_slist_append(self
->transients
, c
);
1502 /* because the self->transient flag wont change from this call,
1503 we don't need to update the window's type and such, only its
1504 transient_for, and the transients lists of other windows in
1505 the group may be affected */
1506 client_update_transient_for(self
);
1509 /* the WM_HINTS can contain an icon */
1510 client_update_icons(self
);
1515 if (ur
!= self
->urgent
) {
1517 /* fire the urgent callback if we're mapped, otherwise, wait until
1518 after we're mapped */
1520 client_urgent_notify(self
);
1524 void client_update_title(ObClient
*self
)
1530 gboolean read_title
;
1533 old_title
= self
->title
;
1536 if (!PROP_GETS(self
->window
, net_wm_name
, utf8
, &data
)) {
1537 /* try old x stuff */
1538 if (!PROP_GETS(self
->window
, wm_name
, locale
, &data
)
1539 && !PROP_GETS(self
->window
, wm_name
, utf8
, &data
)) {
1540 // http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
1541 if (self
->transient
) {
1542 data
= g_strdup("");
1545 data
= g_strdup("Unnamed Window");
1549 /* did the title change? then reset the title_count */
1550 if (old_title
&& 0 != strncmp(old_title
, data
, strlen(data
)))
1551 self
->title_count
= 1;
1553 /* look for duplicates and append a number */
1555 for (it
= client_list
; it
; it
= g_list_next(it
))
1556 if (it
->data
!= self
) {
1557 ObClient
*c
= it
->data
;
1558 if (0 == strncmp(c
->title
, data
, strlen(data
)))
1559 nums
|= 1 << c
->title_count
;
1561 /* find first free number */
1562 for (i
= 1; i
<= 32; ++i
)
1563 if (!(nums
& (1 << i
))) {
1564 if (self
->title_count
== 1 || i
== 1)
1565 self
->title_count
= i
;
1568 /* dont display the number for the first window */
1569 if (self
->title_count
> 1) {
1571 ndata
= g_strdup_printf("%s - [%u]", data
, self
->title_count
);
1576 PROP_SETS(self
->window
, net_wm_visible_name
, data
);
1581 frame_adjust_title(self
->frame
);
1585 /* update the icon title */
1587 g_free(self
->icon_title
);
1591 if (!PROP_GETS(self
->window
, net_wm_icon_name
, utf8
, &data
))
1592 /* try old x stuff */
1593 if (!PROP_GETS(self
->window
, wm_icon_name
, locale
, &data
)) {
1594 data
= g_strdup(self
->title
);
1598 /* append the title count, dont display the number for the first window */
1599 if (read_title
&& self
->title_count
> 1) {
1600 gchar
*vdata
, *ndata
;
1601 ndata
= g_strdup_printf(" - [%u]", self
->title_count
);
1602 vdata
= g_strconcat(data
, ndata
, NULL
);
1608 PROP_SETS(self
->window
, net_wm_visible_icon_name
, data
);
1610 self
->icon_title
= data
;
1613 void client_update_class(ObClient
*self
)
1618 if (self
->name
) g_free(self
->name
);
1619 if (self
->class) g_free(self
->class);
1620 if (self
->role
) g_free(self
->role
);
1622 self
->name
= self
->class = self
->role
= NULL
;
1624 if (PROP_GETSS(self
->window
, wm_class
, locale
, &data
)) {
1626 self
->name
= g_strdup(data
[0]);
1628 self
->class = g_strdup(data
[1]);
1633 if (PROP_GETS(self
->window
, wm_window_role
, locale
, &s
))
1636 if (self
->name
== NULL
) self
->name
= g_strdup("");
1637 if (self
->class == NULL
) self
->class = g_strdup("");
1638 if (self
->role
== NULL
) self
->role
= g_strdup("");
1641 void client_update_strut(ObClient
*self
)
1645 gboolean got
= FALSE
;
1648 if (PROP_GETA32(self
->window
, net_wm_strut_partial
, cardinal
,
1652 STRUT_PARTIAL_SET(strut
,
1653 data
[0], data
[2], data
[1], data
[3],
1654 data
[4], data
[5], data
[8], data
[9],
1655 data
[6], data
[7], data
[10], data
[11]);
1661 PROP_GETA32(self
->window
, net_wm_strut
, cardinal
, &data
, &num
)) {
1667 /* use the screen's width/height */
1668 a
= screen_physical_area();
1670 STRUT_PARTIAL_SET(strut
,
1671 data
[0], data
[2], data
[1], data
[3],
1672 a
->y
, a
->y
+ a
->height
- 1,
1673 a
->x
, a
->x
+ a
->width
- 1,
1674 a
->y
, a
->y
+ a
->height
- 1,
1675 a
->x
, a
->x
+ a
->width
- 1);
1681 STRUT_PARTIAL_SET(strut
, 0, 0, 0, 0,
1682 0, 0, 0, 0, 0, 0, 0, 0);
1684 if (!STRUT_EQUAL(strut
, self
->strut
)) {
1685 self
->strut
= strut
;
1687 /* updating here is pointless while we're being mapped cuz we're not in
1688 the client list yet */
1690 screen_update_areas();
1694 void client_update_icons(ObClient
*self
)
1700 for (i
= 0; i
< self
->nicons
; ++i
)
1701 g_free(self
->icons
[i
].data
);
1702 if (self
->nicons
> 0)
1703 g_free(self
->icons
);
1706 if (PROP_GETA32(self
->window
, net_wm_icon
, cardinal
, &data
, &num
)) {
1707 /* figure out how many valid icons are in here */
1709 while (num
- i
> 2) {
1713 if (i
> num
|| w
*h
== 0) break;
1717 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1719 /* store the icons */
1721 for (j
= 0; j
< self
->nicons
; ++j
) {
1724 w
= self
->icons
[j
].width
= data
[i
++];
1725 h
= self
->icons
[j
].height
= data
[i
++];
1727 if (w
*h
== 0) continue;
1729 self
->icons
[j
].data
= g_new(RrPixel32
, w
* h
);
1730 for (x
= 0, y
= 0, t
= 0; t
< w
* h
; ++t
, ++x
, ++i
) {
1735 self
->icons
[j
].data
[t
] =
1736 (((data
[i
] >> 24) & 0xff) << RrDefaultAlphaOffset
) +
1737 (((data
[i
] >> 16) & 0xff) << RrDefaultRedOffset
) +
1738 (((data
[i
] >> 8) & 0xff) << RrDefaultGreenOffset
) +
1739 (((data
[i
] >> 0) & 0xff) << RrDefaultBlueOffset
);
1745 } else if (PROP_GETA32(self
->window
, kwm_win_icon
,
1746 kwm_win_icon
, &data
, &num
)) {
1749 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1750 xerror_set_ignore(TRUE
);
1751 if (!RrPixmapToRGBA(ob_rr_inst
,
1753 &self
->icons
[self
->nicons
-1].width
,
1754 &self
->icons
[self
->nicons
-1].height
,
1755 &self
->icons
[self
->nicons
-1].data
)) {
1756 g_free(&self
->icons
[self
->nicons
-1]);
1759 xerror_set_ignore(FALSE
);
1765 if ((hints
= XGetWMHints(ob_display
, self
->window
))) {
1766 if (hints
->flags
& IconPixmapHint
) {
1768 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1769 xerror_set_ignore(TRUE
);
1770 if (!RrPixmapToRGBA(ob_rr_inst
,
1772 (hints
->flags
& IconMaskHint
?
1773 hints
->icon_mask
: None
),
1774 &self
->icons
[self
->nicons
-1].width
,
1775 &self
->icons
[self
->nicons
-1].height
,
1776 &self
->icons
[self
->nicons
-1].data
)){
1777 g_free(&self
->icons
[self
->nicons
-1]);
1780 xerror_set_ignore(FALSE
);
1787 frame_adjust_icon(self
->frame
);
1790 static void client_change_state(ObClient
*self
)
1793 gulong netstate
[11];
1796 state
[0] = self
->wmstate
;
1798 PROP_SETA32(self
->window
, wm_state
, wm_state
, state
, 2);
1802 netstate
[num
++] = prop_atoms
.net_wm_state_modal
;
1804 netstate
[num
++] = prop_atoms
.net_wm_state_shaded
;
1806 netstate
[num
++] = prop_atoms
.net_wm_state_hidden
;
1807 if (self
->skip_taskbar
)
1808 netstate
[num
++] = prop_atoms
.net_wm_state_skip_taskbar
;
1809 if (self
->skip_pager
)
1810 netstate
[num
++] = prop_atoms
.net_wm_state_skip_pager
;
1811 if (self
->fullscreen
)
1812 netstate
[num
++] = prop_atoms
.net_wm_state_fullscreen
;
1814 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_vert
;
1816 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_horz
;
1818 netstate
[num
++] = prop_atoms
.net_wm_state_above
;
1820 netstate
[num
++] = prop_atoms
.net_wm_state_below
;
1821 if (self
->undecorated
)
1822 netstate
[num
++] = prop_atoms
.ob_wm_state_undecorated
;
1823 PROP_SETA32(self
->window
, net_wm_state
, atom
, netstate
, num
);
1825 client_calc_layer(self
);
1828 frame_adjust_state(self
->frame
);
1831 ObClient
*client_search_focus_tree(ObClient
*self
)
1836 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
1837 if (client_focused(it
->data
)) return it
->data
;
1838 if ((ret
= client_search_focus_tree(it
->data
))) return ret
;
1843 ObClient
*client_search_focus_tree_full(ObClient
*self
)
1845 if (self
->transient_for
) {
1846 if (self
->transient_for
!= OB_TRAN_GROUP
) {
1847 return client_search_focus_tree_full(self
->transient_for
);
1850 gboolean recursed
= FALSE
;
1852 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
))
1853 if (!((ObClient
*)it
->data
)->transient_for
) {
1855 if ((c
= client_search_focus_tree_full(it
->data
)))
1864 /* this function checks the whole tree, the client_search_focus_tree~
1865 does not, so we need to check this window */
1866 if (client_focused(self
))
1868 return client_search_focus_tree(self
);
1871 static ObStackingLayer
calc_layer(ObClient
*self
)
1875 if (self
->fullscreen
&&
1876 (client_focused(self
) || client_search_focus_tree(self
)))
1877 l
= OB_STACKING_LAYER_FULLSCREEN
;
1878 else if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
1879 l
= OB_STACKING_LAYER_DESKTOP
;
1880 else if (self
->type
== OB_CLIENT_TYPE_DOCK
) {
1881 if (self
->below
) l
= OB_STACKING_LAYER_NORMAL
;
1882 else l
= OB_STACKING_LAYER_ABOVE
;
1884 else if (self
->above
) l
= OB_STACKING_LAYER_ABOVE
;
1885 else if (self
->below
) l
= OB_STACKING_LAYER_BELOW
;
1886 else l
= OB_STACKING_LAYER_NORMAL
;
1891 static void client_calc_layer_recursive(ObClient
*self
, ObClient
*orig
,
1892 ObStackingLayer l
, gboolean raised
)
1894 ObStackingLayer old
, own
;
1898 own
= calc_layer(self
);
1899 self
->layer
= l
> own
? l
: own
;
1901 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
1902 client_calc_layer_recursive(it
->data
, orig
,
1903 l
, raised
? raised
: l
!= old
);
1905 if (!raised
&& l
!= old
)
1906 if (orig
->frame
) { /* only restack if the original window is managed */
1907 stacking_remove(CLIENT_AS_WINDOW(self
));
1908 stacking_add(CLIENT_AS_WINDOW(self
));
1912 void client_calc_layer(ObClient
*self
)
1919 /* transients take on the layer of their parents */
1920 self
= client_search_top_transient(self
);
1922 l
= calc_layer(self
);
1924 client_calc_layer_recursive(self
, orig
, l
, FALSE
);
1927 gboolean
client_should_show(ObClient
*self
)
1931 if (client_normal(self
) && screen_showing_desktop
)
1934 if (self->transient_for) {
1935 if (self->transient_for != OB_TRAN_GROUP)
1936 return client_should_show(self->transient_for);
1940 for (it = self->group->members; it; it = g_slist_next(it)) {
1941 ObClient *c = it->data;
1942 if (c != self && !c->transient_for) {
1943 if (client_should_show(c))
1950 if (self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
1956 static void client_showhide(ObClient
*self
)
1959 if (client_should_show(self
))
1960 frame_show(self
->frame
);
1962 frame_hide(self
->frame
);
1965 gboolean
client_normal(ObClient
*self
) {
1966 return ! (self
->type
== OB_CLIENT_TYPE_DESKTOP
||
1967 self
->type
== OB_CLIENT_TYPE_DOCK
||
1968 self
->type
== OB_CLIENT_TYPE_SPLASH
);
1971 static void client_apply_startup_state(ObClient
*self
)
1973 /* these are in a carefully crafted order.. */
1976 self
->iconic
= FALSE
;
1977 client_iconify(self
, TRUE
, FALSE
);
1979 if (self
->fullscreen
) {
1980 self
->fullscreen
= FALSE
;
1981 client_fullscreen(self
, TRUE
, FALSE
);
1983 if (self
->undecorated
) {
1984 self
->undecorated
= FALSE
;
1985 client_set_undecorated(self
, TRUE
);
1988 self
->shaded
= FALSE
;
1989 client_shade(self
, TRUE
);
1992 client_urgent_notify(self
);
1994 if (self
->max_vert
&& self
->max_horz
) {
1995 self
->max_vert
= self
->max_horz
= FALSE
;
1996 client_maximize(self
, TRUE
, 0, FALSE
);
1997 } else if (self
->max_vert
) {
1998 self
->max_vert
= FALSE
;
1999 client_maximize(self
, TRUE
, 2, FALSE
);
2000 } else if (self
->max_horz
) {
2001 self
->max_horz
= FALSE
;
2002 client_maximize(self
, TRUE
, 1, FALSE
);
2005 /* nothing to do for the other states:
2014 void client_configure_full(ObClient
*self
, ObCorner anchor
,
2015 gint x
, gint y
, gint w
, gint h
,
2016 gboolean user
, gboolean final
,
2017 gboolean force_reply
)
2020 gboolean send_resize_client
;
2021 gboolean moved
= FALSE
, resized
= FALSE
;
2022 guint fdecor
= self
->frame
->decorations
;
2023 gboolean fhorz
= self
->frame
->max_horz
;
2025 /* make the frame recalculate its dimentions n shit without changing
2026 anything visible for real, this way the constraints below can work with
2027 the updated frame dimensions. */
2028 frame_adjust_area(self
->frame
, TRUE
, TRUE
, TRUE
);
2030 /* gets the frame's position */
2031 frame_client_gravity(self
->frame
, &x
, &y
);
2033 /* these positions are frame positions, not client positions */
2035 /* set the size and position if fullscreen */
2036 if (self
->fullscreen
) {
2040 i
= client_monitor(self
);
2041 a
= screen_physical_area_monitor(i
);
2048 user
= FALSE
; /* ignore that increment etc shit when in fullscreen */
2052 a
= screen_area_monitor(self
->desktop
, client_monitor(self
));
2054 /* set the size and position if maximized */
2055 if (self
->max_horz
) {
2057 w
= a
->width
- self
->frame
->size
.left
- self
->frame
->size
.right
;
2059 if (self
->max_vert
) {
2061 h
= a
->height
- self
->frame
->size
.top
- self
->frame
->size
.bottom
;
2065 /* gets the client's position */
2066 frame_frame_gravity(self
->frame
, &x
, &y
);
2068 /* these override the above states! if you cant move you can't move! */
2070 if (!(self
->functions
& OB_CLIENT_FUNC_MOVE
)) {
2074 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
)) {
2075 w
= self
->area
.width
;
2076 h
= self
->area
.height
;
2080 if (!(w
== self
->area
.width
&& h
== self
->area
.height
)) {
2081 gint basew
, baseh
, minw
, minh
;
2083 /* base size is substituted with min size if not specified */
2084 if (self
->base_size
.width
|| self
->base_size
.height
) {
2085 basew
= self
->base_size
.width
;
2086 baseh
= self
->base_size
.height
;
2088 basew
= self
->min_size
.width
;
2089 baseh
= self
->min_size
.height
;
2091 /* min size is substituted with base size if not specified */
2092 if (self
->min_size
.width
|| self
->min_size
.height
) {
2093 minw
= self
->min_size
.width
;
2094 minh
= self
->min_size
.height
;
2096 minw
= self
->base_size
.width
;
2097 minh
= self
->base_size
.height
;
2100 /* if this is a user-requested resize, then check against min/max
2103 /* smaller than min size or bigger than max size? */
2104 if (w
> self
->max_size
.width
) w
= self
->max_size
.width
;
2105 if (w
< minw
) w
= minw
;
2106 if (h
> self
->max_size
.height
) h
= self
->max_size
.height
;
2107 if (h
< minh
) h
= minh
;
2112 /* keep to the increments */
2113 w
/= self
->size_inc
.width
;
2114 h
/= self
->size_inc
.height
;
2116 /* you cannot resize to nothing */
2117 if (basew
+ w
< 1) w
= 1 - basew
;
2118 if (baseh
+ h
< 1) h
= 1 - baseh
;
2120 /* store the logical size */
2121 SIZE_SET(self
->logical_size
,
2122 self
->size_inc
.width
> 1 ? w
: w
+ basew
,
2123 self
->size_inc
.height
> 1 ? h
: h
+ baseh
);
2125 w
*= self
->size_inc
.width
;
2126 h
*= self
->size_inc
.height
;
2131 /* adjust the height to match the width for the aspect ratios.
2132 for this, min size is not substituted for base size ever. */
2133 w
-= self
->base_size
.width
;
2134 h
-= self
->base_size
.height
;
2136 if (!self
->fullscreen
) {
2137 if (self
->min_ratio
)
2138 if (h
* self
->min_ratio
> w
) {
2139 h
= (gint
)(w
/ self
->min_ratio
);
2141 /* you cannot resize to nothing */
2144 w
= (gint
)(h
* self
->min_ratio
);
2147 if (self
->max_ratio
)
2148 if (h
* self
->max_ratio
< w
) {
2149 h
= (gint
)(w
/ self
->max_ratio
);
2151 /* you cannot resize to nothing */
2154 w
= (gint
)(h
* self
->min_ratio
);
2159 w
+= self
->base_size
.width
;
2160 h
+= self
->base_size
.height
;
2167 case OB_CORNER_TOPLEFT
:
2169 case OB_CORNER_TOPRIGHT
:
2170 x
-= w
- self
->area
.width
;
2172 case OB_CORNER_BOTTOMLEFT
:
2173 y
-= h
- self
->area
.height
;
2175 case OB_CORNER_BOTTOMRIGHT
:
2176 x
-= w
- self
->area
.width
;
2177 y
-= h
- self
->area
.height
;
2181 moved
= x
!= self
->area
.x
|| y
!= self
->area
.y
;
2182 resized
= w
!= self
->area
.width
|| h
!= self
->area
.height
;
2184 oldw
= self
->area
.width
;
2185 oldh
= self
->area
.height
;
2186 RECT_SET(self
->area
, x
, y
, w
, h
);
2188 /* for app-requested resizes, always resize if 'resized' is true.
2189 for user-requested ones, only resize if final is true, or when
2190 resizing in redraw mode */
2191 send_resize_client
= ((!user
&& resized
) ||
2193 (resized
&& config_resize_redraw
))));
2195 /* if the client is enlarging, then resize the client before the frame */
2196 if (send_resize_client
&& user
&& (w
> oldw
|| h
> oldh
))
2197 XResizeWindow(ob_display
, self
->window
, MAX(w
, oldw
), MAX(h
, oldh
));
2199 /* move/resize the frame to match the request */
2201 if (self
->decorations
!= fdecor
|| self
->max_horz
!= fhorz
)
2202 moved
= resized
= TRUE
;
2204 if (moved
|| resized
)
2205 frame_adjust_area(self
->frame
, moved
, resized
, FALSE
);
2207 if (!resized
&& (force_reply
|| ((!user
&& moved
) || (user
&& final
))))
2210 event
.type
= ConfigureNotify
;
2211 event
.xconfigure
.display
= ob_display
;
2212 event
.xconfigure
.event
= self
->window
;
2213 event
.xconfigure
.window
= self
->window
;
2215 /* root window real coords */
2216 event
.xconfigure
.x
= self
->frame
->area
.x
+ self
->frame
->size
.left
-
2218 event
.xconfigure
.y
= self
->frame
->area
.y
+ self
->frame
->size
.top
-
2220 event
.xconfigure
.width
= w
;
2221 event
.xconfigure
.height
= h
;
2222 event
.xconfigure
.border_width
= 0;
2223 event
.xconfigure
.above
= self
->frame
->plate
;
2224 event
.xconfigure
.override_redirect
= FALSE
;
2225 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
,
2226 FALSE
, StructureNotifyMask
, &event
);
2230 /* if the client is shrinking, then resize the frame before the client */
2231 if (send_resize_client
&& (!user
|| (w
<= oldw
|| h
<= oldh
)))
2232 XResizeWindow(ob_display
, self
->window
, w
, h
);
2237 void client_fullscreen(ObClient
*self
, gboolean fs
, gboolean savearea
)
2241 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) || /* can't */
2242 self
->fullscreen
== fs
) return; /* already done */
2244 self
->fullscreen
= fs
;
2245 client_change_state(self
); /* change the state hints on the client,
2246 and adjust out layer/stacking */
2250 self
->pre_fullscreen_area
= self
->area
;
2252 /* these are not actually used cuz client_configure will set them
2253 as appropriate when the window is fullscreened */
2258 if (self
->pre_fullscreen_area
.width
> 0 &&
2259 self
->pre_fullscreen_area
.height
> 0)
2261 x
= self
->pre_fullscreen_area
.x
;
2262 y
= self
->pre_fullscreen_area
.y
;
2263 w
= self
->pre_fullscreen_area
.width
;
2264 h
= self
->pre_fullscreen_area
.height
;
2265 RECT_SET(self
->pre_fullscreen_area
, 0, 0, 0, 0);
2267 /* pick some fallbacks... */
2268 a
= screen_area_monitor(self
->desktop
, 0);
2269 x
= a
->x
+ a
->width
/ 4;
2270 y
= a
->y
+ a
->height
/ 4;
2276 client_setup_decor_and_functions(self
);
2278 client_move_resize(self
, x
, y
, w
, h
);
2280 /* try focus us when we go into fullscreen mode */
2284 static void client_iconify_recursive(ObClient
*self
,
2285 gboolean iconic
, gboolean curdesk
)
2288 gboolean changed
= FALSE
;
2291 if (self
->iconic
!= iconic
) {
2292 ob_debug("%sconifying window: 0x%lx\n", (iconic
? "I" : "Uni"),
2295 self
->iconic
= iconic
;
2298 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
) {
2301 old
= self
->wmstate
;
2302 self
->wmstate
= IconicState
;
2303 if (old
!= self
->wmstate
)
2304 PROP_MSG(self
->window
, kde_wm_change_state
,
2305 self
->wmstate
, 1, 0, 0);
2307 /* update the focus lists.. iconic windows go to the bottom of
2308 the list, put the new iconic window at the 'top of the
2310 focus_order_to_top(self
);
2318 client_set_desktop(self
, screen_desktop
, FALSE
);
2320 old
= self
->wmstate
;
2321 self
->wmstate
= self
->shaded
? IconicState
: NormalState
;
2322 if (old
!= self
->wmstate
)
2323 PROP_MSG(self
->window
, kde_wm_change_state
,
2324 self
->wmstate
, 1, 0, 0);
2326 /* this puts it after the current focused window */
2327 focus_order_remove(self
);
2328 focus_order_add_new(self
);
2335 client_change_state(self
);
2336 client_showhide(self
);
2337 screen_update_areas();
2340 /* iconify all transients */
2341 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
2342 if (it
->data
!= self
) client_iconify_recursive(it
->data
,
2346 void client_iconify(ObClient
*self
, gboolean iconic
, gboolean curdesk
)
2348 /* move up the transient chain as far as possible first */
2349 self
= client_search_top_transient(self
);
2351 client_iconify_recursive(client_search_top_transient(self
),
2355 void client_maximize(ObClient
*self
, gboolean max
, gint dir
, gboolean savearea
)
2359 g_assert(dir
== 0 || dir
== 1 || dir
== 2);
2360 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
)) return; /* can't */
2362 /* check if already done */
2364 if (dir
== 0 && self
->max_horz
&& self
->max_vert
) return;
2365 if (dir
== 1 && self
->max_horz
) return;
2366 if (dir
== 2 && self
->max_vert
) return;
2368 if (dir
== 0 && !self
->max_horz
&& !self
->max_vert
) return;
2369 if (dir
== 1 && !self
->max_horz
) return;
2370 if (dir
== 2 && !self
->max_vert
) return;
2373 /* we just tell it to configure in the same place and client_configure
2374 worries about filling the screen with the window */
2377 w
= self
->area
.width
;
2378 h
= self
->area
.height
;
2382 if ((dir
== 0 || dir
== 1) && !self
->max_horz
) { /* horz */
2383 RECT_SET(self
->pre_max_area
,
2384 self
->area
.x
, self
->pre_max_area
.y
,
2385 self
->area
.width
, self
->pre_max_area
.height
);
2387 if ((dir
== 0 || dir
== 2) && !self
->max_vert
) { /* vert */
2388 RECT_SET(self
->pre_max_area
,
2389 self
->pre_max_area
.x
, self
->area
.y
,
2390 self
->pre_max_area
.width
, self
->area
.height
);
2396 a
= screen_area_monitor(self
->desktop
, 0);
2397 if ((dir
== 0 || dir
== 1) && self
->max_horz
) { /* horz */
2398 if (self
->pre_max_area
.width
> 0) {
2399 x
= self
->pre_max_area
.x
;
2400 w
= self
->pre_max_area
.width
;
2402 RECT_SET(self
->pre_max_area
, 0, self
->pre_max_area
.y
,
2403 0, self
->pre_max_area
.height
);
2405 /* pick some fallbacks... */
2406 x
= a
->x
+ a
->width
/ 4;
2410 if ((dir
== 0 || dir
== 2) && self
->max_vert
) { /* vert */
2411 if (self
->pre_max_area
.height
> 0) {
2412 y
= self
->pre_max_area
.y
;
2413 h
= self
->pre_max_area
.height
;
2415 RECT_SET(self
->pre_max_area
, self
->pre_max_area
.x
, 0,
2416 self
->pre_max_area
.width
, 0);
2418 /* pick some fallbacks... */
2419 y
= a
->y
+ a
->height
/ 4;
2425 if (dir
== 0 || dir
== 1) /* horz */
2426 self
->max_horz
= max
;
2427 if (dir
== 0 || dir
== 2) /* vert */
2428 self
->max_vert
= max
;
2430 client_change_state(self
); /* change the state hints on the client */
2432 client_setup_decor_and_functions(self
);
2434 client_move_resize(self
, x
, y
, w
, h
);
2437 void client_shade(ObClient
*self
, gboolean shade
)
2439 if ((!(self
->functions
& OB_CLIENT_FUNC_SHADE
) &&
2440 shade
) || /* can't shade */
2441 self
->shaded
== shade
) return; /* already done */
2443 /* when we're iconic, don't change the wmstate */
2444 if (!self
->iconic
) {
2447 old
= self
->wmstate
;
2448 self
->wmstate
= shade
? IconicState
: NormalState
;
2449 if (old
!= self
->wmstate
)
2450 PROP_MSG(self
->window
, kde_wm_change_state
,
2451 self
->wmstate
, 1, 0, 0);
2454 self
->shaded
= shade
;
2455 client_change_state(self
);
2456 /* resize the frame to just the titlebar */
2457 frame_adjust_area(self
->frame
, FALSE
, FALSE
, FALSE
);
2460 void client_close(ObClient
*self
)
2464 if (!(self
->functions
& OB_CLIENT_FUNC_CLOSE
)) return;
2466 /* in the case that the client provides no means to requesting that it
2467 close, we just kill it */
2468 if (!self
->delete_window
)
2472 XXX: itd be cool to do timeouts and shit here for killing the client's
2474 like... if the window is around after 5 seconds, then the close button
2475 turns a nice red, and if this function is called again, the client is
2479 ce
.xclient
.type
= ClientMessage
;
2480 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
2481 ce
.xclient
.display
= ob_display
;
2482 ce
.xclient
.window
= self
->window
;
2483 ce
.xclient
.format
= 32;
2484 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_delete_window
;
2485 ce
.xclient
.data
.l
[1] = event_lasttime
;
2486 ce
.xclient
.data
.l
[2] = 0l;
2487 ce
.xclient
.data
.l
[3] = 0l;
2488 ce
.xclient
.data
.l
[4] = 0l;
2489 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
2492 void client_kill(ObClient
*self
)
2494 XKillClient(ob_display
, self
->window
);
2497 void client_set_desktop_recursive(ObClient
*self
,
2498 guint target
, gboolean donthide
)
2503 if (target
!= self
->desktop
) {
2505 ob_debug("Setting desktop %u\n", target
+1);
2507 g_assert(target
< screen_num_desktops
|| target
== DESKTOP_ALL
);
2509 /* remove from the old desktop(s) */
2510 focus_order_remove(self
);
2512 old
= self
->desktop
;
2513 self
->desktop
= target
;
2514 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, target
);
2515 /* the frame can display the current desktop state */
2516 frame_adjust_state(self
->frame
);
2517 /* 'move' the window to the new desktop */
2519 client_showhide(self
);
2520 /* raise if it was not already on the desktop */
2521 if (old
!= DESKTOP_ALL
)
2523 screen_update_areas();
2525 /* add to the new desktop(s) */
2526 if (config_focus_new
)
2527 focus_order_to_top(self
);
2529 focus_order_to_bottom(self
);
2532 /* move all transients */
2533 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
2534 if (it
->data
!= self
) client_set_desktop_recursive(it
->data
,
2538 void client_set_desktop(ObClient
*self
, guint target
, gboolean donthide
)
2540 client_set_desktop_recursive(client_search_top_transient(self
),
2544 ObClient
*client_search_modal_child(ObClient
*self
)
2549 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
2550 ObClient
*c
= it
->data
;
2551 if ((ret
= client_search_modal_child(c
))) return ret
;
2552 if (c
->modal
) return c
;
2557 gboolean
client_validate(ObClient
*self
)
2561 XSync(ob_display
, FALSE
); /* get all events on the server */
2563 if (XCheckTypedWindowEvent(ob_display
, self
->window
, DestroyNotify
, &e
) ||
2564 XCheckTypedWindowEvent(ob_display
, self
->window
, UnmapNotify
, &e
)) {
2565 XPutBackEvent(ob_display
, &e
);
2572 void client_set_wm_state(ObClient
*self
, glong state
)
2574 if (state
== self
->wmstate
) return; /* no change */
2578 client_iconify(self
, TRUE
, TRUE
);
2581 client_iconify(self
, FALSE
, TRUE
);
2586 void client_set_state(ObClient
*self
, Atom action
, glong data1
, glong data2
)
2588 gboolean shaded
= self
->shaded
;
2589 gboolean fullscreen
= self
->fullscreen
;
2590 gboolean undecorated
= self
->undecorated
;
2591 gboolean max_horz
= self
->max_horz
;
2592 gboolean max_vert
= self
->max_vert
;
2593 gboolean modal
= self
->modal
;
2594 gboolean iconic
= self
->iconic
;
2597 if (!(action
== prop_atoms
.net_wm_state_add
||
2598 action
== prop_atoms
.net_wm_state_remove
||
2599 action
== prop_atoms
.net_wm_state_toggle
))
2600 /* an invalid action was passed to the client message, ignore it */
2603 for (i
= 0; i
< 2; ++i
) {
2604 Atom state
= i
== 0 ? data1
: data2
;
2606 if (!state
) continue;
2608 /* if toggling, then pick whether we're adding or removing */
2609 if (action
== prop_atoms
.net_wm_state_toggle
) {
2610 if (state
== prop_atoms
.net_wm_state_modal
)
2611 action
= modal
? prop_atoms
.net_wm_state_remove
:
2612 prop_atoms
.net_wm_state_add
;
2613 else if (state
== prop_atoms
.net_wm_state_maximized_vert
)
2614 action
= self
->max_vert
? prop_atoms
.net_wm_state_remove
:
2615 prop_atoms
.net_wm_state_add
;
2616 else if (state
== prop_atoms
.net_wm_state_maximized_horz
)
2617 action
= self
->max_horz
? prop_atoms
.net_wm_state_remove
:
2618 prop_atoms
.net_wm_state_add
;
2619 else if (state
== prop_atoms
.net_wm_state_shaded
)
2620 action
= shaded
? prop_atoms
.net_wm_state_remove
:
2621 prop_atoms
.net_wm_state_add
;
2622 else if (state
== prop_atoms
.net_wm_state_skip_taskbar
)
2623 action
= self
->skip_taskbar
?
2624 prop_atoms
.net_wm_state_remove
:
2625 prop_atoms
.net_wm_state_add
;
2626 else if (state
== prop_atoms
.net_wm_state_skip_pager
)
2627 action
= self
->skip_pager
?
2628 prop_atoms
.net_wm_state_remove
:
2629 prop_atoms
.net_wm_state_add
;
2630 else if (state
== prop_atoms
.net_wm_state_hidden
)
2631 action
= self
->iconic
?
2632 prop_atoms
.net_wm_state_remove
:
2633 prop_atoms
.net_wm_state_add
;
2634 else if (state
== prop_atoms
.net_wm_state_fullscreen
)
2635 action
= fullscreen
?
2636 prop_atoms
.net_wm_state_remove
:
2637 prop_atoms
.net_wm_state_add
;
2638 else if (state
== prop_atoms
.net_wm_state_above
)
2639 action
= self
->above
? prop_atoms
.net_wm_state_remove
:
2640 prop_atoms
.net_wm_state_add
;
2641 else if (state
== prop_atoms
.net_wm_state_below
)
2642 action
= self
->below
? prop_atoms
.net_wm_state_remove
:
2643 prop_atoms
.net_wm_state_add
;
2644 else if (state
== prop_atoms
.ob_wm_state_undecorated
)
2645 action
= undecorated
? prop_atoms
.net_wm_state_remove
:
2646 prop_atoms
.net_wm_state_add
;
2649 if (action
== prop_atoms
.net_wm_state_add
) {
2650 if (state
== prop_atoms
.net_wm_state_modal
) {
2652 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
2654 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
2656 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
2658 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
2659 self
->skip_taskbar
= TRUE
;
2660 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
2661 self
->skip_pager
= TRUE
;
2662 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
2664 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
2666 } else if (state
== prop_atoms
.net_wm_state_above
) {
2668 self
->below
= FALSE
;
2669 } else if (state
== prop_atoms
.net_wm_state_below
) {
2670 self
->above
= FALSE
;
2672 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
2676 } else { /* action == prop_atoms.net_wm_state_remove */
2677 if (state
== prop_atoms
.net_wm_state_modal
) {
2679 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
2681 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
2683 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
2685 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
2686 self
->skip_taskbar
= FALSE
;
2687 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
2688 self
->skip_pager
= FALSE
;
2689 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
2691 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
2693 } else if (state
== prop_atoms
.net_wm_state_above
) {
2694 self
->above
= FALSE
;
2695 } else if (state
== prop_atoms
.net_wm_state_below
) {
2696 self
->below
= FALSE
;
2697 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
2698 undecorated
= FALSE
;
2702 if (max_horz
!= self
->max_horz
|| max_vert
!= self
->max_vert
) {
2703 if (max_horz
!= self
->max_horz
&& max_vert
!= self
->max_vert
) {
2705 if (max_horz
== max_vert
) { /* both going the same way */
2706 client_maximize(self
, max_horz
, 0, TRUE
);
2708 client_maximize(self
, max_horz
, 1, TRUE
);
2709 client_maximize(self
, max_vert
, 2, TRUE
);
2713 if (max_horz
!= self
->max_horz
)
2714 client_maximize(self
, max_horz
, 1, TRUE
);
2716 client_maximize(self
, max_vert
, 2, TRUE
);
2719 /* change fullscreen state before shading, as it will affect if the window
2721 if (fullscreen
!= self
->fullscreen
)
2722 client_fullscreen(self
, fullscreen
, TRUE
);
2723 if (shaded
!= self
->shaded
)
2724 client_shade(self
, shaded
);
2725 if (undecorated
!= self
->undecorated
)
2726 client_set_undecorated(self
, undecorated
);
2727 if (modal
!= self
->modal
) {
2728 self
->modal
= modal
;
2729 /* when a window changes modality, then its stacking order with its
2730 transients needs to change */
2733 if (iconic
!= self
->iconic
)
2734 client_iconify(self
, iconic
, FALSE
);
2736 client_calc_layer(self
);
2737 client_change_state(self
); /* change the hint to reflect these changes */
2740 ObClient
*client_focus_target(ObClient
*self
)
2744 /* if we have a modal child, then focus it, not us */
2745 child
= client_search_modal_child(client_search_top_transient(self
));
2746 if (child
) return child
;
2750 gboolean
client_can_focus(ObClient
*self
)
2754 /* choose the correct target */
2755 self
= client_focus_target(self
);
2757 if (!self
->frame
->visible
)
2760 if (!(self
->can_focus
|| self
->focus_notify
))
2763 /* do a check to see if the window has already been unmapped or destroyed
2764 do this intelligently while watching out for unmaps we've generated
2765 (ignore_unmaps > 0) */
2766 if (XCheckTypedWindowEvent(ob_display
, self
->window
,
2767 DestroyNotify
, &ev
)) {
2768 XPutBackEvent(ob_display
, &ev
);
2771 while (XCheckTypedWindowEvent(ob_display
, self
->window
,
2772 UnmapNotify
, &ev
)) {
2773 if (self
->ignore_unmaps
) {
2774 self
->ignore_unmaps
--;
2776 XPutBackEvent(ob_display
, &ev
);
2784 gboolean
client_focus(ObClient
*self
)
2786 /* choose the correct target */
2787 self
= client_focus_target(self
);
2789 if (!client_can_focus(self
)) {
2790 if (!self
->frame
->visible
) {
2791 /* update the focus lists */
2792 focus_order_to_top(self
);
2797 if (self
->can_focus
) {
2798 /* RevertToPointerRoot causes much more headache than RevertToNone, so
2799 I choose to use it always, hopefully to find errors quicker, if any
2800 are left. (I hate X. I hate focus events.)
2802 Update: Changing this to RevertToNone fixed a bug with mozilla (bug
2803 #799. So now it is RevertToNone again.
2805 XSetInputFocus(ob_display
, self
->window
, RevertToNone
,
2809 if (self
->focus_notify
) {
2811 ce
.xclient
.type
= ClientMessage
;
2812 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
2813 ce
.xclient
.display
= ob_display
;
2814 ce
.xclient
.window
= self
->window
;
2815 ce
.xclient
.format
= 32;
2816 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_take_focus
;
2817 ce
.xclient
.data
.l
[1] = event_lasttime
;
2818 ce
.xclient
.data
.l
[2] = 0l;
2819 ce
.xclient
.data
.l
[3] = 0l;
2820 ce
.xclient
.data
.l
[4] = 0l;
2821 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
2825 ob_debug("%sively focusing %lx at %d\n",
2826 (self
->can_focus
? "act" : "pass"),
2827 self
->window
, (gint
) event_lasttime
);
2830 /* Cause the FocusIn to come back to us. Important for desktop switches,
2831 since otherwise we'll have no FocusIn on the queue and send it off to
2832 the focus_backup. */
2833 XSync(ob_display
, FALSE
);
2837 /* Used when the current client is closed, focus_last will then prevent
2838 * focus from going to the mouse pointer */
2839 void client_unfocus(ObClient
*self
)
2841 if (focus_client
== self
) {
2843 ob_debug("client_unfocus for %lx\n", self
->window
);
2845 focus_fallback(OB_FOCUS_FALLBACK_CLOSED
);
2849 void client_activate(ObClient
*self
, gboolean here
)
2851 /* This check is for the client_list_menu trying to activate
2852 * a closed client. */
2853 if (!g_list_find(client_list
, self
)) return;
2854 if (client_normal(self
) && screen_showing_desktop
)
2855 screen_show_desktop(FALSE
);
2857 client_iconify(self
, FALSE
, here
);
2858 if (self
->desktop
!= DESKTOP_ALL
&&
2859 self
->desktop
!= screen_desktop
) {
2861 client_set_desktop(self
, screen_desktop
, FALSE
);
2863 screen_set_desktop(self
->desktop
);
2864 } else if (!self
->frame
->visible
)
2865 /* if its not visible for other reasons, then don't mess
2869 client_shade(self
, FALSE
);
2873 /* we do this an action here. this is rather important. this is because
2874 we want the results from the focus change to take place BEFORE we go
2875 about raising the window. when a fullscreen window loses focus, we need
2876 this or else the raise wont be able to raise above the to-lose-focus
2877 fullscreen window. */
2881 void client_raise(ObClient
*self
)
2883 action_run_string("Raise", self
);
2886 void client_lower(ObClient
*self
)
2888 action_run_string("Lower", self
);
2891 gboolean
client_focused(ObClient
*self
)
2893 return self
== focus_client
;
2896 static ObClientIcon
* client_icon_recursive(ObClient
*self
, gint w
, gint h
)
2899 /* si is the smallest image >= req */
2900 /* li is the largest image < req */
2901 gulong size
, smallest
= 0xffffffff, largest
= 0, si
= 0, li
= 0;
2903 if (!self
->nicons
) {
2904 ObClientIcon
*parent
= NULL
;
2906 if (self
->transient_for
) {
2907 if (self
->transient_for
!= OB_TRAN_GROUP
)
2908 parent
= client_icon_recursive(self
->transient_for
, w
, h
);
2911 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
2912 ObClient
*c
= it
->data
;
2913 if (c
!= self
&& !c
->transient_for
) {
2914 if ((parent
= client_icon_recursive(c
, w
, h
)))
2924 for (i
= 0; i
< self
->nicons
; ++i
) {
2925 size
= self
->icons
[i
].width
* self
->icons
[i
].height
;
2926 if (size
< smallest
&& size
>= (unsigned)(w
* h
)) {
2930 if (size
> largest
&& size
<= (unsigned)(w
* h
)) {
2935 if (largest
== 0) /* didnt find one smaller than the requested size */
2936 return &self
->icons
[si
];
2937 return &self
->icons
[li
];
2940 const ObClientIcon
* client_icon(ObClient
*self
, gint w
, gint h
)
2943 static ObClientIcon deficon
;
2945 if (!(ret
= client_icon_recursive(self
, w
, h
))) {
2946 deficon
.width
= deficon
.height
= 48;
2947 deficon
.data
= ob_rr_theme
->def_win_icon
;
2953 /* this be mostly ripped from fvwm */
2954 ObClient
*client_find_directional(ObClient
*c
, ObDirection dir
)
2956 gint my_cx
, my_cy
, his_cx
, his_cy
;
2959 gint score
, best_score
;
2960 ObClient
*best_client
, *cur
;
2966 /* first, find the centre coords of the currently focused window */
2967 my_cx
= c
->frame
->area
.x
+ c
->frame
->area
.width
/ 2;
2968 my_cy
= c
->frame
->area
.y
+ c
->frame
->area
.height
/ 2;
2973 for(it
= g_list_first(client_list
); it
; it
= g_list_next(it
)) {
2976 /* the currently selected window isn't interesting */
2979 if (!client_normal(cur
))
2981 /* using c->desktop instead of screen_desktop doesn't work if the
2982 * current window was omnipresent, hope this doesn't have any other
2984 if(screen_desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
2988 if(client_focus_target(cur
) == cur
&&
2989 !(cur
->can_focus
|| cur
->focus_notify
))
2992 /* find the centre coords of this window, from the
2993 * currently focused window's point of view */
2994 his_cx
= (cur
->frame
->area
.x
- my_cx
)
2995 + cur
->frame
->area
.width
/ 2;
2996 his_cy
= (cur
->frame
->area
.y
- my_cy
)
2997 + cur
->frame
->area
.height
/ 2;
2999 if(dir
== OB_DIRECTION_NORTHEAST
|| dir
== OB_DIRECTION_SOUTHEAST
||
3000 dir
== OB_DIRECTION_SOUTHWEST
|| dir
== OB_DIRECTION_NORTHWEST
) {
3002 /* Rotate the diagonals 45 degrees counterclockwise.
3003 * To do this, multiply the matrix /+h +h\ with the
3004 * vector (x y). \-h +h/
3005 * h = sqrt(0.5). We can set h := 1 since absolute
3006 * distance doesn't matter here. */
3007 tx
= his_cx
+ his_cy
;
3008 his_cy
= -his_cx
+ his_cy
;
3013 case OB_DIRECTION_NORTH
:
3014 case OB_DIRECTION_SOUTH
:
3015 case OB_DIRECTION_NORTHEAST
:
3016 case OB_DIRECTION_SOUTHWEST
:
3017 offset
= (his_cx
< 0) ? -his_cx
: his_cx
;
3018 distance
= ((dir
== OB_DIRECTION_NORTH
||
3019 dir
== OB_DIRECTION_NORTHEAST
) ?
3022 case OB_DIRECTION_EAST
:
3023 case OB_DIRECTION_WEST
:
3024 case OB_DIRECTION_SOUTHEAST
:
3025 case OB_DIRECTION_NORTHWEST
:
3026 offset
= (his_cy
< 0) ? -his_cy
: his_cy
;
3027 distance
= ((dir
== OB_DIRECTION_WEST
||
3028 dir
== OB_DIRECTION_NORTHWEST
) ?
3033 /* the target must be in the requested direction */
3037 /* Calculate score for this window. The smaller the better. */
3038 score
= distance
+ offset
;
3040 /* windows more than 45 degrees off the direction are
3041 * heavily penalized and will only be chosen if nothing
3042 * else within a million pixels */
3043 if(offset
> distance
)
3046 if(best_score
== -1 || score
< best_score
)
3054 void client_set_layer(ObClient
*self
, gint layer
)
3058 self
->above
= FALSE
;
3059 } else if (layer
== 0) {
3060 self
->below
= self
->above
= FALSE
;
3062 self
->below
= FALSE
;
3065 client_calc_layer(self
);
3066 client_change_state(self
); /* reflect this in the state hints */
3069 void client_set_undecorated(ObClient
*self
, gboolean undecorated
)
3071 if (self
->undecorated
!= undecorated
) {
3072 self
->undecorated
= undecorated
;
3073 client_setup_decor_and_functions(self
);
3074 /* Make sure the client knows it might have moved. Maybe there is a
3075 * better way of doing this so only one client_configure is sent, but
3076 * since 125 of these are sent per second when moving the window (with
3077 * user = FALSE) i doubt it matters much.
3079 client_configure(self
, OB_CORNER_TOPLEFT
, self
->area
.x
, self
->area
.y
,
3080 self
->area
.width
, self
->area
.height
, TRUE
, TRUE
);
3081 client_change_state(self
); /* reflect this in the state hints */
3085 /* Determines which physical monitor a client is on by calculating the
3086 area of the part of the client on each monitor. The number of the
3087 monitor containing the greatest area of the client is returned.*/
3088 guint
client_monitor(ObClient
*self
)
3094 for (i
= 0; i
< screen_num_monitors
; ++i
) {
3095 Rect
*area
= screen_physical_area_monitor(i
);
3096 if (RECT_INTERSECTS_RECT(*area
, self
->frame
->area
)) {
3100 RECT_SET_INTERSECTION(r
, *area
, self
->frame
->area
);
3101 v
= r
.width
* r
.height
;
3112 ObClient
*client_search_top_transient(ObClient
*self
)
3114 /* move up the transient chain as far as possible */
3115 if (self
->transient_for
) {
3116 if (self
->transient_for
!= OB_TRAN_GROUP
) {
3117 return client_search_top_transient(self
->transient_for
);
3121 g_assert(self
->group
);
3123 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
3124 ObClient
*c
= it
->data
;
3126 /* checking transient_for prevents infinate loops! */
3127 if (c
!= self
&& !c
->transient_for
)
3138 ObClient
*client_search_focus_parent(ObClient
*self
)
3140 if (self
->transient_for
) {
3141 if (self
->transient_for
!= OB_TRAN_GROUP
) {
3142 if (client_focused(self
->transient_for
))
3143 return self
->transient_for
;
3147 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
3148 ObClient
*c
= it
->data
;
3150 /* checking transient_for prevents infinate loops! */
3151 if (c
!= self
&& !c
->transient_for
)
3152 if (client_focused(c
))
3161 ObClient
*client_search_parent(ObClient
*self
, ObClient
*search
)
3163 if (self
->transient_for
) {
3164 if (self
->transient_for
!= OB_TRAN_GROUP
) {
3165 if (self
->transient_for
== search
)
3170 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
3171 ObClient
*c
= it
->data
;
3173 /* checking transient_for prevents infinate loops! */
3174 if (c
!= self
&& !c
->transient_for
)
3184 ObClient
*client_search_transient(ObClient
*self
, ObClient
*search
)
3188 for (sit
= self
->transients
; sit
; sit
= g_slist_next(sit
)) {
3189 if (sit
->data
== search
)
3191 if (client_search_transient(sit
->data
, search
))
3197 void client_update_sm_client_id(ObClient
*self
)
3199 g_free(self
->sm_client_id
);
3200 self
->sm_client_id
= NULL
;
3202 if (!PROP_GETS(self
->window
, sm_client_id
, locale
, &self
->sm_client_id
) &&
3204 PROP_GETS(self
->group
->leader
, sm_client_id
, locale
,
3205 &self
->sm_client_id
);
3208 /* finds the nearest edge in the given direction from the current client
3209 * note to self: the edge is the -frame- edge (the actual one), not the
3212 gint
client_directional_edge_search(ObClient
*c
, ObDirection dir
)
3214 gint dest
, monitor_dest
;
3215 gint my_edge_start
, my_edge_end
, my_offset
;
3222 a
= screen_area(c
->desktop
);
3223 monitor
= screen_area_monitor(c
->desktop
, client_monitor(c
));
3226 case OB_DIRECTION_NORTH
:
3227 my_edge_start
= c
->frame
->area
.x
;
3228 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3229 my_offset
= c
->frame
->area
.y
;
3231 /* default: top of screen */
3233 monitor_dest
= monitor
->y
;
3234 /* if the monitor edge comes before the screen edge, */
3235 /* use that as the destination instead. (For xinerama) */
3236 if (monitor_dest
!= dest
&& my_offset
> monitor_dest
)
3237 dest
= monitor_dest
;
3239 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3240 gint his_edge_start
, his_edge_end
, his_offset
;
3241 ObClient
*cur
= it
->data
;
3245 if(!client_normal(cur
))
3247 if(screen_desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3251 if(cur
->layer
< c
->layer
&& !config_resist_layers_below
)
3254 his_edge_start
= cur
->frame
->area
.x
;
3255 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3256 his_offset
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3258 if(his_offset
+ 1 > my_offset
)
3261 if(his_offset
< dest
)
3264 if(his_edge_start
>= my_edge_start
&&
3265 his_edge_start
<= my_edge_end
)
3268 if(my_edge_start
>= his_edge_start
&&
3269 my_edge_start
<= his_edge_end
)
3274 case OB_DIRECTION_SOUTH
:
3275 my_edge_start
= c
->frame
->area
.x
;
3276 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3277 my_offset
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3279 /* default: bottom of screen */
3280 dest
= a
->y
+ a
->height
;
3281 monitor_dest
= monitor
->y
+ monitor
->height
;
3282 /* if the monitor edge comes before the screen edge, */
3283 /* use that as the destination instead. (For xinerama) */
3284 if (monitor_dest
!= dest
&& my_offset
< monitor_dest
)
3285 dest
= monitor_dest
;
3287 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3288 gint his_edge_start
, his_edge_end
, his_offset
;
3289 ObClient
*cur
= it
->data
;
3293 if(!client_normal(cur
))
3295 if(screen_desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3299 if(cur
->layer
< c
->layer
&& !config_resist_layers_below
)
3302 his_edge_start
= cur
->frame
->area
.x
;
3303 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3304 his_offset
= cur
->frame
->area
.y
;
3307 if(his_offset
- 1 < my_offset
)
3310 if(his_offset
> dest
)
3313 if(his_edge_start
>= my_edge_start
&&
3314 his_edge_start
<= my_edge_end
)
3317 if(my_edge_start
>= his_edge_start
&&
3318 my_edge_start
<= his_edge_end
)
3323 case OB_DIRECTION_WEST
:
3324 my_edge_start
= c
->frame
->area
.y
;
3325 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3326 my_offset
= c
->frame
->area
.x
;
3328 /* default: leftmost egde of screen */
3330 monitor_dest
= monitor
->x
;
3331 /* if the monitor edge comes before the screen edge, */
3332 /* use that as the destination instead. (For xinerama) */
3333 if (monitor_dest
!= dest
&& my_offset
> monitor_dest
)
3334 dest
= monitor_dest
;
3336 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3337 gint his_edge_start
, his_edge_end
, his_offset
;
3338 ObClient
*cur
= it
->data
;
3342 if(!client_normal(cur
))
3344 if(screen_desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3348 if(cur
->layer
< c
->layer
&& !config_resist_layers_below
)
3351 his_edge_start
= cur
->frame
->area
.y
;
3352 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3353 his_offset
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3355 if(his_offset
+ 1 > my_offset
)
3358 if(his_offset
< dest
)
3361 if(his_edge_start
>= my_edge_start
&&
3362 his_edge_start
<= my_edge_end
)
3365 if(my_edge_start
>= his_edge_start
&&
3366 my_edge_start
<= his_edge_end
)
3372 case OB_DIRECTION_EAST
:
3373 my_edge_start
= c
->frame
->area
.y
;
3374 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3375 my_offset
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3377 /* default: rightmost edge of screen */
3378 dest
= a
->x
+ a
->width
;
3379 monitor_dest
= monitor
->x
+ monitor
->width
;
3380 /* if the monitor edge comes before the screen edge, */
3381 /* use that as the destination instead. (For xinerama) */
3382 if (monitor_dest
!= dest
&& my_offset
< monitor_dest
)
3383 dest
= monitor_dest
;
3385 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3386 gint his_edge_start
, his_edge_end
, his_offset
;
3387 ObClient
*cur
= it
->data
;
3391 if(!client_normal(cur
))
3393 if(screen_desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3397 if(cur
->layer
< c
->layer
&& !config_resist_layers_below
)
3400 his_edge_start
= cur
->frame
->area
.y
;
3401 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3402 his_offset
= cur
->frame
->area
.x
;
3404 if(his_offset
- 1 < my_offset
)
3407 if(his_offset
> dest
)
3410 if(his_edge_start
>= my_edge_start
&&
3411 his_edge_start
<= my_edge_end
)
3414 if(my_edge_start
>= his_edge_start
&&
3415 my_edge_start
<= his_edge_end
)
3420 case OB_DIRECTION_NORTHEAST
:
3421 case OB_DIRECTION_SOUTHEAST
:
3422 case OB_DIRECTION_NORTHWEST
:
3423 case OB_DIRECTION_SOUTHWEST
:
3424 /* not implemented */
3426 g_assert_not_reached();
3427 dest
= 0; /* suppress warning */
3432 ObClient
* client_under_pointer()
3436 ObClient
*ret
= NULL
;
3438 if (screen_pointer_pos(&x
, &y
)) {
3439 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
3440 if (WINDOW_IS_CLIENT(it
->data
)) {
3441 ObClient
*c
= WINDOW_AS_CLIENT(it
->data
);
3442 if (c
->frame
->visible
&&
3443 RECT_CONTAINS(c
->frame
->area
, x
, y
)) {
3453 gboolean
client_has_group_siblings(ObClient
*self
)
3455 return self
->group
&& self
->group
->members
->next
;