3 #include "startupnotify.h"
7 #include "moveresize.h"
10 #include "extensions.h"
20 #include "menuframe.h"
23 #include "render/render.h"
26 #include <X11/Xutil.h>
28 /*! The event mask to grab on client windows */
29 #define CLIENT_EVENTMASK (PropertyChangeMask | FocusChangeMask | \
32 #define CLIENT_NOPROPAGATEMASK (ButtonPressMask | ButtonReleaseMask | \
35 GList
*client_list
= NULL
;
36 GSList
*client_destructors
= NULL
;
38 static void client_get_all(ObClient
*self
);
39 static void client_toggle_border(ObClient
*self
, gboolean show
);
40 static void client_get_startup_id(ObClient
*self
);
41 static void client_get_area(ObClient
*self
);
42 static void client_get_desktop(ObClient
*self
);
43 static void client_get_state(ObClient
*self
);
44 static void client_get_shaped(ObClient
*self
);
45 static void client_get_mwm_hints(ObClient
*self
);
46 static void client_get_gravity(ObClient
*self
);
47 static void client_showhide(ObClient
*self
);
48 static void client_change_allowed_actions(ObClient
*self
);
49 static void client_change_state(ObClient
*self
);
50 static void client_apply_startup_state(ObClient
*self
);
51 static void client_restore_session_state(ObClient
*self
);
52 static void client_restore_session_stacking(ObClient
*self
);
53 static void client_urgent_notify(ObClient
*self
);
55 void client_startup(gboolean reconfig
)
62 void client_shutdown(gboolean reconfig
)
66 void client_add_destructor(GDestroyNotify func
)
68 client_destructors
= g_slist_prepend(client_destructors
, (gpointer
)func
);
71 void client_remove_destructor(GDestroyNotify func
)
73 client_destructors
= g_slist_remove(client_destructors
, (gpointer
)func
);
76 void client_set_list()
78 Window
*windows
, *win_it
;
80 guint size
= g_list_length(client_list
);
82 /* create an array of the window ids */
84 windows
= g_new(Window
, size
);
86 for (it
= client_list
; it
!= NULL
; it
= it
->next
, ++win_it
)
87 *win_it
= ((ObClient
*)it
->data
)->window
;
91 PROP_SETA32(RootWindow(ob_display
, ob_screen
),
92 net_client_list
, window
, (guint32
*)windows
, size
);
101 void client_foreach_transient(ObClient *self, ObClientForeachFunc func, void *data)
105 for (it = self->transients; it; it = it->next) {
106 if (!func(it->data, data)) return;
107 client_foreach_transient(it->data, func, data);
111 void client_foreach_ancestor(ObClient *self, ObClientForeachFunc func, void *data)
113 if (self->transient_for) {
114 if (self->transient_for != OB_TRAN_GROUP) {
115 if (!func(self->transient_for, data)) return;
116 client_foreach_ancestor(self->transient_for, func, data);
120 for (it = self->group->members; it; it = it->next)
121 if (it->data != self &&
122 !((ObClient*)it->data)->transient_for) {
123 if (!func(it->data, data)) return;
124 client_foreach_ancestor(it->data, func, data);
131 void client_manage_all()
133 unsigned int i
, j
, nchild
;
136 XWindowAttributes attrib
;
138 XQueryTree(ob_display
, RootWindow(ob_display
, ob_screen
),
139 &w
, &w
, &children
, &nchild
);
141 /* remove all icon windows from the list */
142 for (i
= 0; i
< nchild
; i
++) {
143 if (children
[i
] == None
) continue;
144 wmhints
= XGetWMHints(ob_display
, children
[i
]);
146 if ((wmhints
->flags
& IconWindowHint
) &&
147 (wmhints
->icon_window
!= children
[i
]))
148 for (j
= 0; j
< nchild
; j
++)
149 if (children
[j
] == wmhints
->icon_window
) {
157 for (i
= 0; i
< nchild
; ++i
) {
158 if (children
[i
] == None
)
160 if (XGetWindowAttributes(ob_display
, children
[i
], &attrib
)) {
161 if (attrib
.override_redirect
) continue;
163 if (attrib
.map_state
!= IsUnmapped
)
164 client_manage(children
[i
]);
169 if (config_focus_new
)
170 focus_fallback(OB_FOCUS_FALLBACK_NOFOCUS
);
173 void client_manage(Window window
)
177 XWindowAttributes attrib
;
178 XSetWindowAttributes attrib_set
;
180 gboolean activate
= FALSE
;
184 /* check if it has already been unmapped by the time we started mapping
185 the grab does a sync so we don't have to here */
186 if (XCheckTypedWindowEvent(ob_display
, window
, DestroyNotify
, &e
) ||
187 XCheckTypedWindowEvent(ob_display
, window
, UnmapNotify
, &e
)) {
188 XPutBackEvent(ob_display
, &e
);
191 return; /* don't manage it */
194 /* make sure it isn't an override-redirect window */
195 if (!XGetWindowAttributes(ob_display
, window
, &attrib
) ||
196 attrib
.override_redirect
) {
198 return; /* don't manage it */
201 /* is the window a docking app */
202 if ((wmhint
= XGetWMHints(ob_display
, window
))) {
203 if ((wmhint
->flags
& StateHint
) &&
204 wmhint
->initial_state
== WithdrawnState
) {
205 dock_add(window
, wmhint
);
213 ob_debug("Managing window: %lx\n", window
);
215 /* choose the events we want to receive on the CLIENT window */
216 attrib_set
.event_mask
= CLIENT_EVENTMASK
;
217 attrib_set
.do_not_propagate_mask
= CLIENT_NOPROPAGATEMASK
;
218 XChangeWindowAttributes(ob_display
, window
,
219 CWEventMask
|CWDontPropagate
, &attrib_set
);
222 /* create the ObClient struct, and populate it from the hints on the
224 self
= g_new0(ObClient
, 1);
225 self
->obwin
.type
= Window_Client
;
226 self
->window
= window
;
228 /* non-zero defaults */
229 self
->title_count
= 1;
230 self
->wmstate
= NormalState
;
232 self
->decorate
= TRUE
;
233 self
->desktop
= screen_num_desktops
; /* always an invalid value */
235 client_get_all(self
);
236 client_restore_session_state(self
);
238 sn_app_started(self
->class);
240 client_change_state(self
);
242 /* remove the client's border (and adjust re gravity) */
243 client_toggle_border(self
, FALSE
);
245 /* specify that if we exit, the window should not be destroyed and should
246 be reparented back to root automatically */
247 XChangeSaveSet(ob_display
, window
, SetModeInsert
);
249 /* create the decoration frame for the client window */
250 self
->frame
= frame_new();
252 frame_grab_client(self
->frame
, self
);
256 client_apply_startup_state(self
);
258 /* update the focus lists */
259 focus_order_add_new(self
);
261 stacking_add(CLIENT_AS_WINDOW(self
));
262 client_restore_session_stacking(self
);
264 /* focus the new window? */
265 if (ob_state() != OB_STATE_STARTING
&& config_focus_new
&&
266 /* note the check against Type_Normal/Dialog, not client_normal(self),
267 which would also include other types. in this case we want more
268 strict rules for focus */
269 (self
->type
== OB_CLIENT_TYPE_NORMAL
||
270 self
->type
== OB_CLIENT_TYPE_DIALOG
))
274 if (self
->desktop
!= screen_desktop
) {
275 /* activate the window */
278 gboolean group_foc
= FALSE
;
283 for (it
= self
->group
->members
; it
; it
= it
->next
)
285 if (client_focused(it
->data
))
293 (!self
->transient_for
&& (!self
->group
||
294 !self
->group
->members
->next
))) ||
295 client_search_focus_tree_full(self
) ||
297 !client_normal(focus_client
))
299 /* activate the window */
306 if (ob_state() == OB_STATE_RUNNING
) {
307 int x
= self
->area
.x
, ox
= x
;
308 int y
= self
->area
.y
, oy
= y
;
310 place_client(self
, &x
, &y
);
312 /* make sure the window is visible */
313 client_find_onscreen(self
, &x
, &y
,
314 self
->frame
->area
.width
,
315 self
->frame
->area
.height
,
316 client_normal(self
));
318 if (x
!= ox
|| y
!= oy
)
319 client_move(self
, x
, y
);
322 client_showhide(self
);
324 /* use client_focus instead of client_activate cuz client_activate does
325 stuff like switch desktops etc and I'm not interested in all that when
326 a window maps since its not based on an action from the user like
327 clicking a window to activate is. so keep the new window out of the way
329 if (activate
) client_focus(self
);
331 /* client_activate does this but we aret using it so we have to do it
333 if (screen_showing_desktop
)
334 screen_show_desktop(FALSE
);
336 /* add to client list/map */
337 client_list
= g_list_append(client_list
, self
);
338 g_hash_table_insert(window_map
, &self
->window
, self
);
340 /* this has to happen after we're in the client_list */
341 screen_update_areas();
343 /* update the list hints */
346 keyboard_grab_for_client(self
, TRUE
);
347 mouse_grab_for_client(self
, TRUE
);
349 ob_debug("Managed window 0x%lx (%s)\n", window
, self
->class);
352 void client_unmanage_all()
354 while (client_list
!= NULL
)
355 client_unmanage(client_list
->data
);
358 void client_unmanage(ObClient
*self
)
363 ob_debug("Unmanaging window: %lx (%s)\n", self
->window
, self
->class);
365 g_assert(self
!= NULL
);
367 keyboard_grab_for_client(self
, FALSE
);
368 mouse_grab_for_client(self
, FALSE
);
370 /* remove the window from our save set */
371 XChangeSaveSet(ob_display
, self
->window
, SetModeDelete
);
373 /* we dont want events no more */
374 XSelectInput(ob_display
, self
->window
, NoEventMask
);
376 frame_hide(self
->frame
);
378 client_list
= g_list_remove(client_list
, self
);
379 stacking_remove(self
);
380 g_hash_table_remove(window_map
, &self
->window
);
382 /* update the focus lists */
383 focus_order_remove(self
);
385 /* once the client is out of the list, update the struts to remove it's
387 screen_update_areas();
389 /* tell our parent(s) that we're gone */
390 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
393 for (it
= self
->group
->members
; it
; it
= it
->next
)
394 if (it
->data
!= self
)
395 ((ObClient
*)it
->data
)->transients
=
396 g_slist_remove(((ObClient
*)it
->data
)->transients
, self
);
397 } else if (self
->transient_for
) { /* transient of window */
398 self
->transient_for
->transients
=
399 g_slist_remove(self
->transient_for
->transients
, self
);
402 /* tell our transients that we're gone */
403 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
) {
404 if (((ObClient
*)it
->data
)->transient_for
!= OB_TRAN_GROUP
) {
405 ((ObClient
*)it
->data
)->transient_for
= NULL
;
406 client_calc_layer(it
->data
);
410 for (it
= client_destructors
; it
; it
= g_slist_next(it
)) {
411 GDestroyNotify func
= (GDestroyNotify
) it
->data
;
415 if (focus_client
== self
) {
418 /* focus the last focused window on the desktop, and ignore enter
419 events from the unmap so it doesnt mess with the focus */
420 while (XCheckTypedEvent(ob_display
, EnterNotify
, &e
));
421 client_unfocus(self
);
424 /* remove from its group */
426 group_remove(self
->group
, self
);
430 /* give the client its border back */
431 client_toggle_border(self
, TRUE
);
433 /* reparent the window out of the frame, and free the frame */
434 frame_release_client(self
->frame
, self
);
437 if (ob_state() != OB_STATE_EXITING
) {
438 /* these values should not be persisted across a window
440 PROP_ERASE(self
->window
, net_wm_desktop
);
441 PROP_ERASE(self
->window
, net_wm_state
);
442 PROP_ERASE(self
->window
, wm_state
);
444 /* if we're left in an iconic state, the client wont be mapped. this is
445 bad, since we will no longer be managing the window on restart */
447 XMapWindow(ob_display
, self
->window
);
451 ob_debug("Unmanaged window 0x%lx\n", self
->window
);
453 /* free all data allocated in the client struct */
454 g_slist_free(self
->transients
);
455 for (j
= 0; j
< self
->nicons
; ++j
)
456 g_free(self
->icons
[j
].data
);
457 if (self
->nicons
> 0)
460 g_free(self
->icon_title
);
466 /* update the list hints */
470 static void client_urgent_notify(ObClient
*self
)
473 frame_flash_start(self
->frame
);
475 frame_flash_stop(self
->frame
);
478 static void client_restore_session_state(ObClient
*self
)
482 if (!(it
= session_state_find(self
)))
485 self
->session
= it
->data
;
487 RECT_SET(self
->area
, self
->session
->x
, self
->session
->y
,
488 self
->session
->w
, self
->session
->h
);
489 self
->positioned
= TRUE
;
490 XResizeWindow(ob_display
, self
->window
,
491 self
->session
->w
, self
->session
->h
);
493 self
->desktop
= (self
->session
->desktop
== DESKTOP_ALL
?
494 self
->session
->desktop
:
495 MIN(screen_num_desktops
- 1, self
->session
->desktop
));
496 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
498 self
->shaded
= self
->session
->shaded
;
499 self
->iconic
= self
->session
->iconic
;
500 self
->skip_pager
= self
->session
->skip_pager
;
501 self
->skip_taskbar
= self
->session
->skip_taskbar
;
502 self
->fullscreen
= self
->session
->fullscreen
;
503 self
->above
= self
->session
->above
;
504 self
->below
= self
->session
->below
;
505 self
->max_horz
= self
->session
->max_horz
;
506 self
->max_vert
= self
->session
->max_vert
;
509 static void client_restore_session_stacking(ObClient
*self
)
513 if (!self
->session
) return;
515 it
= g_list_find(session_saved_state
, self
->session
);
516 for (it
= g_list_previous(it
); it
; it
= g_list_previous(it
)) {
519 for (cit
= client_list
; cit
; cit
= g_list_next(cit
))
520 if (session_state_cmp(it
->data
, cit
->data
))
523 client_calc_layer(self
);
524 stacking_below(CLIENT_AS_WINDOW(self
),
525 CLIENT_AS_WINDOW(cit
->data
));
531 void client_move_onscreen(ObClient
*self
, gboolean rude
)
533 int x
= self
->area
.x
;
534 int y
= self
->area
.y
;
535 if (client_find_onscreen(self
, &x
, &y
,
536 self
->frame
->area
.width
,
537 self
->frame
->area
.height
, rude
)) {
538 client_move(self
, x
, y
);
542 gboolean
client_find_onscreen(ObClient
*self
, int *x
, int *y
, int w
, int h
,
546 int ox
= *x
, oy
= *y
;
548 frame_client_gravity(self
->frame
, x
, y
); /* get where the frame
551 /* XXX watch for xinerama dead areas */
553 a
= screen_area(self
->desktop
);
554 if (!self
->strut
.right
&& *x
>= a
->x
+ a
->width
- 1)
555 *x
= a
->x
+ a
->width
- self
->frame
->area
.width
;
556 if (!self
->strut
.bottom
&& *y
>= a
->y
+ a
->height
- 1)
557 *y
= a
->y
+ a
->height
- self
->frame
->area
.height
;
558 if (!self
->strut
.left
&& *x
+ self
->frame
->area
.width
- 1 < a
->x
)
560 if (!self
->strut
.top
&& *y
+ self
->frame
->area
.height
- 1 < a
->y
)
564 /* this is my MOZILLA BITCHSLAP. oh ya it fucking feels good.
565 Java can suck it too. */
567 /* dont let windows map/move into the strut unless they
568 are bigger than the available area */
570 if (!self
->strut
.left
&& *x
< a
->x
) *x
= a
->x
;
571 if (!self
->strut
.right
&& *x
+ w
> a
->x
+ a
->width
)
572 *x
= a
->x
+ a
->width
- w
;
574 if (h
<= a
->height
) {
575 if (!self
->strut
.top
&& *y
< a
->y
) *y
= a
->y
;
576 if (!self
->strut
.bottom
&& *y
+ h
> a
->y
+ a
->height
)
577 *y
= a
->y
+ a
->height
- h
;
581 frame_frame_gravity(self
->frame
, x
, y
); /* get where the client
584 return ox
!= *x
|| oy
!= *y
;
587 static void client_toggle_border(ObClient
*self
, gboolean show
)
589 /* adjust our idea of where the client is, based on its border. When the
590 border is removed, the client should now be considered to be in a
592 when re-adding the border to the client, the same operation needs to be
594 int oldx
= self
->area
.x
, oldy
= self
->area
.y
;
595 int x
= oldx
, y
= oldy
;
596 switch(self
->gravity
) {
598 case NorthWestGravity
:
600 case SouthWestGravity
:
602 case NorthEastGravity
:
604 case SouthEastGravity
:
605 if (show
) x
-= self
->border_width
* 2;
606 else x
+= self
->border_width
* 2;
613 if (show
) x
-= self
->border_width
;
614 else x
+= self
->border_width
;
617 switch(self
->gravity
) {
619 case NorthWestGravity
:
621 case NorthEastGravity
:
623 case SouthWestGravity
:
625 case SouthEastGravity
:
626 if (show
) y
-= self
->border_width
* 2;
627 else y
+= self
->border_width
* 2;
634 if (show
) y
-= self
->border_width
;
635 else y
+= self
->border_width
;
642 XSetWindowBorderWidth(ob_display
, self
->window
, self
->border_width
);
644 /* move the client so it is back it the right spot _with_ its
646 if (x
!= oldx
|| y
!= oldy
)
647 XMoveWindow(ob_display
, self
->window
, x
, y
);
649 XSetWindowBorderWidth(ob_display
, self
->window
, 0);
653 static void client_get_all(ObClient
*self
)
655 client_get_area(self
);
656 client_update_transient_for(self
);
657 client_update_wmhints(self
);
658 client_get_startup_id(self
);
659 client_get_desktop(self
);
660 client_get_state(self
);
661 client_get_shaped(self
);
663 g_message("self->iconic %d", self
->iconic
);
665 client_get_mwm_hints(self
);
666 client_get_type(self
);/* this can change the mwmhints for special cases */
668 client_update_protocols(self
);
670 client_get_gravity(self
); /* get the attribute gravity */
671 client_update_normal_hints(self
); /* this may override the attribute
674 /* got the type, the mwmhints, the protocols, and the normal hints
675 (min/max sizes), so we're ready to set up the decorations/functions */
676 client_setup_decor_and_functions(self
);
678 client_update_title(self
);
679 client_update_class(self
);
680 client_update_strut(self
);
681 client_update_icons(self
);
684 static void client_get_startup_id(ObClient
*self
)
686 if (!(PROP_GETS(self
->window
, net_startup_id
, utf8
, &self
->startup_id
)))
688 PROP_GETS(self
->group
->leader
,
689 net_startup_id
, utf8
, &self
->startup_id
);
692 static void client_get_area(ObClient
*self
)
694 XWindowAttributes wattrib
;
697 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
698 g_assert(ret
!= BadWindow
);
700 RECT_SET(self
->area
, wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
701 self
->border_width
= wattrib
.border_width
;
704 static void client_get_desktop(ObClient
*self
)
706 guint32 d
= screen_num_desktops
; /* an always-invalid value */
708 if (PROP_GET32(self
->window
, net_wm_desktop
, cardinal
, &d
)) {
709 if (d
>= screen_num_desktops
&& d
!= DESKTOP_ALL
)
710 self
->desktop
= screen_num_desktops
- 1;
714 gboolean trdesk
= FALSE
;
716 if (self
->transient_for
) {
717 if (self
->transient_for
!= OB_TRAN_GROUP
) {
718 self
->desktop
= self
->transient_for
->desktop
;
723 for (it
= self
->group
->members
; it
; it
= it
->next
)
724 if (it
->data
!= self
&&
725 !((ObClient
*)it
->data
)->transient_for
) {
726 self
->desktop
= ((ObClient
*)it
->data
)->desktop
;
733 /* try get from the startup-notification protocol */
734 if (sn_get_desktop(self
->startup_id
, &self
->desktop
)) {
735 if (self
->desktop
>= screen_num_desktops
&&
736 self
->desktop
!= DESKTOP_ALL
)
737 self
->desktop
= screen_num_desktops
- 1;
739 /* defaults to the current desktop */
740 self
->desktop
= screen_desktop
;
743 if (self
->desktop
!= d
) {
744 /* set the desktop hint, to make sure that it always exists */
745 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
749 static void client_get_state(ObClient
*self
)
754 if (PROP_GETA32(self
->window
, net_wm_state
, atom
, &state
, &num
)) {
756 for (i
= 0; i
< num
; ++i
) {
757 if (state
[i
] == prop_atoms
.net_wm_state_modal
)
759 else if (state
[i
] == prop_atoms
.net_wm_state_shaded
)
761 else if (state
[i
] == prop_atoms
.net_wm_state_hidden
)
763 else if (state
[i
] == prop_atoms
.net_wm_state_skip_taskbar
)
764 self
->skip_taskbar
= TRUE
;
765 else if (state
[i
] == prop_atoms
.net_wm_state_skip_pager
)
766 self
->skip_pager
= TRUE
;
767 else if (state
[i
] == prop_atoms
.net_wm_state_fullscreen
)
768 self
->fullscreen
= TRUE
;
769 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_vert
)
770 self
->max_vert
= TRUE
;
771 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_horz
)
772 self
->max_horz
= TRUE
;
773 else if (state
[i
] == prop_atoms
.net_wm_state_above
)
775 else if (state
[i
] == prop_atoms
.net_wm_state_below
)
783 static void client_get_shaped(ObClient
*self
)
785 self
->shaped
= FALSE
;
787 if (extensions_shape
) {
792 XShapeSelectInput(ob_display
, self
->window
, ShapeNotifyMask
);
794 XShapeQueryExtents(ob_display
, self
->window
, &s
, &foo
,
795 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
,
797 self
->shaped
= (s
!= 0);
802 void client_update_transient_for(ObClient
*self
)
805 ObClient
*target
= NULL
;
807 if (XGetTransientForHint(ob_display
, self
->window
, &t
)) {
808 self
->transient
= TRUE
;
809 if (t
!= self
->window
) { /* cant be transient to itself! */
810 target
= g_hash_table_lookup(window_map
, &t
);
811 /* if this happens then we need to check for it*/
812 g_assert(target
!= self
);
813 if (target
&& !WINDOW_IS_CLIENT(target
)) {
814 /* this can happen when a dialog is a child of
815 a dockapp, for example */
819 if (!target
&& self
->group
) {
820 /* not transient to a client, see if it is transient for a
822 if (t
== self
->group
->leader
||
824 t
== RootWindow(ob_display
, ob_screen
)) {
825 /* window is a transient for its group! */
826 target
= OB_TRAN_GROUP
;
831 self
->transient
= FALSE
;
833 /* if anything has changed... */
834 if (target
!= self
->transient_for
) {
835 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
838 /* remove from old parents */
839 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
840 ObClient
*c
= it
->data
;
841 if (c
!= self
&& !c
->transient_for
)
842 c
->transients
= g_slist_remove(c
->transients
, self
);
844 } else if (self
->transient_for
!= NULL
) { /* transient of window */
845 /* remove from old parent */
846 self
->transient_for
->transients
=
847 g_slist_remove(self
->transient_for
->transients
, self
);
849 self
->transient_for
= target
;
850 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
853 /* add to new parents */
854 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
855 ObClient
*c
= it
->data
;
856 if (c
!= self
&& !c
->transient_for
)
857 c
->transients
= g_slist_append(c
->transients
, self
);
860 /* remove all transients which are in the group, that causes
861 circlular pointer hell of doom */
862 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
864 for (sit
= self
->transients
; sit
; sit
= next
) {
865 next
= g_slist_next(sit
);
866 if (sit
->data
== it
->data
)
868 g_slist_delete_link(self
->transients
, sit
);
871 } else if (self
->transient_for
!= NULL
) { /* transient of window */
872 /* add to new parent */
873 self
->transient_for
->transients
=
874 g_slist_append(self
->transient_for
->transients
, self
);
879 static void client_get_mwm_hints(ObClient
*self
)
884 self
->mwmhints
.flags
= 0; /* default to none */
886 if (PROP_GETA32(self
->window
, motif_wm_hints
, motif_wm_hints
,
888 if (num
>= OB_MWM_ELEMENTS
) {
889 self
->mwmhints
.flags
= hints
[0];
890 self
->mwmhints
.functions
= hints
[1];
891 self
->mwmhints
.decorations
= hints
[2];
897 void client_get_type(ObClient
*self
)
904 if (PROP_GETA32(self
->window
, net_wm_window_type
, atom
, &val
, &num
)) {
905 /* use the first value that we know about in the array */
906 for (i
= 0; i
< num
; ++i
) {
907 if (val
[i
] == prop_atoms
.net_wm_window_type_desktop
)
908 self
->type
= OB_CLIENT_TYPE_DESKTOP
;
909 else if (val
[i
] == prop_atoms
.net_wm_window_type_dock
)
910 self
->type
= OB_CLIENT_TYPE_DOCK
;
911 else if (val
[i
] == prop_atoms
.net_wm_window_type_toolbar
)
912 self
->type
= OB_CLIENT_TYPE_TOOLBAR
;
913 else if (val
[i
] == prop_atoms
.net_wm_window_type_menu
)
914 self
->type
= OB_CLIENT_TYPE_MENU
;
915 else if (val
[i
] == prop_atoms
.net_wm_window_type_utility
)
916 self
->type
= OB_CLIENT_TYPE_UTILITY
;
917 else if (val
[i
] == prop_atoms
.net_wm_window_type_splash
)
918 self
->type
= OB_CLIENT_TYPE_SPLASH
;
919 else if (val
[i
] == prop_atoms
.net_wm_window_type_dialog
)
920 self
->type
= OB_CLIENT_TYPE_DIALOG
;
921 else if (val
[i
] == prop_atoms
.net_wm_window_type_normal
)
922 self
->type
= OB_CLIENT_TYPE_NORMAL
;
923 else if (val
[i
] == prop_atoms
.kde_net_wm_window_type_override
) {
924 /* prevent this window from getting any decor or
926 self
->mwmhints
.flags
&= (OB_MWM_FLAG_FUNCTIONS
|
927 OB_MWM_FLAG_DECORATIONS
);
928 self
->mwmhints
.decorations
= 0;
929 self
->mwmhints
.functions
= 0;
931 if (self
->type
!= (ObClientType
) -1)
932 break; /* grab the first legit type */
937 if (self
->type
== (ObClientType
) -1) {
938 /*the window type hint was not set, which means we either classify
939 ourself as a normal window or a dialog, depending on if we are a
942 self
->type
= OB_CLIENT_TYPE_DIALOG
;
944 self
->type
= OB_CLIENT_TYPE_NORMAL
;
948 void client_update_protocols(ObClient
*self
)
953 self
->focus_notify
= FALSE
;
954 self
->delete_window
= FALSE
;
956 if (PROP_GETA32(self
->window
, wm_protocols
, atom
, &proto
, &num_return
)) {
957 for (i
= 0; i
< num_return
; ++i
) {
958 if (proto
[i
] == prop_atoms
.wm_delete_window
) {
959 /* this means we can request the window to close */
960 self
->delete_window
= TRUE
;
961 } else if (proto
[i
] == prop_atoms
.wm_take_focus
)
962 /* if this protocol is requested, then the window will be
963 notified whenever we want it to receive focus */
964 self
->focus_notify
= TRUE
;
970 static void client_get_gravity(ObClient
*self
)
972 XWindowAttributes wattrib
;
975 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
976 g_assert(ret
!= BadWindow
);
977 self
->gravity
= wattrib
.win_gravity
;
980 void client_update_normal_hints(ObClient
*self
)
984 int oldgravity
= self
->gravity
;
987 self
->min_ratio
= 0.0f
;
988 self
->max_ratio
= 0.0f
;
989 SIZE_SET(self
->size_inc
, 1, 1);
990 SIZE_SET(self
->base_size
, 0, 0);
991 SIZE_SET(self
->min_size
, 0, 0);
992 SIZE_SET(self
->max_size
, G_MAXINT
, G_MAXINT
);
994 /* get the hints from the window */
995 if (XGetWMNormalHints(ob_display
, self
->window
, &size
, &ret
)) {
996 self
->positioned
= !!(size
.flags
& (PPosition
|USPosition
));
998 if (size
.flags
& PWinGravity
) {
999 self
->gravity
= size
.win_gravity
;
1001 /* if the client has a frame, i.e. has already been mapped and
1002 is changing its gravity */
1003 if (self
->frame
&& self
->gravity
!= oldgravity
) {
1004 /* move our idea of the client's position based on its new
1006 self
->area
.x
= self
->frame
->area
.x
;
1007 self
->area
.y
= self
->frame
->area
.y
;
1008 frame_frame_gravity(self
->frame
, &self
->area
.x
, &self
->area
.y
);
1012 if (size
.flags
& PAspect
) {
1013 if (size
.min_aspect
.y
)
1014 self
->min_ratio
= (float)size
.min_aspect
.x
/ size
.min_aspect
.y
;
1015 if (size
.max_aspect
.y
)
1016 self
->max_ratio
= (float)size
.max_aspect
.x
/ size
.max_aspect
.y
;
1019 if (size
.flags
& PMinSize
)
1020 SIZE_SET(self
->min_size
, size
.min_width
, size
.min_height
);
1022 if (size
.flags
& PMaxSize
)
1023 SIZE_SET(self
->max_size
, size
.max_width
, size
.max_height
);
1025 if (size
.flags
& PBaseSize
)
1026 SIZE_SET(self
->base_size
, size
.base_width
, size
.base_height
);
1028 if (size
.flags
& PResizeInc
)
1029 SIZE_SET(self
->size_inc
, size
.width_inc
, size
.height_inc
);
1033 void client_setup_decor_and_functions(ObClient
*self
)
1035 /* start with everything (cept fullscreen) */
1037 (OB_FRAME_DECOR_TITLEBAR
|
1038 (ob_rr_theme
->show_handle
? OB_FRAME_DECOR_HANDLE
: 0) |
1039 OB_FRAME_DECOR_GRIPS
|
1040 OB_FRAME_DECOR_BORDER
|
1041 OB_FRAME_DECOR_ICON
|
1042 OB_FRAME_DECOR_ALLDESKTOPS
|
1043 OB_FRAME_DECOR_ICONIFY
|
1044 OB_FRAME_DECOR_MAXIMIZE
|
1045 OB_FRAME_DECOR_SHADE
);
1047 (OB_CLIENT_FUNC_RESIZE
|
1048 OB_CLIENT_FUNC_MOVE
|
1049 OB_CLIENT_FUNC_ICONIFY
|
1050 OB_CLIENT_FUNC_MAXIMIZE
|
1051 OB_CLIENT_FUNC_SHADE
);
1052 if (self
->delete_window
) {
1053 self
->functions
|= OB_CLIENT_FUNC_CLOSE
;
1054 self
->decorations
|= OB_FRAME_DECOR_CLOSE
;
1057 if (!(self
->min_size
.width
< self
->max_size
.width
||
1058 self
->min_size
.height
< self
->max_size
.height
))
1059 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1061 switch (self
->type
) {
1062 case OB_CLIENT_TYPE_NORMAL
:
1063 /* normal windows retain all of the possible decorations and
1064 functionality, and are the only windows that you can fullscreen */
1065 self
->functions
|= OB_CLIENT_FUNC_FULLSCREEN
;
1068 case OB_CLIENT_TYPE_DIALOG
:
1069 case OB_CLIENT_TYPE_UTILITY
:
1070 /* these windows cannot be maximized */
1071 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1074 case OB_CLIENT_TYPE_MENU
:
1075 case OB_CLIENT_TYPE_TOOLBAR
:
1076 /* these windows get less functionality */
1077 self
->functions
&= ~(OB_CLIENT_FUNC_ICONIFY
| OB_CLIENT_FUNC_RESIZE
);
1080 case OB_CLIENT_TYPE_DESKTOP
:
1081 case OB_CLIENT_TYPE_DOCK
:
1082 case OB_CLIENT_TYPE_SPLASH
:
1083 /* none of these windows are manipulated by the window manager */
1084 self
->decorations
= 0;
1085 self
->functions
= 0;
1089 /* Mwm Hints are applied subtractively to what has already been chosen for
1090 decor and functionality */
1091 if (self
->mwmhints
.flags
& OB_MWM_FLAG_DECORATIONS
) {
1092 if (! (self
->mwmhints
.decorations
& OB_MWM_DECOR_ALL
)) {
1093 if (! ((self
->mwmhints
.decorations
& OB_MWM_DECOR_HANDLE
) ||
1094 (self
->mwmhints
.decorations
& OB_MWM_DECOR_TITLE
)))
1095 /* if the mwm hints request no handle or title, then all
1096 decorations are disabled */
1097 self
->decorations
= 0;
1101 if (self
->mwmhints
.flags
& OB_MWM_FLAG_FUNCTIONS
) {
1102 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_ALL
)) {
1103 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_RESIZE
))
1104 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1105 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_MOVE
))
1106 self
->functions
&= ~OB_CLIENT_FUNC_MOVE
;
1107 /* dont let mwm hints kill any buttons
1108 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1109 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1110 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1111 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1113 /* dont let mwm hints kill the close button
1114 if (! (self->mwmhints.functions & MwmFunc_Close))
1115 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1119 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
))
1120 self
->decorations
&= ~OB_FRAME_DECOR_SHADE
;
1121 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
))
1122 self
->decorations
&= ~OB_FRAME_DECOR_ICONIFY
;
1123 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
))
1124 self
->decorations
&= ~OB_FRAME_DECOR_GRIPS
;
1126 /* can't maximize without moving/resizing */
1127 if (!((self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) &&
1128 (self
->functions
& OB_CLIENT_FUNC_MOVE
) &&
1129 (self
->functions
& OB_CLIENT_FUNC_RESIZE
))) {
1130 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1131 self
->decorations
&= ~OB_FRAME_DECOR_MAXIMIZE
;
1134 /* kill the handle on fully maxed windows */
1135 if (self
->max_vert
&& self
->max_horz
)
1136 self
->decorations
&= ~OB_FRAME_DECOR_HANDLE
;
1138 /* finally, the user can have requested no decorations, which overrides
1140 if (!self
->decorate
)
1141 self
->decorations
= OB_FRAME_DECOR_BORDER
;
1143 /* if we don't have a titlebar, then we cannot shade! */
1144 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1145 self
->functions
&= ~OB_CLIENT_FUNC_SHADE
;
1147 /* now we need to check against rules for the client's current state */
1148 if (self
->fullscreen
) {
1149 self
->functions
&= (OB_CLIENT_FUNC_CLOSE
|
1150 OB_CLIENT_FUNC_FULLSCREEN
|
1151 OB_CLIENT_FUNC_ICONIFY
);
1152 self
->decorations
= 0;
1155 client_change_allowed_actions(self
);
1158 /* adjust the client's decorations, etc. */
1159 client_reconfigure(self
);
1161 /* this makes sure that these windows appear on all desktops */
1162 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
&&
1163 self
->desktop
!= DESKTOP_ALL
)
1165 self
->desktop
= DESKTOP_ALL
;
1170 static void client_change_allowed_actions(ObClient
*self
)
1175 /* desktop windows are kept on all desktops */
1176 if (self
->type
!= OB_CLIENT_TYPE_DESKTOP
)
1177 actions
[num
++] = prop_atoms
.net_wm_action_change_desktop
;
1179 if (self
->functions
& OB_CLIENT_FUNC_SHADE
)
1180 actions
[num
++] = prop_atoms
.net_wm_action_shade
;
1181 if (self
->functions
& OB_CLIENT_FUNC_CLOSE
)
1182 actions
[num
++] = prop_atoms
.net_wm_action_close
;
1183 if (self
->functions
& OB_CLIENT_FUNC_MOVE
)
1184 actions
[num
++] = prop_atoms
.net_wm_action_move
;
1185 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
)
1186 actions
[num
++] = prop_atoms
.net_wm_action_minimize
;
1187 if (self
->functions
& OB_CLIENT_FUNC_RESIZE
)
1188 actions
[num
++] = prop_atoms
.net_wm_action_resize
;
1189 if (self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
)
1190 actions
[num
++] = prop_atoms
.net_wm_action_fullscreen
;
1191 if (self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) {
1192 actions
[num
++] = prop_atoms
.net_wm_action_maximize_horz
;
1193 actions
[num
++] = prop_atoms
.net_wm_action_maximize_vert
;
1196 PROP_SETA32(self
->window
, net_wm_allowed_actions
, atom
, actions
, num
);
1198 /* make sure the window isn't breaking any rules now */
1200 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
) && self
->shaded
) {
1201 if (self
->frame
) client_shade(self
, FALSE
);
1202 else self
->shaded
= FALSE
;
1204 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
) && self
->iconic
) {
1205 if (self
->frame
) client_iconify(self
, FALSE
, TRUE
);
1206 else self
->iconic
= FALSE
;
1208 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) && self
->fullscreen
) {
1209 if (self
->frame
) client_fullscreen(self
, FALSE
, TRUE
);
1210 else self
->fullscreen
= FALSE
;
1212 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) && (self
->max_horz
||
1214 if (self
->frame
) client_maximize(self
, FALSE
, 0, TRUE
);
1215 else self
->max_vert
= self
->max_horz
= FALSE
;
1219 void client_reconfigure(ObClient
*self
)
1221 /* by making this pass FALSE for user, we avoid the emacs event storm where
1222 every configurenotify causes an update in its normal hints, i think this
1223 is generally what we want anyways... */
1224 client_configure(self
, OB_CORNER_TOPLEFT
, self
->area
.x
, self
->area
.y
,
1225 self
->area
.width
, self
->area
.height
, FALSE
, TRUE
);
1228 void client_update_wmhints(ObClient
*self
)
1231 gboolean ur
= FALSE
;
1234 /* assume a window takes input if it doesnt specify */
1235 self
->can_focus
= TRUE
;
1237 if ((hints
= XGetWMHints(ob_display
, self
->window
)) != NULL
) {
1238 if (hints
->flags
& InputHint
)
1239 self
->can_focus
= hints
->input
;
1241 /* only do this when first managing the window *AND* when we aren't
1243 if (ob_state() != OB_STATE_STARTING
&& self
->frame
== NULL
)
1244 if (hints
->flags
& StateHint
)
1245 self
->iconic
= hints
->initial_state
== IconicState
;
1247 if (hints
->flags
& XUrgencyHint
)
1250 if (!(hints
->flags
& WindowGroupHint
))
1251 hints
->window_group
= None
;
1253 /* did the group state change? */
1254 if (hints
->window_group
!=
1255 (self
->group
? self
->group
->leader
: None
)) {
1256 /* remove from the old group if there was one */
1257 if (self
->group
!= NULL
) {
1258 /* remove transients of the group */
1259 for (it
= self
->group
->members
; it
; it
= it
->next
)
1260 self
->transients
= g_slist_remove(self
->transients
,
1262 group_remove(self
->group
, self
);
1265 if (hints
->window_group
!= None
) {
1266 self
->group
= group_add(hints
->window_group
, self
);
1268 /* i can only have transients from the group if i am not
1270 if (!self
->transient_for
) {
1271 /* add other transients of the group that are already
1273 for (it
= self
->group
->members
; it
; it
= it
->next
) {
1274 ObClient
*c
= it
->data
;
1275 if (c
!= self
&& c
->transient_for
== OB_TRAN_GROUP
)
1277 g_slist_append(self
->transients
, c
);
1282 /* because the self->transient flag wont change from this call,
1283 we don't need to update the window's type and such, only its
1284 transient_for, and the transients lists of other windows in
1285 the group may be affected */
1286 client_update_transient_for(self
);
1289 /* the WM_HINTS can contain an icon */
1290 client_update_icons(self
);
1295 if (ur
!= self
->urgent
) {
1297 ob_debug("Urgent Hint for 0x%lx: %s\n", self
->window
,
1299 /* fire the urgent callback if we're mapped, otherwise, wait until
1300 after we're mapped */
1302 client_urgent_notify(self
);
1306 void client_update_title(ObClient
*self
)
1312 gboolean read_title
;
1315 old_title
= self
->title
;
1318 if (!PROP_GETS(self
->window
, net_wm_name
, utf8
, &data
))
1319 /* try old x stuff */
1320 if (!PROP_GETS(self
->window
, wm_name
, locale
, &data
))
1321 data
= g_strdup("Unnamed Window");
1323 /* did the title change? then reset the title_count */
1324 if (old_title
&& 0 != strncmp(old_title
, data
, strlen(data
)))
1325 self
->title_count
= 1;
1327 /* look for duplicates and append a number */
1329 for (it
= client_list
; it
; it
= it
->next
)
1330 if (it
->data
!= self
) {
1331 ObClient
*c
= it
->data
;
1332 if (0 == strncmp(c
->title
, data
, strlen(data
)))
1333 nums
|= 1 << c
->title_count
;
1335 /* find first free number */
1336 for (i
= 1; i
<= 32; ++i
)
1337 if (!(nums
& (1 << i
))) {
1338 if (self
->title_count
== 1 || i
== 1)
1339 self
->title_count
= i
;
1342 /* dont display the number for the first window */
1343 if (self
->title_count
> 1) {
1345 ndata
= g_strdup_printf("%s - [%u]", data
, self
->title_count
);
1350 PROP_SETS(self
->window
, net_wm_visible_name
, data
);
1355 frame_adjust_title(self
->frame
);
1359 /* update the icon title */
1361 g_free(self
->icon_title
);
1365 if (!PROP_GETS(self
->window
, net_wm_icon_name
, utf8
, &data
))
1366 /* try old x stuff */
1367 if (!PROP_GETS(self
->window
, wm_icon_name
, locale
, &data
)) {
1368 data
= g_strdup(self
->title
);
1372 /* append the title count, dont display the number for the first window */
1373 if (read_title
&& self
->title_count
> 1) {
1374 char *vdata
, *ndata
;
1375 ndata
= g_strdup_printf(" - [%u]", self
->title_count
);
1376 vdata
= g_strconcat(data
, ndata
, NULL
);
1382 PROP_SETS(self
->window
, net_wm_visible_icon_name
, data
);
1384 self
->icon_title
= data
;
1387 void client_update_class(ObClient
*self
)
1392 if (self
->name
) g_free(self
->name
);
1393 if (self
->class) g_free(self
->class);
1394 if (self
->role
) g_free(self
->role
);
1396 self
->name
= self
->class = self
->role
= NULL
;
1398 if (PROP_GETSS(self
->window
, wm_class
, locale
, &data
)) {
1400 self
->name
= g_strdup(data
[0]);
1402 self
->class = g_strdup(data
[1]);
1407 if (PROP_GETS(self
->window
, wm_window_role
, locale
, &s
))
1408 self
->role
= g_strdup(s
);
1410 if (self
->name
== NULL
) self
->name
= g_strdup("");
1411 if (self
->class == NULL
) self
->class = g_strdup("");
1412 if (self
->role
== NULL
) self
->role
= g_strdup("");
1415 void client_update_strut(ObClient
*self
)
1419 gboolean got
= FALSE
;
1422 if (PROP_GETA32(self
->window
, net_wm_strut_partial
, cardinal
,
1426 STRUT_PARTIAL_SET(strut
,
1427 data
[0], data
[2], data
[1], data
[3],
1428 data
[4], data
[5], data
[8], data
[9],
1429 data
[6], data
[7], data
[10], data
[11]);
1435 PROP_GETA32(self
->window
, net_wm_strut
, cardinal
, &data
, &num
)) {
1438 STRUT_PARTIAL_SET(strut
,
1439 data
[0], data
[2], data
[1], data
[3],
1440 0, 0, 0, 0, 0, 0, 0, 0);
1446 STRUT_PARTIAL_SET(strut
, 0, 0, 0, 0,
1447 0, 0, 0, 0, 0, 0, 0, 0);
1449 if (!STRUT_EQUAL(strut
, self
->strut
)) {
1450 self
->strut
= strut
;
1452 /* updating here is pointless while we're being mapped cuz we're not in
1453 the client list yet */
1455 screen_update_areas();
1459 void client_update_icons(ObClient
*self
)
1465 for (i
= 0; i
< self
->nicons
; ++i
)
1466 g_free(self
->icons
[i
].data
);
1467 if (self
->nicons
> 0)
1468 g_free(self
->icons
);
1471 if (PROP_GETA32(self
->window
, net_wm_icon
, cardinal
, &data
, &num
)) {
1472 /* figure out how many valid icons are in here */
1474 while (num
- i
> 2) {
1478 if (i
> num
|| w
*h
== 0) break;
1482 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1484 /* store the icons */
1486 for (j
= 0; j
< self
->nicons
; ++j
) {
1489 w
= self
->icons
[j
].width
= data
[i
++];
1490 h
= self
->icons
[j
].height
= data
[i
++];
1492 if (w
*h
== 0) continue;
1494 self
->icons
[j
].data
= g_new(RrPixel32
, w
* h
);
1495 for (x
= 0, y
= 0, t
= 0; t
< w
* h
; ++t
, ++x
, ++i
) {
1500 self
->icons
[j
].data
[t
] =
1501 (((data
[i
] >> 24) & 0xff) << RrDefaultAlphaOffset
) +
1502 (((data
[i
] >> 16) & 0xff) << RrDefaultRedOffset
) +
1503 (((data
[i
] >> 8) & 0xff) << RrDefaultGreenOffset
) +
1504 (((data
[i
] >> 0) & 0xff) << RrDefaultBlueOffset
);
1510 } else if (PROP_GETA32(self
->window
, kwm_win_icon
,
1511 kwm_win_icon
, &data
, &num
)) {
1514 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1515 xerror_set_ignore(TRUE
);
1516 if (!RrPixmapToRGBA(ob_rr_inst
,
1518 &self
->icons
[self
->nicons
-1].width
,
1519 &self
->icons
[self
->nicons
-1].height
,
1520 &self
->icons
[self
->nicons
-1].data
)) {
1521 g_free(&self
->icons
[self
->nicons
-1]);
1524 xerror_set_ignore(FALSE
);
1530 if ((hints
= XGetWMHints(ob_display
, self
->window
))) {
1531 if (hints
->flags
& IconPixmapHint
) {
1533 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
1534 xerror_set_ignore(TRUE
);
1535 if (!RrPixmapToRGBA(ob_rr_inst
,
1537 (hints
->flags
& IconMaskHint
?
1538 hints
->icon_mask
: None
),
1539 &self
->icons
[self
->nicons
-1].width
,
1540 &self
->icons
[self
->nicons
-1].height
,
1541 &self
->icons
[self
->nicons
-1].data
)){
1542 g_free(&self
->icons
[self
->nicons
-1]);
1545 xerror_set_ignore(FALSE
);
1552 frame_adjust_icon(self
->frame
);
1555 static void client_change_state(ObClient
*self
)
1558 guint32 netstate
[10];
1561 state
[0] = self
->wmstate
;
1563 PROP_SETA32(self
->window
, wm_state
, wm_state
, state
, 2);
1567 netstate
[num
++] = prop_atoms
.net_wm_state_modal
;
1569 netstate
[num
++] = prop_atoms
.net_wm_state_shaded
;
1571 netstate
[num
++] = prop_atoms
.net_wm_state_hidden
;
1572 if (self
->skip_taskbar
)
1573 netstate
[num
++] = prop_atoms
.net_wm_state_skip_taskbar
;
1574 if (self
->skip_pager
)
1575 netstate
[num
++] = prop_atoms
.net_wm_state_skip_pager
;
1576 if (self
->fullscreen
)
1577 netstate
[num
++] = prop_atoms
.net_wm_state_fullscreen
;
1579 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_vert
;
1581 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_horz
;
1583 netstate
[num
++] = prop_atoms
.net_wm_state_above
;
1585 netstate
[num
++] = prop_atoms
.net_wm_state_below
;
1586 PROP_SETA32(self
->window
, net_wm_state
, atom
, netstate
, num
);
1588 client_calc_layer(self
);
1591 frame_adjust_state(self
->frame
);
1594 ObClient
*client_search_focus_tree(ObClient
*self
)
1599 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
) {
1600 if (client_focused(it
->data
)) return it
->data
;
1601 if ((ret
= client_search_focus_tree(it
->data
))) return ret
;
1606 ObClient
*client_search_focus_tree_full(ObClient
*self
)
1608 if (self
->transient_for
) {
1609 if (self
->transient_for
!= OB_TRAN_GROUP
) {
1610 return client_search_focus_tree_full(self
->transient_for
);
1613 gboolean recursed
= FALSE
;
1615 for (it
= self
->group
->members
; it
; it
= it
->next
)
1616 if (!((ObClient
*)it
->data
)->transient_for
) {
1618 if ((c
= client_search_focus_tree_full(it
->data
)))
1627 /* this function checks the whole tree, the client_search_focus_tree~
1628 does not, so we need to check this window */
1629 if (client_focused(self
))
1631 return client_search_focus_tree(self
);
1634 static ObStackingLayer
calc_layer(ObClient
*self
)
1638 if (self
->fullscreen
) l
= OB_STACKING_LAYER_FULLSCREEN
;
1639 else if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
1640 l
= OB_STACKING_LAYER_DESKTOP
;
1641 else if (self
->type
== OB_CLIENT_TYPE_DOCK
) {
1642 if (!self
->below
) l
= OB_STACKING_LAYER_TOP
;
1643 else l
= OB_STACKING_LAYER_NORMAL
;
1645 else if (self
->above
) l
= OB_STACKING_LAYER_ABOVE
;
1646 else if (self
->below
) l
= OB_STACKING_LAYER_BELOW
;
1647 else l
= OB_STACKING_LAYER_NORMAL
;
1652 static void client_calc_layer_recursive(ObClient
*self
, ObClient
*orig
,
1653 ObStackingLayer l
, gboolean raised
)
1655 ObStackingLayer old
, own
;
1659 own
= calc_layer(self
);
1660 self
->layer
= l
> own
? l
: own
;
1662 for (it
= self
->transients
; it
; it
= it
->next
)
1663 client_calc_layer_recursive(it
->data
, orig
,
1664 l
, raised
? raised
: l
!= old
);
1666 if (!raised
&& l
!= old
)
1667 if (orig
->frame
) { /* only restack if the original window is managed */
1668 /* XXX add_non_intrusive ever? */
1669 stacking_remove(CLIENT_AS_WINDOW(self
));
1670 stacking_add(CLIENT_AS_WINDOW(self
));
1674 void client_calc_layer(ObClient
*self
)
1681 /* transients take on the layer of their parents */
1682 self
= client_search_top_transient(self
);
1684 l
= calc_layer(self
);
1686 client_calc_layer_recursive(self
, orig
, l
, FALSE
);
1689 gboolean
client_should_show(ObClient
*self
)
1691 if (self
->iconic
) return FALSE
;
1692 else if (!(self
->desktop
== screen_desktop
||
1693 self
->desktop
== DESKTOP_ALL
)) return FALSE
;
1694 else if (client_normal(self
) && screen_showing_desktop
) return FALSE
;
1699 static void client_showhide(ObClient
*self
)
1702 if (client_should_show(self
))
1703 frame_show(self
->frame
);
1705 frame_hide(self
->frame
);
1708 gboolean
client_normal(ObClient
*self
) {
1709 return ! (self
->type
== OB_CLIENT_TYPE_DESKTOP
||
1710 self
->type
== OB_CLIENT_TYPE_DOCK
||
1711 self
->type
== OB_CLIENT_TYPE_SPLASH
);
1714 static void client_apply_startup_state(ObClient
*self
)
1716 /* these are in a carefully crafted order.. */
1718 g_message("self->iconic %d", self
->iconic
);
1720 self
->iconic
= FALSE
;
1721 client_iconify(self
, TRUE
, FALSE
);
1723 if (self
->fullscreen
) {
1724 self
->fullscreen
= FALSE
;
1725 client_fullscreen(self
, TRUE
, FALSE
);
1728 self
->shaded
= FALSE
;
1729 client_shade(self
, TRUE
);
1732 client_urgent_notify(self
);
1734 if (self
->max_vert
&& self
->max_horz
) {
1735 self
->max_vert
= self
->max_horz
= FALSE
;
1736 client_maximize(self
, TRUE
, 0, FALSE
);
1737 } else if (self
->max_vert
) {
1738 self
->max_vert
= FALSE
;
1739 client_maximize(self
, TRUE
, 2, FALSE
);
1740 } else if (self
->max_horz
) {
1741 self
->max_horz
= FALSE
;
1742 client_maximize(self
, TRUE
, 1, FALSE
);
1745 /* nothing to do for the other states:
1754 void client_configure_full(ObClient
*self
, ObCorner anchor
,
1755 int x
, int y
, int w
, int h
,
1756 gboolean user
, gboolean final
,
1757 gboolean force_reply
)
1760 gboolean send_resize_client
;
1761 gboolean moved
= FALSE
, resized
= FALSE
;
1762 guint fdecor
= self
->frame
->decorations
;
1763 gboolean fhorz
= self
->frame
->max_horz
;
1765 /* make the frame recalculate its dimentions n shit without changing
1766 anything visible for real, this way the constraints below can work with
1767 the updated frame dimensions. */
1768 frame_adjust_area(self
->frame
, TRUE
, TRUE
, TRUE
);
1770 /* gets the frame's position */
1771 frame_client_gravity(self
->frame
, &x
, &y
);
1773 /* these positions are frame positions, not client positions */
1775 /* set the size and position if fullscreen */
1776 if (self
->fullscreen
) {
1779 XF86VidModeModeLine mode
;
1784 i
= client_monitor(self
);
1785 a
= screen_physical_area_monitor(i
);
1788 if (i
== 0 && /* primary head */
1789 extensions_vidmode
&&
1790 XF86VidModeGetViewPort(ob_display
, ob_screen
, &x
, &y
) &&
1791 /* get the mode last so the mode.privsize isnt freed incorrectly */
1792 XF86VidModeGetModeLine(ob_display
, ob_screen
, &dot
, &mode
)) {
1797 if (mode
.privsize
) XFree(mode
.private);
1807 user
= FALSE
; /* ignore that increment etc shit when in fullscreen */
1811 a
= screen_area_monitor(self
->desktop
, client_monitor(self
));
1813 /* set the size and position if maximized */
1814 if (self
->max_horz
) {
1816 w
= a
->width
- self
->frame
->size
.left
- self
->frame
->size
.right
;
1818 if (self
->max_vert
) {
1820 h
= a
->height
- self
->frame
->size
.top
- self
->frame
->size
.bottom
;
1824 /* gets the client's position */
1825 frame_frame_gravity(self
->frame
, &x
, &y
);
1827 /* these override the above states! if you cant move you can't move! */
1829 if (!(self
->functions
& OB_CLIENT_FUNC_MOVE
)) {
1833 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
)) {
1834 w
= self
->area
.width
;
1835 h
= self
->area
.height
;
1839 if (!(w
== self
->area
.width
&& h
== self
->area
.height
)) {
1840 int basew
, baseh
, minw
, minh
;
1842 /* base size is substituted with min size if not specified */
1843 if (self
->base_size
.width
|| self
->base_size
.height
) {
1844 basew
= self
->base_size
.width
;
1845 baseh
= self
->base_size
.height
;
1847 basew
= self
->min_size
.width
;
1848 baseh
= self
->min_size
.height
;
1850 /* min size is substituted with base size if not specified */
1851 if (self
->min_size
.width
|| self
->min_size
.height
) {
1852 minw
= self
->min_size
.width
;
1853 minh
= self
->min_size
.height
;
1855 minw
= self
->base_size
.width
;
1856 minh
= self
->base_size
.height
;
1859 /* if this is a user-requested resize, then check against min/max
1862 /* smaller than min size or bigger than max size? */
1863 if (w
> self
->max_size
.width
) w
= self
->max_size
.width
;
1864 if (w
< minw
) w
= minw
;
1865 if (h
> self
->max_size
.height
) h
= self
->max_size
.height
;
1866 if (h
< minh
) h
= minh
;
1871 /* keep to the increments */
1872 w
/= self
->size_inc
.width
;
1873 h
/= self
->size_inc
.height
;
1875 /* you cannot resize to nothing */
1876 if (basew
+ w
< 1) w
= 1 - basew
;
1877 if (baseh
+ h
< 1) h
= 1 - baseh
;
1879 /* store the logical size */
1880 SIZE_SET(self
->logical_size
,
1881 self
->size_inc
.width
> 1 ? w
: w
+ basew
,
1882 self
->size_inc
.height
> 1 ? h
: h
+ baseh
);
1884 w
*= self
->size_inc
.width
;
1885 h
*= self
->size_inc
.height
;
1890 /* adjust the height to match the width for the aspect ratios.
1891 for this, min size is not substituted for base size ever. */
1892 w
-= self
->base_size
.width
;
1893 h
-= self
->base_size
.height
;
1895 if (self
->min_ratio
)
1896 if (h
* self
->min_ratio
> w
) h
= (int)(w
/ self
->min_ratio
);
1897 if (self
->max_ratio
)
1898 if (h
* self
->max_ratio
< w
) h
= (int)(w
/ self
->max_ratio
);
1900 w
+= self
->base_size
.width
;
1901 h
+= self
->base_size
.height
;
1905 case OB_CORNER_TOPLEFT
:
1907 case OB_CORNER_TOPRIGHT
:
1908 x
-= w
- self
->area
.width
;
1910 case OB_CORNER_BOTTOMLEFT
:
1911 y
-= h
- self
->area
.height
;
1913 case OB_CORNER_BOTTOMRIGHT
:
1914 x
-= w
- self
->area
.width
;
1915 y
-= h
- self
->area
.height
;
1919 moved
= x
!= self
->area
.x
|| y
!= self
->area
.y
;
1920 resized
= w
!= self
->area
.width
|| h
!= self
->area
.height
;
1922 oldw
= self
->area
.width
;
1923 oldh
= self
->area
.height
;
1924 RECT_SET(self
->area
, x
, y
, w
, h
);
1926 /* for app-requested resizes, always resize if 'resized' is true.
1927 for user-requested ones, only resize if final is true, or when
1928 resizing in redraw mode */
1929 send_resize_client
= ((!user
&& resized
) ||
1931 (resized
&& config_redraw_resize
))));
1933 /* if the client is enlarging, the resize the client before the frame */
1934 if (send_resize_client
&& (w
> oldw
|| h
> oldh
))
1935 XResizeWindow(ob_display
, self
->window
, MAX(w
, oldw
), MAX(h
, oldh
));
1937 /* move/resize the frame to match the request */
1939 if (self
->decorations
!= fdecor
|| self
->max_horz
!= fhorz
)
1940 moved
= resized
= TRUE
;
1942 if (moved
|| resized
)
1943 frame_adjust_area(self
->frame
, moved
, resized
, FALSE
);
1945 if (!resized
&& (force_reply
|| ((!user
&& moved
) || (user
&& final
))))
1948 event
.type
= ConfigureNotify
;
1949 event
.xconfigure
.display
= ob_display
;
1950 event
.xconfigure
.event
= self
->window
;
1951 event
.xconfigure
.window
= self
->window
;
1953 /* root window real coords */
1954 event
.xconfigure
.x
= self
->frame
->area
.x
+ self
->frame
->size
.left
-
1956 event
.xconfigure
.y
= self
->frame
->area
.y
+ self
->frame
->size
.top
-
1958 event
.xconfigure
.width
= w
;
1959 event
.xconfigure
.height
= h
;
1960 event
.xconfigure
.border_width
= 0;
1961 event
.xconfigure
.above
= self
->frame
->plate
;
1962 event
.xconfigure
.override_redirect
= FALSE
;
1963 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
,
1964 FALSE
, StructureNotifyMask
, &event
);
1968 /* if the client is shrinking, then resize the frame before the client */
1969 if (send_resize_client
&& (w
<= oldw
|| h
<= oldh
))
1970 XResizeWindow(ob_display
, self
->window
, w
, h
);
1975 void client_fullscreen(ObClient
*self
, gboolean fs
, gboolean savearea
)
1979 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) || /* can't */
1980 self
->fullscreen
== fs
) return; /* already done */
1982 self
->fullscreen
= fs
;
1983 client_change_state(self
); /* change the state hints on the client,
1984 and adjust out layer/stacking */
1988 guint32 dimensions
[4];
1989 dimensions
[0] = self
->area
.x
;
1990 dimensions
[1] = self
->area
.y
;
1991 dimensions
[2] = self
->area
.width
;
1992 dimensions
[3] = self
->area
.height
;
1994 PROP_SETA32(self
->window
, openbox_premax
, cardinal
,
1998 /* these are not actually used cuz client_configure will set them
1999 as appropriate when the window is fullscreened */
2006 /* pick some fallbacks... */
2007 a
= screen_area_monitor(self
->desktop
, 0);
2008 x
= a
->x
+ a
->width
/ 4;
2009 y
= a
->y
+ a
->height
/ 4;
2013 if (PROP_GETA32(self
->window
, openbox_premax
, cardinal
,
2014 (guint32
**)&dimensions
, &num
)) {
2025 client_setup_decor_and_functions(self
);
2027 client_move_resize(self
, x
, y
, w
, h
);
2029 /* try focus us when we go into fullscreen mode */
2033 static void client_iconify_recursive(ObClient
*self
,
2034 gboolean iconic
, gboolean curdesk
)
2037 gboolean changed
= FALSE
;
2040 if (self
->iconic
!= iconic
) {
2041 ob_debug("%sconifying window: 0x%lx\n", (iconic
? "I" : "Uni"),
2044 self
->iconic
= iconic
;
2047 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
) {
2048 self
->wmstate
= IconicState
;
2049 self
->ignore_unmaps
++;
2050 /* we unmap the client itself so that we can get MapRequest
2051 events, and because the ICCCM tells us to! */
2052 XUnmapWindow(ob_display
, self
->window
);
2054 /* update the focus lists.. iconic windows go to the bottom of
2055 the list, put the new iconic window at the 'top of the
2057 focus_order_to_top(self
);
2063 client_set_desktop(self
, screen_desktop
, FALSE
);
2064 self
->wmstate
= self
->shaded
? IconicState
: NormalState
;
2065 XMapWindow(ob_display
, self
->window
);
2067 /* this puts it after the current focused window */
2068 focus_order_remove(self
);
2069 focus_order_add_new(self
);
2071 /* this is here cuz with the VIDMODE extension, the viewport can
2072 change while a fullscreen window is iconic, and when it
2073 uniconifies, it would be nice if it did so to the new position
2075 client_reconfigure(self
);
2082 client_change_state(self
);
2083 client_showhide(self
);
2084 screen_update_areas();
2087 /* iconify all transients */
2088 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
)
2089 if (it
->data
!= self
) client_iconify_recursive(it
->data
,
2093 void client_iconify(ObClient
*self
, gboolean iconic
, gboolean curdesk
)
2095 /* move up the transient chain as far as possible first */
2096 self
= client_search_top_transient(self
);
2098 client_iconify_recursive(client_search_top_transient(self
),
2102 void client_maximize(ObClient
*self
, gboolean max
, int dir
, gboolean savearea
)
2106 g_assert(dir
== 0 || dir
== 1 || dir
== 2);
2107 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
)) return; /* can't */
2109 /* check if already done */
2111 if (dir
== 0 && self
->max_horz
&& self
->max_vert
) return;
2112 if (dir
== 1 && self
->max_horz
) return;
2113 if (dir
== 2 && self
->max_vert
) return;
2115 if (dir
== 0 && !self
->max_horz
&& !self
->max_vert
) return;
2116 if (dir
== 1 && !self
->max_horz
) return;
2117 if (dir
== 2 && !self
->max_vert
) return;
2120 /* work with the frame's coords */
2121 x
= self
->frame
->area
.x
;
2122 y
= self
->frame
->area
.y
;
2123 w
= self
->area
.width
;
2124 h
= self
->area
.height
;
2128 gint32 dimensions
[4];
2137 /* get the property off the window and use it for the dimensions
2138 we are already maxed on */
2139 if (PROP_GETA32(self
->window
, openbox_premax
, cardinal
,
2140 (guint32
**)&readdim
, &num
)) {
2142 if (self
->max_horz
) {
2143 dimensions
[0] = readdim
[0];
2144 dimensions
[2] = readdim
[2];
2146 if (self
->max_vert
) {
2147 dimensions
[1] = readdim
[1];
2148 dimensions
[3] = readdim
[3];
2154 PROP_SETA32(self
->window
, openbox_premax
, cardinal
,
2155 (guint32
*)dimensions
, 4);
2162 /* pick some fallbacks... */
2163 a
= screen_area_monitor(self
->desktop
, 0);
2164 if (dir
== 0 || dir
== 1) { /* horz */
2165 x
= a
->x
+ a
->width
/ 4;
2168 if (dir
== 0 || dir
== 2) { /* vert */
2169 y
= a
->y
+ a
->height
/ 4;
2173 if (PROP_GETA32(self
->window
, openbox_premax
, cardinal
,
2174 (guint32
**)&dimensions
, &num
)) {
2176 if (dir
== 0 || dir
== 1) { /* horz */
2180 if (dir
== 0 || dir
== 2) { /* vert */
2189 if (dir
== 0 || dir
== 1) /* horz */
2190 self
->max_horz
= max
;
2191 if (dir
== 0 || dir
== 2) /* vert */
2192 self
->max_vert
= max
;
2194 if (!self
->max_horz
&& !self
->max_vert
)
2195 PROP_ERASE(self
->window
, openbox_premax
);
2197 client_change_state(self
); /* change the state hints on the client */
2199 client_setup_decor_and_functions(self
);
2201 /* figure out where the client should be going */
2202 frame_frame_gravity(self
->frame
, &x
, &y
);
2203 client_move_resize(self
, x
, y
, w
, h
);
2206 void client_shade(ObClient
*self
, gboolean shade
)
2208 if ((!(self
->functions
& OB_CLIENT_FUNC_SHADE
) &&
2209 shade
) || /* can't shade */
2210 self
->shaded
== shade
) return; /* already done */
2212 /* when we're iconic, don't change the wmstate */
2214 self
->wmstate
= shade
? IconicState
: NormalState
;
2215 self
->shaded
= shade
;
2216 client_change_state(self
);
2217 /* resize the frame to just the titlebar */
2218 frame_adjust_area(self
->frame
, FALSE
, FALSE
, FALSE
);
2221 void client_close(ObClient
*self
)
2225 if (!(self
->functions
& OB_CLIENT_FUNC_CLOSE
)) return;
2228 XXX: itd be cool to do timeouts and shit here for killing the client's
2230 like... if the window is around after 5 seconds, then the close button
2231 turns a nice red, and if this function is called again, the client is
2235 ce
.xclient
.type
= ClientMessage
;
2236 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
2237 ce
.xclient
.display
= ob_display
;
2238 ce
.xclient
.window
= self
->window
;
2239 ce
.xclient
.format
= 32;
2240 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_delete_window
;
2241 ce
.xclient
.data
.l
[1] = event_lasttime
;
2242 ce
.xclient
.data
.l
[2] = 0l;
2243 ce
.xclient
.data
.l
[3] = 0l;
2244 ce
.xclient
.data
.l
[4] = 0l;
2245 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
2248 void client_kill(ObClient
*self
)
2250 XKillClient(ob_display
, self
->window
);
2253 void client_set_desktop_recursive(ObClient
*self
,
2254 guint target
, gboolean donthide
)
2259 if (target
!= self
->desktop
) {
2261 ob_debug("Setting desktop %u\n", target
+1);
2263 g_assert(target
< screen_num_desktops
|| target
== DESKTOP_ALL
);
2265 /* remove from the old desktop(s) */
2266 focus_order_remove(self
);
2268 old
= self
->desktop
;
2269 self
->desktop
= target
;
2270 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, target
);
2271 /* the frame can display the current desktop state */
2272 frame_adjust_state(self
->frame
);
2273 /* 'move' the window to the new desktop */
2275 client_showhide(self
);
2276 /* raise if it was not already on the desktop */
2277 if (old
!= DESKTOP_ALL
)
2278 stacking_raise(CLIENT_AS_WINDOW(self
));
2279 screen_update_areas();
2281 /* add to the new desktop(s) */
2282 if (config_focus_new
)
2283 focus_order_to_top(self
);
2285 focus_order_to_bottom(self
);
2288 /* move all transients */
2289 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
)
2290 if (it
->data
!= self
) client_set_desktop_recursive(it
->data
,
2294 void client_set_desktop(ObClient
*self
, guint target
, gboolean donthide
)
2296 client_set_desktop_recursive(client_search_top_transient(self
),
2300 ObClient
*client_search_modal_child(ObClient
*self
)
2305 for (it
= self
->transients
; it
!= NULL
; it
= it
->next
) {
2306 ObClient
*c
= it
->data
;
2307 if ((ret
= client_search_modal_child(c
))) return ret
;
2308 if (c
->modal
) return c
;
2313 gboolean
client_validate(ObClient
*self
)
2317 XSync(ob_display
, FALSE
); /* get all events on the server */
2319 if (XCheckTypedWindowEvent(ob_display
, self
->window
, DestroyNotify
, &e
) ||
2320 XCheckTypedWindowEvent(ob_display
, self
->window
, UnmapNotify
, &e
)) {
2321 XPutBackEvent(ob_display
, &e
);
2328 void client_set_wm_state(ObClient
*self
, long state
)
2330 if (state
== self
->wmstate
) return; /* no change */
2334 client_iconify(self
, TRUE
, TRUE
);
2337 client_iconify(self
, FALSE
, TRUE
);
2342 void client_set_state(ObClient
*self
, Atom action
, long data1
, long data2
)
2344 gboolean shaded
= self
->shaded
;
2345 gboolean fullscreen
= self
->fullscreen
;
2346 gboolean max_horz
= self
->max_horz
;
2347 gboolean max_vert
= self
->max_vert
;
2350 if (!(action
== prop_atoms
.net_wm_state_add
||
2351 action
== prop_atoms
.net_wm_state_remove
||
2352 action
== prop_atoms
.net_wm_state_toggle
))
2353 /* an invalid action was passed to the client message, ignore it */
2356 for (i
= 0; i
< 2; ++i
) {
2357 Atom state
= i
== 0 ? data1
: data2
;
2359 if (!state
) continue;
2361 /* if toggling, then pick whether we're adding or removing */
2362 if (action
== prop_atoms
.net_wm_state_toggle
) {
2363 if (state
== prop_atoms
.net_wm_state_modal
)
2364 action
= self
->modal
? prop_atoms
.net_wm_state_remove
:
2365 prop_atoms
.net_wm_state_add
;
2366 else if (state
== prop_atoms
.net_wm_state_maximized_vert
)
2367 action
= self
->max_vert
? prop_atoms
.net_wm_state_remove
:
2368 prop_atoms
.net_wm_state_add
;
2369 else if (state
== prop_atoms
.net_wm_state_maximized_horz
)
2370 action
= self
->max_horz
? prop_atoms
.net_wm_state_remove
:
2371 prop_atoms
.net_wm_state_add
;
2372 else if (state
== prop_atoms
.net_wm_state_shaded
)
2373 action
= self
->shaded
? prop_atoms
.net_wm_state_remove
:
2374 prop_atoms
.net_wm_state_add
;
2375 else if (state
== prop_atoms
.net_wm_state_skip_taskbar
)
2376 action
= self
->skip_taskbar
?
2377 prop_atoms
.net_wm_state_remove
:
2378 prop_atoms
.net_wm_state_add
;
2379 else if (state
== prop_atoms
.net_wm_state_skip_pager
)
2380 action
= self
->skip_pager
?
2381 prop_atoms
.net_wm_state_remove
:
2382 prop_atoms
.net_wm_state_add
;
2383 else if (state
== prop_atoms
.net_wm_state_fullscreen
)
2384 action
= self
->fullscreen
?
2385 prop_atoms
.net_wm_state_remove
:
2386 prop_atoms
.net_wm_state_add
;
2387 else if (state
== prop_atoms
.net_wm_state_above
)
2388 action
= self
->above
? prop_atoms
.net_wm_state_remove
:
2389 prop_atoms
.net_wm_state_add
;
2390 else if (state
== prop_atoms
.net_wm_state_below
)
2391 action
= self
->below
? prop_atoms
.net_wm_state_remove
:
2392 prop_atoms
.net_wm_state_add
;
2395 if (action
== prop_atoms
.net_wm_state_add
) {
2396 if (state
== prop_atoms
.net_wm_state_modal
) {
2397 /* XXX raise here or something? */
2399 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
2401 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
2403 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
2405 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
2406 self
->skip_taskbar
= TRUE
;
2407 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
2408 self
->skip_pager
= TRUE
;
2409 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
2411 } else if (state
== prop_atoms
.net_wm_state_above
) {
2413 } else if (state
== prop_atoms
.net_wm_state_below
) {
2417 } else { /* action == prop_atoms.net_wm_state_remove */
2418 if (state
== prop_atoms
.net_wm_state_modal
) {
2419 self
->modal
= FALSE
;
2420 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
2422 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
2424 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
2426 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
2427 self
->skip_taskbar
= FALSE
;
2428 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
2429 self
->skip_pager
= FALSE
;
2430 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
2432 } else if (state
== prop_atoms
.net_wm_state_above
) {
2433 self
->above
= FALSE
;
2434 } else if (state
== prop_atoms
.net_wm_state_below
) {
2435 self
->below
= FALSE
;
2439 if (max_horz
!= self
->max_horz
|| max_vert
!= self
->max_vert
) {
2440 if (max_horz
!= self
->max_horz
&& max_vert
!= self
->max_vert
) {
2442 if (max_horz
== max_vert
) { /* both going the same way */
2443 client_maximize(self
, max_horz
, 0, TRUE
);
2445 client_maximize(self
, max_horz
, 1, TRUE
);
2446 client_maximize(self
, max_vert
, 2, TRUE
);
2450 if (max_horz
!= self
->max_horz
)
2451 client_maximize(self
, max_horz
, 1, TRUE
);
2453 client_maximize(self
, max_vert
, 2, TRUE
);
2456 /* change fullscreen state before shading, as it will affect if the window
2458 if (fullscreen
!= self
->fullscreen
)
2459 client_fullscreen(self
, fullscreen
, TRUE
);
2460 if (shaded
!= self
->shaded
)
2461 client_shade(self
, shaded
);
2462 client_calc_layer(self
);
2463 client_change_state(self
); /* change the hint to reflect these changes */
2466 ObClient
*client_focus_target(ObClient
*self
)
2470 /* if we have a modal child, then focus it, not us */
2471 child
= client_search_modal_child(self
);
2472 if (child
) return child
;
2476 gboolean
client_can_focus(ObClient
*self
)
2480 /* choose the correct target */
2481 self
= client_focus_target(self
);
2483 if (!self
->frame
->visible
)
2486 if (!((self
->can_focus
|| self
->focus_notify
) &&
2487 (self
->desktop
== screen_desktop
||
2488 self
->desktop
== DESKTOP_ALL
) &&
2492 /* do a check to see if the window has already been unmapped or destroyed
2493 do this intelligently while watching out for unmaps we've generated
2494 (ignore_unmaps > 0) */
2495 if (XCheckTypedWindowEvent(ob_display
, self
->window
,
2496 DestroyNotify
, &ev
)) {
2497 XPutBackEvent(ob_display
, &ev
);
2500 while (XCheckTypedWindowEvent(ob_display
, self
->window
,
2501 UnmapNotify
, &ev
)) {
2502 if (self
->ignore_unmaps
) {
2503 self
->ignore_unmaps
--;
2505 XPutBackEvent(ob_display
, &ev
);
2513 gboolean
client_focus(ObClient
*self
)
2515 /* choose the correct target */
2516 self
= client_focus_target(self
);
2518 if (!client_can_focus(self
)) {
2519 if (!self
->frame
->visible
) {
2520 /* update the focus lists */
2521 focus_order_to_top(self
);
2526 if (self
->can_focus
) {
2527 /* RevertToPointerRoot causes much more headache than RevertToNone, so
2528 I choose to use it always, hopefully to find errors quicker, if any
2529 are left. (I hate X. I hate focus events.)
2531 Update: Changing this to RevertToNone fixed a bug with mozilla (bug
2532 #799. So now it is RevertToNone again.
2534 XSetInputFocus(ob_display
, self
->window
, RevertToNone
,
2538 if (self
->focus_notify
) {
2540 ce
.xclient
.type
= ClientMessage
;
2541 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
2542 ce
.xclient
.display
= ob_display
;
2543 ce
.xclient
.window
= self
->window
;
2544 ce
.xclient
.format
= 32;
2545 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_take_focus
;
2546 ce
.xclient
.data
.l
[1] = event_lasttime
;
2547 ce
.xclient
.data
.l
[2] = 0l;
2548 ce
.xclient
.data
.l
[3] = 0l;
2549 ce
.xclient
.data
.l
[4] = 0l;
2550 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
2554 ob_debug("%sively focusing %lx at %d\n",
2555 (self
->can_focus
? "act" : "pass"),
2556 self
->window
, (int) event_lasttime
);
2559 /* Cause the FocusIn to come back to us. Important for desktop switches,
2560 since otherwise we'll have no FocusIn on the queue and send it off to
2561 the focus_backup. */
2562 XSync(ob_display
, FALSE
);
2566 void client_unfocus(ObClient
*self
)
2568 g_assert(focus_client
== self
);
2570 ob_debug("client_unfocus for %lx\n", self
->window
);
2572 focus_fallback(OB_FOCUS_FALLBACK_UNFOCUSING
);
2575 void client_activate(ObClient
*self
, gboolean here
)
2577 if (client_normal(self
) && screen_showing_desktop
)
2578 screen_show_desktop(FALSE
);
2580 client_iconify(self
, FALSE
, FALSE
);
2581 if (self
->desktop
!= DESKTOP_ALL
&&
2582 self
->desktop
!= screen_desktop
) {
2584 client_set_desktop(self
, screen_desktop
, FALSE
);
2586 screen_set_desktop(self
->desktop
);
2587 } else if (!self
->frame
->visible
)
2588 /* if its not visible for other reasons, then don't mess
2592 client_shade(self
, FALSE
);
2594 stacking_raise(CLIENT_AS_WINDOW(self
));
2597 gboolean
client_focused(ObClient
*self
)
2599 return self
== focus_client
;
2602 ObClientIcon
*client_icon(ObClient
*self
, int w
, int h
)
2605 /* si is the smallest image >= req */
2606 /* li is the largest image < req */
2607 unsigned long size
, smallest
= 0xffffffff, largest
= 0, si
= 0, li
= 0;
2609 if (!self
->nicons
) return NULL
;
2611 for (i
= 0; i
< self
->nicons
; ++i
) {
2612 size
= self
->icons
[i
].width
* self
->icons
[i
].height
;
2613 if (size
< smallest
&& size
>= (unsigned)(w
* h
)) {
2617 if (size
> largest
&& size
<= (unsigned)(w
* h
)) {
2622 if (largest
== 0) /* didnt find one smaller than the requested size */
2623 return &self
->icons
[si
];
2624 return &self
->icons
[li
];
2627 /* this be mostly ripped from fvwm */
2628 ObClient
*client_find_directional(ObClient
*c
, ObDirection dir
)
2630 int my_cx
, my_cy
, his_cx
, his_cy
;
2633 int score
, best_score
;
2634 ObClient
*best_client
, *cur
;
2640 /* first, find the centre coords of the currently focused window */
2641 my_cx
= c
->frame
->area
.x
+ c
->frame
->area
.width
/ 2;
2642 my_cy
= c
->frame
->area
.y
+ c
->frame
->area
.height
/ 2;
2647 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
2650 /* the currently selected window isn't interesting */
2653 if (!client_normal(cur
))
2655 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
2659 if(client_focus_target(cur
) == cur
&&
2660 !(cur
->can_focus
|| cur
->focus_notify
))
2663 /* find the centre coords of this window, from the
2664 * currently focused window's point of view */
2665 his_cx
= (cur
->frame
->area
.x
- my_cx
)
2666 + cur
->frame
->area
.width
/ 2;
2667 his_cy
= (cur
->frame
->area
.y
- my_cy
)
2668 + cur
->frame
->area
.height
/ 2;
2670 if(dir
== OB_DIRECTION_NORTHEAST
|| dir
== OB_DIRECTION_SOUTHEAST
||
2671 dir
== OB_DIRECTION_SOUTHWEST
|| dir
== OB_DIRECTION_NORTHWEST
) {
2673 /* Rotate the diagonals 45 degrees counterclockwise.
2674 * To do this, multiply the matrix /+h +h\ with the
2675 * vector (x y). \-h +h/
2676 * h = sqrt(0.5). We can set h := 1 since absolute
2677 * distance doesn't matter here. */
2678 tx
= his_cx
+ his_cy
;
2679 his_cy
= -his_cx
+ his_cy
;
2684 case OB_DIRECTION_NORTH
:
2685 case OB_DIRECTION_SOUTH
:
2686 case OB_DIRECTION_NORTHEAST
:
2687 case OB_DIRECTION_SOUTHWEST
:
2688 offset
= (his_cx
< 0) ? -his_cx
: his_cx
;
2689 distance
= ((dir
== OB_DIRECTION_NORTH
||
2690 dir
== OB_DIRECTION_NORTHEAST
) ?
2693 case OB_DIRECTION_EAST
:
2694 case OB_DIRECTION_WEST
:
2695 case OB_DIRECTION_SOUTHEAST
:
2696 case OB_DIRECTION_NORTHWEST
:
2697 offset
= (his_cy
< 0) ? -his_cy
: his_cy
;
2698 distance
= ((dir
== OB_DIRECTION_WEST
||
2699 dir
== OB_DIRECTION_NORTHWEST
) ?
2704 /* the target must be in the requested direction */
2708 /* Calculate score for this window. The smaller the better. */
2709 score
= distance
+ offset
;
2711 /* windows more than 45 degrees off the direction are
2712 * heavily penalized and will only be chosen if nothing
2713 * else within a million pixels */
2714 if(offset
> distance
)
2717 if(best_score
== -1 || score
< best_score
)
2725 void client_set_layer(ObClient
*self
, int layer
)
2729 self
->above
= FALSE
;
2730 } else if (layer
== 0) {
2731 self
->below
= self
->above
= FALSE
;
2733 self
->below
= FALSE
;
2736 client_calc_layer(self
);
2737 client_change_state(self
); /* reflect this in the state hints */
2740 guint
client_monitor(ObClient
*self
)
2744 for (i
= 0; i
< screen_num_monitors
; ++i
) {
2745 Rect
*area
= screen_physical_area_monitor(i
);
2746 if (RECT_INTERSECTS_RECT(*area
, self
->frame
->area
))
2749 if (i
== screen_num_monitors
) i
= 0;
2750 g_assert(i
< screen_num_monitors
);
2754 ObClient
*client_search_top_transient(ObClient
*self
)
2756 /* move up the transient chain as far as possible */
2757 if (self
->transient_for
) {
2758 if (self
->transient_for
!= OB_TRAN_GROUP
) {
2759 return client_search_top_transient(self
->transient_for
);
2763 for (it
= self
->group
->members
; it
; it
= it
->next
) {
2764 ObClient
*c
= it
->data
;
2766 /* checking transient_for prevents infinate loops! */
2767 if (c
!= self
&& !c
->transient_for
)
2778 ObClient
*client_search_transient(ObClient
*self
, ObClient
*search
)
2782 for (sit
= self
->transients
; sit
; sit
= g_slist_next(sit
)) {
2783 if (sit
->data
== search
)
2785 if (client_search_transient(sit
->data
, search
))
2791 gchar
* client_get_sm_client_id(ObClient
*self
)
2795 if (!PROP_GETS(self
->window
, sm_client_id
, locale
, &id
) && self
->group
)
2796 PROP_GETS(self
->group
->leader
, sm_client_id
, locale
, &id
);
2800 /* finds the nearest edge in the given direction from the current client
2801 * note to self: the edge is the -frame- edge (the actual one), not the
2804 int client_directional_edge_search(ObClient
*c
, ObDirection dir
)
2807 int my_edge_start
, my_edge_end
, my_offset
;
2814 a
= screen_area(c
->desktop
);
2817 case OB_DIRECTION_NORTH
:
2818 my_edge_start
= c
->frame
->area
.x
;
2819 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
2820 my_offset
= c
->frame
->area
.y
;
2822 dest
= a
->y
; /* default: top of screen */
2824 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
2825 int his_edge_start
, his_edge_end
, his_offset
;
2826 ObClient
*cur
= it
->data
;
2830 if(!client_normal(cur
))
2832 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
2837 his_edge_start
= cur
->frame
->area
.x
;
2838 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
2839 his_offset
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
2841 if(his_offset
+ 1 > my_offset
)
2844 if(his_offset
< dest
)
2847 if(his_edge_start
>= my_edge_start
&&
2848 his_edge_start
<= my_edge_end
)
2851 if(my_edge_start
>= his_edge_start
&&
2852 my_edge_start
<= his_edge_end
)
2857 case OB_DIRECTION_SOUTH
:
2858 my_edge_start
= c
->frame
->area
.x
;
2859 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
2860 my_offset
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
2862 dest
= a
->y
+ a
->height
; /* default: bottom of screen */
2864 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
2865 int his_edge_start
, his_edge_end
, his_offset
;
2866 ObClient
*cur
= it
->data
;
2870 if(!client_normal(cur
))
2872 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
2877 his_edge_start
= cur
->frame
->area
.x
;
2878 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
2879 his_offset
= cur
->frame
->area
.y
;
2882 if(his_offset
- 1 < my_offset
)
2885 if(his_offset
> dest
)
2888 if(his_edge_start
>= my_edge_start
&&
2889 his_edge_start
<= my_edge_end
)
2892 if(my_edge_start
>= his_edge_start
&&
2893 my_edge_start
<= his_edge_end
)
2898 case OB_DIRECTION_WEST
:
2899 my_edge_start
= c
->frame
->area
.y
;
2900 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
2901 my_offset
= c
->frame
->area
.x
;
2903 dest
= a
->x
; /* default: leftmost egde of screen */
2905 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
2906 int his_edge_start
, his_edge_end
, his_offset
;
2907 ObClient
*cur
= it
->data
;
2911 if(!client_normal(cur
))
2913 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
2918 his_edge_start
= cur
->frame
->area
.y
;
2919 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
2920 his_offset
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
2922 if(his_offset
+ 1 > my_offset
)
2925 if(his_offset
< dest
)
2928 if(his_edge_start
>= my_edge_start
&&
2929 his_edge_start
<= my_edge_end
)
2932 if(my_edge_start
>= his_edge_start
&&
2933 my_edge_start
<= his_edge_end
)
2939 case OB_DIRECTION_EAST
:
2940 my_edge_start
= c
->frame
->area
.y
;
2941 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
2942 my_offset
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
2944 dest
= a
->x
+ a
->width
; /* default: rightmost edge of screen */
2946 for(it
= g_list_first(client_list
); it
; it
= it
->next
) {
2947 int his_edge_start
, his_edge_end
, his_offset
;
2948 ObClient
*cur
= it
->data
;
2952 if(!client_normal(cur
))
2954 if(c
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
2959 his_edge_start
= cur
->frame
->area
.y
;
2960 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
2961 his_offset
= cur
->frame
->area
.x
;
2963 if(his_offset
- 1 < my_offset
)
2966 if(his_offset
> dest
)
2969 if(his_edge_start
>= my_edge_start
&&
2970 his_edge_start
<= my_edge_end
)
2973 if(my_edge_start
>= his_edge_start
&&
2974 my_edge_start
<= his_edge_end
)
2979 case OB_DIRECTION_NORTHEAST
:
2980 case OB_DIRECTION_SOUTHEAST
:
2981 case OB_DIRECTION_NORTHWEST
:
2982 case OB_DIRECTION_SOUTHWEST
:
2983 /* not implemented */
2986 g_assert_not_reached();