1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 client.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
21 #include "startupnotify.h"
25 #include "moveresize.h"
28 #include "extensions.h"
38 #include "menuframe.h"
41 #include "render/render.h"
44 #include <X11/Xutil.h>
46 /*! The event mask to grab on client windows */
47 #define CLIENT_EVENTMASK (PropertyChangeMask | FocusChangeMask | \
50 #define CLIENT_NOPROPAGATEMASK (ButtonPressMask | ButtonReleaseMask | \
55 ObClientDestructor func
;
59 GList
*client_list
= NULL
;
60 GSList
*client_destructors
= NULL
;
62 static void client_get_all(ObClient
*self
);
63 static void client_toggle_border(ObClient
*self
, gboolean show
);
64 static void client_get_startup_id(ObClient
*self
);
65 static void client_get_area(ObClient
*self
);
66 static void client_get_desktop(ObClient
*self
);
67 static void client_get_state(ObClient
*self
);
68 static void client_get_shaped(ObClient
*self
);
69 static void client_get_mwm_hints(ObClient
*self
);
70 static void client_get_gravity(ObClient
*self
);
71 static void client_showhide(ObClient
*self
);
72 static void client_change_allowed_actions(ObClient
*self
);
73 static void client_change_state(ObClient
*self
);
74 static void client_apply_startup_state(ObClient
*self
);
75 static void client_restore_session_state(ObClient
*self
);
76 static void client_restore_session_stacking(ObClient
*self
);
77 static void client_urgent_notify(ObClient
*self
);
79 void client_startup(gboolean reconfig
)
86 void client_shutdown(gboolean reconfig
)
90 void client_add_destructor(ObClientDestructor func
, gpointer data
)
92 Destructor
*d
= g_new(Destructor
, 1);
95 client_destructors
= g_slist_prepend(client_destructors
, d
);
98 void client_remove_destructor(ObClientDestructor func
)
102 for (it
= client_destructors
; it
; it
= g_slist_next(it
)) {
103 Destructor
*d
= it
->data
;
104 if (d
->func
== func
) {
106 client_destructors
= g_slist_delete_link(client_destructors
, it
);
112 void client_set_list()
114 Window
*windows
, *win_it
;
116 guint size
= g_list_length(client_list
);
118 /* create an array of the window ids */
120 windows
= g_new(Window
, size
);
122 for (it
= client_list
; it
!= NULL
; it
= it
->next
, ++win_it
)
123 *win_it
= ((ObClient
*)it
->data
)->window
;
127 PROP_SETA32(RootWindow(ob_display
, ob_screen
),
128 net_client_list
, window
, (guint32
*)windows
, size
);
137 void client_foreach_transient(ObClient *self, ObClientForeachFunc func, void *data)
141 for (it = self->transients; it; it = it->next) {
142 if (!func(it->data, data)) return;
143 client_foreach_transient(it->data, func, data);
147 void client_foreach_ancestor(ObClient *self, ObClientForeachFunc func, void *data)
149 if (self->transient_for) {
150 if (self->transient_for != OB_TRAN_GROUP) {
151 if (!func(self->transient_for, data)) return;
152 client_foreach_ancestor(self->transient_for, func, data);
156 for (it = self->group->members; it; it = it->next)
157 if (it->data != self &&
158 !((ObClient*)it->data)->transient_for) {
159 if (!func(it->data, data)) return;
160 client_foreach_ancestor(it->data, func, data);
167 void client_manage_all()
169 unsigned int i
, j
, nchild
;
172 XWindowAttributes attrib
;
174 XQueryTree(ob_display
, RootWindow(ob_display
, ob_screen
),
175 &w
, &w
, &children
, &nchild
);
177 /* remove all icon windows from the list */
178 for (i
= 0; i
< nchild
; i
++) {
179 if (children
[i
] == None
) continue;
180 wmhints
= XGetWMHints(ob_display
, children
[i
]);
182 if ((wmhints
->flags
& IconWindowHint
) &&
183 (wmhints
->icon_window
!= children
[i
]))
184 for (j
= 0; j
< nchild
; j
++)
185 if (children
[j
] == wmhints
->icon_window
) {
193 for (i
= 0; i
< nchild
; ++i
) {
194 if (children
[i
] == None
)
196 if (XGetWindowAttributes(ob_display
, children
[i
], &attrib
)) {
197 if (attrib
.override_redirect
) continue;
199 if (attrib
.map_state
!= IsUnmapped
)
200 client_manage(children
[i
]);
206 void client_manage(Window window
)
210 XWindowAttributes attrib
;
211 XSetWindowAttributes attrib_set
;
213 gboolean activate
= FALSE
;
217 /* check if it has already been unmapped by the time we started mapping
218 the grab does a sync so we don't have to here */
219 if (XCheckTypedWindowEvent(ob_display
, window
, DestroyNotify
, &e
) ||
220 XCheckTypedWindowEvent(ob_display
, window
, UnmapNotify
, &e
)) {
221 XPutBackEvent(ob_display
, &e
);
224 return; /* don't manage it */
227 /* make sure it isn't an override-redirect window */
228 if (!XGetWindowAttributes(ob_display
, window
, &attrib
) ||
229 attrib
.override_redirect
) {
231 return; /* don't manage it */
234 /* is the window a docking app */
235 if ((wmhint
= XGetWMHints(ob_display
, window
))) {
236 if ((wmhint
->flags
& StateHint
) &&
237 wmhint
->initial_state
== WithdrawnState
) {
238 dock_add(window
, wmhint
);
246 ob_debug("Managing window: %lx\n", window
);
248 /* choose the events we want to receive on the CLIENT window */
249 attrib_set
.event_mask
= CLIENT_EVENTMASK
;
250 attrib_set
.do_not_propagate_mask
= CLIENT_NOPROPAGATEMASK
;
251 XChangeWindowAttributes(ob_display
, window
,
252 CWEventMask
|CWDontPropagate
, &attrib_set
);
255 /* create the ObClient struct, and populate it from the hints on the
257 self
= g_new0(ObClient
, 1);
258 self
->obwin
.type
= Window_Client
;
259 self
->window
= window
;
261 /* non-zero defaults */
262 self
->title_count
= 1;
263 self
->wmstate
= NormalState
;
265 self
->desktop
= screen_num_desktops
; /* always an invalid value */
267 client_get_all(self
);
268 client_restore_session_state(self
);
270 sn_app_started(self
->class);
272 client_change_state(self
);
274 /* remove the client's border (and adjust re gravity) */
275 client_toggle_border(self
, FALSE
);
277 /* specify that if we exit, the window should not be destroyed and should
278 be reparented back to root automatically */
279 XChangeSaveSet(ob_display
, window
, SetModeInsert
);
281 /* create the decoration frame for the client window */
282 self
->frame
= frame_new();
284 frame_grab_client(self
->frame
, self
);
288 client_apply_startup_state(self
);
290 /* update the focus lists */
291 focus_order_add_new(self
);
293 stacking_add(CLIENT_AS_WINDOW(self
));
294 client_restore_session_stacking(self
);
296 /* focus the new window? */
297 if (ob_state() != OB_STATE_STARTING
&&
298 (config_focus_new
|| client_search_focus_parent(self
)) &&
299 /* note the check against Type_Normal/Dialog, not client_normal(self),
300 which would also include other types. in this case we want more
301 strict rules for focus */
302 (self
->type
== OB_CLIENT_TYPE_NORMAL
||
303 self
->type
== OB_CLIENT_TYPE_DIALOG
))
307 if (self
->desktop
!= screen_desktop
) {
308 /* activate the window */
311 gboolean group_foc
= FALSE
;
316 for (it
= self
->group
->members
; it
; it
= it
->next
)
318 if (client_focused(it
->data
))
326 (!self
->transient_for
&& (!self
->group
||
327 !self
->group
->members
->next
))) ||
328 client_search_focus_tree_full(self
) ||
330 !client_normal(focus_client
))
332 /* activate the window */
339 if (ob_state() == OB_STATE_RUNNING
) {
340 int x
= self
->area
.x
, ox
= x
;
341 int y
= self
->area
.y
, oy
= y
;
343 place_client(self
, &x
, &y
);
345 /* make sure the window is visible */
346 client_find_onscreen(self
, &x
, &y
,
347 self
->frame
->area
.width
,
348 self
->frame
->area
.height
,
349 /* non-normal clients has less rules, and
350 windows that are being restored from a session
351 do also. we can assume you want it back where
353 client_normal(self
) && !self
->session
);
355 if (x
!= ox
|| y
!= oy
)
356 client_move(self
, x
, y
);
359 client_showhide(self
);
361 /* use client_focus instead of client_activate cuz client_activate does
362 stuff like switch desktops etc and I'm not interested in all that when
363 a window maps since its not based on an action from the user like
364 clicking a window to activate is. so keep the new window out of the way
367 /* if using focus_delay, stop the timer now so that focus doesn't go
369 event_halt_focus_delay();
372 /* since focus can change the stacking orders, if we focus the window
373 then the standard raise it gets is not enough, we need to queue one
374 for after the focus change takes place */
378 /* client_activate does this but we aret using it so we have to do it
380 if (screen_showing_desktop
)
381 screen_show_desktop(FALSE
);
383 /* add to client list/map */
384 client_list
= g_list_append(client_list
, self
);
385 g_hash_table_insert(window_map
, &self
->window
, self
);
387 /* this has to happen after we're in the client_list */
388 screen_update_areas();
390 /* update the list hints */
393 keyboard_grab_for_client(self
, TRUE
);
394 mouse_grab_for_client(self
, TRUE
);
396 ob_debug("Managed window 0x%lx (%s)\n", window
, self
->class);
399 void client_unmanage_all()
401 while (client_list
!= NULL
)
402 client_unmanage(client_list
->data
);
405 void client_unmanage(ObClient
*self
)
410 ob_debug("Unmanaging window: %lx (%s)\n", self
->window
, self
->class);
412 g_assert(self
!= NULL
);
414 keyboard_grab_for_client(self
, FALSE
);
415 mouse_grab_for_client(self
, FALSE
);
417 /* remove the window from our save set */
418 XChangeSaveSet(ob_display
, self
->window
, SetModeDelete
);
420 /* we dont want events no more */
421 XSelectInput(ob_display
, self
->window
, NoEventMask
);
423 frame_hide(self
->frame
);
425 client_list
= g_list_remove(client_list
, self
);
426 stacking_remove(self
);
427 g_hash_table_remove(window_map
, &self
->window
);
429 /* update the focus lists */
430 focus_order_remove(self
);
432 /* once the client is out of the list, update the struts to remove it's
434 screen_update_areas();
436 for (it
= client_destructors
; it
; it
= g_slist_next(it
)) {
437 Destructor
*d
= it
->data
;
438 d
->func(self
, d
->data
);
441 if (focus_client
== self
) {
444 /* focus the last focused window on the desktop, and ignore enter
445 events from the unmap so it doesnt mess with the focus */
446 while (XCheckTypedEvent(ob_display
, EnterNotify
, &e
));
447 /* remove these flags so we don't end up getting focused in the
449 self
->can_focus
= FALSE
;
450 self
->focus_notify
= FALSE
;
452 client_unfocus(self
);
455 /* tell our parent(s) that we're gone */
456 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
459 for (it
= self
->group
->members
; it
; it
= it
->next
)
460 if (it
->data
!= self
)
461 ((ObClient
*)it
->data
)->transients
=
462 g_slist_remove(((ObClient
*)it
->data
)->transients
, self
);
463 } else if (self
->transient_for
) { /* transient of window */
464 self
->transient_for
->transients
=
465 g_slist_remove(self
->transient_for
->transients
, self
);
468 /* tell our transients that we're gone */
469 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
) {
470 if (((ObClient
*)it
->data
)->transient_for
!= OB_TRAN_GROUP
) {
471 ((ObClient
*)it
->data
)->transient_for
= NULL
;
472 client_calc_layer(it
->data
);
476 /* remove from its group */
478 group_remove(self
->group
, self
);
482 /* give the client its border back */
483 client_toggle_border(self
, TRUE
);
485 /* reparent the window out of the frame, and free the frame */
486 frame_release_client(self
->frame
, self
);
489 if (ob_state() != OB_STATE_EXITING
) {
490 /* these values should not be persisted across a window
492 PROP_ERASE(self
->window
, net_wm_desktop
);
493 PROP_ERASE(self
->window
, net_wm_state
);
494 PROP_ERASE(self
->window
, wm_state
);
496 /* if we're left in an iconic state, the client wont be mapped. this is
497 bad, since we will no longer be managing the window on restart */
499 XMapWindow(ob_display
, self
->window
);
503 ob_debug("Unmanaged window 0x%lx\n", self
->window
);
505 /* free all data allocated in the client struct */
506 g_slist_free(self
->transients
);
507 for (j
= 0; j
< self
->nicons
; ++j
)
508 g_free(self
->icons
[j
].data
);
509 if (self
->nicons
> 0)
512 g_free(self
->icon_title
);
516 g_free(self
->sm_client_id
);
519 /* update the list hints */
523 static void client_urgent_notify(ObClient
*self
)
526 frame_flash_start(self
->frame
);
528 frame_flash_stop(self
->frame
);
531 static void client_restore_session_state(ObClient
*self
)
535 if (!(it
= session_state_find(self
)))
538 self
->session
= it
->data
;
540 RECT_SET_POINT(self
->area
, self
->session
->x
, self
->session
->y
);
541 self
->positioned
= TRUE
;
542 if (self
->session
->w
> 0)
543 self
->area
.width
= self
->session
->w
;
544 if (self
->session
->h
> 0)
545 self
->area
.height
= self
->session
->h
;
546 XResizeWindow(ob_display
, self
->window
,
547 self
->area
.width
, self
->area
.height
);
549 self
->desktop
= (self
->session
->desktop
== DESKTOP_ALL
?
550 self
->session
->desktop
:
551 MIN(screen_num_desktops
- 1, self
->session
->desktop
));
552 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
554 self
->shaded
= self
->session
->shaded
;
555 self
->iconic
= self
->session
->iconic
;
556 self
->skip_pager
= self
->session
->skip_pager
;
557 self
->skip_taskbar
= self
->session
->skip_taskbar
;
558 self
->fullscreen
= self
->session
->fullscreen
;
559 self
->above
= self
->session
->above
;
560 self
->below
= self
->session
->below
;
561 self
->max_horz
= self
->session
->max_horz
;
562 self
->max_vert
= self
->session
->max_vert
;
565 static void client_restore_session_stacking(ObClient
*self
)
569 if (!self
->session
) return;
571 it
= g_list_find(session_saved_state
, self
->session
);
572 for (it
= g_list_previous(it
); it
; it
= g_list_previous(it
)) {
575 for (cit
= client_list
; cit
; cit
= g_list_next(cit
))
576 if (session_state_cmp(it
->data
, cit
->data
))
579 client_calc_layer(self
);
580 stacking_below(CLIENT_AS_WINDOW(self
),
581 CLIENT_AS_WINDOW(cit
->data
));
587 void client_move_onscreen(ObClient
*self
, gboolean rude
)
589 int x
= self
->area
.x
;
590 int y
= self
->area
.y
;
591 if (client_find_onscreen(self
, &x
, &y
,
592 self
->frame
->area
.width
,
593 self
->frame
->area
.height
, rude
)) {
594 client_move(self
, x
, y
);
598 gboolean
client_find_onscreen(ObClient
*self
, int *x
, int *y
, int w
, int h
,
602 int ox
= *x
, oy
= *y
;
604 frame_client_gravity(self
->frame
, x
, y
); /* get where the frame
607 /* XXX watch for xinerama dead areas */
609 a
= screen_area(self
->desktop
);
610 if (client_normal(self
)) {
611 if (!self
->strut
.right
&& *x
>= a
->x
+ a
->width
- 1)
612 *x
= a
->x
+ a
->width
- self
->frame
->area
.width
;
613 if (!self
->strut
.bottom
&& *y
>= a
->y
+ a
->height
- 1)
614 *y
= a
->y
+ a
->height
- self
->frame
->area
.height
;
615 if (!self
->strut
.left
&& *x
+ self
->frame
->area
.width
- 1 < a
->x
)
617 if (!self
->strut
.top
&& *y
+ self
->frame
->area
.height
- 1 < a
->y
)
622 /* this is my MOZILLA BITCHSLAP. oh ya it fucking feels good.
623 Java can suck it too. */
625 /* dont let windows map/move into the strut unless they
626 are bigger than the available area */
628 if (!self
->strut
.left
&& *x
< a
->x
) *x
= a
->x
;
629 if (!self
->strut
.right
&& *x
+ w
> a
->x
+ a
->width
)
630 *x
= a
->x
+ a
->width
- w
;
632 if (h
<= a
->height
) {
633 if (!self
->strut
.top
&& *y
< a
->y
) *y
= a
->y
;
634 if (!self
->strut
.bottom
&& *y
+ h
> a
->y
+ a
->height
)
635 *y
= a
->y
+ a
->height
- h
;
639 frame_frame_gravity(self
->frame
, x
, y
); /* get where the client
642 return ox
!= *x
|| oy
!= *y
;
645 static void client_toggle_border(ObClient
*self
, gboolean show
)
647 /* adjust our idea of where the client is, based on its border. When the
648 border is removed, the client should now be considered to be in a
650 when re-adding the border to the client, the same operation needs to be
652 int oldx
= self
->area
.x
, oldy
= self
->area
.y
;
653 int x
= oldx
, y
= oldy
;
654 switch(self
->gravity
) {
656 case NorthWestGravity
:
658 case SouthWestGravity
:
660 case NorthEastGravity
:
662 case SouthEastGravity
:
663 if (show
) x
-= self
->border_width
* 2;
664 else x
+= self
->border_width
* 2;
671 if (show
) x
-= self
->border_width
;
672 else x
+= self
->border_width
;
675 switch(self
->gravity
) {
677 case NorthWestGravity
:
679 case NorthEastGravity
:
681 case SouthWestGravity
:
683 case SouthEastGravity
:
684 if (show
) y
-= self
->border_width
* 2;
685 else y
+= self
->border_width
* 2;
692 if (show
) y
-= self
->border_width
;
693 else y
+= self
->border_width
;
700 XSetWindowBorderWidth(ob_display
, self
->window
, self
->border_width
);
702 /* move the client so it is back it the right spot _with_ its
704 if (x
!= oldx
|| y
!= oldy
)
705 XMoveWindow(ob_display
, self
->window
, x
, y
);
707 XSetWindowBorderWidth(ob_display
, self
->window
, 0);
711 static void client_get_all(ObClient
*self
)
713 client_get_area(self
);
714 client_update_transient_for(self
);
715 client_update_wmhints(self
);
716 client_get_startup_id(self
);
717 client_get_desktop(self
);
718 client_get_state(self
);
719 client_get_shaped(self
);
721 client_get_mwm_hints(self
);
722 client_get_type(self
);/* this can change the mwmhints for special cases */
725 /* a couple type-based defaults for new windows */
727 /* this makes sure that these windows appear on all desktops */
728 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
729 self
->desktop
= DESKTOP_ALL
;
731 /* dock windows default to ABOVE */
732 if (self
->type
== OB_CLIENT_TYPE_DOCK
&& !self
->below
)
736 client_update_protocols(self
);
738 client_get_gravity(self
); /* get the attribute gravity */
739 client_update_normal_hints(self
); /* this may override the attribute
742 /* got the type, the mwmhints, the protocols, and the normal hints
743 (min/max sizes), so we're ready to set up the decorations/functions */
744 client_setup_decor_and_functions(self
);
746 client_update_title(self
);
747 client_update_class(self
);
748 client_update_sm_client_id(self
);
749 client_update_strut(self
);
750 client_update_icons(self
);
753 static void client_get_startup_id(ObClient
*self
)
755 if (!(PROP_GETS(self
->window
, net_startup_id
, utf8
, &self
->startup_id
)))
757 PROP_GETS(self
->group
->leader
,
758 net_startup_id
, utf8
, &self
->startup_id
);
761 static void client_get_area(ObClient
*self
)
763 XWindowAttributes wattrib
;
766 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
767 g_assert(ret
!= BadWindow
);
769 RECT_SET(self
->area
, wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
770 self
->border_width
= wattrib
.border_width
;
773 static void client_get_desktop(ObClient
*self
)
775 guint32 d
= screen_num_desktops
; /* an always-invalid value */
777 if (PROP_GET32(self
->window
, net_wm_desktop
, cardinal
, &d
)) {
778 if (d
>= screen_num_desktops
&& d
!= DESKTOP_ALL
)
779 self
->desktop
= screen_num_desktops
- 1;
783 gboolean trdesk
= FALSE
;
785 if (self
->transient_for
) {
786 if (self
->transient_for
!= OB_TRAN_GROUP
) {
787 self
->desktop
= self
->transient_for
->desktop
;
792 for (it
= self
->group
->members
; it
; it
= it
->next
)
793 if (it
->data
!= self
&&
794 !((ObClient
*)it
->data
)->transient_for
) {
795 self
->desktop
= ((ObClient
*)it
->data
)->desktop
;
802 /* try get from the startup-notification protocol */
803 if (sn_get_desktop(self
->startup_id
, &self
->desktop
)) {
804 if (self
->desktop
>= screen_num_desktops
&&
805 self
->desktop
!= DESKTOP_ALL
)
806 self
->desktop
= screen_num_desktops
- 1;
808 /* defaults to the current desktop */
809 self
->desktop
= screen_desktop
;
812 if (self
->desktop
!= d
) {
813 /* set the desktop hint, to make sure that it always exists */
814 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
818 static void client_get_state(ObClient
*self
)
823 if (PROP_GETA32(self
->window
, net_wm_state
, atom
, &state
, &num
)) {
825 for (i
= 0; i
< num
; ++i
) {
826 if (state
[i
] == prop_atoms
.net_wm_state_modal
)
828 else if (state
[i
] == prop_atoms
.net_wm_state_shaded
)
830 else if (state
[i
] == prop_atoms
.net_wm_state_hidden
)
832 else if (state
[i
] == prop_atoms
.net_wm_state_skip_taskbar
)
833 self
->skip_taskbar
= TRUE
;
834 else if (state
[i
] == prop_atoms
.net_wm_state_skip_pager
)
835 self
->skip_pager
= TRUE
;
836 else if (state
[i
] == prop_atoms
.net_wm_state_fullscreen
)
837 self
->fullscreen
= TRUE
;
838 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_vert
)
839 self
->max_vert
= TRUE
;
840 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_horz
)
841 self
->max_horz
= TRUE
;
842 else if (state
[i
] == prop_atoms
.net_wm_state_above
)
844 else if (state
[i
] == prop_atoms
.net_wm_state_below
)
846 else if (state
[i
] == prop_atoms
.ob_wm_state_undecorated
)
847 self
->undecorated
= TRUE
;
854 static void client_get_shaped(ObClient
*self
)
856 self
->shaped
= FALSE
;
858 if (extensions_shape
) {
863 XShapeSelectInput(ob_display
, self
->window
, ShapeNotifyMask
);
865 XShapeQueryExtents(ob_display
, self
->window
, &s
, &foo
,
866 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
,
868 self
->shaped
= (s
!= 0);
873 void client_update_transient_for(ObClient
*self
)
876 ObClient
*target
= NULL
;
878 if (XGetTransientForHint(ob_display
, self
->window
, &t
)) {
879 self
->transient
= TRUE
;
880 if (t
!= self
->window
) { /* cant be transient to itself! */
881 target
= g_hash_table_lookup(window_map
, &t
);
882 /* if this happens then we need to check for it*/
883 g_assert(target
!= self
);
884 if (target
&& !WINDOW_IS_CLIENT(target
)) {
885 /* this can happen when a dialog is a child of
886 a dockapp, for example */
890 if (!target
&& self
->group
) {
891 /* not transient to a client, see if it is transient for a
893 if (t
== self
->group
->leader
||
895 t
== RootWindow(ob_display
, ob_screen
))
897 /* window is a transient for its group! */
898 target
= OB_TRAN_GROUP
;
903 self
->transient
= FALSE
;
905 /* if anything has changed... */
906 if (target
!= self
->transient_for
) {
907 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
910 /* remove from old parents */
911 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
912 ObClient
*c
= it
->data
;
913 if (c
!= self
&& !c
->transient_for
)
914 c
->transients
= g_slist_remove(c
->transients
, self
);
916 } else if (self
->transient_for
!= NULL
) { /* transient of window */
917 /* remove from old parent */
918 self
->transient_for
->transients
=
919 g_slist_remove(self
->transient_for
->transients
, self
);
921 self
->transient_for
= target
;
922 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
925 /* add to new parents */
926 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
927 ObClient
*c
= it
->data
;
928 if (c
!= self
&& !c
->transient_for
)
929 c
->transients
= g_slist_append(c
->transients
, self
);
932 /* remove all transients which are in the group, that causes
933 circlular pointer hell of doom */
934 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
936 for (sit
= self
->transients
; sit
; sit
= next
) {
937 next
= g_slist_next(sit
);
938 if (sit
->data
== it
->data
)
940 g_slist_delete_link(self
->transients
, sit
);
943 } else if (self
->transient_for
!= NULL
) { /* transient of window */
944 /* add to new parent */
945 self
->transient_for
->transients
=
946 g_slist_append(self
->transient_for
->transients
, self
);
951 static void client_get_mwm_hints(ObClient
*self
)
956 self
->mwmhints
.flags
= 0; /* default to none */
958 if (PROP_GETA32(self
->window
, motif_wm_hints
, motif_wm_hints
,
960 if (num
>= OB_MWM_ELEMENTS
) {
961 self
->mwmhints
.flags
= hints
[0];
962 self
->mwmhints
.functions
= hints
[1];
963 self
->mwmhints
.decorations
= hints
[2];
969 void client_get_type(ObClient
*self
)
976 if (PROP_GETA32(self
->window
, net_wm_window_type
, atom
, &val
, &num
)) {
977 /* use the first value that we know about in the array */
978 for (i
= 0; i
< num
; ++i
) {
979 if (val
[i
] == prop_atoms
.net_wm_window_type_desktop
)
980 self
->type
= OB_CLIENT_TYPE_DESKTOP
;
981 else if (val
[i
] == prop_atoms
.net_wm_window_type_dock
)
982 self
->type
= OB_CLIENT_TYPE_DOCK
;
983 else if (val
[i
] == prop_atoms
.net_wm_window_type_toolbar
)
984 self
->type
= OB_CLIENT_TYPE_TOOLBAR
;
985 else if (val
[i
] == prop_atoms
.net_wm_window_type_menu
)
986 self
->type
= OB_CLIENT_TYPE_MENU
;
987 else if (val
[i
] == prop_atoms
.net_wm_window_type_utility
)
988 self
->type
= OB_CLIENT_TYPE_UTILITY
;
989 else if (val
[i
] == prop_atoms
.net_wm_window_type_splash
)
990 self
->type
= OB_CLIENT_TYPE_SPLASH
;
991 else if (val
[i
] == prop_atoms
.net_wm_window_type_dialog
)
992 self
->type
= OB_CLIENT_TYPE_DIALOG
;
993 else if (val
[i
] == prop_atoms
.net_wm_window_type_normal
)
994 self
->type
= OB_CLIENT_TYPE_NORMAL
;
995 else if (val
[i
] == prop_atoms
.kde_net_wm_window_type_override
) {
996 /* prevent this window from getting any decor or
998 self
->mwmhints
.flags
&= (OB_MWM_FLAG_FUNCTIONS
|
999 OB_MWM_FLAG_DECORATIONS
);
1000 self
->mwmhints
.decorations
= 0;
1001 self
->mwmhints
.functions
= 0;
1003 if (self
->type
!= (ObClientType
) -1)
1004 break; /* grab the first legit type */
1009 if (self
->type
== (ObClientType
) -1) {
1010 /*the window type hint was not set, which means we either classify
1011 ourself as a normal window or a dialog, depending on if we are a
1013 if (self
->transient
)
1014 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1016 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1020 void client_update_protocols(ObClient
*self
)
1023 guint num_return
, i
;
1025 self
->focus_notify
= FALSE
;
1026 self
->delete_window
= FALSE
;
1028 if (PROP_GETA32(self
->window
, wm_protocols
, atom
, &proto
, &num_return
)) {
1029 for (i
= 0; i
< num_return
; ++i
) {
1030 if (proto
[i
] == prop_atoms
.wm_delete_window
) {
1031 /* this means we can request the window to close */
1032 self
->delete_window
= TRUE
;
1033 } else if (proto
[i
] == prop_atoms
.wm_take_focus
)
1034 /* if this protocol is requested, then the window will be
1035 notified whenever we want it to receive focus */
1036 self
->focus_notify
= TRUE
;
1042 static void client_get_gravity(ObClient
*self
)
1044 XWindowAttributes wattrib
;
1047 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
1048 g_assert(ret
!= BadWindow
);
1049 self
->gravity
= wattrib
.win_gravity
;
1052 void client_update_normal_hints(ObClient
*self
)
1056 int oldgravity
= self
->gravity
;
1059 self
->min_ratio
= 0.0f
;
1060 self
->max_ratio
= 0.0f
;
1061 SIZE_SET(self
->size_inc
, 1, 1);
1062 SIZE_SET(self
->base_size
, 0, 0);
1063 SIZE_SET(self
->min_size
, 0, 0);
1064 SIZE_SET(self
->max_size
, G_MAXINT
, G_MAXINT
);
1066 /* get the hints from the window */
1067 if (XGetWMNormalHints(ob_display
, self
->window
, &size
, &ret
)) {
1068 self
->positioned
= !!(size
.flags
& (PPosition
|USPosition
));
1070 if (size
.flags
& PWinGravity
) {
1071 self
->gravity
= size
.win_gravity
;
1073 /* if the client has a frame, i.e. has already been mapped and
1074 is changing its gravity */
1075 if (self
->frame
&& self
->gravity
!= oldgravity
) {
1076 /* move our idea of the client's position based on its new
1078 self
->area
.x
= self
->frame
->area
.x
;
1079 self
->area
.y
= self
->frame
->area
.y
;
1080 frame_frame_gravity(self
->frame
, &self
->area
.x
, &self
->area
.y
);
1084 if (size
.flags
& PAspect
) {
1085 if (size
.min_aspect
.y
)
1086 self
->min_ratio
= (float)size
.min_aspect
.x
/ size
.min_aspect
.y
;
1087 if (size
.max_aspect
.y
)
1088 self
->max_ratio
= (float)size
.max_aspect
.x
/ size
.max_aspect
.y
;
1091 if (size
.flags
& PMinSize
)
1092 SIZE_SET(self
->min_size
, size
.min_width
, size
.min_height
);
1094 if (size
.flags
& PMaxSize
)
1095 SIZE_SET(self
->max_size
, size
.max_width
, size
.max_height
);
1097 if (size
.flags
& PBaseSize
)
1098 SIZE_SET(self
->base_size
, size
.base_width
, size
.base_height
);
1100 if (size
.flags
& PResizeInc
)
1101 SIZE_SET(self
->size_inc
, size
.width_inc
, size
.height_inc
);
1105 void client_setup_decor_and_functions(ObClient
*self
)
1107 /* start with everything (cept fullscreen) */
1109 (OB_FRAME_DECOR_TITLEBAR
|
1110 (ob_rr_theme
->show_handle
? OB_FRAME_DECOR_HANDLE
: 0) |
1111 OB_FRAME_DECOR_GRIPS
|
1112 OB_FRAME_DECOR_BORDER
|
1113 OB_FRAME_DECOR_ICON
|
1114 OB_FRAME_DECOR_ALLDESKTOPS
|
1115 OB_FRAME_DECOR_ICONIFY
|
1116 OB_FRAME_DECOR_MAXIMIZE
|
1117 OB_FRAME_DECOR_SHADE
|
1118 OB_FRAME_DECOR_CLOSE
);
1120 (OB_CLIENT_FUNC_RESIZE
|
1121 OB_CLIENT_FUNC_MOVE
|
1122 OB_CLIENT_FUNC_ICONIFY
|
1123 OB_CLIENT_FUNC_MAXIMIZE
|
1124 OB_CLIENT_FUNC_SHADE
|
1125 OB_CLIENT_FUNC_CLOSE
);
1127 if (!(self
->min_size
.width
< self
->max_size
.width
||
1128 self
->min_size
.height
< self
->max_size
.height
))
1129 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1131 switch (self
->type
) {
1132 case OB_CLIENT_TYPE_NORMAL
:
1133 /* normal windows retain all of the possible decorations and
1134 functionality, and are the only windows that you can fullscreen */
1135 self
->functions
|= OB_CLIENT_FUNC_FULLSCREEN
;
1138 case OB_CLIENT_TYPE_DIALOG
:
1139 case OB_CLIENT_TYPE_UTILITY
:
1140 /* these windows cannot be maximized */
1141 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1144 case OB_CLIENT_TYPE_MENU
:
1145 case OB_CLIENT_TYPE_TOOLBAR
:
1146 /* these windows get less functionality */
1147 self
->functions
&= ~(OB_CLIENT_FUNC_ICONIFY
| OB_CLIENT_FUNC_RESIZE
);
1150 case OB_CLIENT_TYPE_DESKTOP
:
1151 case OB_CLIENT_TYPE_DOCK
:
1152 case OB_CLIENT_TYPE_SPLASH
:
1153 /* none of these windows are manipulated by the window manager */
1154 self
->decorations
= 0;
1155 self
->functions
= 0;
1159 /* Mwm Hints are applied subtractively to what has already been chosen for
1160 decor and functionality */
1161 if (self
->mwmhints
.flags
& OB_MWM_FLAG_DECORATIONS
) {
1162 if (! (self
->mwmhints
.decorations
& OB_MWM_DECOR_ALL
)) {
1163 if (! ((self
->mwmhints
.decorations
& OB_MWM_DECOR_HANDLE
) ||
1164 (self
->mwmhints
.decorations
& OB_MWM_DECOR_TITLE
)))
1165 /* if the mwm hints request no handle or title, then all
1166 decorations are disabled */
1167 self
->decorations
= 0;
1171 if (self
->mwmhints
.flags
& OB_MWM_FLAG_FUNCTIONS
) {
1172 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_ALL
)) {
1173 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_RESIZE
))
1174 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1175 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_MOVE
))
1176 self
->functions
&= ~OB_CLIENT_FUNC_MOVE
;
1177 /* dont let mwm hints kill any buttons
1178 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1179 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1180 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1181 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1183 /* dont let mwm hints kill the close button
1184 if (! (self->mwmhints.functions & MwmFunc_Close))
1185 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1189 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
))
1190 self
->decorations
&= ~OB_FRAME_DECOR_SHADE
;
1191 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
))
1192 self
->decorations
&= ~OB_FRAME_DECOR_ICONIFY
;
1193 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
))
1194 self
->decorations
&= ~OB_FRAME_DECOR_GRIPS
;
1196 /* can't maximize without moving/resizing */
1197 if (!((self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) &&
1198 (self
->functions
& OB_CLIENT_FUNC_MOVE
) &&
1199 (self
->functions
& OB_CLIENT_FUNC_RESIZE
))) {
1200 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1201 self
->decorations
&= ~OB_FRAME_DECOR_MAXIMIZE
;
1204 /* kill the handle on fully maxed windows */
1205 if (self
->max_vert
&& self
->max_horz
)
1206 self
->decorations
&= ~OB_FRAME_DECOR_HANDLE
;
1208 /* finally, the user can have requested no decorations, which overrides
1209 everything (but doesnt give it a border if it doesnt have one) */
1210 if (self
->undecorated
)
1211 self
->decorations
&= OB_FRAME_DECOR_BORDER
;
1213 /* if we don't have a titlebar, then we cannot shade! */
1214 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1215 self
->functions
&= ~OB_CLIENT_FUNC_SHADE
;
1217 /* now we need to check against rules for the client's current state */
1218 if (self
->fullscreen
) {
1219 self
->functions
&= (OB_CLIENT_FUNC_CLOSE
|
1220 OB_CLIENT_FUNC_FULLSCREEN
|
1221 OB_CLIENT_FUNC_ICONIFY
);
1222 self
->decorations
= 0;
1225 client_change_allowed_actions(self
);
1228 /* adjust the client's decorations, etc. */
1229 client_reconfigure(self
);
1233 static void client_change_allowed_actions(ObClient
*self
)
1238 /* desktop windows are kept on all desktops */
1239 if (self
->type
!= OB_CLIENT_TYPE_DESKTOP
)
1240 actions
[num
++] = prop_atoms
.net_wm_action_change_desktop
;
1242 if (self
->functions
& OB_CLIENT_FUNC_SHADE
)
1243 actions
[num
++] = prop_atoms
.net_wm_action_shade
;
1244 if (self
->functions
& OB_CLIENT_FUNC_CLOSE
)
1245 actions
[num
++] = prop_atoms
.net_wm_action_close
;
1246 if (self
->functions
& OB_CLIENT_FUNC_MOVE
)
1247 actions
[num
++] = prop_atoms
.net_wm_action_move
;
1248 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
)
1249 actions
[num
++] = prop_atoms
.net_wm_action_minimize
;
1250 if (self
->functions
& OB_CLIENT_FUNC_RESIZE
)
1251 actions
[num
++] = prop_atoms
.net_wm_action_resize
;
1252 if (self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
)
1253 actions
[num
++] = prop_atoms
.net_wm_action_fullscreen
;
1254 if (self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) {
1255 actions
[num
++] = prop_atoms
.net_wm_action_maximize_horz
;
1256 actions
[num
++] = prop_atoms
.net_wm_action_maximize_vert
;
1259 PROP_SETA32(self
->window
, net_wm_allowed_actions
, atom
, actions
, num
);
1261 /* make sure the window isn't breaking any rules now */
1263 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
) && self
->shaded
) {
1264 if (self
->frame
) client_shade(self
, FALSE
);
1265 else self
->shaded
= FALSE
;
1267 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
) && self
->iconic
) {
1268 if (self
->frame
) client_iconify(self
, FALSE
, TRUE
);
1269 else self
->iconic
= FALSE
;
1271 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) && self
->fullscreen
) {
1272 if (self
->frame
) client_fullscreen(self
, FALSE
, TRUE
);
1273 else self
->fullscreen
= FALSE
;
1275 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) && (self
->max_horz
||
1277 if (self
->frame
) client_maximize(self
, FALSE
, 0, TRUE
);
1278 else self
->max_vert
= self
->max_horz
= FALSE
;
1282 void client_reconfigure(ObClient
*self
)
1284 /* by making this pass FALSE for user, we avoid the emacs event storm where
1285 every configurenotify causes an update in its normal hints, i think this
1286 is generally what we want anyways... */
1287 client_configure(self
, OB_CORNER_TOPLEFT
, self
->area
.x
, self
->area
.y
,
1288 self
->area
.width
, self
->area
.height
, FALSE
, TRUE
);
1291 void client_update_wmhints(ObClient
*self
)
1294 gboolean ur
= FALSE
;
1297 /* assume a window takes input if it doesnt specify */
1298 self
->can_focus
= TRUE
;
1300 if ((hints
= XGetWMHints(ob_display
, self
->window
)) != NULL
) {
1301 if (hints
->flags
& InputHint
)
1302 self
->can_focus
= hints
->input
;
1304 /* only do this when first managing the window *AND* when we aren't
1306 if (ob_state() != OB_STATE_STARTING
&& self
->frame
== NULL
)
1307 if (hints
->flags
& StateHint
)
1308 self
->iconic
= hints
->initial_state
== IconicState
;
1310 if (hints
->flags
& XUrgencyHint
)
1313 if (!(hints
->flags
& WindowGroupHint
))
1314 hints
->window_group
= None
;
1316 /* did the group state change? */
1317 if (hints
->window_group
!=
1318 (self
->group
? self
->group
->leader
: None
)) {
1319 /* remove from the old group if there was one */
1320 if (self
->group
!= NULL
) {
1321 /* remove transients of the group */
1322 for (it
= self
->group
->members
; it
; it
= it
->next
)
1323 self
->transients
= g_slist_remove(self
->transients
,
1326 /* remove myself from parents in the group */
1327 if (self
->transient_for
== OB_TRAN_GROUP
) {
1328 for (it
= self
->group
->members
; it
; it
= it
->next
) {
1329 ObClient
*c
= it
->data
;
1331 if (c
!= self
&& !c
->transient_for
)
1332 c
->transients
= g_slist_remove(c
->transients
,
1337 group_remove(self
->group
, self
);
1340 if (hints
->window_group
!= None
) {
1341 self
->group
= group_add(hints
->window_group
, self
);
1343 /* i can only have transients from the group if i am not
1345 if (!self
->transient_for
) {
1346 /* add other transients of the group that are already
1348 for (it
= self
->group
->members
; it
; it
= it
->next
) {
1349 ObClient
*c
= it
->data
;
1350 if (c
!= self
&& c
->transient_for
== OB_TRAN_GROUP
)
1352 g_slist_append(self
->transients
, c
);
1357 /* because the self->transient flag wont change from this call,
1358 we don't need to update the window's type and such, only its
1359 transient_for, and the transients lists of other windows in
1360 the group may be affected */
1361 client_update_transient_for(self
);
1364 /* the WM_HINTS can contain an icon */
1365 client_update_icons(self
);
1370 if (ur
!= self
->urgent
) {
1372 /* fire the urgent callback if we're mapped, otherwise, wait until
1373 after we're mapped */
1375 client_urgent_notify(self
);
1379 void client_update_title(ObClient
*self
)
1385 gboolean read_title
;
1388 old_title
= self
->title
;
1391 if (!PROP_GETS(self
->window
, net_wm_name
, utf8
, &data
))
1392 /* try old x stuff */
1393 if (!PROP_GETS(self
->window
, wm_name
, locale
, &data
))
1394 data
= g_strdup("Unnamed Window");
1396 /* did the title change? then reset the title_count */
1397 if (old_title
&& 0 != strncmp(old_title
, data
, strlen(data
)))
1398 self
->title_count
= 1;
1400 /* look for duplicates and append a number */
1402 for (it
= client_list
; it
; it
= it
->next
)
1403 if (it
->data
!= self
) {
1404 ObClient
*c
= it
->data
;
1405 if (0 == strncmp(c
->title
, data
, strlen(data
)))
1406 nums
|= 1 << c
->title_count
;
1408 /* find first free number */
1409 for (i
= 1; i
<= 32; ++i
)
1410 if (!(nums
& (1 << i
))) {
1411 if (self
->title_count
== 1 || i
== 1)
1412 self
->title_count
= i
;
1415 /* dont display the number for the first window */
1416 if (self
->title_count
> 1) {
1418 ndata
= g_strdup_printf("%s - [%u]", data
, self
->title_count
);
1423 PROP_SETS(self
->window
, net_wm_visible_name
, data
);
1428 frame_adjust_title(self
->frame
);
1432 /* update the icon title */
1434 g_free(self
->icon_title
);
1438 if (!PROP_GETS(self
->window
, net_wm_icon_name
, utf8
, &data
))
1439 /* try old x stuff */
1440 if (!PROP_GETS(self
->window
, wm_icon_name
, locale
, &data
)) {
1441 data
= g_strdup(self
->title
);
1445 /* append the title count, dont display the number for the first window */
1446 if (read_title
&& self
->title_count
> 1) {
1447 char *vdata
, *ndata
;
1448 ndata
= g_strdup_printf(" - [%u]", self
->title_count
);
1449 vdata
= g_strconcat(data
, ndata
, NULL
);
1455 PROP_SETS(self
->window
, net_wm_visible_icon_name
, data
);
1457 self
->icon_title
= data
;
1460 void client_update_class(ObClient
*self
)
1465 if (self
->name
) g_free(self
->name
);
1466 if (self
->class) g_free(self
->class);
1467 if (self
->role
) g_free(self
->role
);
1469 self
->name
= self
->class = self
->role
= NULL
;
1471 if (PROP_GETSS(self
->window
, wm_class
, locale
, &data
)) {
1473 self
->name
= g_strdup(data
[0]);
1475 self
->class = g_strdup(data
[1]);
1480 if (PROP_GETS(self
->window
, wm_window_role
, locale
, &s
))
1483 if (self
->name
== NULL
) self
->name
= g_strdup("");
1484 if (self
->class == NULL
) self
->class = g_strdup("");
1485 if (self
->role
== NULL
) self
->role
= g_strdup("");
1488 void client_update_strut(ObClient
*self
)
1492 gboolean got
= FALSE
;
1495 if (PROP_GETA32(self
->window
, net_wm_strut_partial
, cardinal
,
1499 STRUT_PARTIAL_SET(strut
,
1500 data
[0], data
[2], data
[1], data
[3],
1501 data
[4], data
[5], data
[8], data
[9],
1502 data
[6], data
[7], data
[10], data
[11]);
1508 PROP_GETA32(self
->window
, net_wm_strut
, cardinal
, &data
, &num
)) {
1511 STRUT_PARTIAL_SET(strut
,
1512 data
[0], data
[2], data
[1], data
[3],
1513 0, 0, 0, 0, 0, 0, 0, 0);
1519 STRUT_PARTIAL_SET(strut
, 0, 0, 0, 0,
1520 0, 0, 0, 0, 0, 0, 0, 0);
1522 if (!STRUT_EQUAL(strut
, self
->strut
)) {
1523 self
->strut
= strut
;
1525 /* updating here is pointless while we're being mapped cuz we're not in
1526 the client list yet */
1528 screen_update_areas();
1532 void client_update_icons(ObClient
*self
)
1538 for (i
= 0; i
< self
->nicons
; ++i
)
1539 g_free(self
->icons
[i
].data
);
1540 if (self
->nicons
> 0)
1541 g_free(self
->icons
);
1544 if (PROP_GETA32(self
->window
, net_wm_icon
, cardinal
, &data
, &num
)) {
1545 /* figure out how many valid icons are in here */
1547 while (num
- i
> 2) {
1551 if (i
> num
|| w
*h
== 0) break;
1555 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1557 /* store the icons */
1559 for (j
= 0; j
< self
->nicons
; ++j
) {
1562 w
= self
->icons
[j
].width
= data
[i
++];
1563 h
= self
->icons
[j
].height
= data
[i
++];
1565 if (w
*h
== 0) continue;
1567 self
->icons
[j
].data
= g_new(RrPixel32
, w
* h
);
1568 for (x
= 0, y
= 0, t
= 0; t
< w
* h
; ++t
, ++x
, ++i
) {
1573 self
->icons
[j
].data
[t
] =
1574 (((data
[i
] >> 24) & 0xff) << RrDefaultAlphaOffset
) +
1575 (((data
[i
] >> 16) & 0xff) << RrDefaultRedOffset
) +
1576 (((data
[i
] >> 8) & 0xff) << RrDefaultGreenOffset
) +
1577 (((data
[i
] >> 0) & 0xff) << RrDefaultBlueOffset
);
1583 } else if (PROP_GETA32(self
->window
, kwm_win_icon
,
1584 kwm_win_icon
, &data
, &num
)) {
1587 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1588 xerror_set_ignore(TRUE
);
1589 if (!RrPixmapToRGBA(ob_rr_inst
,
1591 &self
->icons
[self
->nicons
-1].width
,
1592 &self
->icons
[self
->nicons
-1].height
,
1593 &self
->icons
[self
->nicons
-1].data
)) {
1594 g_free(&self
->icons
[self
->nicons
-1]);
1597 xerror_set_ignore(FALSE
);
1603 if ((hints
= XGetWMHints(ob_display
, self
->window
))) {
1604 if (hints
->flags
& IconPixmapHint
) {
1606 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1607 xerror_set_ignore(TRUE
);
1608 if (!RrPixmapToRGBA(ob_rr_inst
,
1610 (hints
->flags
& IconMaskHint
?
1611 hints
->icon_mask
: None
),
1612 &self
->icons
[self
->nicons
-1].width
,
1613 &self
->icons
[self
->nicons
-1].height
,
1614 &self
->icons
[self
->nicons
-1].data
)){
1615 g_free(&self
->icons
[self
->nicons
-1]);
1618 xerror_set_ignore(FALSE
);
1625 frame_adjust_icon(self
->frame
);
1628 static void client_change_state(ObClient
*self
)
1631 guint32 netstate
[11];
1634 state
[0] = self
->wmstate
;
1636 PROP_SETA32(self
->window
, wm_state
, wm_state
, state
, 2);
1640 netstate
[num
++] = prop_atoms
.net_wm_state_modal
;
1642 netstate
[num
++] = prop_atoms
.net_wm_state_shaded
;
1644 netstate
[num
++] = prop_atoms
.net_wm_state_hidden
;
1645 if (self
->skip_taskbar
)
1646 netstate
[num
++] = prop_atoms
.net_wm_state_skip_taskbar
;
1647 if (self
->skip_pager
)
1648 netstate
[num
++] = prop_atoms
.net_wm_state_skip_pager
;
1649 if (self
->fullscreen
)
1650 netstate
[num
++] = prop_atoms
.net_wm_state_fullscreen
;
1652 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_vert
;
1654 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_horz
;
1656 netstate
[num
++] = prop_atoms
.net_wm_state_above
;
1658 netstate
[num
++] = prop_atoms
.net_wm_state_below
;
1659 if (self
->undecorated
)
1660 netstate
[num
++] = prop_atoms
.ob_wm_state_undecorated
;
1661 PROP_SETA32(self
->window
, net_wm_state
, atom
, netstate
, num
);
1663 client_calc_layer(self
);
1666 frame_adjust_state(self
->frame
);
1669 ObClient
*client_search_focus_tree(ObClient
*self
)
1674 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
) {
1675 if (client_focused(it
->data
)) return it
->data
;
1676 if ((ret
= client_search_focus_tree(it
->data
))) return ret
;
1681 ObClient
*client_search_focus_tree_full(ObClient
*self
)
1683 if (self
->transient_for
) {
1684 if (self
->transient_for
!= OB_TRAN_GROUP
) {
1685 return client_search_focus_tree_full(self
->transient_for
);
1688 gboolean recursed
= FALSE
;
1690 for (it
= self
->group
->members
; it
; it
= it
->next
)
1691 if (!((ObClient
*)it
->data
)->transient_for
) {
1693 if ((c
= client_search_focus_tree_full(it
->data
)))
1702 /* this function checks the whole tree, the client_search_focus_tree~
1703 does not, so we need to check this window */
1704 if (client_focused(self
))
1706 return client_search_focus_tree(self
);
1709 static ObStackingLayer
calc_layer(ObClient
*self
)
1713 if (self
->fullscreen
&&
1714 (client_focused(self
) || client_search_focus_tree(self
)))
1715 l
= OB_STACKING_LAYER_FULLSCREEN
;
1716 else if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
1717 l
= OB_STACKING_LAYER_DESKTOP
;
1718 else if (self
->type
== OB_CLIENT_TYPE_DOCK
) {
1719 if (self
->above
) l
= OB_STACKING_LAYER_DOCK_ABOVE
;
1720 else if (self
->below
) l
= OB_STACKING_LAYER_DOCK_BELOW
;
1721 else l
= OB_STACKING_LAYER_NORMAL
;
1723 else if (self
->above
) l
= OB_STACKING_LAYER_ABOVE
;
1724 else if (self
->below
) l
= OB_STACKING_LAYER_BELOW
;
1725 else l
= OB_STACKING_LAYER_NORMAL
;
1730 static void client_calc_layer_recursive(ObClient
*self
, ObClient
*orig
,
1731 ObStackingLayer l
, gboolean raised
)
1733 ObStackingLayer old
, own
;
1737 own
= calc_layer(self
);
1738 self
->layer
= l
> own
? l
: own
;
1740 for (it
= self
->transients
; it
; it
= it
->next
)
1741 client_calc_layer_recursive(it
->data
, orig
,
1742 l
, raised
? raised
: l
!= old
);
1744 if (!raised
&& l
!= old
)
1745 if (orig
->frame
) { /* only restack if the original window is managed */
1746 /* XXX add_non_intrusive ever? */
1747 stacking_remove(CLIENT_AS_WINDOW(self
));
1748 stacking_add(CLIENT_AS_WINDOW(self
));
1752 void client_calc_layer(ObClient
*self
)
1759 /* transients take on the layer of their parents */
1760 self
= client_search_top_transient(self
);
1762 l
= calc_layer(self
);
1764 client_calc_layer_recursive(self
, orig
, l
, FALSE
);
1767 gboolean
client_should_show(ObClient
*self
)
1769 if (self
->iconic
) return FALSE
;
1770 else if (!(self
->desktop
== screen_desktop
||
1771 self
->desktop
== DESKTOP_ALL
)) return FALSE
;
1772 else if (client_normal(self
) && screen_showing_desktop
) return FALSE
;
1777 static void client_showhide(ObClient
*self
)
1780 if (client_should_show(self
))
1781 frame_show(self
->frame
);
1783 frame_hide(self
->frame
);
1786 gboolean
client_normal(ObClient
*self
) {
1787 return ! (self
->type
== OB_CLIENT_TYPE_DESKTOP
||
1788 self
->type
== OB_CLIENT_TYPE_DOCK
||
1789 self
->type
== OB_CLIENT_TYPE_SPLASH
);
1792 static void client_apply_startup_state(ObClient
*self
)
1794 /* these are in a carefully crafted order.. */
1797 self
->iconic
= FALSE
;
1798 client_iconify(self
, TRUE
, FALSE
);
1800 if (self
->fullscreen
) {
1801 self
->fullscreen
= FALSE
;
1802 client_fullscreen(self
, TRUE
, FALSE
);
1804 if (self
->undecorated
) {
1805 self
->undecorated
= FALSE
;
1806 client_set_undecorated(self
, TRUE
);
1809 self
->shaded
= FALSE
;
1810 client_shade(self
, TRUE
);
1813 client_urgent_notify(self
);
1815 if (self
->max_vert
&& self
->max_horz
) {
1816 self
->max_vert
= self
->max_horz
= FALSE
;
1817 client_maximize(self
, TRUE
, 0, FALSE
);
1818 } else if (self
->max_vert
) {
1819 self
->max_vert
= FALSE
;
1820 client_maximize(self
, TRUE
, 2, FALSE
);
1821 } else if (self
->max_horz
) {
1822 self
->max_horz
= FALSE
;
1823 client_maximize(self
, TRUE
, 1, FALSE
);
1826 /* nothing to do for the other states:
1835 void client_configure_full(ObClient
*self
, ObCorner anchor
,
1836 int x
, int y
, int w
, int h
,
1837 gboolean user
, gboolean final
,
1838 gboolean force_reply
)
1841 gboolean send_resize_client
;
1842 gboolean moved
= FALSE
, resized
= FALSE
;
1843 guint fdecor
= self
->frame
->decorations
;
1844 gboolean fhorz
= self
->frame
->max_horz
;
1846 /* make the frame recalculate its dimentions n shit without changing
1847 anything visible for real, this way the constraints below can work with
1848 the updated frame dimensions. */
1849 frame_adjust_area(self
->frame
, TRUE
, TRUE
, TRUE
);
1851 /* gets the frame's position */
1852 frame_client_gravity(self
->frame
, &x
, &y
);
1854 /* these positions are frame positions, not client positions */
1856 /* set the size and position if fullscreen */
1857 if (self
->fullscreen
) {
1860 XF86VidModeModeLine mode
;
1865 i
= client_monitor(self
);
1866 a
= screen_physical_area_monitor(i
);
1869 if (i
== 0 && /* primary head */
1870 extensions_vidmode
&&
1871 XF86VidModeGetViewPort(ob_display
, ob_screen
, &x
, &y
) &&
1872 /* get the mode last so the mode.privsize isnt freed incorrectly */
1873 XF86VidModeGetModeLine(ob_display
, ob_screen
, &dot
, &mode
)) {
1878 if (mode
.privsize
) XFree(mode
.private);
1888 user
= FALSE
; /* ignore that increment etc shit when in fullscreen */
1892 a
= screen_area_monitor(self
->desktop
, client_monitor(self
));
1894 /* set the size and position if maximized */
1895 if (self
->max_horz
) {
1897 w
= a
->width
- self
->frame
->size
.left
- self
->frame
->size
.right
;
1899 if (self
->max_vert
) {
1901 h
= a
->height
- self
->frame
->size
.top
- self
->frame
->size
.bottom
;
1905 /* gets the client's position */
1906 frame_frame_gravity(self
->frame
, &x
, &y
);
1908 /* these override the above states! if you cant move you can't move! */
1910 if (!(self
->functions
& OB_CLIENT_FUNC_MOVE
)) {
1914 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
)) {
1915 w
= self
->area
.width
;
1916 h
= self
->area
.height
;
1920 if (!(w
== self
->area
.width
&& h
== self
->area
.height
)) {
1921 int basew
, baseh
, minw
, minh
;
1923 /* base size is substituted with min size if not specified */
1924 if (self
->base_size
.width
|| self
->base_size
.height
) {
1925 basew
= self
->base_size
.width
;
1926 baseh
= self
->base_size
.height
;
1928 basew
= self
->min_size
.width
;
1929 baseh
= self
->min_size
.height
;
1931 /* min size is substituted with base size if not specified */
1932 if (self
->min_size
.width
|| self
->min_size
.height
) {
1933 minw
= self
->min_size
.width
;
1934 minh
= self
->min_size
.height
;
1936 minw
= self
->base_size
.width
;
1937 minh
= self
->base_size
.height
;
1940 /* if this is a user-requested resize, then check against min/max
1943 /* smaller than min size or bigger than max size? */
1944 if (w
> self
->max_size
.width
) w
= self
->max_size
.width
;
1945 if (w
< minw
) w
= minw
;
1946 if (h
> self
->max_size
.height
) h
= self
->max_size
.height
;
1947 if (h
< minh
) h
= minh
;
1952 /* keep to the increments */
1953 w
/= self
->size_inc
.width
;
1954 h
/= self
->size_inc
.height
;
1956 /* you cannot resize to nothing */
1957 if (basew
+ w
< 1) w
= 1 - basew
;
1958 if (baseh
+ h
< 1) h
= 1 - baseh
;
1960 /* store the logical size */
1961 SIZE_SET(self
->logical_size
,
1962 self
->size_inc
.width
> 1 ? w
: w
+ basew
,
1963 self
->size_inc
.height
> 1 ? h
: h
+ baseh
);
1965 w
*= self
->size_inc
.width
;
1966 h
*= self
->size_inc
.height
;
1971 /* adjust the height to match the width for the aspect ratios.
1972 for this, min size is not substituted for base size ever. */
1973 w
-= self
->base_size
.width
;
1974 h
-= self
->base_size
.height
;
1976 if (self
->min_ratio
)
1977 if (h
* self
->min_ratio
> w
) {
1978 h
= (int)(w
/ self
->min_ratio
);
1980 /* you cannot resize to nothing */
1983 w
= (int)(h
* self
->min_ratio
);
1986 if (self
->max_ratio
)
1987 if (h
* self
->max_ratio
< w
) {
1988 h
= (int)(w
/ self
->max_ratio
);
1990 /* you cannot resize to nothing */
1993 w
= (int)(h
* self
->min_ratio
);
1997 w
+= self
->base_size
.width
;
1998 h
+= self
->base_size
.height
;
2005 case OB_CORNER_TOPLEFT
:
2007 case OB_CORNER_TOPRIGHT
:
2008 x
-= w
- self
->area
.width
;
2010 case OB_CORNER_BOTTOMLEFT
:
2011 y
-= h
- self
->area
.height
;
2013 case OB_CORNER_BOTTOMRIGHT
:
2014 x
-= w
- self
->area
.width
;
2015 y
-= h
- self
->area
.height
;
2019 moved
= x
!= self
->area
.x
|| y
!= self
->area
.y
;
2020 resized
= w
!= self
->area
.width
|| h
!= self
->area
.height
;
2022 oldw
= self
->area
.width
;
2023 oldh
= self
->area
.height
;
2024 RECT_SET(self
->area
, x
, y
, w
, h
);
2026 /* for app-requested resizes, always resize if 'resized' is true.
2027 for user-requested ones, only resize if final is true, or when
2028 resizing in redraw mode */
2029 send_resize_client
= ((!user
&& resized
) ||
2031 (resized
&& config_redraw_resize
))));
2033 /* if the client is enlarging, the resize the client before the frame */
2034 if (send_resize_client
&& user
&& (w
> oldw
|| h
> oldh
))
2035 XResizeWindow(ob_display
, self
->window
, MAX(w
, oldw
), MAX(h
, oldh
));
2037 /* move/resize the frame to match the request */
2039 if (self
->decorations
!= fdecor
|| self
->max_horz
!= fhorz
)
2040 moved
= resized
= TRUE
;
2042 if (moved
|| resized
)
2043 frame_adjust_area(self
->frame
, moved
, resized
, FALSE
);
2045 if (!resized
&& (force_reply
|| ((!user
&& moved
) || (user
&& final
))))
2048 event
.type
= ConfigureNotify
;
2049 event
.xconfigure
.display
= ob_display
;
2050 event
.xconfigure
.event
= self
->window
;
2051 event
.xconfigure
.window
= self
->window
;
2053 /* root window real coords */
2054 event
.xconfigure
.x
= self
->frame
->area
.x
+ self
->frame
->size
.left
-
2056 event
.xconfigure
.y
= self
->frame
->area
.y
+ self
->frame
->size
.top
-
2058 event
.xconfigure
.width
= w
;
2059 event
.xconfigure
.height
= h
;
2060 event
.xconfigure
.border_width
= 0;
2061 event
.xconfigure
.above
= self
->frame
->plate
;
2062 event
.xconfigure
.override_redirect
= FALSE
;
2063 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
,
2064 FALSE
, StructureNotifyMask
, &event
);
2068 /* if the client is shrinking, then resize the frame before the client */
2069 if (send_resize_client
&& (!user
|| (w
<= oldw
|| h
<= oldh
)))
2070 XResizeWindow(ob_display
, self
->window
, w
, h
);
2075 void client_fullscreen(ObClient
*self
, gboolean fs
, gboolean savearea
)
2079 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) || /* can't */
2080 self
->fullscreen
== fs
) return; /* already done */
2082 self
->fullscreen
= fs
;
2083 client_change_state(self
); /* change the state hints on the client,
2084 and adjust out layer/stacking */
2088 self
->pre_fullscreen_area
= self
->area
;
2090 /* these are not actually used cuz client_configure will set them
2091 as appropriate when the window is fullscreened */
2096 if (self
->pre_fullscreen_area
.width
> 0 &&
2097 self
->pre_fullscreen_area
.height
> 0)
2099 x
= self
->pre_fullscreen_area
.x
;
2100 y
= self
->pre_fullscreen_area
.y
;
2101 w
= self
->pre_fullscreen_area
.width
;
2102 h
= self
->pre_fullscreen_area
.height
;
2103 RECT_SET(self
->pre_fullscreen_area
, 0, 0, 0, 0);
2105 /* pick some fallbacks... */
2106 a
= screen_area_monitor(self
->desktop
, 0);
2107 x
= a
->x
+ a
->width
/ 4;
2108 y
= a
->y
+ a
->height
/ 4;
2114 client_setup_decor_and_functions(self
);
2116 client_move_resize(self
, x
, y
, w
, h
);
2118 /* try focus us when we go into fullscreen mode */
2122 static void client_iconify_recursive(ObClient
*self
,
2123 gboolean iconic
, gboolean curdesk
)
2126 gboolean changed
= FALSE
;
2129 if (self
->iconic
!= iconic
) {
2130 ob_debug("%sconifying window: 0x%lx\n", (iconic
? "I" : "Uni"),
2133 self
->iconic
= iconic
;
2136 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
) {
2139 old
= self
->wmstate
;
2140 self
->wmstate
= IconicState
;
2141 if (old
!= self
->wmstate
)
2142 PROP_MSG(self
->window
, kde_wm_change_state
,
2143 self
->wmstate
, 1, 0, 0);
2145 self
->ignore_unmaps
++;
2146 /* we unmap the client itself so that we can get MapRequest
2147 events, and because the ICCCM tells us to! */
2148 XUnmapWindow(ob_display
, self
->window
);
2150 /* update the focus lists.. iconic windows go to the bottom of
2151 the list, put the new iconic window at the 'top of the
2153 focus_order_to_top(self
);
2161 client_set_desktop(self
, screen_desktop
, FALSE
);
2163 old
= self
->wmstate
;
2164 self
->wmstate
= self
->shaded
? IconicState
: NormalState
;
2165 if (old
!= self
->wmstate
)
2166 PROP_MSG(self
->window
, kde_wm_change_state
,
2167 self
->wmstate
, 1, 0, 0);
2169 XMapWindow(ob_display
, self
->window
);
2171 /* this puts it after the current focused window */
2172 focus_order_remove(self
);
2173 focus_order_add_new(self
);
2175 /* this is here cuz with the VIDMODE extension, the viewport can
2176 change while a fullscreen window is iconic, and when it
2177 uniconifies, it would be nice if it did so to the new position
2179 client_reconfigure(self
);
2186 client_change_state(self
);
2187 client_showhide(self
);
2188 screen_update_areas();
2191 /* iconify all transients */
2192 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
)
2193 if (it
->data
!= self
) client_iconify_recursive(it
->data
,
2197 void client_iconify(ObClient
*self
, gboolean iconic
, gboolean curdesk
)
2199 /* move up the transient chain as far as possible first */
2200 self
= client_search_top_transient(self
);
2202 client_iconify_recursive(client_search_top_transient(self
),
2206 void client_maximize(ObClient
*self
, gboolean max
, int dir
, gboolean savearea
)
2210 g_assert(dir
== 0 || dir
== 1 || dir
== 2);
2211 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
)) return; /* can't */
2213 /* check if already done */
2215 if (dir
== 0 && self
->max_horz
&& self
->max_vert
) return;
2216 if (dir
== 1 && self
->max_horz
) return;
2217 if (dir
== 2 && self
->max_vert
) return;
2219 if (dir
== 0 && !self
->max_horz
&& !self
->max_vert
) return;
2220 if (dir
== 1 && !self
->max_horz
) return;
2221 if (dir
== 2 && !self
->max_vert
) return;
2224 /* we just tell it to configure in the same place and client_configure
2225 worries about filling the screen with the window */
2228 w
= self
->area
.width
;
2229 h
= self
->area
.height
;
2233 if ((dir
== 0 || dir
== 1) && !self
->max_horz
) { /* horz */
2234 RECT_SET(self
->pre_max_area
,
2235 self
->area
.x
, self
->pre_max_area
.y
,
2236 self
->area
.width
, self
->pre_max_area
.height
);
2238 if ((dir
== 0 || dir
== 2) && !self
->max_vert
) { /* vert */
2239 RECT_SET(self
->pre_max_area
,
2240 self
->pre_max_area
.x
, self
->area
.y
,
2241 self
->pre_max_area
.width
, self
->area
.height
);
2247 a
= screen_area_monitor(self
->desktop
, 0);
2248 if ((dir
== 0 || dir
== 1) && self
->max_horz
) { /* horz */
2249 if (self
->pre_max_area
.width
> 0) {
2250 x
= self
->pre_max_area
.x
;
2251 w
= self
->pre_max_area
.width
;
2253 RECT_SET(self
->pre_max_area
, 0, self
->pre_max_area
.y
,
2254 0, self
->pre_max_area
.height
);
2256 /* pick some fallbacks... */
2257 x
= a
->x
+ a
->width
/ 4;
2261 if ((dir
== 0 || dir
== 2) && self
->max_vert
) { /* vert */
2262 if (self
->pre_max_area
.height
> 0) {
2263 y
= self
->pre_max_area
.y
;
2264 h
= self
->pre_max_area
.height
;
2266 RECT_SET(self
->pre_max_area
, self
->pre_max_area
.x
, 0,
2267 self
->pre_max_area
.width
, 0);
2269 /* pick some fallbacks... */
2270 y
= a
->y
+ a
->height
/ 4;
2276 if (dir
== 0 || dir
== 1) /* horz */
2277 self
->max_horz
= max
;
2278 if (dir
== 0 || dir
== 2) /* vert */
2279 self
->max_vert
= max
;
2281 client_change_state(self
); /* change the state hints on the client */
2283 client_setup_decor_and_functions(self
);
2285 client_move_resize(self
, x
, y
, w
, h
);
2288 void client_shade(ObClient
*self
, gboolean shade
)
2290 if ((!(self
->functions
& OB_CLIENT_FUNC_SHADE
) &&
2291 shade
) || /* can't shade */
2292 self
->shaded
== shade
) return; /* already done */
2294 /* when we're iconic, don't change the wmstate */
2295 if (!self
->iconic
) {
2298 old
= self
->wmstate
;
2299 self
->wmstate
= shade
? IconicState
: NormalState
;
2300 if (old
!= self
->wmstate
)
2301 PROP_MSG(self
->window
, kde_wm_change_state
,
2302 self
->wmstate
, 1, 0, 0);
2305 self
->shaded
= shade
;
2306 client_change_state(self
);
2307 /* resize the frame to just the titlebar */
2308 frame_adjust_area(self
->frame
, FALSE
, FALSE
, FALSE
);
2311 void client_close(ObClient
*self
)
2315 if (!(self
->functions
& OB_CLIENT_FUNC_CLOSE
)) return;
2317 /* in the case that the client provides no means to requesting that it
2318 close, we just kill it */
2319 if (!self
->delete_window
)
2323 XXX: itd be cool to do timeouts and shit here for killing the client's
2325 like... if the window is around after 5 seconds, then the close button
2326 turns a nice red, and if this function is called again, the client is
2330 ce
.xclient
.type
= ClientMessage
;
2331 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
2332 ce
.xclient
.display
= ob_display
;
2333 ce
.xclient
.window
= self
->window
;
2334 ce
.xclient
.format
= 32;
2335 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_delete_window
;
2336 ce
.xclient
.data
.l
[1] = event_lasttime
;
2337 ce
.xclient
.data
.l
[2] = 0l;
2338 ce
.xclient
.data
.l
[3] = 0l;
2339 ce
.xclient
.data
.l
[4] = 0l;
2340 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
2343 void client_kill(ObClient
*self
)
2345 XKillClient(ob_display
, self
->window
);
2348 void client_set_desktop_recursive(ObClient
*self
,
2349 guint target
, gboolean donthide
)
2354 if (target
!= self
->desktop
) {
2356 ob_debug("Setting desktop %u\n", target
+1);
2358 g_assert(target
< screen_num_desktops
|| target
== DESKTOP_ALL
);
2360 /* remove from the old desktop(s) */
2361 focus_order_remove(self
);
2363 old
= self
->desktop
;
2364 self
->desktop
= target
;
2365 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, target
);
2366 /* the frame can display the current desktop state */
2367 frame_adjust_state(self
->frame
);
2368 /* 'move' the window to the new desktop */
2370 client_showhide(self
);
2371 /* raise if it was not already on the desktop */
2372 if (old
!= DESKTOP_ALL
)
2374 screen_update_areas();
2376 /* add to the new desktop(s) */
2377 if (config_focus_new
)
2378 focus_order_to_top(self
);
2380 focus_order_to_bottom(self
);
2383 /* move all transients */
2384 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
)
2385 if (it
->data
!= self
) client_set_desktop_recursive(it
->data
,
2389 void client_set_desktop(ObClient
*self
, guint target
, gboolean donthide
)
2391 client_set_desktop_recursive(client_search_top_transient(self
),
2395 ObClient
*client_search_modal_child(ObClient
*self
)
2400 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
) {
2401 ObClient
*c
= it
->data
;
2402 if ((ret
= client_search_modal_child(c
))) return ret
;
2403 if (c
->modal
) return c
;
2408 gboolean
client_validate(ObClient
*self
)
2412 XSync(ob_display
, FALSE
); /* get all events on the server */
2414 if (XCheckTypedWindowEvent(ob_display
, self
->window
, DestroyNotify
, &e
) ||
2415 XCheckTypedWindowEvent(ob_display
, self
->window
, UnmapNotify
, &e
)) {
2416 XPutBackEvent(ob_display
, &e
);
2423 void client_set_wm_state(ObClient
*self
, long state
)
2425 if (state
== self
->wmstate
) return; /* no change */
2429 client_iconify(self
, TRUE
, TRUE
);
2432 client_iconify(self
, FALSE
, TRUE
);
2437 void client_set_state(ObClient
*self
, Atom action
, long data1
, long data2
)
2439 gboolean shaded
= self
->shaded
;
2440 gboolean fullscreen
= self
->fullscreen
;
2441 gboolean undecorated
= self
->undecorated
;
2442 gboolean max_horz
= self
->max_horz
;
2443 gboolean max_vert
= self
->max_vert
;
2446 if (!(action
== prop_atoms
.net_wm_state_add
||
2447 action
== prop_atoms
.net_wm_state_remove
||
2448 action
== prop_atoms
.net_wm_state_toggle
))
2449 /* an invalid action was passed to the client message, ignore it */
2452 for (i
= 0; i
< 2; ++i
) {
2453 Atom state
= i
== 0 ? data1
: data2
;
2455 if (!state
) continue;
2457 /* if toggling, then pick whether we're adding or removing */
2458 if (action
== prop_atoms
.net_wm_state_toggle
) {
2459 if (state
== prop_atoms
.net_wm_state_modal
)
2460 action
= self
->modal
? prop_atoms
.net_wm_state_remove
:
2461 prop_atoms
.net_wm_state_add
;
2462 else if (state
== prop_atoms
.net_wm_state_maximized_vert
)
2463 action
= self
->max_vert
? prop_atoms
.net_wm_state_remove
:
2464 prop_atoms
.net_wm_state_add
;
2465 else if (state
== prop_atoms
.net_wm_state_maximized_horz
)
2466 action
= self
->max_horz
? prop_atoms
.net_wm_state_remove
:
2467 prop_atoms
.net_wm_state_add
;
2468 else if (state
== prop_atoms
.net_wm_state_shaded
)
2469 action
= shaded
? prop_atoms
.net_wm_state_remove
:
2470 prop_atoms
.net_wm_state_add
;
2471 else if (state
== prop_atoms
.net_wm_state_skip_taskbar
)
2472 action
= self
->skip_taskbar
?
2473 prop_atoms
.net_wm_state_remove
:
2474 prop_atoms
.net_wm_state_add
;
2475 else if (state
== prop_atoms
.net_wm_state_skip_pager
)
2476 action
= self
->skip_pager
?
2477 prop_atoms
.net_wm_state_remove
:
2478 prop_atoms
.net_wm_state_add
;
2479 else if (state
== prop_atoms
.net_wm_state_fullscreen
)
2480 action
= fullscreen
?
2481 prop_atoms
.net_wm_state_remove
:
2482 prop_atoms
.net_wm_state_add
;
2483 else if (state
== prop_atoms
.net_wm_state_above
)
2484 action
= self
->above
? prop_atoms
.net_wm_state_remove
:
2485 prop_atoms
.net_wm_state_add
;
2486 else if (state
== prop_atoms
.net_wm_state_below
)
2487 action
= self
->below
? prop_atoms
.net_wm_state_remove
:
2488 prop_atoms
.net_wm_state_add
;
2489 else if (state
== prop_atoms
.ob_wm_state_undecorated
)
2490 action
= undecorated
? prop_atoms
.net_wm_state_remove
:
2491 prop_atoms
.net_wm_state_add
;
2494 if (action
== prop_atoms
.net_wm_state_add
) {
2495 if (state
== prop_atoms
.net_wm_state_modal
) {
2496 /* XXX raise here or something? */
2498 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
2500 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
2502 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
2504 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
2505 self
->skip_taskbar
= TRUE
;
2506 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
2507 self
->skip_pager
= TRUE
;
2508 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
2510 } else if (state
== prop_atoms
.net_wm_state_above
) {
2512 } else if (state
== prop_atoms
.net_wm_state_below
) {
2514 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
2518 } else { /* action == prop_atoms.net_wm_state_remove */
2519 if (state
== prop_atoms
.net_wm_state_modal
) {
2520 self
->modal
= FALSE
;
2521 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
2523 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
2525 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
2527 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
2528 self
->skip_taskbar
= FALSE
;
2529 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
2530 self
->skip_pager
= FALSE
;
2531 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
2533 } else if (state
== prop_atoms
.net_wm_state_above
) {
2534 self
->above
= FALSE
;
2535 } else if (state
== prop_atoms
.net_wm_state_below
) {
2536 self
->below
= FALSE
;
2537 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
2538 undecorated
= FALSE
;
2542 if (max_horz
!= self
->max_horz
|| max_vert
!= self
->max_vert
) {
2543 if (max_horz
!= self
->max_horz
&& max_vert
!= self
->max_vert
) {
2545 if (max_horz
== max_vert
) { /* both going the same way */
2546 client_maximize(self
, max_horz
, 0, TRUE
);
2548 client_maximize(self
, max_horz
, 1, TRUE
);
2549 client_maximize(self
, max_vert
, 2, TRUE
);
2553 if (max_horz
!= self
->max_horz
)
2554 client_maximize(self
, max_horz
, 1, TRUE
);
2556 client_maximize(self
, max_vert
, 2, TRUE
);
2559 /* change fullscreen state before shading, as it will affect if the window
2561 if (fullscreen
!= self
->fullscreen
)
2562 client_fullscreen(self
, fullscreen
, TRUE
);
2563 if (shaded
!= self
->shaded
)
2564 client_shade(self
, shaded
);
2565 if (undecorated
!= self
->undecorated
)
2566 client_set_undecorated(self
, undecorated
);
2567 client_calc_layer(self
);
2568 client_change_state(self
); /* change the hint to reflect these changes */
2571 ObClient
*client_focus_target(ObClient
*self
)
2575 /* if we have a modal child, then focus it, not us */
2576 child
= client_search_modal_child(client_search_top_transient(self
));
2577 if (child
) return child
;
2581 gboolean
client_can_focus(ObClient
*self
)
2585 /* choose the correct target */
2586 self
= client_focus_target(self
);
2588 if (!self
->frame
->visible
)
2591 if (!(self
->can_focus
|| self
->focus_notify
))
2594 /* do a check to see if the window has already been unmapped or destroyed
2595 do this intelligently while watching out for unmaps we've generated
2596 (ignore_unmaps > 0) */
2597 if (XCheckTypedWindowEvent(ob_display
, self
->window
,
2598 DestroyNotify
, &ev
)) {
2599 XPutBackEvent(ob_display
, &ev
);
2602 while (XCheckTypedWindowEvent(ob_display
, self
->window
,
2603 UnmapNotify
, &ev
)) {
2604 if (self
->ignore_unmaps
) {
2605 self
->ignore_unmaps
--;
2607 XPutBackEvent(ob_display
, &ev
);
2615 gboolean
client_focus(ObClient
*self
)
2617 /* choose the correct target */
2618 self
= client_focus_target(self
);
2620 if (!client_can_focus(self
)) {
2621 if (!self
->frame
->visible
) {
2622 /* update the focus lists */
2623 focus_order_to_top(self
);
2628 if (self
->can_focus
) {
2629 /* RevertToPointerRoot causes much more headache than RevertToNone, so
2630 I choose to use it always, hopefully to find errors quicker, if any
2631 are left. (I hate X. I hate focus events.)
2633 Update: Changing this to RevertToNone fixed a bug with mozilla (bug
2634 #799. So now it is RevertToNone again.
2636 XSetInputFocus(ob_display
, self
->window
, RevertToNone
,
2640 if (self
->focus_notify
) {
2642 ce
.xclient
.type
= ClientMessage
;
2643 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
2644 ce
.xclient
.display
= ob_display
;
2645 ce
.xclient
.window
= self
->window
;
2646 ce
.xclient
.format
= 32;
2647 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_take_focus
;
2648 ce
.xclient
.data
.l
[1] = event_lasttime
;
2649 ce
.xclient
.data
.l
[2] = 0l;
2650 ce
.xclient
.data
.l
[3] = 0l;
2651 ce
.xclient
.data
.l
[4] = 0l;
2652 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
2656 ob_debug("%sively focusing %lx at %d\n",
2657 (self
->can_focus
? "act" : "pass"),
2658 self
->window
, (int) event_lasttime
);
2661 /* Cause the FocusIn to come back to us. Important for desktop switches,
2662 since otherwise we'll have no FocusIn on the queue and send it off to
2663 the focus_backup. */
2664 XSync(ob_display
, FALSE
);
2668 void client_unfocus(ObClient
*self
)
2670 if (focus_client
== self
) {
2672 ob_debug("client_unfocus for %lx\n", self
->window
);
2674 focus_fallback(OB_FOCUS_FALLBACK_UNFOCUSING
);
2678 void client_activate(ObClient
*self
, gboolean here
)
2680 if (client_normal(self
) && screen_showing_desktop
)
2681 screen_show_desktop(FALSE
);
2683 client_iconify(self
, FALSE
, here
);
2684 if (self
->desktop
!= DESKTOP_ALL
&&
2685 self
->desktop
!= screen_desktop
) {
2687 client_set_desktop(self
, screen_desktop
, FALSE
);
2689 screen_set_desktop(self
->desktop
);
2690 } else if (!self
->frame
->visible
)
2691 /* if its not visible for other reasons, then don't mess
2695 client_shade(self
, FALSE
);
2699 /* we do this an action here. this is rather important. this is because
2700 we want the results from the focus change to take place BEFORE we go
2701 about raising the window. when a fullscreen window loses focus, we need
2702 this or else the raise wont be able to raise above the to-lose-focus
2703 fullscreen window. */
2707 void client_raise(ObClient
*self
)
2709 action_run_string("Raise", self
);
2712 void client_lower(ObClient
*self
)
2714 action_run_string("Raise", self
);
2717 gboolean
client_focused(ObClient
*self
)
2719 return self
== focus_client
;
2722 static ObClientIcon
* client_icon_recursive(ObClient
*self
, int w
, int h
)
2725 /* si is the smallest image >= req */
2726 /* li is the largest image < req */
2727 unsigned long size
, smallest
= 0xffffffff, largest
= 0, si
= 0, li
= 0;
2729 if (!self
->nicons
) {
2730 ObClientIcon
*parent
= NULL
;
2732 if (self
->transient_for
) {
2733 if (self
->transient_for
!= OB_TRAN_GROUP
)
2734 parent
= client_icon_recursive(self
->transient_for
, w
, h
);
2737 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
2738 ObClient
*c
= it
->data
;
2739 if (c
!= self
&& !c
->transient_for
) {
2740 if ((parent
= client_icon_recursive(c
, w
, h
)))
2750 for (i
= 0; i
< self
->nicons
; ++i
) {
2751 size
= self
->icons
[i
].width
* self
->icons
[i
].height
;
2752 if (size
< smallest
&& size
>= (unsigned)(w
* h
)) {
2756 if (size
> largest
&& size
<= (unsigned)(w
* h
)) {
2761 if (largest
== 0) /* didnt find one smaller than the requested size */
2762 return &self
->icons
[si
];
2763 return &self
->icons
[li
];
2766 const ObClientIcon
* client_icon(ObClient
*self
, int w
, int h
)
2769 static ObClientIcon deficon
;
2771 if (!(ret
= client_icon_recursive(self
, w
, h
))) {
2772 deficon
.width
= deficon
.height
= 48;
2773 deficon
.data
= ob_rr_theme
->def_win_icon
;
2779 /* this be mostly ripped from fvwm */
2780 ObClient
*client_find_directional(ObClient
*c
, ObDirection dir
)
2782 int my_cx
, my_cy
, his_cx
, his_cy
;
2785 int score
, best_score
;
2786 ObClient
*best_client
, *cur
;
2792 /* first, find the centre coords of the currently focused window */
2793 my_cx
= c
->frame
->area
.x
+ c
->frame
->area
.width
/ 2;
2794 my_cy
= c
->frame
->area
.y
+ c
->frame
->area
.height
/ 2;
2799 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
2802 /* the currently selected window isn't interesting */
2805 if (!client_normal(cur
))
2807 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
2811 if(client_focus_target(cur
) == cur
&&
2812 !(cur
->can_focus
|| cur
->focus_notify
))
2815 /* find the centre coords of this window, from the
2816 * currently focused window's point of view */
2817 his_cx
= (cur
->frame
->area
.x
- my_cx
)
2818 + cur
->frame
->area
.width
/ 2;
2819 his_cy
= (cur
->frame
->area
.y
- my_cy
)
2820 + cur
->frame
->area
.height
/ 2;
2822 if(dir
== OB_DIRECTION_NORTHEAST
|| dir
== OB_DIRECTION_SOUTHEAST
||
2823 dir
== OB_DIRECTION_SOUTHWEST
|| dir
== OB_DIRECTION_NORTHWEST
) {
2825 /* Rotate the diagonals 45 degrees counterclockwise.
2826 * To do this, multiply the matrix /+h +h\ with the
2827 * vector (x y). \-h +h/
2828 * h = sqrt(0.5). We can set h := 1 since absolute
2829 * distance doesn't matter here. */
2830 tx
= his_cx
+ his_cy
;
2831 his_cy
= -his_cx
+ his_cy
;
2836 case OB_DIRECTION_NORTH
:
2837 case OB_DIRECTION_SOUTH
:
2838 case OB_DIRECTION_NORTHEAST
:
2839 case OB_DIRECTION_SOUTHWEST
:
2840 offset
= (his_cx
< 0) ? -his_cx
: his_cx
;
2841 distance
= ((dir
== OB_DIRECTION_NORTH
||
2842 dir
== OB_DIRECTION_NORTHEAST
) ?
2845 case OB_DIRECTION_EAST
:
2846 case OB_DIRECTION_WEST
:
2847 case OB_DIRECTION_SOUTHEAST
:
2848 case OB_DIRECTION_NORTHWEST
:
2849 offset
= (his_cy
< 0) ? -his_cy
: his_cy
;
2850 distance
= ((dir
== OB_DIRECTION_WEST
||
2851 dir
== OB_DIRECTION_NORTHWEST
) ?
2856 /* the target must be in the requested direction */
2860 /* Calculate score for this window. The smaller the better. */
2861 score
= distance
+ offset
;
2863 /* windows more than 45 degrees off the direction are
2864 * heavily penalized and will only be chosen if nothing
2865 * else within a million pixels */
2866 if(offset
> distance
)
2869 if(best_score
== -1 || score
< best_score
)
2877 void client_set_layer(ObClient
*self
, int layer
)
2881 self
->above
= FALSE
;
2882 } else if (layer
== 0) {
2883 self
->below
= self
->above
= FALSE
;
2885 self
->below
= FALSE
;
2888 client_calc_layer(self
);
2889 client_change_state(self
); /* reflect this in the state hints */
2892 void client_set_undecorated(ObClient
*self
, gboolean undecorated
)
2894 if (self
->undecorated
!= undecorated
) {
2895 self
->undecorated
= undecorated
;
2896 client_setup_decor_and_functions(self
);
2897 client_change_state(self
); /* reflect this in the state hints */
2901 guint
client_monitor(ObClient
*self
)
2905 for (i
= 0; i
< screen_num_monitors
; ++i
) {
2906 Rect
*area
= screen_physical_area_monitor(i
);
2907 if (RECT_INTERSECTS_RECT(*area
, self
->frame
->area
))
2910 if (i
== screen_num_monitors
) i
= 0;
2911 g_assert(i
< screen_num_monitors
);
2915 ObClient
*client_search_top_transient(ObClient
*self
)
2917 /* move up the transient chain as far as possible */
2918 if (self
->transient_for
) {
2919 if (self
->transient_for
!= OB_TRAN_GROUP
) {
2920 return client_search_top_transient(self
->transient_for
);
2924 g_assert(self
->group
);
2926 for (it
= self
->group
->members
; it
; it
= it
->next
) {
2927 ObClient
*c
= it
->data
;
2929 /* checking transient_for prevents infinate loops! */
2930 if (c
!= self
&& !c
->transient_for
)
2941 ObClient
*client_search_focus_parent(ObClient
*self
)
2943 if (self
->transient_for
) {
2944 if (self
->transient_for
!= OB_TRAN_GROUP
) {
2945 if (client_focused(self
->transient_for
))
2946 return self
->transient_for
;
2950 for (it
= self
->group
->members
; it
; it
= it
->next
) {
2951 ObClient
*c
= it
->data
;
2953 /* checking transient_for prevents infinate loops! */
2954 if (c
!= self
&& !c
->transient_for
)
2955 if (client_focused(c
))
2964 ObClient
*client_search_parent(ObClient
*self
, ObClient
*search
)
2966 if (self
->transient_for
) {
2967 if (self
->transient_for
!= OB_TRAN_GROUP
) {
2968 if (self
->transient_for
== search
)
2973 for (it
= self
->group
->members
; it
; it
= it
->next
) {
2974 ObClient
*c
= it
->data
;
2976 /* checking transient_for prevents infinate loops! */
2977 if (c
!= self
&& !c
->transient_for
)
2987 ObClient
*client_search_transient(ObClient
*self
, ObClient
*search
)
2991 for (sit
= self
->transients
; sit
; sit
= g_slist_next(sit
)) {
2992 if (sit
->data
== search
)
2994 if (client_search_transient(sit
->data
, search
))
3000 void client_update_sm_client_id(ObClient
*self
)
3002 g_free(self
->sm_client_id
);
3003 self
->sm_client_id
= NULL
;
3005 if (!PROP_GETS(self
->window
, sm_client_id
, locale
, &self
->sm_client_id
) &&
3007 PROP_GETS(self
->group
->leader
, sm_client_id
, locale
,
3008 &self
->sm_client_id
);
3011 /* finds the nearest edge in the given direction from the current client
3012 * note to self: the edge is the -frame- edge (the actual one), not the
3015 int client_directional_edge_search(ObClient
*c
, ObDirection dir
)
3018 int my_edge_start
, my_edge_end
, my_offset
;
3025 a
= screen_area(c
->desktop
);
3028 case OB_DIRECTION_NORTH
:
3029 my_edge_start
= c
->frame
->area
.x
;
3030 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3031 my_offset
= c
->frame
->area
.y
;
3033 /* default: top of screen */
3036 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
3037 int his_edge_start
, his_edge_end
, his_offset
;
3038 ObClient
*cur
= it
->data
;
3042 if(!client_normal(cur
))
3044 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3049 his_edge_start
= cur
->frame
->area
.x
;
3050 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3051 his_offset
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3053 if(his_offset
+ 1 > my_offset
)
3056 if(his_offset
< dest
)
3059 if(his_edge_start
>= my_edge_start
&&
3060 his_edge_start
<= my_edge_end
)
3063 if(my_edge_start
>= his_edge_start
&&
3064 my_edge_start
<= his_edge_end
)
3069 case OB_DIRECTION_SOUTH
:
3070 my_edge_start
= c
->frame
->area
.x
;
3071 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3072 my_offset
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3074 /* default: bottom of screen */
3075 dest
= a
->y
+ a
->height
;
3077 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
3078 int his_edge_start
, his_edge_end
, his_offset
;
3079 ObClient
*cur
= it
->data
;
3083 if(!client_normal(cur
))
3085 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3090 his_edge_start
= cur
->frame
->area
.x
;
3091 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3092 his_offset
= cur
->frame
->area
.y
;
3095 if(his_offset
- 1 < my_offset
)
3098 if(his_offset
> dest
)
3101 if(his_edge_start
>= my_edge_start
&&
3102 his_edge_start
<= my_edge_end
)
3105 if(my_edge_start
>= his_edge_start
&&
3106 my_edge_start
<= his_edge_end
)
3111 case OB_DIRECTION_WEST
:
3112 my_edge_start
= c
->frame
->area
.y
;
3113 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3114 my_offset
= c
->frame
->area
.x
;
3116 /* default: leftmost egde of screen */
3119 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
3120 int his_edge_start
, his_edge_end
, his_offset
;
3121 ObClient
*cur
= it
->data
;
3125 if(!client_normal(cur
))
3127 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3132 his_edge_start
= cur
->frame
->area
.y
;
3133 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3134 his_offset
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3136 if(his_offset
+ 1 > my_offset
)
3139 if(his_offset
< dest
)
3142 if(his_edge_start
>= my_edge_start
&&
3143 his_edge_start
<= my_edge_end
)
3146 if(my_edge_start
>= his_edge_start
&&
3147 my_edge_start
<= his_edge_end
)
3153 case OB_DIRECTION_EAST
:
3154 my_edge_start
= c
->frame
->area
.y
;
3155 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3156 my_offset
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3158 /* default: rightmost edge of screen */
3159 dest
= a
->x
+ a
->width
;
3161 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
3162 int his_edge_start
, his_edge_end
, his_offset
;
3163 ObClient
*cur
= it
->data
;
3167 if(!client_normal(cur
))
3169 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
3174 his_edge_start
= cur
->frame
->area
.y
;
3175 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3176 his_offset
= cur
->frame
->area
.x
;
3178 if(his_offset
- 1 < my_offset
)
3181 if(his_offset
> dest
)
3184 if(his_edge_start
>= my_edge_start
&&
3185 his_edge_start
<= my_edge_end
)
3188 if(my_edge_start
>= his_edge_start
&&
3189 my_edge_start
<= his_edge_end
)
3194 case OB_DIRECTION_NORTHEAST
:
3195 case OB_DIRECTION_SOUTHEAST
:
3196 case OB_DIRECTION_NORTHWEST
:
3197 case OB_DIRECTION_SOUTHWEST
:
3198 /* not implemented */
3200 g_assert_not_reached();
3205 ObClient
* client_under_pointer()
3209 ObClient
*ret
= NULL
;
3211 if (screen_pointer_pos(&x
, &y
)) {
3212 for (it
= stacking_list
; it
!= NULL
; it
= it
->next
) {
3213 if (WINDOW_IS_CLIENT(it
->data
)) {
3214 ObClient
*c
= WINDOW_AS_CLIENT(it
->data
);
3215 if (c
->frame
->visible
&&
3216 RECT_CONTAINS(c
->frame
->area
, x
, y
)) {
3226 gboolean
client_has_group_siblings(ObClient
*self
)
3228 return self
->group
&& self
->group
->members
->next
;