1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 client.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
22 #include "startupnotify.h"
26 #include "moveresize.h"
29 #include "extensions.h"
40 #include "menuframe.h"
43 #include "render/render.h"
50 #include <X11/Xutil.h>
52 /*! The event mask to grab on client windows */
53 #define CLIENT_EVENTMASK (PropertyChangeMask | StructureNotifyMask | \
56 #define CLIENT_NOPROPAGATEMASK (ButtonPressMask | ButtonReleaseMask | \
61 ObClientCallback func
;
65 GList
*client_list
= NULL
;
67 static GSList
*client_destroy_notifies
= NULL
;
69 static void client_get_all(ObClient
*self
, gboolean real
);
70 static void client_get_startup_id(ObClient
*self
);
71 static void client_get_session_ids(ObClient
*self
);
72 static void client_get_area(ObClient
*self
);
73 static void client_get_desktop(ObClient
*self
);
74 static void client_get_state(ObClient
*self
);
75 static void client_get_shaped(ObClient
*self
);
76 static void client_get_mwm_hints(ObClient
*self
);
77 static void client_get_colormap(ObClient
*self
);
78 static void client_change_allowed_actions(ObClient
*self
);
79 static void client_change_state(ObClient
*self
);
80 static void client_change_wm_state(ObClient
*self
);
81 static void client_apply_startup_state(ObClient
*self
,
82 gint x
, gint y
, gint w
, gint h
);
83 static void client_restore_session_state(ObClient
*self
);
84 static gboolean
client_restore_session_stacking(ObClient
*self
);
85 static ObAppSettings
*client_get_settings_state(ObClient
*self
);
86 static void client_update_transient_tree(ObClient
*self
,
87 ObGroup
*oldgroup
, ObGroup
*newgroup
,
90 static void client_present(ObClient
*self
, gboolean here
, gboolean raise
);
91 static GSList
*client_search_all_top_parents_internal(ObClient
*self
,
93 ObStackingLayer layer
);
94 static void client_call_notifies(ObClient
*self
, GSList
*list
);
97 void client_startup(gboolean reconfig
)
104 void client_shutdown(gboolean reconfig
)
106 if (reconfig
) return;
109 static void client_call_notifies(ObClient
*self
, GSList
*list
)
113 for (it
= list
; it
; it
= g_slist_next(it
)) {
114 ClientCallback
*d
= it
->data
;
115 d
->func(self
, d
->data
);
119 void client_add_destroy_notify(ObClientCallback func
, gpointer data
)
121 ClientCallback
*d
= g_new(ClientCallback
, 1);
124 client_destroy_notifies
= g_slist_prepend(client_destroy_notifies
, d
);
127 void client_remove_destroy_notify(ObClientCallback func
)
131 for (it
= client_destroy_notifies
; it
; it
= g_slist_next(it
)) {
132 ClientCallback
*d
= it
->data
;
133 if (d
->func
== func
) {
135 client_destroy_notifies
=
136 g_slist_delete_link(client_destroy_notifies
, it
);
142 void client_set_list()
144 Window
*windows
, *win_it
;
146 guint size
= g_list_length(client_list
);
148 /* create an array of the window ids */
150 windows
= g_new(Window
, size
);
152 for (it
= client_list
; it
; it
= g_list_next(it
), ++win_it
)
153 *win_it
= ((ObClient
*)it
->data
)->window
;
157 PROP_SETA32(RootWindow(ob_display
, ob_screen
),
158 net_client_list
, window
, (gulong
*)windows
, size
);
166 void client_manage_all()
171 XWindowAttributes attrib
;
173 XQueryTree(ob_display
, RootWindow(ob_display
, ob_screen
),
174 &w
, &w
, &children
, &nchild
);
176 /* remove all icon windows from the list */
177 for (i
= 0; i
< nchild
; i
++) {
178 if (children
[i
] == None
) continue;
179 wmhints
= XGetWMHints(ob_display
, children
[i
]);
181 if ((wmhints
->flags
& IconWindowHint
) &&
182 (wmhints
->icon_window
!= children
[i
]))
183 for (j
= 0; j
< nchild
; j
++)
184 if (children
[j
] == wmhints
->icon_window
) {
192 for (i
= 0; i
< nchild
; ++i
) {
193 if (children
[i
] == None
)
195 if (XGetWindowAttributes(ob_display
, children
[i
], &attrib
)) {
196 if (attrib
.override_redirect
) continue;
198 if (attrib
.map_state
!= IsUnmapped
)
199 client_manage(children
[i
]);
205 void client_manage(Window window
)
209 XWindowAttributes attrib
;
210 XSetWindowAttributes attrib_set
;
212 gboolean activate
= FALSE
;
213 ObAppSettings
*settings
;
214 gint placex
, placey
, placew
, placeh
;
215 gboolean transient
= FALSE
;
219 /* check if it has already been unmapped by the time we started
220 mapping. the grab does a sync so we don't have to here */
221 if (XCheckTypedWindowEvent(ob_display
, window
, DestroyNotify
, &e
) ||
222 XCheckTypedWindowEvent(ob_display
, window
, UnmapNotify
, &e
))
224 XPutBackEvent(ob_display
, &e
);
226 ob_debug("Trying to manage unmapped window. Aborting that.\n");
228 return; /* don't manage it */
231 /* make sure it isn't an override-redirect window */
232 if (!XGetWindowAttributes(ob_display
, window
, &attrib
) ||
233 attrib
.override_redirect
)
236 return; /* don't manage it */
239 /* is the window a docking app */
240 if ((wmhint
= XGetWMHints(ob_display
, window
))) {
241 if ((wmhint
->flags
& StateHint
) &&
242 wmhint
->initial_state
== WithdrawnState
)
244 dock_add(window
, wmhint
);
252 ob_debug("Managing window: 0x%lx\n", window
);
254 /* choose the events we want to receive on the CLIENT window */
255 attrib_set
.event_mask
= CLIENT_EVENTMASK
;
256 attrib_set
.do_not_propagate_mask
= CLIENT_NOPROPAGATEMASK
;
257 XChangeWindowAttributes(ob_display
, window
,
258 CWEventMask
|CWDontPropagate
, &attrib_set
);
260 /* create the ObClient struct, and populate it from the hints on the
262 self
= g_new0(ObClient
, 1);
263 self
->obwin
.type
= Window_Client
;
264 self
->window
= window
;
266 /* non-zero defaults */
267 self
->wmstate
= WithdrawnState
; /* make sure it gets updated first time */
268 self
->gravity
= NorthWestGravity
;
269 self
->desktop
= screen_num_desktops
; /* always an invalid value */
270 self
->user_time
= focus_client
? focus_client
->user_time
: CurrentTime
;
272 /* get all the stuff off the window */
273 client_get_all(self
, TRUE
);
275 /* specify that if we exit, the window should not be destroyed and
276 should be reparented back to root automatically */
277 XChangeSaveSet(ob_display
, window
, SetModeInsert
);
279 /* create the decoration frame for the client window */
280 self
->frame
= frame_new(self
);
282 frame_grab_client(self
->frame
);
284 /* we've grabbed everything and set everything that we need to at mapping
288 /* per-app settings override stuff from client_get_all, and return the
289 settings for other uses too. the returned settings is a shallow copy,
290 that needs to be freed with g_free(). */
291 settings
= client_get_settings_state(self
);
292 /* the session should get the last say though */
293 client_restore_session_state(self
);
295 /* now we have all of the window's information so we can set this up */
296 client_setup_decor_and_functions(self
, FALSE
);
299 Time t
= sn_app_started(self
->startup_id
, self
->class);
300 if (t
) self
->user_time
= t
;
303 /* do this after we have a frame.. it uses the frame to help determine the
304 WM_STATE to apply. */
305 client_change_state(self
);
307 /* add ourselves to the focus order */
308 focus_order_add_new(self
);
310 /* do this to add ourselves to the stacking list in a non-intrusive way */
311 client_calc_layer(self
);
313 /* focus the new window? */
314 if (ob_state() != OB_STATE_STARTING
&&
315 (!self
->session
|| self
->session
->focused
) &&
317 /* this means focus=true for window is same as config_focus_new=true */
318 ((config_focus_new
|| (settings
&& settings
->focus
== 1)) ||
319 client_search_focus_tree_full(self
)) &&
320 /* this checks for focus=false for the window */
321 (!settings
|| settings
->focus
!= 0) &&
322 /* note the check against type Normal/Dialog/Utility,
323 not client_normal(self), which would also include other types.
324 in this case we want more strict rules for focus */
325 (self
->type
== OB_CLIENT_TYPE_NORMAL
||
326 self
->type
== OB_CLIENT_TYPE_UTILITY
||
327 self
->type
== OB_CLIENT_TYPE_DIALOG
))
332 /* remove the client's border */
333 XSetWindowBorderWidth(ob_display
, self
->window
, 0);
335 /* adjust the frame to the client's size before showing or placing
337 frame_adjust_area(self
->frame
, FALSE
, TRUE
, FALSE
);
338 frame_adjust_client_area(self
->frame
);
340 /* where the frame was placed is where the window was originally */
341 placex
= self
->area
.x
;
342 placey
= self
->area
.y
;
343 placew
= self
->area
.width
;
344 placeh
= self
->area
.height
;
346 /* figure out placement for the window if the window is new */
347 if (ob_state() == OB_STATE_RUNNING
) {
348 ob_debug("Positioned: %s @ %d %d\n",
349 (!self
->positioned
? "no" :
350 (self
->positioned
== PPosition
? "program specified" :
351 (self
->positioned
== USPosition
? "user specified" :
352 (self
->positioned
== (PPosition
| USPosition
) ?
353 "program + user specified" :
354 "BADNESS !?")))), placex
, placey
);
356 ob_debug("Sized: %s @ %d %d\n",
357 (!self
->sized
? "no" :
358 (self
->sized
== PSize
? "program specified" :
359 (self
->sized
== USSize
? "user specified" :
360 (self
->sized
== (PSize
| USSize
) ?
361 "program + user specified" :
362 "BADNESS !?")))), placew
, placeh
);
364 /* splash screens are also returned as TRUE for transient,
365 and so will be forced on screen below */
366 transient
= place_client(self
, &placex
, &placey
, settings
);
368 /* make sure the window is visible. */
369 client_find_onscreen(self
, &placex
, &placey
, placew
, placeh
,
370 /* non-normal clients has less rules, and
371 windows that are being restored from a
372 session do also. we can assume you want
373 it back where you saved it. Clients saying
374 they placed themselves are subjected to
375 harder rules, ones that are placed by
376 place.c or by the user are allowed partially
377 off-screen and on xinerama divides (ie,
378 it is up to the placement routines to avoid
379 the xinerama divides)
381 splash screens get "transient" set to TRUE by
382 the place_client call
384 ob_state() == OB_STATE_RUNNING
&&
386 (!(self
->positioned
& USPosition
) &&
387 client_normal(self
) &&
391 /* if the window isn't user-sized, then make it fit inside
392 the visible screen area on its monitor. Use basically the same rules
393 for forcing the window on screen in the client_find_onscreen call.
395 do this after place_client, it chooses the monitor!
397 splash screens get "transient" set to TRUE by
398 the place_client call
400 if (ob_state() == OB_STATE_RUNNING
&&
402 (!(self
->sized
& USSize
) &&
403 client_normal(self
) &&
406 /* make a copy to modify */
407 Rect a
= *screen_area_monitor(self
->desktop
, client_monitor(self
));
409 /* shrink by the frame's area */
410 a
.width
-= self
->frame
->size
.left
+ self
->frame
->size
.right
;
411 a
.height
-= self
->frame
->size
.top
+ self
->frame
->size
.bottom
;
413 /* fit the window inside the area */
414 if (placew
> a
.width
|| self
->area
.height
> a
.height
) {
415 placew
= MIN(self
->area
.width
, a
.width
);
416 placeh
= MIN(self
->area
.height
, a
.height
);
418 ob_debug("setting window size to %dx%d\n",
419 self
->area
.width
, self
->area
.height
);
424 ob_debug("placing window 0x%x at %d, %d with size %d x %d. "
425 "some restrictions may apply\n",
426 self
->window
, placex
, placey
, placew
, placeh
);
428 ob_debug(" but session requested %d, %d %d x %d instead, "
430 self
->session
->x
, self
->session
->y
,
431 self
->session
->w
, self
->session
->h
);
433 /* do this after the window is placed, so the premax/prefullscreen numbers
436 this also places the window
438 client_apply_startup_state(self
, placex
, placey
, placew
, placeh
);
441 guint32 last_time
= focus_client
?
442 focus_client
->user_time
: CurrentTime
;
444 /* This is focus stealing prevention */
445 ob_debug_type(OB_DEBUG_FOCUS
,
446 "Want to focus new window 0x%x with time %u "
448 self
->window
, self
->user_time
, last_time
);
450 /* if it's on another desktop */
451 if (!(self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
452 && /* the timestamp is from before you changed desktops */
453 self
->user_time
&& screen_desktop_user_time
&&
454 !event_time_after(self
->user_time
, screen_desktop_user_time
))
457 ob_debug_type(OB_DEBUG_FOCUS
,
458 "Not focusing the window because its on another "
461 /* If something is focused, and it's not our relative... */
462 else if (focus_client
&& client_search_focus_tree_full(self
) == NULL
&&
463 client_search_focus_group_full(self
) == NULL
)
465 /* If time stamp is old, don't steal focus */
466 if (self
->user_time
&& last_time
&&
467 !event_time_after(self
->user_time
, last_time
))
470 ob_debug_type(OB_DEBUG_FOCUS
,
471 "Not focusing the window because the time is "
474 /* If its a transient (and parents aren't focused) and the time
475 is ambiguous (either the current focus target doesn't have
476 a timestamp, or they are the same (we probably inherited it
478 else if (client_has_parent(self
) &&
479 (!last_time
|| self
->user_time
== last_time
))
482 ob_debug_type(OB_DEBUG_FOCUS
,
483 "Not focusing the window because it is a "
484 "transient, and the time is very ambiguous\n");
486 /* Don't steal focus from globally active clients.
487 I stole this idea from KWin. It seems nice.
489 else if (!(focus_client
->can_focus
||
490 focus_client
->focus_notify
))
493 ob_debug_type(OB_DEBUG_FOCUS
,
494 "Not focusing the window because a globally "
495 "active client has focus\n");
497 /* Don't move focus if it's not going to go to this window
499 else if (client_focus_target(self
) != self
) {
501 ob_debug_type(OB_DEBUG_FOCUS
,
502 "Not focusing the window because another window "
503 "would get the focus anyway\n");
508 ob_debug_type(OB_DEBUG_FOCUS
,
509 "Focus stealing prevention activated for %s with "
510 "time %u (last time %u)\n",
511 self
->title
, self
->user_time
, last_time
);
512 /* if the client isn't focused, then hilite it so the user
514 client_hilite(self
, TRUE
);
518 /* This may look rather odd. Well it's because new windows are added
519 to the stacking order non-intrusively. If we're not going to focus
520 the new window or hilite it, then we raise it to the top. This will
521 take affect for things that don't get focused like splash screens.
522 Also if you don't have focus_new enabled, then it's going to get
523 raised to the top. Legacy begets legacy I guess?
525 if (!client_restore_session_stacking(self
))
526 stacking_raise(CLIENT_AS_WINDOW(self
));
529 mouse_grab_for_client(self
, TRUE
);
531 /* this has to happen before we try focus the window, but we want it to
532 happen after the client's stacking has been determined or it looks bad
537 gboolean stacked
= client_restore_session_stacking(self
);
538 client_present(self
, FALSE
, !stacked
);
541 /* add to client list/map */
542 client_list
= g_list_append(client_list
, self
);
543 g_hash_table_insert(window_map
, &self
->window
, self
);
545 /* this has to happen after we're in the client_list */
546 if (STRUT_EXISTS(self
->strut
))
547 screen_update_areas();
549 /* update the list hints */
552 /* free the ObAppSettings shallow copy */
555 ob_debug("Managed window 0x%lx plate 0x%x (%s)\n",
556 window
, self
->frame
->window
, self
->class);
562 ObClient
*client_fake_manage(Window window
)
565 ObAppSettings
*settings
;
567 ob_debug("Pretend-managing window: %lx\n", window
);
569 /* do this minimal stuff to figure out the client's decorations */
571 self
= g_new0(ObClient
, 1);
572 self
->window
= window
;
574 client_get_all(self
, FALSE
);
575 /* per-app settings override stuff, and return the settings for other
576 uses too. this returns a shallow copy that needs to be freed */
577 settings
= client_get_settings_state(self
);
579 client_setup_decor_and_functions(self
, FALSE
);
581 /* create the decoration frame for the client window and adjust its size */
582 self
->frame
= frame_new(self
);
583 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
585 ob_debug("gave extents left %d right %d top %d bottom %d\n",
586 self
->frame
->size
.left
, self
->frame
->size
.right
,
587 self
->frame
->size
.top
, self
->frame
->size
.bottom
);
589 /* free the ObAppSettings shallow copy */
595 void client_unmanage_all()
597 while (client_list
!= NULL
)
598 client_unmanage(client_list
->data
);
601 void client_unmanage(ObClient
*self
)
607 ob_debug("Unmanaging window: 0x%x plate 0x%x (%s) (%s)\n",
608 self
->window
, self
->frame
->window
,
609 self
->class, self
->title
? self
->title
: "");
611 g_assert(self
!= NULL
);
613 /* we dont want events no more. do this before hiding the frame so we
614 don't generate more events */
615 XSelectInput(ob_display
, self
->window
, NoEventMask
);
617 /* ignore enter events from the unmap so it doesnt mess with the focus */
618 if (!client_focused(self
) || !config_focus_under_mouse
)
619 ignore_start
= event_start_ignore_all_enters();
621 frame_hide(self
->frame
);
622 /* flush to send the hide to the server quickly */
625 if (!client_focused(self
) || !config_focus_under_mouse
)
626 event_end_ignore_all_enters(ignore_start
);
628 mouse_grab_for_client(self
, FALSE
);
630 /* remove the window from our save set */
631 XChangeSaveSet(ob_display
, self
->window
, SetModeDelete
);
633 /* kill the property windows */
634 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
636 /* update the focus lists */
637 focus_order_remove(self
);
638 if (client_focused(self
)) {
639 /* don't leave an invalid focus_client */
643 client_list
= g_list_remove(client_list
, self
);
644 stacking_remove(self
);
645 g_hash_table_remove(window_map
, &self
->window
);
647 /* once the client is out of the list, update the struts to remove its
649 if (STRUT_EXISTS(self
->strut
))
650 screen_update_areas();
652 client_call_notifies(self
, client_destroy_notifies
);
654 /* tell our parent(s) that we're gone */
655 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
656 ((ObClient
*)it
->data
)->transients
=
657 g_slist_remove(((ObClient
*)it
->data
)->transients
,self
);
659 /* tell our transients that we're gone */
660 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
661 ((ObClient
*)it
->data
)->parents
=
662 g_slist_remove(((ObClient
*)it
->data
)->parents
, self
);
663 /* we could be keeping our children in a higher layer */
664 client_calc_layer(it
->data
);
667 /* remove from its group */
669 group_remove(self
->group
, self
);
673 /* restore the window's original geometry so it is not lost */
679 if (self
->fullscreen
)
680 a
= self
->pre_fullscreen_area
;
681 else if (self
->max_horz
|| self
->max_vert
) {
682 if (self
->max_horz
) {
683 a
.x
= self
->pre_max_area
.x
;
684 a
.width
= self
->pre_max_area
.width
;
686 if (self
->max_vert
) {
687 a
.y
= self
->pre_max_area
.y
;
688 a
.height
= self
->pre_max_area
.height
;
692 self
->fullscreen
= self
->max_horz
= self
->max_vert
= FALSE
;
693 /* let it be moved and resized no matter what */
694 self
->functions
= OB_CLIENT_FUNC_MOVE
| OB_CLIENT_FUNC_RESIZE
;
695 self
->decorations
= 0; /* unmanaged windows have no decor */
697 /* give the client its border back */
698 XSetWindowBorderWidth(ob_display
, self
->window
, self
->border_width
);
700 client_move_resize(self
, a
.x
, a
.y
, a
.width
, a
.height
);
703 /* reparent the window out of the frame, and free the frame */
704 frame_release_client(self
->frame
);
705 frame_free(self
->frame
);
708 if (ob_state() != OB_STATE_EXITING
) {
709 /* these values should not be persisted across a window
711 PROP_ERASE(self
->window
, net_wm_desktop
);
712 PROP_ERASE(self
->window
, net_wm_state
);
713 PROP_ERASE(self
->window
, wm_state
);
715 /* if we're left in an unmapped state, the client wont be mapped.
716 this is bad, since we will no longer be managing the window on
718 XMapWindow(ob_display
, self
->window
);
721 /* update the list hints */
724 ob_debug("Unmanaged window 0x%lx\n", self
->window
);
726 /* free all data allocated in the client struct */
727 g_slist_free(self
->transients
);
728 for (j
= 0; j
< self
->nicons
; ++j
)
729 g_free(self
->icons
[j
].data
);
730 if (self
->nicons
> 0)
732 g_free(self
->wm_command
);
734 g_free(self
->icon_title
);
738 g_free(self
->client_machine
);
739 g_free(self
->sm_client_id
);
743 void client_fake_unmanage(ObClient
*self
)
745 /* this is all that got allocated to get the decorations */
747 frame_free(self
->frame
);
751 /*! Returns a new structure containing the per-app settings for this client.
752 The returned structure needs to be freed with g_free. */
753 static ObAppSettings
*client_get_settings_state(ObClient
*self
)
755 ObAppSettings
*settings
;
758 settings
= config_create_app_settings();
760 for (it
= config_per_app_settings
; it
; it
= g_slist_next(it
)) {
761 ObAppSettings
*app
= it
->data
;
762 gboolean match
= TRUE
;
764 g_assert(app
->name
!= NULL
|| app
->class != NULL
);
766 /* we know that either name or class is not NULL so it will have to
767 match to use the rule */
769 !g_pattern_match(app
->name
, strlen(self
->name
), self
->name
, NULL
))
771 else if (app
->class &&
772 !g_pattern_match(app
->class,
773 strlen(self
->class), self
->class, NULL
))
775 else if (app
->role
&&
776 !g_pattern_match(app
->role
,
777 strlen(self
->role
), self
->role
, NULL
))
781 ob_debug("Window matching: %s\n", app
->name
);
783 /* copy the settings to our struct, overriding the existing
784 settings if they are not defaults */
785 config_app_settings_copy_non_defaults(app
, settings
);
789 if (settings
->shade
!= -1)
790 self
->shaded
= !!settings
->shade
;
791 if (settings
->decor
!= -1)
792 self
->undecorated
= !settings
->decor
;
793 if (settings
->iconic
!= -1)
794 self
->iconic
= !!settings
->iconic
;
795 if (settings
->skip_pager
!= -1)
796 self
->skip_pager
= !!settings
->skip_pager
;
797 if (settings
->skip_taskbar
!= -1)
798 self
->skip_taskbar
= !!settings
->skip_taskbar
;
800 if (settings
->max_vert
!= -1)
801 self
->max_vert
= !!settings
->max_vert
;
802 if (settings
->max_horz
!= -1)
803 self
->max_horz
= !!settings
->max_horz
;
805 if (settings
->fullscreen
!= -1)
806 self
->fullscreen
= !!settings
->fullscreen
;
808 if (settings
->desktop
) {
809 if (settings
->desktop
== DESKTOP_ALL
)
810 self
->desktop
= settings
->desktop
;
811 else if (settings
->desktop
> 0 &&
812 settings
->desktop
<= screen_num_desktops
)
813 self
->desktop
= settings
->desktop
- 1;
816 if (settings
->layer
== -1) {
820 else if (settings
->layer
== 0) {
824 else if (settings
->layer
== 1) {
831 static void client_restore_session_state(ObClient
*self
)
835 ob_debug_type(OB_DEBUG_SM
,
836 "Restore session for client %s\n", self
->title
);
838 if (!(it
= session_state_find(self
))) {
839 ob_debug_type(OB_DEBUG_SM
,
840 "Session data not found for client %s\n", self
->title
);
844 self
->session
= it
->data
;
846 ob_debug_type(OB_DEBUG_SM
, "Session data loaded for client %s\n",
849 RECT_SET_POINT(self
->area
, self
->session
->x
, self
->session
->y
);
850 self
->positioned
= USPosition
;
851 self
->sized
= USSize
;
852 if (self
->session
->w
> 0)
853 self
->area
.width
= self
->session
->w
;
854 if (self
->session
->h
> 0)
855 self
->area
.height
= self
->session
->h
;
856 XResizeWindow(ob_display
, self
->window
,
857 self
->area
.width
, self
->area
.height
);
859 self
->desktop
= (self
->session
->desktop
== DESKTOP_ALL
?
860 self
->session
->desktop
:
861 MIN(screen_num_desktops
- 1, self
->session
->desktop
));
862 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
864 self
->shaded
= self
->session
->shaded
;
865 self
->iconic
= self
->session
->iconic
;
866 self
->skip_pager
= self
->session
->skip_pager
;
867 self
->skip_taskbar
= self
->session
->skip_taskbar
;
868 self
->fullscreen
= self
->session
->fullscreen
;
869 self
->above
= self
->session
->above
;
870 self
->below
= self
->session
->below
;
871 self
->max_horz
= self
->session
->max_horz
;
872 self
->max_vert
= self
->session
->max_vert
;
873 self
->undecorated
= self
->session
->undecorated
;
876 static gboolean
client_restore_session_stacking(ObClient
*self
)
880 if (!self
->session
) return FALSE
;
882 mypos
= g_list_find(session_saved_state
, self
->session
);
883 if (!mypos
) return FALSE
;
885 /* start above me and look for the first client */
886 for (it
= g_list_previous(mypos
); it
; it
= g_list_previous(it
)) {
889 for (cit
= client_list
; cit
; cit
= g_list_next(cit
)) {
890 ObClient
*c
= cit
->data
;
891 /* found a client that was in the session, so go below it */
892 if (c
->session
== it
->data
) {
893 stacking_below(CLIENT_AS_WINDOW(self
),
894 CLIENT_AS_WINDOW(cit
->data
));
902 void client_move_onscreen(ObClient
*self
, gboolean rude
)
904 gint x
= self
->area
.x
;
905 gint y
= self
->area
.y
;
906 if (client_find_onscreen(self
, &x
, &y
,
908 self
->area
.height
, rude
)) {
909 client_move(self
, x
, y
);
913 gboolean
client_find_onscreen(ObClient
*self
, gint
*x
, gint
*y
, gint w
, gint h
,
917 gint ox
= *x
, oy
= *y
;
918 gboolean rudel
= rude
, ruder
= rude
, rudet
= rude
, rudeb
= rude
;
922 RECT_SET(desired
, *x
, *y
, w
, h
);
923 all_a
= screen_area(self
->desktop
);
924 mon_a
= screen_area_monitor(self
->desktop
, screen_find_monitor(&desired
));
926 /* get where the frame would be */
927 frame_client_gravity(self
->frame
, x
, y
, w
, h
);
929 /* get the requested size of the window with decorations */
930 fw
= self
->frame
->size
.left
+ w
+ self
->frame
->size
.right
;
931 fh
= self
->frame
->size
.top
+ h
+ self
->frame
->size
.bottom
;
933 /* This makes sure windows aren't entirely outside of the screen so you
934 can't see them at all.
935 It makes sure 10% of the window is on the screen at least. At don't let
936 it move itself off the top of the screen, which would hide the titlebar
937 on you. (The user can still do this if they want too, it's only limiting
940 XXX watch for xinerama dead areas...
942 if (client_normal(self
)) {
943 if (!self
->strut
.right
&& *x
+ fw
/10 >= all_a
->x
+ all_a
->width
- 1)
944 *x
= all_a
->x
+ all_a
->width
- fw
/10;
945 if (!self
->strut
.bottom
&& *y
+ fh
/10 >= all_a
->y
+ all_a
->height
- 1)
946 *y
= all_a
->y
+ all_a
->height
- fh
/10;
947 if (!self
->strut
.left
&& *x
+ fw
*9/10 - 1 < all_a
->x
)
948 *x
= all_a
->x
- fw
*9/10;
949 if (!self
->strut
.top
&& *y
+ fh
*9/10 - 1 < all_a
->y
)
950 *y
= all_a
->y
- fw
*9/10;
953 /* If rudeness wasn't requested, then figure out of the client is currently
954 entirely on the screen. If it is, and the position isn't changing by
955 request, and it is enlarging, then be rude even though it wasn't
958 Point oldtl
, oldtr
, oldbl
, oldbr
;
959 Point newtl
, newtr
, newbl
, newbr
;
960 gboolean stationary_l
, stationary_r
, stationary_t
, stationary_b
;
962 POINT_SET(oldtl
, self
->frame
->area
.x
, self
->frame
->area
.y
);
963 POINT_SET(oldbr
, self
->frame
->area
.x
+ self
->frame
->area
.width
- 1,
964 self
->frame
->area
.y
+ self
->frame
->area
.height
- 1);
965 POINT_SET(oldtr
, oldbr
.x
, oldtl
.y
);
966 POINT_SET(oldbl
, oldtl
.x
, oldbr
.y
);
968 POINT_SET(newtl
, *x
, *y
);
969 POINT_SET(newbr
, *x
+ fw
- 1, *y
+ fh
- 1);
970 POINT_SET(newtr
, newbr
.x
, newtl
.y
);
971 POINT_SET(newbl
, newtl
.x
, newbr
.y
);
973 /* is it moving or just resizing from some corner? */
974 stationary_l
= oldtl
.x
== newtl
.x
;
975 stationary_r
= oldtr
.x
== newtr
.x
;
976 stationary_t
= oldtl
.y
== newtl
.y
;
977 stationary_b
= oldbl
.y
== newbl
.y
;
979 /* if left edge is growing and didnt move right edge */
980 if (stationary_r
&& newtl
.x
< oldtl
.x
)
982 /* if right edge is growing and didnt move left edge */
983 if (stationary_l
&& newtr
.x
> oldtr
.x
)
985 /* if top edge is growing and didnt move bottom edge */
986 if (stationary_b
&& newtl
.y
< oldtl
.y
)
988 /* if bottom edge is growing and didnt move top edge */
989 if (stationary_t
&& newbl
.y
> oldbl
.y
)
993 /* This here doesn't let windows even a pixel outside the struts/screen.
994 * When called from client_manage, programs placing themselves are
995 * forced completely onscreen, while things like
996 * xterm -geometry resolution-width/2 will work fine. Trying to
997 * place it completely offscreen will be handled in the above code.
998 * Sorry for this confused comment, i am tired. */
999 if (rudel
&& !self
->strut
.left
&& *x
< mon_a
->x
) *x
= mon_a
->x
;
1000 if (ruder
&& !self
->strut
.right
&& *x
+ fw
> mon_a
->x
+ mon_a
->width
)
1001 *x
= mon_a
->x
+ MAX(0, mon_a
->width
- fw
);
1003 if (rudet
&& !self
->strut
.top
&& *y
< mon_a
->y
) *y
= mon_a
->y
;
1004 if (rudeb
&& !self
->strut
.bottom
&& *y
+ fh
> mon_a
->y
+ mon_a
->height
)
1005 *y
= mon_a
->y
+ MAX(0, mon_a
->height
- fh
);
1007 /* get where the client should be */
1008 frame_frame_gravity(self
->frame
, x
, y
, w
, h
);
1010 return ox
!= *x
|| oy
!= *y
;
1013 static void client_get_all(ObClient
*self
, gboolean real
)
1015 /* this is needed for the frame to set itself up */
1016 client_get_area(self
);
1018 /* these things can change the decor and functions of the window */
1020 client_get_mwm_hints(self
);
1021 /* this can change the mwmhints for special cases */
1022 client_get_type_and_transientness(self
);
1023 client_get_state(self
);
1024 client_update_normal_hints(self
);
1026 /* get the session related properties, these can change decorations
1027 from per-app settings */
1028 client_get_session_ids(self
);
1030 /* now we got everything that can affect the decorations */
1034 /* get this early so we have it for debugging */
1035 client_update_title(self
);
1037 client_update_protocols(self
);
1039 client_update_wmhints(self
);
1040 /* this may have already been called from client_update_wmhints */
1041 if (self
->transient_for
== NULL
)
1042 client_update_transient_for(self
);
1044 client_get_startup_id(self
);
1045 client_get_desktop(self
);/* uses transient data/group/startup id if a
1046 desktop is not specified */
1047 client_get_shaped(self
);
1050 /* a couple type-based defaults for new windows */
1052 /* this makes sure that these windows appear on all desktops */
1053 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
1054 self
->desktop
= DESKTOP_ALL
;
1058 client_update_sync_request_counter(self
);
1061 client_get_colormap(self
);
1062 client_update_strut(self
);
1063 client_update_icons(self
);
1064 client_update_user_time_window(self
);
1065 if (!self
->user_time_window
) /* check if this would have been called */
1066 client_update_user_time(self
);
1067 client_update_icon_geometry(self
);
1070 static void client_get_startup_id(ObClient
*self
)
1072 if (!(PROP_GETS(self
->window
, net_startup_id
, utf8
, &self
->startup_id
)))
1074 PROP_GETS(self
->group
->leader
,
1075 net_startup_id
, utf8
, &self
->startup_id
);
1078 static void client_get_area(ObClient
*self
)
1080 XWindowAttributes wattrib
;
1083 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
1084 g_assert(ret
!= BadWindow
);
1086 RECT_SET(self
->area
, wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
1087 POINT_SET(self
->root_pos
, wattrib
.x
, wattrib
.y
);
1088 self
->border_width
= wattrib
.border_width
;
1090 ob_debug("client area: %d %d %d %d bw %d\n", wattrib
.x
, wattrib
.y
,
1091 wattrib
.width
, wattrib
.height
, wattrib
.border_width
);
1094 static void client_get_desktop(ObClient
*self
)
1096 guint32 d
= screen_num_desktops
; /* an always-invalid value */
1098 if (PROP_GET32(self
->window
, net_wm_desktop
, cardinal
, &d
)) {
1099 if (d
>= screen_num_desktops
&& d
!= DESKTOP_ALL
)
1100 self
->desktop
= screen_num_desktops
- 1;
1103 ob_debug("client requested desktop 0x%x\n", self
->desktop
);
1106 gboolean first
= TRUE
;
1107 guint all
= screen_num_desktops
; /* not a valid value */
1109 /* if they are all on one desktop, then open it on the
1111 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
1112 ObClient
*c
= it
->data
;
1114 if (c
->desktop
== DESKTOP_ALL
) continue;
1120 else if (all
!= c
->desktop
)
1121 all
= screen_num_desktops
; /* make it invalid */
1123 if (all
!= screen_num_desktops
) {
1124 self
->desktop
= all
;
1126 /* try get from the startup-notification protocol */
1127 else if (sn_get_desktop(self
->startup_id
, &self
->desktop
)) {
1128 if (self
->desktop
>= screen_num_desktops
&&
1129 self
->desktop
!= DESKTOP_ALL
)
1130 self
->desktop
= screen_num_desktops
- 1;
1132 /* defaults to the current desktop */
1134 self
->desktop
= screen_desktop
;
1138 static void client_get_state(ObClient
*self
)
1143 if (PROP_GETA32(self
->window
, net_wm_state
, atom
, &state
, &num
)) {
1145 for (i
= 0; i
< num
; ++i
) {
1146 if (state
[i
] == prop_atoms
.net_wm_state_modal
)
1148 else if (state
[i
] == prop_atoms
.net_wm_state_shaded
)
1149 self
->shaded
= TRUE
;
1150 else if (state
[i
] == prop_atoms
.net_wm_state_hidden
)
1151 self
->iconic
= TRUE
;
1152 else if (state
[i
] == prop_atoms
.net_wm_state_skip_taskbar
)
1153 self
->skip_taskbar
= TRUE
;
1154 else if (state
[i
] == prop_atoms
.net_wm_state_skip_pager
)
1155 self
->skip_pager
= TRUE
;
1156 else if (state
[i
] == prop_atoms
.net_wm_state_fullscreen
)
1157 self
->fullscreen
= TRUE
;
1158 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_vert
)
1159 self
->max_vert
= TRUE
;
1160 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_horz
)
1161 self
->max_horz
= TRUE
;
1162 else if (state
[i
] == prop_atoms
.net_wm_state_above
)
1164 else if (state
[i
] == prop_atoms
.net_wm_state_below
)
1166 else if (state
[i
] == prop_atoms
.net_wm_state_demands_attention
)
1167 self
->demands_attention
= TRUE
;
1168 else if (state
[i
] == prop_atoms
.ob_wm_state_undecorated
)
1169 self
->undecorated
= TRUE
;
1176 static void client_get_shaped(ObClient
*self
)
1178 self
->shaped
= FALSE
;
1180 if (extensions_shape
) {
1185 XShapeSelectInput(ob_display
, self
->window
, ShapeNotifyMask
);
1187 XShapeQueryExtents(ob_display
, self
->window
, &s
, &foo
,
1188 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
,
1190 self
->shaped
= (s
!= 0);
1195 void client_update_transient_for(ObClient
*self
)
1198 ObClient
*target
= NULL
;
1200 if (XGetTransientForHint(ob_display
, self
->window
, &t
)) {
1201 if (t
!= self
->window
) { /* cant be transient to itself! */
1202 target
= g_hash_table_lookup(window_map
, &t
);
1203 /* if this happens then we need to check for it*/
1204 g_assert(target
!= self
);
1205 if (target
&& !WINDOW_IS_CLIENT(target
)) {
1206 /* this can happen when a dialog is a child of
1207 a dockapp, for example */
1211 /* Setting the transient_for to Root is actually illegal, however
1212 applications from time have done this to specify transient for
1214 if (!target
&& self
->group
) {
1215 /* not transient to a client, see if it is transient for a
1217 if (t
== RootWindow(ob_display
, ob_screen
)) {
1218 /* window is a transient for its group! */
1219 target
= OB_TRAN_GROUP
;
1223 } else if (self
->transient
&& self
->group
)
1224 target
= OB_TRAN_GROUP
;
1226 client_update_transient_tree(self
, self
->group
, self
->group
,
1227 self
->transient_for
, target
);
1228 self
->transient_for
= target
;
1232 static void client_update_transient_tree(ObClient
*self
,
1233 ObGroup
*oldgroup
, ObGroup
*newgroup
,
1234 ObClient
* oldparent
,
1235 ObClient
*newparent
)
1241 Group transient windows are not allowed to have other group
1242 transient windows as their children.
1246 /* No change has occured */
1247 if (oldgroup
== newgroup
&& oldparent
== newparent
) return;
1249 /** Remove the client from the transient tree wherever it has changed **/
1251 /* If the window is becoming a direct transient for a window in its group
1252 then any group transients which were our children and are now becoming
1253 our parents need to stop being our children.
1255 Group transients can't be children of group transients already, but
1256 we could have any number of direct parents above up, any of which could
1257 be transient for the group, and we need to remove it from our children.
1259 if (oldparent
!= newparent
&&
1260 newparent
!= NULL
&& newparent
!= OB_TRAN_GROUP
&&
1261 newgroup
!= NULL
&& newgroup
== oldgroup
&& client_normal(newparent
))
1263 ObClient
*look
= client_search_top_direct_parent(newparent
);
1264 self
->transients
= g_slist_remove(self
->transients
, look
);
1265 look
->parents
= g_slist_remove(look
->parents
, self
);
1269 /* If the group changed, or if we are just becoming transient for the
1270 group, then we need to remove any old group transient windows
1271 from our children. But if we were already transient for the group, then
1272 other group transients are not our children. */
1273 if ((oldgroup
!= newgroup
||
1274 (newparent
== OB_TRAN_GROUP
&& oldparent
!= newparent
)) &&
1275 oldgroup
!= NULL
&& oldparent
!= OB_TRAN_GROUP
)
1277 for (it
= self
->transients
; it
; it
= next
) {
1278 next
= g_slist_next(it
);
1280 if (c
->group
== oldgroup
&& client_normal(self
)) {
1281 self
->transients
= g_slist_delete_link(self
->transients
, it
);
1282 c
->parents
= g_slist_remove(c
->parents
, self
);
1287 /* If we used to be transient for a group and now we are not, or we're
1288 transient for a new group, then we need to remove ourselves from all
1290 if (oldparent
== OB_TRAN_GROUP
&& (oldgroup
!= newgroup
||
1291 oldparent
!= newparent
))
1293 for (it
= self
->parents
; it
; it
= next
) {
1294 next
= g_slist_next(it
);
1296 if ((!c
->transient_for
|| c
->transient_for
!= OB_TRAN_GROUP
) &&
1299 c
->transients
= g_slist_remove(c
->transients
, self
);
1300 self
->parents
= g_slist_delete_link(self
->parents
, it
);
1304 /* If we used to be transient for a single window and we are no longer
1305 transient for it, then we need to remove ourself from its children */
1306 else if (oldparent
!= NULL
&& oldparent
!= OB_TRAN_GROUP
&&
1307 oldparent
!= newparent
&& client_normal(oldparent
))
1309 oldparent
->transients
= g_slist_remove(oldparent
->transients
, self
);
1310 self
->parents
= g_slist_remove(self
->parents
, oldparent
);
1313 /** Re-add the client to the transient tree wherever it has changed **/
1315 /* If we're now transient for a group and we weren't transient for it
1316 before then we need to add ourselves to all our new parents */
1317 if (newparent
== OB_TRAN_GROUP
&& (oldgroup
!= newgroup
||
1318 oldparent
!= newparent
))
1320 for (it
= oldgroup
->members
; it
; it
= g_slist_next(it
)) {
1323 (!c
->transient_for
||
1324 c
->transient_for
!= OB_TRAN_GROUP
) &&
1327 c
->transients
= g_slist_prepend(c
->transients
, self
);
1328 self
->parents
= g_slist_prepend(self
->parents
, c
);
1332 /* If we are now transient for a single window which we weren't before,
1333 we need to add ourselves to its children
1335 WARNING: Cyclical transient ness is possible if two windows are
1336 transient for eachother.
1338 else if (newparent
!= NULL
&& newparent
!= OB_TRAN_GROUP
&&
1339 newparent
!= oldparent
&&
1340 /* don't make ourself its child if it is already our child */
1341 !client_is_direct_child(self
, newparent
) &&
1342 client_normal(newparent
))
1344 newparent
->transients
= g_slist_prepend(newparent
->transients
, self
);
1345 self
->parents
= g_slist_prepend(self
->parents
, newparent
);
1348 /* If the group changed then we need to add any new group transient
1349 windows to our children. But if we're transient for the group, then
1350 other group transients are not our children.
1352 WARNING: Cyclical transient-ness is possible. For e.g. if:
1353 A is transient for the group
1354 B is transient for A
1355 C is transient for B
1356 A can't be transient for C or we have a cycle
1358 if (oldgroup
!= newgroup
&& newgroup
!= NULL
&&
1359 newparent
!= OB_TRAN_GROUP
)
1361 for (it
= newgroup
->members
; it
; it
= g_slist_next(it
)) {
1363 if (c
!= self
&& c
->transient_for
== OB_TRAN_GROUP
&&
1364 /* Don't make it our child if it is already our parent */
1365 !client_is_direct_child(c
, self
) &&
1366 client_normal(self
))
1368 self
->transients
= g_slist_prepend(self
->transients
, c
);
1369 c
->parents
= g_slist_prepend(c
->parents
, self
);
1375 static void client_get_mwm_hints(ObClient
*self
)
1380 self
->mwmhints
.flags
= 0; /* default to none */
1382 if (PROP_GETA32(self
->window
, motif_wm_hints
, motif_wm_hints
,
1384 if (num
>= OB_MWM_ELEMENTS
) {
1385 self
->mwmhints
.flags
= hints
[0];
1386 self
->mwmhints
.functions
= hints
[1];
1387 self
->mwmhints
.decorations
= hints
[2];
1393 void client_get_type_and_transientness(ObClient
*self
)
1400 self
->transient
= FALSE
;
1402 if (PROP_GETA32(self
->window
, net_wm_window_type
, atom
, &val
, &num
)) {
1403 /* use the first value that we know about in the array */
1404 for (i
= 0; i
< num
; ++i
) {
1405 if (val
[i
] == prop_atoms
.net_wm_window_type_desktop
)
1406 self
->type
= OB_CLIENT_TYPE_DESKTOP
;
1407 else if (val
[i
] == prop_atoms
.net_wm_window_type_dock
)
1408 self
->type
= OB_CLIENT_TYPE_DOCK
;
1409 else if (val
[i
] == prop_atoms
.net_wm_window_type_toolbar
)
1410 self
->type
= OB_CLIENT_TYPE_TOOLBAR
;
1411 else if (val
[i
] == prop_atoms
.net_wm_window_type_menu
)
1412 self
->type
= OB_CLIENT_TYPE_MENU
;
1413 else if (val
[i
] == prop_atoms
.net_wm_window_type_utility
)
1414 self
->type
= OB_CLIENT_TYPE_UTILITY
;
1415 else if (val
[i
] == prop_atoms
.net_wm_window_type_splash
)
1416 self
->type
= OB_CLIENT_TYPE_SPLASH
;
1417 else if (val
[i
] == prop_atoms
.net_wm_window_type_dialog
)
1418 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1419 else if (val
[i
] == prop_atoms
.net_wm_window_type_normal
)
1420 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1421 else if (val
[i
] == prop_atoms
.kde_net_wm_window_type_override
) {
1422 /* prevent this window from getting any decor or
1424 self
->mwmhints
.flags
&= (OB_MWM_FLAG_FUNCTIONS
|
1425 OB_MWM_FLAG_DECORATIONS
);
1426 self
->mwmhints
.decorations
= 0;
1427 self
->mwmhints
.functions
= 0;
1429 if (self
->type
!= (ObClientType
) -1)
1430 break; /* grab the first legit type */
1435 if (XGetTransientForHint(ob_display
, self
->window
, &t
))
1436 self
->transient
= TRUE
;
1438 if (self
->type
== (ObClientType
) -1) {
1439 /*the window type hint was not set, which means we either classify
1440 ourself as a normal window or a dialog, depending on if we are a
1442 if (self
->transient
)
1443 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1445 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1448 /* then, based on our type, we can update our transientness.. */
1449 if (self
->type
== OB_CLIENT_TYPE_DIALOG
||
1450 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
1451 self
->type
== OB_CLIENT_TYPE_MENU
||
1452 self
->type
== OB_CLIENT_TYPE_UTILITY
)
1454 self
->transient
= TRUE
;
1458 void client_update_protocols(ObClient
*self
)
1461 guint num_return
, i
;
1463 self
->focus_notify
= FALSE
;
1464 self
->delete_window
= FALSE
;
1466 if (PROP_GETA32(self
->window
, wm_protocols
, atom
, &proto
, &num_return
)) {
1467 for (i
= 0; i
< num_return
; ++i
) {
1468 if (proto
[i
] == prop_atoms
.wm_delete_window
)
1469 /* this means we can request the window to close */
1470 self
->delete_window
= TRUE
;
1471 else if (proto
[i
] == prop_atoms
.wm_take_focus
)
1472 /* if this protocol is requested, then the window will be
1473 notified whenever we want it to receive focus */
1474 self
->focus_notify
= TRUE
;
1476 else if (proto
[i
] == prop_atoms
.net_wm_sync_request
)
1477 /* if this protocol is requested, then resizing the
1478 window will be synchronized between the frame and the
1480 self
->sync_request
= TRUE
;
1488 void client_update_sync_request_counter(ObClient
*self
)
1492 if (PROP_GET32(self
->window
, net_wm_sync_request_counter
, cardinal
, &i
)) {
1493 self
->sync_counter
= i
;
1495 self
->sync_counter
= None
;
1499 void client_get_colormap(ObClient
*self
)
1501 XWindowAttributes wa
;
1503 if (XGetWindowAttributes(ob_display
, self
->window
, &wa
))
1504 client_update_colormap(self
, wa
.colormap
);
1507 void client_update_colormap(ObClient
*self
, Colormap colormap
)
1509 if (colormap
== self
->colormap
) return;
1511 ob_debug("Setting client %s colormap: 0x%x\n", self
->title
, colormap
);
1513 if (client_focused(self
)) {
1514 screen_install_colormap(self
, FALSE
); /* uninstall old one */
1515 self
->colormap
= colormap
;
1516 screen_install_colormap(self
, FALSE
); /* install new one */
1518 self
->colormap
= colormap
;
1521 void client_update_normal_hints(ObClient
*self
)
1527 self
->min_ratio
= 0.0f
;
1528 self
->max_ratio
= 0.0f
;
1529 SIZE_SET(self
->size_inc
, 1, 1);
1530 SIZE_SET(self
->base_size
, 0, 0);
1531 SIZE_SET(self
->min_size
, 0, 0);
1532 SIZE_SET(self
->max_size
, G_MAXINT
, G_MAXINT
);
1534 /* get the hints from the window */
1535 if (XGetWMNormalHints(ob_display
, self
->window
, &size
, &ret
)) {
1536 /* normal windows can't request placement! har har
1537 if (!client_normal(self))
1539 self
->positioned
= (size
.flags
& (PPosition
|USPosition
));
1540 self
->sized
= (size
.flags
& (PSize
|USSize
));
1542 if (size
.flags
& PWinGravity
)
1543 self
->gravity
= size
.win_gravity
;
1545 if (size
.flags
& PAspect
) {
1546 if (size
.min_aspect
.y
)
1548 (gfloat
) size
.min_aspect
.x
/ size
.min_aspect
.y
;
1549 if (size
.max_aspect
.y
)
1551 (gfloat
) size
.max_aspect
.x
/ size
.max_aspect
.y
;
1554 if (size
.flags
& PMinSize
)
1555 SIZE_SET(self
->min_size
, size
.min_width
, size
.min_height
);
1557 if (size
.flags
& PMaxSize
)
1558 SIZE_SET(self
->max_size
, size
.max_width
, size
.max_height
);
1560 if (size
.flags
& PBaseSize
)
1561 SIZE_SET(self
->base_size
, size
.base_width
, size
.base_height
);
1563 if (size
.flags
& PResizeInc
&& size
.width_inc
&& size
.height_inc
)
1564 SIZE_SET(self
->size_inc
, size
.width_inc
, size
.height_inc
);
1568 void client_setup_decor_and_functions(ObClient
*self
, gboolean reconfig
)
1570 /* start with everything (cept fullscreen) */
1572 (OB_FRAME_DECOR_TITLEBAR
|
1573 OB_FRAME_DECOR_HANDLE
|
1574 OB_FRAME_DECOR_GRIPS
|
1575 OB_FRAME_DECOR_BORDER
|
1576 OB_FRAME_DECOR_ICON
|
1577 OB_FRAME_DECOR_ALLDESKTOPS
|
1578 OB_FRAME_DECOR_ICONIFY
|
1579 OB_FRAME_DECOR_MAXIMIZE
|
1580 OB_FRAME_DECOR_SHADE
|
1581 OB_FRAME_DECOR_CLOSE
);
1583 (OB_CLIENT_FUNC_RESIZE
|
1584 OB_CLIENT_FUNC_MOVE
|
1585 OB_CLIENT_FUNC_ICONIFY
|
1586 OB_CLIENT_FUNC_MAXIMIZE
|
1587 OB_CLIENT_FUNC_SHADE
|
1588 OB_CLIENT_FUNC_CLOSE
|
1589 OB_CLIENT_FUNC_BELOW
|
1590 OB_CLIENT_FUNC_ABOVE
|
1591 OB_CLIENT_FUNC_UNDECORATE
);
1593 if (!(self
->min_size
.width
< self
->max_size
.width
||
1594 self
->min_size
.height
< self
->max_size
.height
))
1595 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1597 switch (self
->type
) {
1598 case OB_CLIENT_TYPE_NORMAL
:
1599 /* normal windows retain all of the possible decorations and
1600 functionality, and are the only windows that you can fullscreen */
1601 self
->functions
|= OB_CLIENT_FUNC_FULLSCREEN
;
1604 case OB_CLIENT_TYPE_DIALOG
:
1605 case OB_CLIENT_TYPE_UTILITY
:
1606 /* these windows don't have anything added or removed by default */
1609 case OB_CLIENT_TYPE_MENU
:
1610 case OB_CLIENT_TYPE_TOOLBAR
:
1611 /* these windows can't iconify or maximize */
1612 self
->decorations
&= ~(OB_FRAME_DECOR_ICONIFY
|
1613 OB_FRAME_DECOR_MAXIMIZE
);
1614 self
->functions
&= ~(OB_CLIENT_FUNC_ICONIFY
|
1615 OB_CLIENT_FUNC_MAXIMIZE
);
1618 case OB_CLIENT_TYPE_SPLASH
:
1619 /* these don't get get any decorations, and the only thing you can
1620 do with them is move them */
1621 self
->decorations
= 0;
1622 self
->functions
= OB_CLIENT_FUNC_MOVE
;
1625 case OB_CLIENT_TYPE_DESKTOP
:
1626 /* these windows are not manipulated by the window manager */
1627 self
->decorations
= 0;
1628 self
->functions
= 0;
1631 case OB_CLIENT_TYPE_DOCK
:
1632 /* these windows are not manipulated by the window manager, but they
1633 can set below layer which has a special meaning */
1634 self
->decorations
= 0;
1635 self
->functions
= OB_CLIENT_FUNC_BELOW
;
1639 /* Mwm Hints are applied subtractively to what has already been chosen for
1640 decor and functionality */
1641 if (self
->mwmhints
.flags
& OB_MWM_FLAG_DECORATIONS
) {
1642 if (! (self
->mwmhints
.decorations
& OB_MWM_DECOR_ALL
)) {
1643 if (! ((self
->mwmhints
.decorations
& OB_MWM_DECOR_HANDLE
) ||
1644 (self
->mwmhints
.decorations
& OB_MWM_DECOR_TITLE
)))
1646 /* if the mwm hints request no handle or title, then all
1647 decorations are disabled, but keep the border if that's
1649 if (self
->mwmhints
.decorations
& OB_MWM_DECOR_BORDER
)
1650 self
->decorations
= OB_FRAME_DECOR_BORDER
;
1652 self
->decorations
= 0;
1657 if (self
->mwmhints
.flags
& OB_MWM_FLAG_FUNCTIONS
) {
1658 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_ALL
)) {
1659 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_RESIZE
))
1660 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1661 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_MOVE
))
1662 self
->functions
&= ~OB_CLIENT_FUNC_MOVE
;
1663 /* dont let mwm hints kill any buttons
1664 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1665 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1666 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1667 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1669 /* dont let mwm hints kill the close button
1670 if (! (self->mwmhints.functions & MwmFunc_Close))
1671 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1675 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
))
1676 self
->decorations
&= ~OB_FRAME_DECOR_SHADE
;
1677 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
))
1678 self
->decorations
&= ~OB_FRAME_DECOR_ICONIFY
;
1679 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
))
1680 self
->decorations
&= ~(OB_FRAME_DECOR_GRIPS
| OB_FRAME_DECOR_HANDLE
);
1682 /* can't maximize without moving/resizing */
1683 if (!((self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) &&
1684 (self
->functions
& OB_CLIENT_FUNC_MOVE
) &&
1685 (self
->functions
& OB_CLIENT_FUNC_RESIZE
))) {
1686 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1687 self
->decorations
&= ~OB_FRAME_DECOR_MAXIMIZE
;
1690 if (self
->max_horz
&& self
->max_vert
) {
1691 /* you can't resize fully maximized windows */
1692 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1693 /* kill the handle on fully maxed windows */
1694 self
->decorations
&= ~(OB_FRAME_DECOR_HANDLE
| OB_FRAME_DECOR_GRIPS
);
1697 /* If there are no decorations to remove, don't allow the user to try
1699 if (self
->decorations
== 0)
1700 self
->functions
&= ~OB_CLIENT_FUNC_UNDECORATE
;
1702 /* finally, the user can have requested no decorations, which overrides
1703 everything (but doesnt give it a border if it doesnt have one) */
1704 if (self
->undecorated
) {
1705 if (config_theme_keepborder
)
1706 self
->decorations
&= OB_FRAME_DECOR_BORDER
;
1708 self
->decorations
= 0;
1711 /* if we don't have a titlebar, then we cannot shade! */
1712 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1713 self
->functions
&= ~OB_CLIENT_FUNC_SHADE
;
1715 /* now we need to check against rules for the client's current state */
1716 if (self
->fullscreen
) {
1717 self
->functions
&= (OB_CLIENT_FUNC_CLOSE
|
1718 OB_CLIENT_FUNC_FULLSCREEN
|
1719 OB_CLIENT_FUNC_ICONIFY
);
1720 self
->decorations
= 0;
1723 client_change_allowed_actions(self
);
1726 client_reconfigure(self
);
1729 static void client_change_allowed_actions(ObClient
*self
)
1734 /* desktop windows are kept on all desktops */
1735 if (self
->type
!= OB_CLIENT_TYPE_DESKTOP
)
1736 actions
[num
++] = prop_atoms
.net_wm_action_change_desktop
;
1738 if (self
->functions
& OB_CLIENT_FUNC_SHADE
)
1739 actions
[num
++] = prop_atoms
.net_wm_action_shade
;
1740 if (self
->functions
& OB_CLIENT_FUNC_CLOSE
)
1741 actions
[num
++] = prop_atoms
.net_wm_action_close
;
1742 if (self
->functions
& OB_CLIENT_FUNC_MOVE
)
1743 actions
[num
++] = prop_atoms
.net_wm_action_move
;
1744 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
)
1745 actions
[num
++] = prop_atoms
.net_wm_action_minimize
;
1746 if (self
->functions
& OB_CLIENT_FUNC_RESIZE
)
1747 actions
[num
++] = prop_atoms
.net_wm_action_resize
;
1748 if (self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
)
1749 actions
[num
++] = prop_atoms
.net_wm_action_fullscreen
;
1750 if (self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) {
1751 actions
[num
++] = prop_atoms
.net_wm_action_maximize_horz
;
1752 actions
[num
++] = prop_atoms
.net_wm_action_maximize_vert
;
1754 if (self
->functions
& OB_CLIENT_FUNC_ABOVE
)
1755 actions
[num
++] = prop_atoms
.net_wm_action_above
;
1756 if (self
->functions
& OB_CLIENT_FUNC_BELOW
)
1757 actions
[num
++] = prop_atoms
.net_wm_action_below
;
1758 if (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
)
1759 actions
[num
++] = prop_atoms
.ob_wm_action_undecorate
;
1761 PROP_SETA32(self
->window
, net_wm_allowed_actions
, atom
, actions
, num
);
1763 /* make sure the window isn't breaking any rules now */
1765 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
) && self
->shaded
) {
1766 if (self
->frame
) client_shade(self
, FALSE
);
1767 else self
->shaded
= FALSE
;
1769 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
) && self
->iconic
) {
1770 if (self
->frame
) client_iconify(self
, FALSE
, TRUE
, FALSE
);
1771 else self
->iconic
= FALSE
;
1773 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) && self
->fullscreen
) {
1774 if (self
->frame
) client_fullscreen(self
, FALSE
);
1775 else self
->fullscreen
= FALSE
;
1777 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) && (self
->max_horz
||
1779 if (self
->frame
) client_maximize(self
, FALSE
, 0);
1780 else self
->max_vert
= self
->max_horz
= FALSE
;
1784 void client_reconfigure(ObClient
*self
)
1786 client_configure(self
, self
->area
.x
, self
->area
.y
,
1787 self
->area
.width
, self
->area
.height
,
1791 void client_update_wmhints(ObClient
*self
)
1795 /* assume a window takes input if it doesnt specify */
1796 self
->can_focus
= TRUE
;
1798 if ((hints
= XGetWMHints(ob_display
, self
->window
)) != NULL
) {
1801 if (hints
->flags
& InputHint
)
1802 self
->can_focus
= hints
->input
;
1804 /* only do this when first managing the window *AND* when we aren't
1806 if (ob_state() != OB_STATE_STARTING
&& self
->frame
== NULL
)
1807 if (hints
->flags
& StateHint
)
1808 self
->iconic
= hints
->initial_state
== IconicState
;
1811 self
->urgent
= (hints
->flags
& XUrgencyHint
);
1812 if (self
->urgent
&& !ur
)
1813 client_hilite(self
, TRUE
);
1814 else if (!self
->urgent
&& ur
&& self
->demands_attention
)
1815 client_hilite(self
, FALSE
);
1817 if (!(hints
->flags
& WindowGroupHint
))
1818 hints
->window_group
= None
;
1820 /* did the group state change? */
1821 if (hints
->window_group
!=
1822 (self
->group
? self
->group
->leader
: None
))
1824 ObGroup
*oldgroup
= self
->group
;
1826 /* remove from the old group if there was one */
1827 if (self
->group
!= NULL
) {
1828 group_remove(self
->group
, self
);
1832 /* add ourself to the group if we have one */
1833 if (hints
->window_group
!= None
) {
1834 self
->group
= group_add(hints
->window_group
, self
);
1837 /* Put ourselves into the new group's transient tree, and remove
1838 ourselves from the old group's */
1839 client_update_transient_tree(self
, oldgroup
, self
->group
,
1840 self
->transient_for
,
1841 self
->transient_for
);
1843 /* Lastly, being in a group, or not, can change if the window is
1844 transient for anything.
1846 The logic for this is:
1847 self->transient = TRUE always if the window wants to be
1848 transient for something, even if transient_for was NULL because
1849 it wasn't in a group before.
1851 If transient_for was NULL and oldgroup was NULL we can assume
1852 that when we add the new group, it will become transient for
1855 If transient_for was OB_TRAN_GROUP, then it must have already
1856 had a group. If it is getting a new group, the above call to
1857 client_update_transient_tree has already taken care of
1858 everything ! If it is losing all group status then it will
1859 no longer be transient for anything and that needs to be
1862 if (self
->transient
&&
1863 ((self
->transient_for
== NULL
&& oldgroup
== NULL
) ||
1864 (self
->transient_for
== OB_TRAN_GROUP
&& !self
->group
)))
1865 client_update_transient_for(self
);
1868 /* the WM_HINTS can contain an icon */
1869 if (hints
->flags
& IconPixmapHint
)
1870 client_update_icons(self
);
1876 void client_update_title(ObClient
*self
)
1879 gchar
*visible
= NULL
;
1881 g_free(self
->title
);
1884 if (!PROP_GETS(self
->window
, net_wm_name
, utf8
, &data
)) {
1885 /* try old x stuff */
1886 if (!(PROP_GETS(self
->window
, wm_name
, locale
, &data
)
1887 || PROP_GETS(self
->window
, wm_name
, utf8
, &data
))) {
1888 if (self
->transient
) {
1890 GNOME alert windows are not given titles:
1891 http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
1893 data
= g_strdup("");
1895 data
= g_strdup("Unnamed Window");
1899 if (self
->client_machine
) {
1900 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1905 PROP_SETS(self
->window
, net_wm_visible_name
, visible
);
1906 self
->title
= visible
;
1909 frame_adjust_title(self
->frame
);
1911 /* update the icon title */
1913 g_free(self
->icon_title
);
1916 if (!PROP_GETS(self
->window
, net_wm_icon_name
, utf8
, &data
))
1917 /* try old x stuff */
1918 if (!(PROP_GETS(self
->window
, wm_icon_name
, locale
, &data
) ||
1919 PROP_GETS(self
->window
, wm_icon_name
, utf8
, &data
)))
1920 data
= g_strdup(self
->title
);
1922 if (self
->client_machine
) {
1923 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1928 PROP_SETS(self
->window
, net_wm_visible_icon_name
, visible
);
1929 self
->icon_title
= visible
;
1932 void client_update_strut(ObClient
*self
)
1936 gboolean got
= FALSE
;
1939 if (PROP_GETA32(self
->window
, net_wm_strut_partial
, cardinal
,
1943 STRUT_PARTIAL_SET(strut
,
1944 data
[0], data
[2], data
[1], data
[3],
1945 data
[4], data
[5], data
[8], data
[9],
1946 data
[6], data
[7], data
[10], data
[11]);
1952 PROP_GETA32(self
->window
, net_wm_strut
, cardinal
, &data
, &num
)) {
1958 /* use the screen's width/height */
1959 a
= screen_physical_area();
1961 STRUT_PARTIAL_SET(strut
,
1962 data
[0], data
[2], data
[1], data
[3],
1963 a
->y
, a
->y
+ a
->height
- 1,
1964 a
->x
, a
->x
+ a
->width
- 1,
1965 a
->y
, a
->y
+ a
->height
- 1,
1966 a
->x
, a
->x
+ a
->width
- 1);
1972 STRUT_PARTIAL_SET(strut
, 0, 0, 0, 0,
1973 0, 0, 0, 0, 0, 0, 0, 0);
1975 if (!STRUT_EQUAL(strut
, self
->strut
)) {
1976 self
->strut
= strut
;
1978 /* updating here is pointless while we're being mapped cuz we're not in
1979 the client list yet */
1981 screen_update_areas();
1985 void client_update_icons(ObClient
*self
)
1991 for (i
= 0; i
< self
->nicons
; ++i
)
1992 g_free(self
->icons
[i
].data
);
1993 if (self
->nicons
> 0)
1994 g_free(self
->icons
);
1997 if (PROP_GETA32(self
->window
, net_wm_icon
, cardinal
, &data
, &num
)) {
1998 /* figure out how many valid icons are in here */
2000 while (num
- i
> 2) {
2004 if (i
> num
|| w
*h
== 0) break;
2008 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2010 /* store the icons */
2012 for (j
= 0; j
< self
->nicons
; ++j
) {
2015 w
= self
->icons
[j
].width
= data
[i
++];
2016 h
= self
->icons
[j
].height
= data
[i
++];
2018 if (w
*h
== 0) continue;
2020 self
->icons
[j
].data
= g_new(RrPixel32
, w
* h
);
2021 for (x
= 0, y
= 0, t
= 0; t
< w
* h
; ++t
, ++x
, ++i
) {
2026 self
->icons
[j
].data
[t
] =
2027 (((data
[i
] >> 24) & 0xff) << RrDefaultAlphaOffset
) +
2028 (((data
[i
] >> 16) & 0xff) << RrDefaultRedOffset
) +
2029 (((data
[i
] >> 8) & 0xff) << RrDefaultGreenOffset
) +
2030 (((data
[i
] >> 0) & 0xff) << RrDefaultBlueOffset
);
2039 if ((hints
= XGetWMHints(ob_display
, self
->window
))) {
2040 if (hints
->flags
& IconPixmapHint
) {
2042 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2043 xerror_set_ignore(TRUE
);
2044 if (!RrPixmapToRGBA(ob_rr_inst
,
2046 (hints
->flags
& IconMaskHint
?
2047 hints
->icon_mask
: None
),
2048 &self
->icons
[self
->nicons
-1].width
,
2049 &self
->icons
[self
->nicons
-1].height
,
2050 &self
->icons
[self
->nicons
-1].data
)){
2051 g_free(&self
->icons
[self
->nicons
-1]);
2054 xerror_set_ignore(FALSE
);
2060 /* set the default icon onto the window
2061 in theory, this could be a race, but if a window doesn't set an icon
2062 or removes it entirely, it's not very likely it is going to set one
2063 right away afterwards */
2064 if (self
->nicons
== 0) {
2065 RrPixel32
*icon
= ob_rr_theme
->def_win_icon
;
2068 data
= g_new(gulong
, 48*48+2);
2069 data
[0] = data
[1] = 48;
2070 for (i
= 0; i
< 48*48; ++i
)
2071 data
[i
+2] = (((icon
[i
] >> RrDefaultAlphaOffset
) & 0xff) << 24) +
2072 (((icon
[i
] >> RrDefaultRedOffset
) & 0xff) << 16) +
2073 (((icon
[i
] >> RrDefaultGreenOffset
) & 0xff) << 8) +
2074 (((icon
[i
] >> RrDefaultBlueOffset
) & 0xff) << 0);
2075 PROP_SETA32(self
->window
, net_wm_icon
, cardinal
, data
, 48*48+2);
2077 } else if (self
->frame
)
2078 /* don't draw the icon empty if we're just setting one now anyways,
2079 we'll get the property change any second */
2080 frame_adjust_icon(self
->frame
);
2083 void client_update_user_time(ObClient
*self
)
2086 gboolean got
= FALSE
;
2088 if (self
->user_time_window
)
2089 got
= PROP_GET32(self
->user_time_window
,
2090 net_wm_user_time
, cardinal
, &time
);
2092 got
= PROP_GET32(self
->window
, net_wm_user_time
, cardinal
, &time
);
2095 /* we set this every time, not just when it grows, because in practice
2096 sometimes time goes backwards! (ntpdate.. yay....) so.. if it goes
2097 backward we don't want all windows to stop focusing. we'll just
2098 assume noone is setting times older than the last one, cuz that
2099 would be pretty stupid anyways
2101 self
->user_time
= time
;
2103 /*ob_debug("window %s user time %u\n", self->title, time);*/
2107 void client_update_user_time_window(ObClient
*self
)
2111 if (!PROP_GET32(self
->window
, net_wm_user_time_window
, window
, &w
))
2114 if (w
!= self
->user_time_window
) {
2115 /* remove the old window */
2116 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
2117 self
->user_time_window
= None
;
2119 if (self
->group
&& self
->group
->leader
== w
) {
2120 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2121 "_NET_WM_USER_TYPE_WINDOW to its group leader\n");
2122 /* do it anyways..? */
2124 else if (w
== self
->window
) {
2125 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2126 "_NET_WM_USER_TIME_WINDOW to itself\n");
2127 w
= None
; /* don't do it */
2130 /* add the new window */
2131 propwin_add(w
, OB_PROPWIN_USER_TIME
, self
);
2132 self
->user_time_window
= w
;
2134 /* and update from it */
2135 client_update_user_time(self
);
2139 void client_update_icon_geometry(ObClient
*self
)
2144 RECT_SET(self
->icon_geometry
, 0, 0, 0, 0);
2146 if (PROP_GETA32(self
->window
, net_wm_icon_geometry
, cardinal
, &data
, &num
)
2149 /* don't let them set it with an area < 0 */
2150 RECT_SET(self
->icon_geometry
, data
[0], data
[1],
2151 MAX(data
[2],0), MAX(data
[3],0));
2155 static void client_get_session_ids(ObClient
*self
)
2162 if (!PROP_GET32(self
->window
, wm_client_leader
, window
, &leader
))
2165 /* get the SM_CLIENT_ID */
2168 got
= PROP_GETS(leader
, sm_client_id
, locale
, &self
->sm_client_id
);
2170 PROP_GETS(self
->window
, sm_client_id
, locale
, &self
->sm_client_id
);
2172 /* get the WM_CLASS (name and class). make them "" if they are not
2176 got
= PROP_GETSS(leader
, wm_class
, locale
, &ss
);
2178 got
= PROP_GETSS(self
->window
, wm_class
, locale
, &ss
);
2182 self
->name
= g_strdup(ss
[0]);
2184 self
->class = g_strdup(ss
[1]);
2189 if (self
->name
== NULL
) self
->name
= g_strdup("");
2190 if (self
->class == NULL
) self
->class = g_strdup("");
2192 /* get the WM_WINDOW_ROLE. make it "" if it is not provided */
2195 got
= PROP_GETS(leader
, wm_window_role
, locale
, &s
);
2197 got
= PROP_GETS(self
->window
, wm_window_role
, locale
, &s
);
2202 self
->role
= g_strdup("");
2204 /* get the WM_COMMAND */
2208 got
= PROP_GETSS(leader
, wm_command
, locale
, &ss
);
2210 got
= PROP_GETSS(self
->window
, wm_command
, locale
, &ss
);
2213 /* merge/mash them all together */
2214 gchar
*merge
= NULL
;
2217 for (i
= 0; ss
[i
]; ++i
) {
2220 merge
= g_strconcat(merge
, ss
[i
], NULL
);
2222 merge
= g_strconcat(ss
[i
], NULL
);
2227 self
->wm_command
= merge
;
2230 /* get the WM_CLIENT_MACHINE */
2233 got
= PROP_GETS(leader
, wm_client_machine
, locale
, &s
);
2235 got
= PROP_GETS(self
->window
, wm_client_machine
, locale
, &s
);
2238 gchar localhost
[128];
2240 gethostname(localhost
, 127);
2241 localhost
[127] = '\0';
2242 if (strcmp(localhost
, s
) != 0)
2243 self
->client_machine
= s
;
2249 static void client_change_wm_state(ObClient
*self
)
2254 old
= self
->wmstate
;
2256 if (self
->shaded
|| self
->iconic
||
2257 (self
->desktop
!= DESKTOP_ALL
&& self
->desktop
!= screen_desktop
))
2259 self
->wmstate
= IconicState
;
2261 self
->wmstate
= NormalState
;
2263 if (old
!= self
->wmstate
) {
2264 PROP_MSG(self
->window
, kde_wm_change_state
,
2265 self
->wmstate
, 1, 0, 0);
2267 state
[0] = self
->wmstate
;
2269 PROP_SETA32(self
->window
, wm_state
, wm_state
, state
, 2);
2273 static void client_change_state(ObClient
*self
)
2275 gulong netstate
[12];
2280 netstate
[num
++] = prop_atoms
.net_wm_state_modal
;
2282 netstate
[num
++] = prop_atoms
.net_wm_state_shaded
;
2284 netstate
[num
++] = prop_atoms
.net_wm_state_hidden
;
2285 if (self
->skip_taskbar
)
2286 netstate
[num
++] = prop_atoms
.net_wm_state_skip_taskbar
;
2287 if (self
->skip_pager
)
2288 netstate
[num
++] = prop_atoms
.net_wm_state_skip_pager
;
2289 if (self
->fullscreen
)
2290 netstate
[num
++] = prop_atoms
.net_wm_state_fullscreen
;
2292 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_vert
;
2294 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_horz
;
2296 netstate
[num
++] = prop_atoms
.net_wm_state_above
;
2298 netstate
[num
++] = prop_atoms
.net_wm_state_below
;
2299 if (self
->demands_attention
)
2300 netstate
[num
++] = prop_atoms
.net_wm_state_demands_attention
;
2301 if (self
->undecorated
)
2302 netstate
[num
++] = prop_atoms
.ob_wm_state_undecorated
;
2303 PROP_SETA32(self
->window
, net_wm_state
, atom
, netstate
, num
);
2306 frame_adjust_state(self
->frame
);
2309 ObClient
*client_search_focus_tree(ObClient
*self
)
2314 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
2315 if (client_focused(it
->data
)) return it
->data
;
2316 if ((ret
= client_search_focus_tree(it
->data
))) return ret
;
2321 ObClient
*client_search_focus_tree_full(ObClient
*self
)
2323 if (self
->parents
) {
2326 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
2327 ObClient
*c
= it
->data
;
2328 if ((c
= client_search_focus_tree_full(it
->data
))) return c
;
2334 /* this function checks the whole tree, the client_search_focus_tree
2335 does not, so we need to check this window */
2336 if (client_focused(self
))
2338 return client_search_focus_tree(self
);
2342 ObClient
*client_search_focus_group_full(ObClient
*self
)
2347 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
2348 ObClient
*c
= it
->data
;
2350 if (client_focused(c
)) return c
;
2351 if ((c
= client_search_focus_tree(it
->data
))) return c
;
2354 if (client_focused(self
)) return self
;
2358 gboolean
client_has_parent(ObClient
*self
)
2360 return self
->parents
!= NULL
;
2363 static ObStackingLayer
calc_layer(ObClient
*self
)
2367 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
2368 l
= OB_STACKING_LAYER_DESKTOP
;
2369 else if (self
->type
== OB_CLIENT_TYPE_DOCK
) {
2370 if (self
->below
) l
= OB_STACKING_LAYER_NORMAL
;
2371 else l
= OB_STACKING_LAYER_ABOVE
;
2373 else if ((self
->fullscreen
||
2374 /* No decorations and fills the monitor = oldskool fullscreen.
2375 But not for maximized windows.
2377 (self
->decorations
== 0 &&
2378 !(self
->max_horz
&& self
->max_vert
) &&
2379 RECT_EQUAL(self
->area
,
2380 *screen_physical_area_monitor
2381 (client_monitor(self
))))) &&
2382 (client_focused(self
) || client_search_focus_tree(self
)))
2383 l
= OB_STACKING_LAYER_FULLSCREEN
;
2384 else if (self
->above
) l
= OB_STACKING_LAYER_ABOVE
;
2385 else if (self
->below
) l
= OB_STACKING_LAYER_BELOW
;
2386 else l
= OB_STACKING_LAYER_NORMAL
;
2391 static void client_calc_layer_recursive(ObClient
*self
, ObClient
*orig
,
2392 ObStackingLayer min
)
2394 ObStackingLayer old
, own
;
2398 own
= calc_layer(self
);
2399 self
->layer
= MAX(own
, min
);
2401 if (self
->layer
!= old
) {
2402 stacking_remove(CLIENT_AS_WINDOW(self
));
2403 stacking_add_nonintrusive(CLIENT_AS_WINDOW(self
));
2406 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
2407 client_calc_layer_recursive(it
->data
, orig
,
2411 void client_calc_layer(ObClient
*self
)
2418 /* transients take on the layer of their parents */
2419 it
= client_search_all_top_parents(self
);
2421 for (; it
; it
= g_slist_next(it
))
2422 client_calc_layer_recursive(it
->data
, orig
, 0);
2425 gboolean
client_should_show(ObClient
*self
)
2429 if (client_normal(self
) && screen_showing_desktop
)
2431 if (self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
2437 gboolean
client_show(ObClient
*self
)
2439 gboolean show
= FALSE
;
2441 if (client_should_show(self
)) {
2442 frame_show(self
->frame
);
2445 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible,
2446 it needs to be in IconicState. This includes when it is on another
2449 client_change_wm_state(self
);
2454 gboolean
client_hide(ObClient
*self
)
2456 gboolean hide
= FALSE
;
2458 if (!client_should_show(self
)) {
2459 if (self
== focus_client
) {
2460 /* if there is a grab going on, then we need to cancel it. if we
2461 move focus during the grab, applications will get
2462 NotifyWhileGrabbed events and ignore them !
2464 actions should not rely on being able to move focus during an
2467 event_cancel_all_key_grabs();
2470 frame_hide(self
->frame
);
2473 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible,
2474 it needs to be in IconicState. This includes when it is on another
2477 client_change_wm_state(self
);
2482 void client_showhide(ObClient
*self
)
2484 if (!client_show(self
))
2488 gboolean
client_normal(ObClient
*self
) {
2489 return ! (self
->type
== OB_CLIENT_TYPE_DESKTOP
||
2490 self
->type
== OB_CLIENT_TYPE_DOCK
||
2491 self
->type
== OB_CLIENT_TYPE_SPLASH
);
2494 gboolean
client_helper(ObClient
*self
)
2496 return (self
->type
== OB_CLIENT_TYPE_UTILITY
||
2497 self
->type
== OB_CLIENT_TYPE_MENU
||
2498 self
->type
== OB_CLIENT_TYPE_TOOLBAR
);
2501 gboolean
client_mouse_focusable(ObClient
*self
)
2503 return !(self
->type
== OB_CLIENT_TYPE_MENU
||
2504 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
2505 self
->type
== OB_CLIENT_TYPE_SPLASH
||
2506 self
->type
== OB_CLIENT_TYPE_DOCK
);
2509 gboolean
client_enter_focusable(ObClient
*self
)
2511 /* you can focus desktops but it shouldn't on enter */
2512 return (client_mouse_focusable(self
) &&
2513 self
->type
!= OB_CLIENT_TYPE_DESKTOP
);
2517 static void client_apply_startup_state(ObClient
*self
,
2518 gint x
, gint y
, gint w
, gint h
)
2520 /* save the states that we are going to apply */
2521 gboolean iconic
= self
->iconic
;
2522 gboolean fullscreen
= self
->fullscreen
;
2523 gboolean undecorated
= self
->undecorated
;
2524 gboolean shaded
= self
->shaded
;
2525 gboolean demands_attention
= self
->demands_attention
;
2526 gboolean max_horz
= self
->max_horz
;
2527 gboolean max_vert
= self
->max_vert
;
2531 /* turn them all off in the client, so they won't affect the window
2533 self
->iconic
= self
->fullscreen
= self
->undecorated
= self
->shaded
=
2534 self
->demands_attention
= self
->max_horz
= self
->max_vert
= FALSE
;
2536 /* move the client to its placed position, or it it's already there,
2537 generate a ConfigureNotify telling the client where it is.
2539 do this after adjusting the frame. otherwise it gets all weird and
2540 clients don't work right
2542 do this before applying the states so they have the correct
2543 pre-max/pre-fullscreen values
2545 client_try_configure(self
, &x
, &y
, &w
, &h
, &l
, &l
, FALSE
);
2546 ob_debug("placed window 0x%x at %d, %d with size %d x %d\n",
2547 self
->window
, self
->area
.x
, self
->area
.y
,
2548 self
->area
.width
, self
->area
.height
);
2549 oldarea
= self
->area
; /* save the area */
2550 RECT_SET(self
->area
, x
, y
, w
, h
); /* put where it should be for the premax stuff */
2552 /* apply the states. these are in a carefully crafted order.. */
2555 client_iconify(self
, TRUE
, FALSE
, TRUE
);
2557 client_fullscreen(self
, TRUE
);
2559 client_set_undecorated(self
, TRUE
);
2561 client_shade(self
, TRUE
);
2562 if (demands_attention
)
2563 client_hilite(self
, TRUE
);
2565 if (max_vert
&& max_horz
)
2566 client_maximize(self
, TRUE
, 0);
2568 client_maximize(self
, TRUE
, 2);
2570 client_maximize(self
, TRUE
, 1);
2572 /* if the window hasn't been configured yet, then do so now */
2573 if (!fullscreen
&& !max_vert
&& !max_horz
) {
2574 self
->area
= oldarea
;
2575 client_configure(self
, x
, y
, w
, h
, FALSE
, TRUE
);
2578 /* set the desktop hint, to make sure that it always exists */
2579 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
2581 /* nothing to do for the other states:
2590 void client_gravity_resize_w(ObClient
*self
, gint
*x
, gint oldw
, gint neww
)
2592 /* these should be the current values. this is for when you're not moving,
2594 g_assert(*x
== self
->area
.x
);
2595 g_assert(oldw
== self
->area
.width
);
2598 switch (self
->gravity
) {
2600 case NorthWestGravity
:
2602 case SouthWestGravity
:
2609 *x
-= (neww
- oldw
) / 2;
2611 case NorthEastGravity
:
2613 case SouthEastGravity
:
2619 void client_gravity_resize_h(ObClient
*self
, gint
*y
, gint oldh
, gint newh
)
2621 /* these should be the current values. this is for when you're not moving,
2623 g_assert(*y
== self
->area
.y
);
2624 g_assert(oldh
== self
->area
.height
);
2627 switch (self
->gravity
) {
2629 case NorthWestGravity
:
2631 case NorthEastGravity
:
2638 *y
-= (newh
- oldh
) / 2;
2640 case SouthWestGravity
:
2642 case SouthEastGravity
:
2648 void client_try_configure(ObClient
*self
, gint
*x
, gint
*y
, gint
*w
, gint
*h
,
2649 gint
*logicalw
, gint
*logicalh
,
2652 Rect desired_area
= {*x
, *y
, *w
, *h
};
2654 /* make the frame recalculate its dimentions n shit without changing
2655 anything visible for real, this way the constraints below can work with
2656 the updated frame dimensions. */
2657 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
2659 /* work within the prefered sizes given by the window */
2660 if (!(*w
== self
->area
.width
&& *h
== self
->area
.height
)) {
2661 gint basew
, baseh
, minw
, minh
;
2663 /* base size is substituted with min size if not specified */
2664 if (self
->base_size
.width
|| self
->base_size
.height
) {
2665 basew
= self
->base_size
.width
;
2666 baseh
= self
->base_size
.height
;
2668 basew
= self
->min_size
.width
;
2669 baseh
= self
->min_size
.height
;
2671 /* min size is substituted with base size if not specified */
2672 if (self
->min_size
.width
|| self
->min_size
.height
) {
2673 minw
= self
->min_size
.width
;
2674 minh
= self
->min_size
.height
;
2676 minw
= self
->base_size
.width
;
2677 minh
= self
->base_size
.height
;
2680 /* if this is a user-requested resize, then check against min/max
2683 /* smaller than min size or bigger than max size? */
2684 if (*w
> self
->max_size
.width
) *w
= self
->max_size
.width
;
2685 if (*w
< minw
) *w
= minw
;
2686 if (*h
> self
->max_size
.height
) *h
= self
->max_size
.height
;
2687 if (*h
< minh
) *h
= minh
;
2692 /* keep to the increments */
2693 *w
/= self
->size_inc
.width
;
2694 *h
/= self
->size_inc
.height
;
2696 /* you cannot resize to nothing */
2697 if (basew
+ *w
< 1) *w
= 1 - basew
;
2698 if (baseh
+ *h
< 1) *h
= 1 - baseh
;
2700 /* save the logical size */
2701 *logicalw
= self
->size_inc
.width
> 1 ? *w
: *w
+ basew
;
2702 *logicalh
= self
->size_inc
.height
> 1 ? *h
: *h
+ baseh
;
2704 *w
*= self
->size_inc
.width
;
2705 *h
*= self
->size_inc
.height
;
2710 /* adjust the height to match the width for the aspect ratios.
2711 for this, min size is not substituted for base size ever. */
2712 *w
-= self
->base_size
.width
;
2713 *h
-= self
->base_size
.height
;
2715 if (!self
->fullscreen
) {
2716 if (self
->min_ratio
)
2717 if (*h
* self
->min_ratio
> *w
) {
2718 *h
= (gint
)(*w
/ self
->min_ratio
);
2720 /* you cannot resize to nothing */
2723 *w
= (gint
)(*h
* self
->min_ratio
);
2726 if (self
->max_ratio
)
2727 if (*h
* self
->max_ratio
< *w
) {
2728 *h
= (gint
)(*w
/ self
->max_ratio
);
2730 /* you cannot resize to nothing */
2733 *w
= (gint
)(*h
* self
->min_ratio
);
2738 *w
+= self
->base_size
.width
;
2739 *h
+= self
->base_size
.height
;
2742 /* gets the frame's position */
2743 frame_client_gravity(self
->frame
, x
, y
, *w
, *h
);
2745 /* these positions are frame positions, not client positions */
2747 /* set the size and position if fullscreen */
2748 if (self
->fullscreen
) {
2752 i
= screen_find_monitor(&desired_area
);
2753 a
= screen_physical_area_monitor(i
);
2760 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2762 } else if (self
->max_horz
|| self
->max_vert
) {
2766 i
= screen_find_monitor(&desired_area
);
2767 a
= screen_area_monitor(self
->desktop
, i
);
2769 /* set the size and position if maximized */
2770 if (self
->max_horz
) {
2772 *w
= a
->width
- self
->frame
->size
.left
- self
->frame
->size
.right
;
2774 if (self
->max_vert
) {
2776 *h
= a
->height
- self
->frame
->size
.top
- self
->frame
->size
.bottom
;
2779 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2783 /* gets the client's position */
2784 frame_frame_gravity(self
->frame
, x
, y
, *w
, *h
);
2786 /* these override the above states! if you cant move you can't move! */
2788 if (!(self
->functions
& OB_CLIENT_FUNC_MOVE
)) {
2792 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
)) {
2793 *w
= self
->area
.width
;
2794 *h
= self
->area
.height
;
2803 void client_configure(ObClient
*self
, gint x
, gint y
, gint w
, gint h
,
2804 gboolean user
, gboolean final
)
2807 gboolean send_resize_client
;
2808 gboolean moved
= FALSE
, resized
= FALSE
;
2809 gboolean fmoved
, fresized
;
2810 guint fdecor
= self
->frame
->decorations
;
2811 gboolean fhorz
= self
->frame
->max_horz
;
2812 gboolean fvert
= self
->frame
->max_vert
;
2813 gint logicalw
, logicalh
;
2815 /* find the new x, y, width, and height (and logical size) */
2816 client_try_configure(self
, &x
, &y
, &w
, &h
, &logicalw
, &logicalh
, user
);
2818 /* set the logical size if things changed */
2819 if (!(w
== self
->area
.width
&& h
== self
->area
.height
))
2820 SIZE_SET(self
->logical_size
, logicalw
, logicalh
);
2822 /* figure out if we moved or resized or what */
2823 moved
= (x
!= self
->area
.x
|| y
!= self
->area
.y
);
2824 resized
= (w
!= self
->area
.width
|| h
!= self
->area
.height
);
2826 oldw
= self
->area
.width
;
2827 oldh
= self
->area
.height
;
2828 RECT_SET(self
->area
, x
, y
, w
, h
);
2830 /* for app-requested resizes, always resize if 'resized' is true.
2831 for user-requested ones, only resize if final is true, or when
2832 resizing in redraw mode */
2833 send_resize_client
= ((!user
&& resized
) ||
2835 (resized
&& config_resize_redraw
))));
2837 /* if the client is enlarging, then resize the client before the frame */
2838 if (send_resize_client
&& (w
> oldw
|| h
> oldh
)) {
2839 XMoveResizeWindow(ob_display
, self
->window
,
2840 self
->frame
->size
.left
, self
->frame
->size
.top
,
2841 MAX(w
, oldw
), MAX(h
, oldh
));
2842 frame_adjust_client_area(self
->frame
);
2845 /* find the frame's dimensions and move/resize it */
2849 /* if decorations changed, then readjust everything for the frame */
2850 if (self
->decorations
!= fdecor
||
2851 self
->max_horz
!= fhorz
|| self
->max_vert
!= fvert
)
2853 fmoved
= fresized
= TRUE
;
2856 /* adjust the frame */
2857 if (fmoved
|| fresized
)
2858 frame_adjust_area(self
->frame
, fmoved
, fresized
, FALSE
);
2860 /* This is kinda tricky and should not be changed.. let me explain!
2862 When user = FALSE, then the request is coming from the application
2863 itself, and we are more strict about when to send a synthetic
2864 ConfigureNotify. We strictly follow the rules of the ICCCM sec 4.1.5
2867 When user = TRUE, then the request is coming from "us", like when we
2868 maximize a window or sometihng. In this case we are more lenient. We
2869 used to follow the same rules as above, but _Java_ Swing can't handle
2870 this. So just to appease Swing, when user = TRUE, we always send
2871 a synthetic ConfigureNotify to give the window its root coordinates.
2873 if ((!user
&& !resized
) || (user
&& final
))
2877 /* we have reset the client to 0 border width, so don't include
2878 it in these coords */
2879 POINT_SET(self
->root_pos
,
2880 self
->frame
->area
.x
+ self
->frame
->size
.left
-
2882 self
->frame
->area
.y
+ self
->frame
->size
.top
-
2883 self
->border_width
);
2885 event
.type
= ConfigureNotify
;
2886 event
.xconfigure
.display
= ob_display
;
2887 event
.xconfigure
.event
= self
->window
;
2888 event
.xconfigure
.window
= self
->window
;
2890 ob_debug("Sending ConfigureNotify to %s for %d,%d %dx%d\n",
2891 self
->title
, self
->root_pos
.x
, self
->root_pos
.y
, w
, h
);
2893 /* root window real coords */
2894 event
.xconfigure
.x
= self
->root_pos
.x
;
2895 event
.xconfigure
.y
= self
->root_pos
.y
;
2896 event
.xconfigure
.width
= w
;
2897 event
.xconfigure
.height
= h
;
2898 event
.xconfigure
.border_width
= self
->border_width
;
2899 event
.xconfigure
.above
= None
;
2900 event
.xconfigure
.override_redirect
= FALSE
;
2901 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
,
2902 FALSE
, StructureNotifyMask
, &event
);
2905 /* if the client is shrinking, then resize the frame before the client.
2907 both of these resize sections may run, because the top one only resizes
2908 in the direction that is growing
2910 if (send_resize_client
&& (w
<= oldw
|| h
<= oldh
)) {
2911 frame_adjust_client_area(self
->frame
);
2912 XMoveResizeWindow(ob_display
, self
->window
,
2913 self
->frame
->size
.left
, self
->frame
->size
.top
, w
, h
);
2919 void client_fullscreen(ObClient
*self
, gboolean fs
)
2923 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) || /* can't */
2924 self
->fullscreen
== fs
) return; /* already done */
2926 self
->fullscreen
= fs
;
2927 client_change_state(self
); /* change the state hints on the client */
2930 self
->pre_fullscreen_area
= self
->area
;
2931 /* if the window is maximized, its area isn't all that meaningful.
2932 save it's premax area instead. */
2933 if (self
->max_horz
) {
2934 self
->pre_fullscreen_area
.x
= self
->pre_max_area
.x
;
2935 self
->pre_fullscreen_area
.width
= self
->pre_max_area
.width
;
2937 if (self
->max_vert
) {
2938 self
->pre_fullscreen_area
.y
= self
->pre_max_area
.y
;
2939 self
->pre_fullscreen_area
.height
= self
->pre_max_area
.height
;
2942 /* these will help configure_full figure out where to fullscreen
2946 w
= self
->area
.width
;
2947 h
= self
->area
.height
;
2949 g_assert(self
->pre_fullscreen_area
.width
> 0 &&
2950 self
->pre_fullscreen_area
.height
> 0);
2952 x
= self
->pre_fullscreen_area
.x
;
2953 y
= self
->pre_fullscreen_area
.y
;
2954 w
= self
->pre_fullscreen_area
.width
;
2955 h
= self
->pre_fullscreen_area
.height
;
2956 RECT_SET(self
->pre_fullscreen_area
, 0, 0, 0, 0);
2959 client_setup_decor_and_functions(self
, FALSE
);
2960 client_move_resize(self
, x
, y
, w
, h
);
2962 /* and adjust our layer/stacking. do this after resizing the window,
2963 and applying decorations, because windows which fill the screen are
2964 considered "fullscreen" and it affects their layer */
2965 client_calc_layer(self
);
2968 /* try focus us when we go into fullscreen mode */
2973 static void client_iconify_recursive(ObClient
*self
,
2974 gboolean iconic
, gboolean curdesk
,
2975 gboolean hide_animation
)
2978 gboolean changed
= FALSE
;
2981 if (self
->iconic
!= iconic
) {
2982 ob_debug("%sconifying window: 0x%lx\n", (iconic
? "I" : "Uni"),
2986 /* don't let non-normal windows iconify along with their parents
2988 if (client_normal(self
)) {
2989 self
->iconic
= iconic
;
2991 /* update the focus lists.. iconic windows go to the bottom of
2993 focus_order_to_bottom(self
);
2998 self
->iconic
= iconic
;
3000 if (curdesk
&& self
->desktop
!= screen_desktop
&&
3001 self
->desktop
!= DESKTOP_ALL
)
3002 client_set_desktop(self
, screen_desktop
, FALSE
);
3004 /* this puts it after the current focused window */
3005 focus_order_remove(self
);
3006 focus_order_add_new(self
);
3013 client_change_state(self
);
3014 if (config_animate_iconify
&& !hide_animation
)
3015 frame_begin_iconify_animation(self
->frame
, iconic
);
3016 /* do this after starting the animation so it doesn't flash */
3017 client_showhide(self
);
3020 /* iconify all direct transients, and deiconify all transients
3022 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3023 if (it
->data
!= self
)
3024 if (client_is_direct_child(self
, it
->data
) || !iconic
)
3025 client_iconify_recursive(it
->data
, iconic
, curdesk
,
3029 void client_iconify(ObClient
*self
, gboolean iconic
, gboolean curdesk
,
3030 gboolean hide_animation
)
3032 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
|| !iconic
) {
3033 /* move up the transient chain as far as possible first */
3034 self
= client_search_top_direct_parent(self
);
3035 client_iconify_recursive(self
, iconic
, curdesk
, hide_animation
);
3039 void client_maximize(ObClient
*self
, gboolean max
, gint dir
)
3043 g_assert(dir
== 0 || dir
== 1 || dir
== 2);
3044 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
)) return; /* can't */
3046 /* check if already done */
3048 if (dir
== 0 && self
->max_horz
&& self
->max_vert
) return;
3049 if (dir
== 1 && self
->max_horz
) return;
3050 if (dir
== 2 && self
->max_vert
) return;
3052 if (dir
== 0 && !self
->max_horz
&& !self
->max_vert
) return;
3053 if (dir
== 1 && !self
->max_horz
) return;
3054 if (dir
== 2 && !self
->max_vert
) return;
3057 /* these will help configure_full figure out which screen to fill with
3061 w
= self
->area
.width
;
3062 h
= self
->area
.height
;
3065 if ((dir
== 0 || dir
== 1) && !self
->max_horz
) { /* horz */
3066 RECT_SET(self
->pre_max_area
,
3067 self
->area
.x
, self
->pre_max_area
.y
,
3068 self
->area
.width
, self
->pre_max_area
.height
);
3070 if ((dir
== 0 || dir
== 2) && !self
->max_vert
) { /* vert */
3071 RECT_SET(self
->pre_max_area
,
3072 self
->pre_max_area
.x
, self
->area
.y
,
3073 self
->pre_max_area
.width
, self
->area
.height
);
3076 if ((dir
== 0 || dir
== 1) && self
->max_horz
) { /* horz */
3077 g_assert(self
->pre_max_area
.width
> 0);
3079 x
= self
->pre_max_area
.x
;
3080 w
= self
->pre_max_area
.width
;
3082 RECT_SET(self
->pre_max_area
, 0, self
->pre_max_area
.y
,
3083 0, self
->pre_max_area
.height
);
3085 if ((dir
== 0 || dir
== 2) && self
->max_vert
) { /* vert */
3086 g_assert(self
->pre_max_area
.height
> 0);
3088 y
= self
->pre_max_area
.y
;
3089 h
= self
->pre_max_area
.height
;
3091 RECT_SET(self
->pre_max_area
, self
->pre_max_area
.x
, 0,
3092 self
->pre_max_area
.width
, 0);
3096 if (dir
== 0 || dir
== 1) /* horz */
3097 self
->max_horz
= max
;
3098 if (dir
== 0 || dir
== 2) /* vert */
3099 self
->max_vert
= max
;
3101 client_change_state(self
); /* change the state hints on the client */
3103 client_setup_decor_and_functions(self
, FALSE
);
3104 client_move_resize(self
, x
, y
, w
, h
);
3107 void client_shade(ObClient
*self
, gboolean shade
)
3109 if ((!(self
->functions
& OB_CLIENT_FUNC_SHADE
) &&
3110 shade
) || /* can't shade */
3111 self
->shaded
== shade
) return; /* already done */
3113 self
->shaded
= shade
;
3114 client_change_state(self
);
3115 client_change_wm_state(self
); /* the window is being hidden/shown */
3116 /* resize the frame to just the titlebar */
3117 frame_adjust_area(self
->frame
, FALSE
, FALSE
, FALSE
);
3120 void client_close(ObClient
*self
)
3124 if (!(self
->functions
& OB_CLIENT_FUNC_CLOSE
)) return;
3126 /* in the case that the client provides no means to requesting that it
3127 close, we just kill it */
3128 if (!self
->delete_window
)
3132 XXX: itd be cool to do timeouts and shit here for killing the client's
3134 like... if the window is around after 5 seconds, then the close button
3135 turns a nice red, and if this function is called again, the client is
3139 ce
.xclient
.type
= ClientMessage
;
3140 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3141 ce
.xclient
.display
= ob_display
;
3142 ce
.xclient
.window
= self
->window
;
3143 ce
.xclient
.format
= 32;
3144 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_delete_window
;
3145 ce
.xclient
.data
.l
[1] = event_curtime
;
3146 ce
.xclient
.data
.l
[2] = 0l;
3147 ce
.xclient
.data
.l
[3] = 0l;
3148 ce
.xclient
.data
.l
[4] = 0l;
3149 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3152 void client_kill(ObClient
*self
)
3154 XKillClient(ob_display
, self
->window
);
3157 void client_hilite(ObClient
*self
, gboolean hilite
)
3159 if (self
->demands_attention
== hilite
)
3160 return; /* no change */
3162 /* don't allow focused windows to hilite */
3163 self
->demands_attention
= hilite
&& !client_focused(self
);
3164 if (self
->frame
!= NULL
) { /* if we're mapping, just set the state */
3165 if (self
->demands_attention
)
3166 frame_flash_start(self
->frame
);
3168 frame_flash_stop(self
->frame
);
3169 client_change_state(self
);
3173 void client_set_desktop_recursive(ObClient
*self
,
3180 if (target
!= self
->desktop
&& self
->type
!= OB_CLIENT_TYPE_DESKTOP
) {
3182 ob_debug("Setting desktop %u\n", target
+1);
3184 g_assert(target
< screen_num_desktops
|| target
== DESKTOP_ALL
);
3186 old
= self
->desktop
;
3187 self
->desktop
= target
;
3188 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, target
);
3189 /* the frame can display the current desktop state */
3190 frame_adjust_state(self
->frame
);
3191 /* 'move' the window to the new desktop */
3193 client_showhide(self
);
3194 /* raise if it was not already on the desktop */
3195 if (old
!= DESKTOP_ALL
)
3196 stacking_raise(CLIENT_AS_WINDOW(self
));
3197 if (STRUT_EXISTS(self
->strut
))
3198 screen_update_areas();
3201 /* move all transients */
3202 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3203 if (it
->data
!= self
)
3204 if (client_is_direct_child(self
, it
->data
))
3205 client_set_desktop_recursive(it
->data
, target
, donthide
);
3208 void client_set_desktop(ObClient
*self
, guint target
, gboolean donthide
)
3210 self
= client_search_top_direct_parent(self
);
3211 client_set_desktop_recursive(self
, target
, donthide
);
3214 gboolean
client_is_direct_child(ObClient
*parent
, ObClient
*child
)
3216 while (child
!= parent
&& (child
= client_direct_parent(child
)));
3217 return child
== parent
;
3220 ObClient
*client_search_modal_child(ObClient
*self
)
3225 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
3226 ObClient
*c
= it
->data
;
3227 if ((ret
= client_search_modal_child(c
))) return ret
;
3228 if (c
->modal
) return c
;
3233 gboolean
client_validate(ObClient
*self
)
3237 XSync(ob_display
, FALSE
); /* get all events on the server */
3239 if (XCheckTypedWindowEvent(ob_display
, self
->window
, DestroyNotify
, &e
) ||
3240 XCheckTypedWindowEvent(ob_display
, self
->window
, UnmapNotify
, &e
)) {
3241 XPutBackEvent(ob_display
, &e
);
3248 void client_set_wm_state(ObClient
*self
, glong state
)
3250 if (state
== self
->wmstate
) return; /* no change */
3254 client_iconify(self
, TRUE
, TRUE
, FALSE
);
3257 client_iconify(self
, FALSE
, TRUE
, FALSE
);
3262 void client_set_state(ObClient
*self
, Atom action
, glong data1
, glong data2
)
3264 gboolean shaded
= self
->shaded
;
3265 gboolean fullscreen
= self
->fullscreen
;
3266 gboolean undecorated
= self
->undecorated
;
3267 gboolean max_horz
= self
->max_horz
;
3268 gboolean max_vert
= self
->max_vert
;
3269 gboolean modal
= self
->modal
;
3270 gboolean iconic
= self
->iconic
;
3271 gboolean demands_attention
= self
->demands_attention
;
3272 gboolean above
= self
->above
;
3273 gboolean below
= self
->below
;
3276 if (!(action
== prop_atoms
.net_wm_state_add
||
3277 action
== prop_atoms
.net_wm_state_remove
||
3278 action
== prop_atoms
.net_wm_state_toggle
))
3279 /* an invalid action was passed to the client message, ignore it */
3282 for (i
= 0; i
< 2; ++i
) {
3283 Atom state
= i
== 0 ? data1
: data2
;
3285 if (!state
) continue;
3287 /* if toggling, then pick whether we're adding or removing */
3288 if (action
== prop_atoms
.net_wm_state_toggle
) {
3289 if (state
== prop_atoms
.net_wm_state_modal
)
3290 action
= modal
? prop_atoms
.net_wm_state_remove
:
3291 prop_atoms
.net_wm_state_add
;
3292 else if (state
== prop_atoms
.net_wm_state_maximized_vert
)
3293 action
= self
->max_vert
? prop_atoms
.net_wm_state_remove
:
3294 prop_atoms
.net_wm_state_add
;
3295 else if (state
== prop_atoms
.net_wm_state_maximized_horz
)
3296 action
= self
->max_horz
? prop_atoms
.net_wm_state_remove
:
3297 prop_atoms
.net_wm_state_add
;
3298 else if (state
== prop_atoms
.net_wm_state_shaded
)
3299 action
= shaded
? prop_atoms
.net_wm_state_remove
:
3300 prop_atoms
.net_wm_state_add
;
3301 else if (state
== prop_atoms
.net_wm_state_skip_taskbar
)
3302 action
= self
->skip_taskbar
?
3303 prop_atoms
.net_wm_state_remove
:
3304 prop_atoms
.net_wm_state_add
;
3305 else if (state
== prop_atoms
.net_wm_state_skip_pager
)
3306 action
= self
->skip_pager
?
3307 prop_atoms
.net_wm_state_remove
:
3308 prop_atoms
.net_wm_state_add
;
3309 else if (state
== prop_atoms
.net_wm_state_hidden
)
3310 action
= self
->iconic
?
3311 prop_atoms
.net_wm_state_remove
:
3312 prop_atoms
.net_wm_state_add
;
3313 else if (state
== prop_atoms
.net_wm_state_fullscreen
)
3314 action
= fullscreen
?
3315 prop_atoms
.net_wm_state_remove
:
3316 prop_atoms
.net_wm_state_add
;
3317 else if (state
== prop_atoms
.net_wm_state_above
)
3318 action
= self
->above
? prop_atoms
.net_wm_state_remove
:
3319 prop_atoms
.net_wm_state_add
;
3320 else if (state
== prop_atoms
.net_wm_state_below
)
3321 action
= self
->below
? prop_atoms
.net_wm_state_remove
:
3322 prop_atoms
.net_wm_state_add
;
3323 else if (state
== prop_atoms
.net_wm_state_demands_attention
)
3324 action
= self
->demands_attention
?
3325 prop_atoms
.net_wm_state_remove
:
3326 prop_atoms
.net_wm_state_add
;
3327 else if (state
== prop_atoms
.ob_wm_state_undecorated
)
3328 action
= undecorated
? prop_atoms
.net_wm_state_remove
:
3329 prop_atoms
.net_wm_state_add
;
3332 if (action
== prop_atoms
.net_wm_state_add
) {
3333 if (state
== prop_atoms
.net_wm_state_modal
) {
3335 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3337 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3339 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3341 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3342 self
->skip_taskbar
= TRUE
;
3343 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3344 self
->skip_pager
= TRUE
;
3345 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3347 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3349 } else if (state
== prop_atoms
.net_wm_state_above
) {
3352 } else if (state
== prop_atoms
.net_wm_state_below
) {
3355 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3356 demands_attention
= TRUE
;
3357 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3361 } else { /* action == prop_atoms.net_wm_state_remove */
3362 if (state
== prop_atoms
.net_wm_state_modal
) {
3364 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3366 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3368 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3370 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3371 self
->skip_taskbar
= FALSE
;
3372 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3373 self
->skip_pager
= FALSE
;
3374 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3376 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3378 } else if (state
== prop_atoms
.net_wm_state_above
) {
3380 } else if (state
== prop_atoms
.net_wm_state_below
) {
3382 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3383 demands_attention
= FALSE
;
3384 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3385 undecorated
= FALSE
;
3390 if (max_horz
!= self
->max_horz
|| max_vert
!= self
->max_vert
) {
3391 if (max_horz
!= self
->max_horz
&& max_vert
!= self
->max_vert
) {
3393 if (max_horz
== max_vert
) { /* both going the same way */
3394 client_maximize(self
, max_horz
, 0);
3396 client_maximize(self
, max_horz
, 1);
3397 client_maximize(self
, max_vert
, 2);
3401 if (max_horz
!= self
->max_horz
)
3402 client_maximize(self
, max_horz
, 1);
3404 client_maximize(self
, max_vert
, 2);
3407 /* change fullscreen state before shading, as it will affect if the window
3409 if (fullscreen
!= self
->fullscreen
)
3410 client_fullscreen(self
, fullscreen
);
3411 if (shaded
!= self
->shaded
)
3412 client_shade(self
, shaded
);
3413 if (undecorated
!= self
->undecorated
)
3414 client_set_undecorated(self
, undecorated
);
3415 if (above
!= self
->above
|| below
!= self
->below
) {
3416 self
->above
= above
;
3417 self
->below
= below
;
3418 client_calc_layer(self
);
3421 if (modal
!= self
->modal
) {
3422 self
->modal
= modal
;
3423 /* when a window changes modality, then its stacking order with its
3424 transients needs to change */
3425 stacking_raise(CLIENT_AS_WINDOW(self
));
3427 /* it also may get focused. if something is focused that shouldn't
3428 be focused anymore, then move the focus */
3429 if (focus_client
&& client_focus_target(focus_client
) != focus_client
)
3430 client_focus(focus_client
);
3433 if (iconic
!= self
->iconic
)
3434 client_iconify(self
, iconic
, FALSE
, FALSE
);
3436 if (demands_attention
!= self
->demands_attention
)
3437 client_hilite(self
, demands_attention
);
3439 client_change_state(self
); /* change the hint to reflect these changes */
3442 ObClient
*client_focus_target(ObClient
*self
)
3444 ObClient
*child
= NULL
;
3446 child
= client_search_modal_child(self
);
3447 if (child
) return child
;
3451 gboolean
client_can_focus(ObClient
*self
)
3453 /* choose the correct target */
3454 self
= client_focus_target(self
);
3456 if (!self
->frame
->visible
)
3459 if (!(self
->can_focus
|| self
->focus_notify
))
3465 gboolean
client_focus(ObClient
*self
)
3467 /* we might not focus this window, so if we have modal children which would
3468 be focused instead, bring them to this desktop */
3469 client_bring_modal_windows(self
);
3471 /* choose the correct target */
3472 self
= client_focus_target(self
);
3474 if (!client_can_focus(self
)) {
3475 ob_debug_type(OB_DEBUG_FOCUS
,
3476 "Client %s can't be focused\n", self
->title
);
3480 ob_debug_type(OB_DEBUG_FOCUS
,
3481 "Focusing client \"%s\" (0x%x) at time %u\n",
3482 self
->title
, self
->window
, event_curtime
);
3484 /* if there is a grab going on, then we need to cancel it. if we move
3485 focus during the grab, applications will get NotifyWhileGrabbed events
3488 actions should not rely on being able to move focus during an
3491 event_cancel_all_key_grabs();
3493 xerror_set_ignore(TRUE
);
3494 xerror_occured
= FALSE
;
3496 if (self
->can_focus
) {
3497 /* This can cause a BadMatch error with CurrentTime, or if an app
3498 passed in a bad time for _NET_WM_ACTIVE_WINDOW. */
3499 XSetInputFocus(ob_display
, self
->window
, RevertToPointerRoot
,
3503 if (self
->focus_notify
) {
3505 ce
.xclient
.type
= ClientMessage
;
3506 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3507 ce
.xclient
.display
= ob_display
;
3508 ce
.xclient
.window
= self
->window
;
3509 ce
.xclient
.format
= 32;
3510 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_take_focus
;
3511 ce
.xclient
.data
.l
[1] = event_curtime
;
3512 ce
.xclient
.data
.l
[2] = 0l;
3513 ce
.xclient
.data
.l
[3] = 0l;
3514 ce
.xclient
.data
.l
[4] = 0l;
3515 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3518 xerror_set_ignore(FALSE
);
3520 ob_debug_type(OB_DEBUG_FOCUS
, "Error focusing? %d\n", xerror_occured
);
3521 return !xerror_occured
;
3524 /*! Present the client to the user.
3525 @param raise If the client should be raised or not. You should only set
3526 raise to false if you don't care if the window is completely
3529 static void client_present(ObClient
*self
, gboolean here
, gboolean raise
)
3531 /* if using focus_delay, stop the timer now so that focus doesn't
3533 event_halt_focus_delay();
3535 if (client_normal(self
) && screen_showing_desktop
)
3536 screen_show_desktop(FALSE
, self
);
3538 client_iconify(self
, FALSE
, here
, FALSE
);
3539 if (self
->desktop
!= DESKTOP_ALL
&&
3540 self
->desktop
!= screen_desktop
)
3543 client_set_desktop(self
, screen_desktop
, FALSE
);
3545 screen_set_desktop(self
->desktop
, FALSE
);
3546 } else if (!self
->frame
->visible
)
3547 /* if its not visible for other reasons, then don't mess
3551 client_shade(self
, FALSE
);
3553 stacking_raise(CLIENT_AS_WINDOW(self
));
3558 void client_activate(ObClient
*self
, gboolean here
, gboolean user
)
3560 guint32 last_time
= focus_client
? focus_client
->user_time
: CurrentTime
;
3561 gboolean allow
= FALSE
;
3563 /* if the request came from the user, or if nothing is focused, then grant
3565 if the currently focused app doesn't set a user_time, then it can't
3566 benefit from any focus stealing prevention.
3568 if (user
|| !focus_client
|| !last_time
)
3570 /* otherwise, if they didn't give a time stamp or if it is too old, they
3573 allow
= event_curtime
&& event_time_after(event_curtime
, last_time
);
3575 ob_debug_type(OB_DEBUG_FOCUS
,
3576 "Want to activate window 0x%x with time %u (last time %u), "
3577 "source=%s allowing? %d\n",
3578 self
->window
, event_curtime
, last_time
,
3579 (user
? "user" : "application"), allow
);
3582 client_present(self
, here
, TRUE
);
3584 /* don't focus it but tell the user it wants attention */
3585 client_hilite(self
, TRUE
);
3588 static void client_bring_windows_recursive(ObClient
*self
,
3596 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3597 client_bring_windows_recursive(it
->data
, desktop
,
3598 helpers
, modals
, iconic
);
3600 if (((helpers
&& client_helper(self
)) ||
3601 (modals
&& self
->modal
)) &&
3602 ((self
->desktop
!= desktop
&& self
->desktop
!= DESKTOP_ALL
) ||
3603 (iconic
&& self
->iconic
)))
3605 if (iconic
&& self
->iconic
)
3606 client_iconify(self
, FALSE
, TRUE
, FALSE
);
3608 client_set_desktop(self
, desktop
, FALSE
);
3612 void client_bring_helper_windows(ObClient
*self
)
3614 client_bring_windows_recursive(self
, self
->desktop
, TRUE
, FALSE
, FALSE
);
3617 void client_bring_modal_windows(ObClient
*self
)
3619 client_bring_windows_recursive(self
, self
->desktop
, FALSE
, TRUE
, TRUE
);
3622 gboolean
client_focused(ObClient
*self
)
3624 return self
== focus_client
;
3627 static ObClientIcon
* client_icon_recursive(ObClient
*self
, gint w
, gint h
)
3630 gulong min_diff
, min_i
;
3632 if (!self
->nicons
) {
3633 ObClientIcon
*parent
= NULL
;
3636 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
3637 ObClient
*c
= it
->data
;
3638 if ((parent
= client_icon_recursive(c
, w
, h
)))
3645 /* some kind of crappy approximation to find the icon closest in size to
3646 what we requested, but icons are generally all the same ratio as
3647 eachother so it's good enough. */
3649 min_diff
= ABS(self
->icons
[0].width
- w
) + ABS(self
->icons
[0].height
- h
);
3652 for (i
= 1; i
< self
->nicons
; ++i
) {
3655 diff
= ABS(self
->icons
[i
].width
- w
) + ABS(self
->icons
[i
].height
- h
);
3656 if (diff
< min_diff
) {
3661 return &self
->icons
[min_i
];
3664 const ObClientIcon
* client_icon(ObClient
*self
, gint w
, gint h
)
3667 static ObClientIcon deficon
;
3669 if (!(ret
= client_icon_recursive(self
, w
, h
))) {
3670 deficon
.width
= deficon
.height
= 48;
3671 deficon
.data
= ob_rr_theme
->def_win_icon
;
3677 void client_set_layer(ObClient
*self
, gint layer
)
3681 self
->above
= FALSE
;
3682 } else if (layer
== 0) {
3683 self
->below
= self
->above
= FALSE
;
3685 self
->below
= FALSE
;
3688 client_calc_layer(self
);
3689 client_change_state(self
); /* reflect this in the state hints */
3692 void client_set_undecorated(ObClient
*self
, gboolean undecorated
)
3694 if (self
->undecorated
!= undecorated
&&
3695 /* don't let it undecorate if the function is missing, but let
3697 (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
|| !undecorated
))
3699 self
->undecorated
= undecorated
;
3700 client_setup_decor_and_functions(self
, TRUE
);
3701 client_change_state(self
); /* reflect this in the state hints */
3705 guint
client_monitor(ObClient
*self
)
3707 return screen_find_monitor(&self
->frame
->area
);
3710 ObClient
*client_direct_parent(ObClient
*self
)
3712 if (!self
->parents
) return NULL
;
3713 if (self
->transient_for
== OB_TRAN_GROUP
) return NULL
;
3714 return self
->parents
->data
;
3717 ObClient
*client_search_top_direct_parent(ObClient
*self
)
3720 while ((p
= client_direct_parent(self
))) self
= p
;
3724 static GSList
*client_search_all_top_parents_internal(ObClient
*self
,
3726 ObStackingLayer layer
)
3731 /* move up the direct transient chain as far as possible */
3732 while ((p
= client_direct_parent(self
)) &&
3733 (!bylayer
|| p
->layer
== layer
))
3737 ret
= g_slist_prepend(NULL
, self
);
3739 ret
= g_slist_copy(self
->parents
);
3744 GSList
*client_search_all_top_parents(ObClient
*self
)
3746 return client_search_all_top_parents_internal(self
, FALSE
, 0);
3749 GSList
*client_search_all_top_parents_layer(ObClient
*self
)
3751 return client_search_all_top_parents_internal(self
, TRUE
, self
->layer
);
3754 ObClient
*client_search_focus_parent(ObClient
*self
)
3758 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
3759 if (client_focused(it
->data
)) return it
->data
;
3764 ObClient
*client_search_parent(ObClient
*self
, ObClient
*search
)
3768 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
3769 if (it
->data
== search
) return search
;
3774 ObClient
*client_search_transient(ObClient
*self
, ObClient
*search
)
3778 for (sit
= self
->transients
; sit
; sit
= g_slist_next(sit
)) {
3779 if (sit
->data
== search
)
3781 if (client_search_transient(sit
->data
, search
))
3787 #define WANT_EDGE(cur, c) \
3790 if (c->desktop != cur->desktop && cur->desktop != DESKTOP_ALL && \
3791 cur->desktop != screen_desktop) \
3796 #define HIT_EDGE(my_edge_start, my_edge_end, his_edge_start, his_edge_end) \
3797 if ((his_edge_start >= my_edge_start && \
3798 his_edge_start <= my_edge_end) || \
3799 (my_edge_start >= his_edge_start && \
3800 my_edge_start <= his_edge_end)) \
3803 /* finds the nearest edge in the given direction from the current client
3804 * note to self: the edge is the -frame- edge (the actual one), not the
3807 gint
client_directional_edge_search(ObClient
*c
, ObDirection dir
, gboolean hang
)
3809 gint dest
, monitor_dest
;
3810 gint my_edge_start
, my_edge_end
, my_offset
;
3817 a
= screen_area(c
->desktop
);
3818 monitor
= screen_area_monitor(c
->desktop
, client_monitor(c
));
3821 case OB_DIRECTION_NORTH
:
3822 my_edge_start
= c
->frame
->area
.x
;
3823 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3824 my_offset
= c
->frame
->area
.y
+ (hang
? c
->frame
->area
.height
: 0);
3826 /* default: top of screen */
3827 dest
= a
->y
+ (hang
? c
->frame
->area
.height
: 0);
3828 monitor_dest
= monitor
->y
+ (hang
? c
->frame
->area
.height
: 0);
3829 /* if the monitor edge comes before the screen edge, */
3830 /* use that as the destination instead. (For xinerama) */
3831 if (monitor_dest
!= dest
&& my_offset
> monitor_dest
)
3832 dest
= monitor_dest
;
3834 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3835 gint his_edge_start
, his_edge_end
, his_offset
;
3836 ObClient
*cur
= it
->data
;
3840 his_edge_start
= cur
->frame
->area
.x
;
3841 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3842 his_offset
= cur
->frame
->area
.y
+
3843 (hang
? 0 : cur
->frame
->area
.height
);
3845 if(his_offset
+ 1 > my_offset
)
3848 if(his_offset
< dest
)
3851 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
3854 case OB_DIRECTION_SOUTH
:
3855 my_edge_start
= c
->frame
->area
.x
;
3856 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3857 my_offset
= c
->frame
->area
.y
+ (hang
? 0 : c
->frame
->area
.height
);
3859 /* default: bottom of screen */
3860 dest
= a
->y
+ a
->height
- (hang
? c
->frame
->area
.height
: 0);
3861 monitor_dest
= monitor
->y
+ monitor
->height
-
3862 (hang
? c
->frame
->area
.height
: 0);
3863 /* if the monitor edge comes before the screen edge, */
3864 /* use that as the destination instead. (For xinerama) */
3865 if (monitor_dest
!= dest
&& my_offset
< monitor_dest
)
3866 dest
= monitor_dest
;
3868 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3869 gint his_edge_start
, his_edge_end
, his_offset
;
3870 ObClient
*cur
= it
->data
;
3874 his_edge_start
= cur
->frame
->area
.x
;
3875 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3876 his_offset
= cur
->frame
->area
.y
+
3877 (hang
? cur
->frame
->area
.height
: 0);
3880 if(his_offset
- 1 < my_offset
)
3883 if(his_offset
> dest
)
3886 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
3889 case OB_DIRECTION_WEST
:
3890 my_edge_start
= c
->frame
->area
.y
;
3891 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3892 my_offset
= c
->frame
->area
.x
+ (hang
? c
->frame
->area
.width
: 0);
3894 /* default: leftmost egde of screen */
3895 dest
= a
->x
+ (hang
? c
->frame
->area
.width
: 0);
3896 monitor_dest
= monitor
->x
+ (hang
? c
->frame
->area
.width
: 0);
3897 /* if the monitor edge comes before the screen edge, */
3898 /* use that as the destination instead. (For xinerama) */
3899 if (monitor_dest
!= dest
&& my_offset
> monitor_dest
)
3900 dest
= monitor_dest
;
3902 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3903 gint his_edge_start
, his_edge_end
, his_offset
;
3904 ObClient
*cur
= it
->data
;
3908 his_edge_start
= cur
->frame
->area
.y
;
3909 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3910 his_offset
= cur
->frame
->area
.x
+
3911 (hang
? 0 : cur
->frame
->area
.width
);
3913 if(his_offset
+ 1 > my_offset
)
3916 if(his_offset
< dest
)
3919 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
3922 case OB_DIRECTION_EAST
:
3923 my_edge_start
= c
->frame
->area
.y
;
3924 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3925 my_offset
= c
->frame
->area
.x
+ (hang
? 0 : c
->frame
->area
.width
);
3927 /* default: rightmost edge of screen */
3928 dest
= a
->x
+ a
->width
- (hang
? c
->frame
->area
.width
: 0);
3929 monitor_dest
= monitor
->x
+ monitor
->width
-
3930 (hang
? c
->frame
->area
.width
: 0);
3931 /* if the monitor edge comes before the screen edge, */
3932 /* use that as the destination instead. (For xinerama) */
3933 if (monitor_dest
!= dest
&& my_offset
< monitor_dest
)
3934 dest
= monitor_dest
;
3936 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3937 gint his_edge_start
, his_edge_end
, his_offset
;
3938 ObClient
*cur
= it
->data
;
3942 his_edge_start
= cur
->frame
->area
.y
;
3943 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3944 his_offset
= cur
->frame
->area
.x
+
3945 (hang
? cur
->frame
->area
.width
: 0);
3947 if(his_offset
- 1 < my_offset
)
3950 if(his_offset
> dest
)
3953 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
3956 case OB_DIRECTION_NORTHEAST
:
3957 case OB_DIRECTION_SOUTHEAST
:
3958 case OB_DIRECTION_NORTHWEST
:
3959 case OB_DIRECTION_SOUTHWEST
:
3960 /* not implemented */
3962 g_assert_not_reached();
3963 dest
= 0; /* suppress warning */
3968 ObClient
* client_under_pointer()
3972 ObClient
*ret
= NULL
;
3974 if (screen_pointer_pos(&x
, &y
)) {
3975 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
3976 if (WINDOW_IS_CLIENT(it
->data
)) {
3977 ObClient
*c
= WINDOW_AS_CLIENT(it
->data
);
3978 if (c
->frame
->visible
&&
3979 /* ignore all animating windows */
3980 !frame_iconify_animating(c
->frame
) &&
3981 RECT_CONTAINS(c
->frame
->area
, x
, y
))
3992 gboolean
client_has_group_siblings(ObClient
*self
)
3994 return self
->group
&& self
->group
->members
->next
;