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
,
88 gboolean oldgtran
, gboolean newgtran
,
91 static void client_present(ObClient
*self
, gboolean here
, gboolean raise
,
93 static GSList
*client_search_all_top_parents_internal(ObClient
*self
,
95 ObStackingLayer layer
);
96 static void client_call_notifies(ObClient
*self
, GSList
*list
);
99 void client_startup(gboolean reconfig
)
101 if (reconfig
) return;
106 void client_shutdown(gboolean reconfig
)
108 if (reconfig
) return;
111 static void client_call_notifies(ObClient
*self
, GSList
*list
)
115 for (it
= list
; it
; it
= g_slist_next(it
)) {
116 ClientCallback
*d
= it
->data
;
117 d
->func(self
, d
->data
);
121 void client_add_destroy_notify(ObClientCallback func
, gpointer data
)
123 ClientCallback
*d
= g_new(ClientCallback
, 1);
126 client_destroy_notifies
= g_slist_prepend(client_destroy_notifies
, d
);
129 void client_remove_destroy_notify(ObClientCallback func
)
133 for (it
= client_destroy_notifies
; it
; it
= g_slist_next(it
)) {
134 ClientCallback
*d
= it
->data
;
135 if (d
->func
== func
) {
137 client_destroy_notifies
=
138 g_slist_delete_link(client_destroy_notifies
, it
);
144 void client_set_list()
146 Window
*windows
, *win_it
;
148 guint size
= g_list_length(client_list
);
150 /* create an array of the window ids */
152 windows
= g_new(Window
, size
);
154 for (it
= client_list
; it
; it
= g_list_next(it
), ++win_it
)
155 *win_it
= ((ObClient
*)it
->data
)->window
;
159 PROP_SETA32(RootWindow(ob_display
, ob_screen
),
160 net_client_list
, window
, (gulong
*)windows
, size
);
168 void client_manage_all()
173 XWindowAttributes attrib
;
175 XQueryTree(ob_display
, RootWindow(ob_display
, ob_screen
),
176 &w
, &w
, &children
, &nchild
);
178 /* remove all icon windows from the list */
179 for (i
= 0; i
< nchild
; i
++) {
180 if (children
[i
] == None
) continue;
181 wmhints
= XGetWMHints(ob_display
, children
[i
]);
183 if ((wmhints
->flags
& IconWindowHint
) &&
184 (wmhints
->icon_window
!= children
[i
]))
185 for (j
= 0; j
< nchild
; j
++)
186 if (children
[j
] == wmhints
->icon_window
) {
194 for (i
= 0; i
< nchild
; ++i
) {
195 if (children
[i
] == None
)
197 if (XGetWindowAttributes(ob_display
, children
[i
], &attrib
)) {
198 if (attrib
.override_redirect
) continue;
200 if (attrib
.map_state
!= IsUnmapped
)
201 client_manage(children
[i
]);
207 void client_manage(Window window
)
211 XWindowAttributes attrib
;
212 XSetWindowAttributes attrib_set
;
214 gboolean activate
= FALSE
;
215 ObAppSettings
*settings
;
216 gint placex
, placey
, placew
, placeh
;
217 gboolean transient
= FALSE
;
221 /* check if it has already been unmapped by the time we started
222 mapping. the grab does a sync so we don't have to here */
223 if (XCheckTypedWindowEvent(ob_display
, window
, DestroyNotify
, &e
) ||
224 XCheckTypedWindowEvent(ob_display
, window
, UnmapNotify
, &e
))
226 XPutBackEvent(ob_display
, &e
);
228 ob_debug("Trying to manage unmapped window. Aborting that.\n");
230 return; /* don't manage it */
233 /* make sure it isn't an override-redirect window */
234 if (!XGetWindowAttributes(ob_display
, window
, &attrib
) ||
235 attrib
.override_redirect
)
238 return; /* don't manage it */
241 /* is the window a docking app */
242 if ((wmhint
= XGetWMHints(ob_display
, window
))) {
243 if ((wmhint
->flags
& StateHint
) &&
244 wmhint
->initial_state
== WithdrawnState
)
246 dock_add(window
, wmhint
);
254 ob_debug("Managing window: 0x%lx\n", window
);
256 /* choose the events we want to receive on the CLIENT window */
257 attrib_set
.event_mask
= CLIENT_EVENTMASK
;
258 attrib_set
.do_not_propagate_mask
= CLIENT_NOPROPAGATEMASK
;
259 XChangeWindowAttributes(ob_display
, window
,
260 CWEventMask
|CWDontPropagate
, &attrib_set
);
262 /* create the ObClient struct, and populate it from the hints on the
264 self
= g_new0(ObClient
, 1);
265 self
->obwin
.type
= Window_Client
;
266 self
->window
= window
;
268 /* non-zero defaults */
269 self
->wmstate
= WithdrawnState
; /* make sure it gets updated first time */
270 self
->gravity
= NorthWestGravity
;
271 self
->desktop
= screen_num_desktops
; /* always an invalid value */
272 self
->user_time
= focus_client
? focus_client
->user_time
: CurrentTime
;
274 /* get all the stuff off the window */
275 client_get_all(self
, TRUE
);
277 ob_debug("Window type: %d\n", self
->type
);
278 ob_debug("Window group: 0x%x\n", self
->group
?self
->group
->leader
:0);
280 /* specify that if we exit, the window should not be destroyed and
281 should be reparented back to root automatically */
282 XChangeSaveSet(ob_display
, window
, SetModeInsert
);
284 /* create the decoration frame for the client window */
285 self
->frame
= frame_new(self
);
287 frame_grab_client(self
->frame
);
289 /* we've grabbed everything and set everything that we need to at mapping
293 /* per-app settings override stuff from client_get_all, and return the
294 settings for other uses too. the returned settings is a shallow copy,
295 that needs to be freed with g_free(). */
296 settings
= client_get_settings_state(self
);
297 /* the session should get the last say though */
298 client_restore_session_state(self
);
300 /* now we have all of the window's information so we can set this up */
301 client_setup_decor_and_functions(self
, FALSE
);
304 Time t
= sn_app_started(self
->startup_id
, self
->class);
305 if (t
) self
->user_time
= t
;
308 /* do this after we have a frame.. it uses the frame to help determine the
309 WM_STATE to apply. */
310 client_change_state(self
);
312 /* add ourselves to the focus order */
313 focus_order_add_new(self
);
315 /* do this to add ourselves to the stacking list in a non-intrusive way */
316 client_calc_layer(self
);
318 /* focus the new window? */
319 if (ob_state() != OB_STATE_STARTING
&&
320 (!self
->session
|| self
->session
->focused
) &&
321 /* this means focus=true for window is same as config_focus_new=true */
322 ((config_focus_new
|| (settings
&& settings
->focus
== 1)) ||
323 client_search_focus_tree_full(self
)) &&
324 /* this checks for focus=false for the window */
325 (!settings
|| settings
->focus
!= 0) &&
326 focus_valid_target(self
, FALSE
, FALSE
, TRUE
, FALSE
, FALSE
))
331 /* remove the client's border */
332 XSetWindowBorderWidth(ob_display
, self
->window
, 0);
334 /* adjust the frame to the client's size before showing or placing
336 frame_adjust_area(self
->frame
, FALSE
, TRUE
, FALSE
);
337 frame_adjust_client_area(self
->frame
);
339 /* where the frame was placed is where the window was originally */
340 placex
= self
->area
.x
;
341 placey
= self
->area
.y
;
342 placew
= self
->area
.width
;
343 placeh
= self
->area
.height
;
345 /* figure out placement for the window if the window is new */
346 if (ob_state() == OB_STATE_RUNNING
) {
347 ob_debug("Positioned: %s @ %d %d\n",
348 (!self
->positioned
? "no" :
349 (self
->positioned
== PPosition
? "program specified" :
350 (self
->positioned
== USPosition
? "user specified" :
351 (self
->positioned
== (PPosition
| USPosition
) ?
352 "program + user specified" :
353 "BADNESS !?")))), placex
, placey
);
355 ob_debug("Sized: %s @ %d %d\n",
356 (!self
->sized
? "no" :
357 (self
->sized
== PSize
? "program specified" :
358 (self
->sized
== USSize
? "user specified" :
359 (self
->sized
== (PSize
| USSize
) ?
360 "program + user specified" :
361 "BADNESS !?")))), placew
, placeh
);
363 /* splash screens are also returned as TRUE for transient,
364 and so will be forced on screen below */
365 transient
= place_client(self
, &placex
, &placey
, settings
);
367 /* make sure the window is visible. */
368 client_find_onscreen(self
, &placex
, &placey
, placew
, placeh
,
369 /* non-normal clients has less rules, and
370 windows that are being restored from a
371 session do also. we can assume you want
372 it back where you saved it. Clients saying
373 they placed themselves are subjected to
374 harder rules, ones that are placed by
375 place.c or by the user are allowed partially
376 off-screen and on xinerama divides (ie,
377 it is up to the placement routines to avoid
378 the xinerama divides)
380 splash screens get "transient" set to TRUE by
381 the place_client call
383 ob_state() == OB_STATE_RUNNING
&&
385 (!((self
->positioned
& USPosition
) ||
386 (settings
&& settings
->pos_given
)) &&
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
|| self
->positioned
& USPosition
) &&
403 client_normal(self
) &&
408 RECT_SET(placer
, placex
, placey
, placew
, placeh
);
409 frame_rect_to_frame(self
->frame
, &placer
);
411 Rect
*a
= screen_area(self
->desktop
, SCREEN_AREA_ONE_MONITOR
, &placer
);
413 /* shrink by the frame's area */
414 a
->width
-= self
->frame
->size
.left
+ self
->frame
->size
.right
;
415 a
->height
-= self
->frame
->size
.top
+ self
->frame
->size
.bottom
;
417 /* fit the window inside the area */
418 if (placew
> a
->width
|| self
->area
.height
> a
->height
) {
419 placew
= MIN(self
->area
.width
, a
->width
);
420 placeh
= MIN(self
->area
.height
, a
->height
);
422 ob_debug("setting window size to %dx%d\n",
423 self
->area
.width
, self
->area
.height
);
429 ob_debug("placing window 0x%x at %d, %d with size %d x %d. "
430 "some restrictions may apply\n",
431 self
->window
, placex
, placey
, placew
, placeh
);
433 ob_debug(" but session requested %d, %d %d x %d instead, "
435 self
->session
->x
, self
->session
->y
,
436 self
->session
->w
, self
->session
->h
);
438 /* do this after the window is placed, so the premax/prefullscreen numbers
441 this also places the window
443 client_apply_startup_state(self
, placex
, placey
, placew
, placeh
);
446 gboolean raise
= FALSE
;
447 guint32 last_time
= focus_client
?
448 focus_client
->user_time
: CurrentTime
;
450 /* This is focus stealing prevention */
451 ob_debug_type(OB_DEBUG_FOCUS
,
452 "Want to focus new window 0x%x with time %u "
454 self
->window
, self
->user_time
, last_time
);
456 if (menu_frame_visible
|| moveresize_in_progress
) {
459 ob_debug_type(OB_DEBUG_FOCUS
,
460 "Not focusing the window because the user is inside "
461 "an Openbox menu or is move/resizing a window and "
462 "we don't want to interrupt them\n");
465 /* if it's on another desktop */
466 else if (!(self
->desktop
== screen_desktop
||
467 self
->desktop
== DESKTOP_ALL
) &&
468 /* the timestamp is from before you changed desktops */
469 self
->user_time
&& screen_desktop_user_time
&&
470 !event_time_after(self
->user_time
, screen_desktop_user_time
))
474 ob_debug_type(OB_DEBUG_FOCUS
,
475 "Not focusing the window because its on another "
478 /* If something is focused, and it's not our relative... */
479 else if (focus_client
&& client_search_focus_tree_full(self
) == NULL
&&
480 client_search_focus_group_full(self
) == NULL
)
482 /* If time stamp is old, don't steal focus */
483 if (self
->user_time
&& last_time
&&
484 !event_time_after(self
->user_time
, last_time
))
487 ob_debug_type(OB_DEBUG_FOCUS
,
488 "Not focusing the window because the time is "
491 /* If its a transient (and parents aren't focused) and the time
492 is ambiguous (either the current focus target doesn't have
493 a timestamp, or they are the same (we probably inherited it
495 else if (client_has_parent(self
) &&
496 (!last_time
|| self
->user_time
== last_time
))
499 ob_debug_type(OB_DEBUG_FOCUS
,
500 "Not focusing the window because it is a "
501 "transient, and the time is very ambiguous\n");
503 /* Don't steal focus from globally active clients.
504 I stole this idea from KWin. It seems nice.
506 else if (!(focus_client
->can_focus
||
507 focus_client
->focus_notify
))
510 ob_debug_type(OB_DEBUG_FOCUS
,
511 "Not focusing the window because a globally "
512 "active client has focus\n");
514 /* Don't move focus if it's not going to go to this window
516 else if (client_focus_target(self
) != self
) {
519 ob_debug_type(OB_DEBUG_FOCUS
,
520 "Not focusing the window because another window "
521 "would get the focus anyway\n");
526 ob_debug_type(OB_DEBUG_FOCUS
,
527 "Focus stealing prevention activated for %s with "
528 "time %u (last time %u)\n",
529 self
->title
, self
->user_time
, last_time
);
530 /* if the client isn't focused, then hilite it so the user
532 client_hilite(self
, TRUE
);
533 /* we may want to raise it even tho we're not activating it */
534 if (raise
&& !client_restore_session_stacking(self
))
535 stacking_raise(CLIENT_AS_WINDOW(self
));
539 /* This may look rather odd. Well it's because new windows are added
540 to the stacking order non-intrusively. If we're not going to focus
541 the new window or hilite it, then we raise it to the top. This will
542 take affect for things that don't get focused like splash screens.
543 Also if you don't have focus_new enabled, then it's going to get
544 raised to the top. Legacy begets legacy I guess?
546 if (!client_restore_session_stacking(self
))
547 stacking_raise(CLIENT_AS_WINDOW(self
));
550 mouse_grab_for_client(self
, TRUE
);
552 /* this has to happen before we try focus the window, but we want it to
553 happen after the client's stacking has been determined or it looks bad
557 if (!config_focus_under_mouse
)
558 ignore_start
= event_start_ignore_all_enters();
562 if (!config_focus_under_mouse
)
563 event_end_ignore_all_enters(ignore_start
);
567 gboolean stacked
= client_restore_session_stacking(self
);
568 client_present(self
, FALSE
, !stacked
, TRUE
);
571 /* add to client list/map */
572 client_list
= g_list_append(client_list
, self
);
573 g_hash_table_insert(window_map
, &self
->window
, self
);
575 /* this has to happen after we're in the client_list */
576 if (STRUT_EXISTS(self
->strut
))
577 screen_update_areas();
579 /* update the list hints */
582 /* free the ObAppSettings shallow copy */
585 ob_debug("Managed window 0x%lx plate 0x%x (%s)\n",
586 window
, self
->frame
->window
, self
->class);
592 ObClient
*client_fake_manage(Window window
)
595 ObAppSettings
*settings
;
597 ob_debug("Pretend-managing window: %lx\n", window
);
599 /* do this minimal stuff to figure out the client's decorations */
601 self
= g_new0(ObClient
, 1);
602 self
->window
= window
;
604 client_get_all(self
, FALSE
);
605 /* per-app settings override stuff, and return the settings for other
606 uses too. this returns a shallow copy that needs to be freed */
607 settings
= client_get_settings_state(self
);
609 client_setup_decor_and_functions(self
, FALSE
);
611 /* create the decoration frame for the client window and adjust its size */
612 self
->frame
= frame_new(self
);
613 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
615 ob_debug("gave extents left %d right %d top %d bottom %d\n",
616 self
->frame
->size
.left
, self
->frame
->size
.right
,
617 self
->frame
->size
.top
, self
->frame
->size
.bottom
);
619 /* free the ObAppSettings shallow copy */
625 void client_unmanage_all()
627 while (client_list
!= NULL
)
628 client_unmanage(client_list
->data
);
631 void client_unmanage(ObClient
*self
)
637 ob_debug("Unmanaging window: 0x%x plate 0x%x (%s) (%s)\n",
638 self
->window
, self
->frame
->window
,
639 self
->class, self
->title
? self
->title
: "");
641 g_assert(self
!= NULL
);
643 /* we dont want events no more. do this before hiding the frame so we
644 don't generate more events */
645 XSelectInput(ob_display
, self
->window
, NoEventMask
);
647 /* ignore enter events from the unmap so it doesnt mess with the focus */
648 if (!config_focus_under_mouse
)
649 ignore_start
= event_start_ignore_all_enters();
651 frame_hide(self
->frame
);
652 /* flush to send the hide to the server quickly */
655 if (!config_focus_under_mouse
)
656 event_end_ignore_all_enters(ignore_start
);
658 mouse_grab_for_client(self
, FALSE
);
660 /* remove the window from our save set */
661 XChangeSaveSet(ob_display
, self
->window
, SetModeDelete
);
663 /* kill the property windows */
664 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
666 /* update the focus lists */
667 focus_order_remove(self
);
668 if (client_focused(self
)) {
669 /* don't leave an invalid focus_client */
673 client_list
= g_list_remove(client_list
, self
);
674 stacking_remove(self
);
675 g_hash_table_remove(window_map
, &self
->window
);
677 /* once the client is out of the list, update the struts to remove its
679 if (STRUT_EXISTS(self
->strut
))
680 screen_update_areas();
682 client_call_notifies(self
, client_destroy_notifies
);
684 /* tell our parent(s) that we're gone */
685 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
686 ((ObClient
*)it
->data
)->transients
=
687 g_slist_remove(((ObClient
*)it
->data
)->transients
,self
);
689 /* tell our transients that we're gone */
690 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
691 ((ObClient
*)it
->data
)->parents
=
692 g_slist_remove(((ObClient
*)it
->data
)->parents
, self
);
693 /* we could be keeping our children in a higher layer */
694 client_calc_layer(it
->data
);
697 /* remove from its group */
699 group_remove(self
->group
, self
);
703 /* restore the window's original geometry so it is not lost */
709 if (self
->fullscreen
)
710 a
= self
->pre_fullscreen_area
;
711 else if (self
->max_horz
|| self
->max_vert
) {
712 if (self
->max_horz
) {
713 a
.x
= self
->pre_max_area
.x
;
714 a
.width
= self
->pre_max_area
.width
;
716 if (self
->max_vert
) {
717 a
.y
= self
->pre_max_area
.y
;
718 a
.height
= self
->pre_max_area
.height
;
722 self
->fullscreen
= self
->max_horz
= self
->max_vert
= FALSE
;
723 /* let it be moved and resized no matter what */
724 self
->functions
= OB_CLIENT_FUNC_MOVE
| OB_CLIENT_FUNC_RESIZE
;
725 self
->decorations
= 0; /* unmanaged windows have no decor */
727 /* give the client its border back */
728 XSetWindowBorderWidth(ob_display
, self
->window
, self
->border_width
);
730 client_move_resize(self
, a
.x
, a
.y
, a
.width
, a
.height
);
733 /* reparent the window out of the frame, and free the frame */
734 frame_release_client(self
->frame
);
735 frame_free(self
->frame
);
738 if (ob_state() != OB_STATE_EXITING
) {
739 /* these values should not be persisted across a window
741 PROP_ERASE(self
->window
, net_wm_desktop
);
742 PROP_ERASE(self
->window
, net_wm_state
);
743 PROP_ERASE(self
->window
, wm_state
);
745 /* if we're left in an unmapped state, the client wont be mapped.
746 this is bad, since we will no longer be managing the window on
748 XMapWindow(ob_display
, self
->window
);
751 /* update the list hints */
754 ob_debug("Unmanaged window 0x%lx\n", self
->window
);
756 /* free all data allocated in the client struct */
757 g_slist_free(self
->transients
);
758 for (j
= 0; j
< self
->nicons
; ++j
)
759 g_free(self
->icons
[j
].data
);
760 if (self
->nicons
> 0)
762 g_free(self
->wm_command
);
764 g_free(self
->icon_title
);
768 g_free(self
->client_machine
);
769 g_free(self
->sm_client_id
);
773 void client_fake_unmanage(ObClient
*self
)
775 /* this is all that got allocated to get the decorations */
777 frame_free(self
->frame
);
781 /*! Returns a new structure containing the per-app settings for this client.
782 The returned structure needs to be freed with g_free. */
783 static ObAppSettings
*client_get_settings_state(ObClient
*self
)
785 ObAppSettings
*settings
;
788 settings
= config_create_app_settings();
790 for (it
= config_per_app_settings
; it
; it
= g_slist_next(it
)) {
791 ObAppSettings
*app
= it
->data
;
792 gboolean match
= TRUE
;
794 g_assert(app
->name
!= NULL
|| app
->class != NULL
);
796 /* we know that either name or class is not NULL so it will have to
797 match to use the rule */
799 !g_pattern_match(app
->name
, strlen(self
->name
), self
->name
, NULL
))
801 else if (app
->class &&
802 !g_pattern_match(app
->class,
803 strlen(self
->class), self
->class, NULL
))
805 else if (app
->role
&&
806 !g_pattern_match(app
->role
,
807 strlen(self
->role
), self
->role
, NULL
))
811 ob_debug("Window matching: %s\n", app
->name
);
813 /* copy the settings to our struct, overriding the existing
814 settings if they are not defaults */
815 config_app_settings_copy_non_defaults(app
, settings
);
819 if (settings
->shade
!= -1)
820 self
->shaded
= !!settings
->shade
;
821 if (settings
->decor
!= -1)
822 self
->undecorated
= !settings
->decor
;
823 if (settings
->iconic
!= -1)
824 self
->iconic
= !!settings
->iconic
;
825 if (settings
->skip_pager
!= -1)
826 self
->skip_pager
= !!settings
->skip_pager
;
827 if (settings
->skip_taskbar
!= -1)
828 self
->skip_taskbar
= !!settings
->skip_taskbar
;
830 if (settings
->max_vert
!= -1)
831 self
->max_vert
= !!settings
->max_vert
;
832 if (settings
->max_horz
!= -1)
833 self
->max_horz
= !!settings
->max_horz
;
835 if (settings
->fullscreen
!= -1)
836 self
->fullscreen
= !!settings
->fullscreen
;
838 if (settings
->desktop
) {
839 if (settings
->desktop
== DESKTOP_ALL
)
840 self
->desktop
= settings
->desktop
;
841 else if (settings
->desktop
> 0 &&
842 settings
->desktop
<= screen_num_desktops
)
843 self
->desktop
= settings
->desktop
- 1;
846 if (settings
->layer
== -1) {
850 else if (settings
->layer
== 0) {
854 else if (settings
->layer
== 1) {
861 static void client_restore_session_state(ObClient
*self
)
865 ob_debug_type(OB_DEBUG_SM
,
866 "Restore session for client %s\n", self
->title
);
868 if (!(it
= session_state_find(self
))) {
869 ob_debug_type(OB_DEBUG_SM
,
870 "Session data not found for client %s\n", self
->title
);
874 self
->session
= it
->data
;
876 ob_debug_type(OB_DEBUG_SM
, "Session data loaded for client %s\n",
879 RECT_SET_POINT(self
->area
, self
->session
->x
, self
->session
->y
);
880 self
->positioned
= USPosition
;
881 self
->sized
= USSize
;
882 if (self
->session
->w
> 0)
883 self
->area
.width
= self
->session
->w
;
884 if (self
->session
->h
> 0)
885 self
->area
.height
= self
->session
->h
;
886 XResizeWindow(ob_display
, self
->window
,
887 self
->area
.width
, self
->area
.height
);
889 self
->desktop
= (self
->session
->desktop
== DESKTOP_ALL
?
890 self
->session
->desktop
:
891 MIN(screen_num_desktops
- 1, self
->session
->desktop
));
892 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
894 self
->shaded
= self
->session
->shaded
;
895 self
->iconic
= self
->session
->iconic
;
896 self
->skip_pager
= self
->session
->skip_pager
;
897 self
->skip_taskbar
= self
->session
->skip_taskbar
;
898 self
->fullscreen
= self
->session
->fullscreen
;
899 self
->above
= self
->session
->above
;
900 self
->below
= self
->session
->below
;
901 self
->max_horz
= self
->session
->max_horz
;
902 self
->max_vert
= self
->session
->max_vert
;
903 self
->undecorated
= self
->session
->undecorated
;
906 static gboolean
client_restore_session_stacking(ObClient
*self
)
910 if (!self
->session
) return FALSE
;
912 mypos
= g_list_find(session_saved_state
, self
->session
);
913 if (!mypos
) return FALSE
;
915 /* start above me and look for the first client */
916 for (it
= g_list_previous(mypos
); it
; it
= g_list_previous(it
)) {
919 for (cit
= client_list
; cit
; cit
= g_list_next(cit
)) {
920 ObClient
*c
= cit
->data
;
921 /* found a client that was in the session, so go below it */
922 if (c
->session
== it
->data
) {
923 stacking_below(CLIENT_AS_WINDOW(self
),
924 CLIENT_AS_WINDOW(cit
->data
));
932 void client_move_onscreen(ObClient
*self
, gboolean rude
)
934 gint x
= self
->area
.x
;
935 gint y
= self
->area
.y
;
936 if (client_find_onscreen(self
, &x
, &y
,
938 self
->area
.height
, rude
)) {
939 client_move(self
, x
, y
);
943 gboolean
client_find_onscreen(ObClient
*self
, gint
*x
, gint
*y
, gint w
, gint h
,
946 gint ox
= *x
, oy
= *y
;
947 gboolean rudel
= rude
, ruder
= rude
, rudet
= rude
, rudeb
= rude
;
952 RECT_SET(desired
, *x
, *y
, w
, h
);
953 frame_rect_to_frame(self
->frame
, &desired
);
955 /* get where the frame would be */
956 frame_client_gravity(self
->frame
, x
, y
);
958 /* get the requested size of the window with decorations */
959 fw
= self
->frame
->size
.left
+ w
+ self
->frame
->size
.right
;
960 fh
= self
->frame
->size
.top
+ h
+ self
->frame
->size
.bottom
;
962 /* If rudeness wasn't requested, then still be rude in a given direction
963 if the client is not moving, only resizing in that direction */
965 Point oldtl
, oldtr
, oldbl
, oldbr
;
966 Point newtl
, newtr
, newbl
, newbr
;
967 gboolean stationary_l
, stationary_r
, stationary_t
, stationary_b
;
969 POINT_SET(oldtl
, self
->frame
->area
.x
, self
->frame
->area
.y
);
970 POINT_SET(oldbr
, self
->frame
->area
.x
+ self
->frame
->area
.width
- 1,
971 self
->frame
->area
.y
+ self
->frame
->area
.height
- 1);
972 POINT_SET(oldtr
, oldbr
.x
, oldtl
.y
);
973 POINT_SET(oldbl
, oldtl
.x
, oldbr
.y
);
975 POINT_SET(newtl
, *x
, *y
);
976 POINT_SET(newbr
, *x
+ fw
- 1, *y
+ fh
- 1);
977 POINT_SET(newtr
, newbr
.x
, newtl
.y
);
978 POINT_SET(newbl
, newtl
.x
, newbr
.y
);
980 /* is it moving or just resizing from some corner? */
981 stationary_l
= oldtl
.x
== newtl
.x
;
982 stationary_r
= oldtr
.x
== newtr
.x
;
983 stationary_t
= oldtl
.y
== newtl
.y
;
984 stationary_b
= oldbl
.y
== newbl
.y
;
986 /* if left edge is growing and didnt move right edge */
987 if (stationary_r
&& newtl
.x
< oldtl
.x
)
989 /* if right edge is growing and didnt move left edge */
990 if (stationary_l
&& newtr
.x
> oldtr
.x
)
992 /* if top edge is growing and didnt move bottom edge */
993 if (stationary_b
&& newtl
.y
< oldtl
.y
)
995 /* if bottom edge is growing and didnt move top edge */
996 if (stationary_t
&& newbl
.y
> oldbl
.y
)
1000 for (i
= 0; i
< screen_num_monitors
; ++i
) {
1003 if (!screen_physical_area_monitor_contains(i
, &desired
)) {
1004 if (i
< screen_num_monitors
- 1)
1007 /* the window is not inside any monitor! so just use the first
1009 a
= screen_area(self
->desktop
, 0, NULL
);
1011 a
= screen_area(self
->desktop
, SCREEN_AREA_ONE_MONITOR
, &desired
);
1013 /* This makes sure windows aren't entirely outside of the screen so you
1014 can't see them at all.
1015 It makes sure 10% of the window is on the screen at least. At don't
1016 let it move itself off the top of the screen, which would hide the
1017 titlebar on you. (The user can still do this if they want too, it's
1018 only limiting the application.
1020 if (client_normal(self
)) {
1021 if (!self
->strut
.right
&& *x
+ fw
/10 >= a
->x
+ a
->width
- 1)
1022 *x
= a
->x
+ a
->width
- fw
/10;
1023 if (!self
->strut
.bottom
&& *y
+ fh
/10 >= a
->y
+ a
->height
- 1)
1024 *y
= a
->y
+ a
->height
- fh
/10;
1025 if (!self
->strut
.left
&& *x
+ fw
*9/10 - 1 < a
->x
)
1026 *x
= a
->x
- fw
*9/10;
1027 if (!self
->strut
.top
&& *y
+ fh
*9/10 - 1 < a
->y
)
1028 *y
= a
->y
- fh
*9/10;
1031 /* This here doesn't let windows even a pixel outside the
1032 struts/screen. When called from client_manage, programs placing
1033 themselves are forced completely onscreen, while things like
1034 xterm -geometry resolution-width/2 will work fine. Trying to
1035 place it completely offscreen will be handled in the above code.
1036 Sorry for this confused comment, i am tired. */
1037 if (rudel
&& !self
->strut
.left
&& *x
< a
->x
) *x
= a
->x
;
1038 if (ruder
&& !self
->strut
.right
&& *x
+ fw
> a
->x
+ a
->width
)
1039 *x
= a
->x
+ MAX(0, a
->width
- fw
);
1041 if (rudet
&& !self
->strut
.top
&& *y
< a
->y
) *y
= a
->y
;
1042 if (rudeb
&& !self
->strut
.bottom
&& *y
+ fh
> a
->y
+ a
->height
)
1043 *y
= a
->y
+ MAX(0, a
->height
- fh
);
1048 /* get where the client should be */
1049 frame_frame_gravity(self
->frame
, x
, y
);
1051 return ox
!= *x
|| oy
!= *y
;
1054 static void client_get_all(ObClient
*self
, gboolean real
)
1056 /* this is needed for the frame to set itself up */
1057 client_get_area(self
);
1059 /* these things can change the decor and functions of the window */
1061 client_get_mwm_hints(self
);
1062 /* this can change the mwmhints for special cases */
1063 client_get_type_and_transientness(self
);
1064 client_get_state(self
);
1065 client_update_normal_hints(self
);
1067 /* get the session related properties, these can change decorations
1068 from per-app settings */
1069 client_get_session_ids(self
);
1071 /* now we got everything that can affect the decorations */
1075 /* get this early so we have it for debugging */
1076 client_update_title(self
);
1078 client_update_protocols(self
);
1080 client_update_wmhints(self
);
1081 /* this may have already been called from client_update_wmhints */
1082 if (!self
->parents
&& !self
->transient_for_group
)
1083 client_update_transient_for(self
);
1085 client_get_startup_id(self
);
1086 client_get_desktop(self
);/* uses transient data/group/startup id if a
1087 desktop is not specified */
1088 client_get_shaped(self
);
1091 /* a couple type-based defaults for new windows */
1093 /* this makes sure that these windows appear on all desktops */
1094 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
1095 self
->desktop
= DESKTOP_ALL
;
1099 client_update_sync_request_counter(self
);
1102 client_get_colormap(self
);
1103 client_update_strut(self
);
1104 client_update_icons(self
);
1105 client_update_user_time_window(self
);
1106 if (!self
->user_time_window
) /* check if this would have been called */
1107 client_update_user_time(self
);
1108 client_update_icon_geometry(self
);
1111 static void client_get_startup_id(ObClient
*self
)
1113 if (!(PROP_GETS(self
->window
, net_startup_id
, utf8
, &self
->startup_id
)))
1115 PROP_GETS(self
->group
->leader
,
1116 net_startup_id
, utf8
, &self
->startup_id
);
1119 static void client_get_area(ObClient
*self
)
1121 XWindowAttributes wattrib
;
1124 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
1125 g_assert(ret
!= BadWindow
);
1127 RECT_SET(self
->area
, wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
1128 POINT_SET(self
->root_pos
, wattrib
.x
, wattrib
.y
);
1129 self
->border_width
= wattrib
.border_width
;
1131 ob_debug("client area: %d %d %d %d bw %d\n", wattrib
.x
, wattrib
.y
,
1132 wattrib
.width
, wattrib
.height
, wattrib
.border_width
);
1135 static void client_get_desktop(ObClient
*self
)
1137 guint32 d
= screen_num_desktops
; /* an always-invalid value */
1139 if (PROP_GET32(self
->window
, net_wm_desktop
, cardinal
, &d
)) {
1140 if (d
>= screen_num_desktops
&& d
!= DESKTOP_ALL
)
1141 self
->desktop
= screen_num_desktops
- 1;
1144 ob_debug("client requested desktop 0x%x\n", self
->desktop
);
1147 gboolean first
= TRUE
;
1148 guint all
= screen_num_desktops
; /* not a valid value */
1150 /* if they are all on one desktop, then open it on the
1152 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
1153 ObClient
*c
= it
->data
;
1155 if (c
->desktop
== DESKTOP_ALL
) continue;
1161 else if (all
!= c
->desktop
)
1162 all
= screen_num_desktops
; /* make it invalid */
1164 if (all
!= screen_num_desktops
) {
1165 self
->desktop
= all
;
1167 ob_debug("client desktop set from parents: 0x%x\n",
1170 /* try get from the startup-notification protocol */
1171 else if (sn_get_desktop(self
->startup_id
, &self
->desktop
)) {
1172 if (self
->desktop
>= screen_num_desktops
&&
1173 self
->desktop
!= DESKTOP_ALL
)
1174 self
->desktop
= screen_num_desktops
- 1;
1175 ob_debug("client desktop set from startup-notification: 0x%x\n",
1178 /* defaults to the current desktop */
1180 self
->desktop
= screen_desktop
;
1181 ob_debug("client desktop set to the current desktop: %d\n",
1187 static void client_get_state(ObClient
*self
)
1192 if (PROP_GETA32(self
->window
, net_wm_state
, atom
, &state
, &num
)) {
1194 for (i
= 0; i
< num
; ++i
) {
1195 if (state
[i
] == prop_atoms
.net_wm_state_modal
)
1197 else if (state
[i
] == prop_atoms
.net_wm_state_shaded
)
1198 self
->shaded
= TRUE
;
1199 else if (state
[i
] == prop_atoms
.net_wm_state_hidden
)
1200 self
->iconic
= TRUE
;
1201 else if (state
[i
] == prop_atoms
.net_wm_state_skip_taskbar
)
1202 self
->skip_taskbar
= TRUE
;
1203 else if (state
[i
] == prop_atoms
.net_wm_state_skip_pager
)
1204 self
->skip_pager
= TRUE
;
1205 else if (state
[i
] == prop_atoms
.net_wm_state_fullscreen
)
1206 self
->fullscreen
= TRUE
;
1207 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_vert
)
1208 self
->max_vert
= TRUE
;
1209 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_horz
)
1210 self
->max_horz
= TRUE
;
1211 else if (state
[i
] == prop_atoms
.net_wm_state_above
)
1213 else if (state
[i
] == prop_atoms
.net_wm_state_below
)
1215 else if (state
[i
] == prop_atoms
.net_wm_state_demands_attention
)
1216 self
->demands_attention
= TRUE
;
1217 else if (state
[i
] == prop_atoms
.ob_wm_state_undecorated
)
1218 self
->undecorated
= TRUE
;
1225 static void client_get_shaped(ObClient
*self
)
1227 self
->shaped
= FALSE
;
1229 if (extensions_shape
) {
1234 XShapeSelectInput(ob_display
, self
->window
, ShapeNotifyMask
);
1236 XShapeQueryExtents(ob_display
, self
->window
, &s
, &foo
,
1237 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
,
1239 self
->shaped
= (s
!= 0);
1244 void client_update_transient_for(ObClient
*self
)
1247 ObClient
*target
= NULL
;
1248 gboolean trangroup
= FALSE
;
1250 if (XGetTransientForHint(ob_display
, self
->window
, &t
)) {
1251 if (t
!= self
->window
) { /* cant be transient to itself! */
1252 target
= g_hash_table_lookup(window_map
, &t
);
1253 /* if this happens then we need to check for it*/
1254 g_assert(target
!= self
);
1255 if (target
&& !WINDOW_IS_CLIENT(target
)) {
1256 /* this can happen when a dialog is a child of
1257 a dockapp, for example */
1262 /* Setting the transient_for to Root is actually illegal, however
1263 applications from time have done this to specify transient for
1265 if (!target
&& self
->group
&& t
== RootWindow(ob_display
, ob_screen
))
1267 } else if (self
->group
&& self
->transient
)
1270 client_update_transient_tree(self
, self
->group
, self
->group
,
1271 self
->transient_for_group
, trangroup
,
1272 client_direct_parent(self
), target
);
1273 self
->transient_for_group
= trangroup
;
1277 static void client_update_transient_tree(ObClient
*self
,
1278 ObGroup
*oldgroup
, ObGroup
*newgroup
,
1279 gboolean oldgtran
, gboolean newgtran
,
1280 ObClient
* oldparent
,
1281 ObClient
*newparent
)
1286 g_assert(!oldgtran
|| oldgroup
);
1287 g_assert(!newgtran
|| newgroup
);
1288 g_assert((!oldgtran
&& !oldparent
) ||
1289 (oldgtran
&& !oldparent
) ||
1290 (!oldgtran
&& oldparent
));
1291 g_assert((!newgtran
&& !newparent
) ||
1292 (newgtran
&& !newparent
) ||
1293 (!newgtran
&& newparent
));
1296 Group transient windows are not allowed to have other group
1297 transient windows as their children.
1301 /* No change has occured */
1302 if (oldgroup
== newgroup
&&
1303 oldgtran
== newgtran
&&
1304 oldparent
== newparent
) return;
1306 /** Remove the client from the transient tree **/
1308 for (it
= self
->transients
; it
; it
= next
) {
1309 next
= g_slist_next(it
);
1311 self
->transients
= g_slist_delete_link(self
->transients
, it
);
1312 c
->parents
= g_slist_remove(c
->parents
, self
);
1314 for (it
= self
->parents
; it
; it
= next
) {
1315 next
= g_slist_next(it
);
1317 self
->parents
= g_slist_delete_link(self
->parents
, it
);
1318 c
->transients
= g_slist_remove(c
->transients
, self
);
1321 /** Re-add the client to the transient tree **/
1323 /* If we're transient for a group then we need to add ourselves to all our
1326 for (it
= newgroup
->members
; it
; it
= g_slist_next(it
)) {
1329 !client_search_top_direct_parent(c
)->transient_for_group
&&
1332 c
->transients
= g_slist_prepend(c
->transients
, self
);
1333 self
->parents
= g_slist_prepend(self
->parents
, c
);
1338 /* If we are now transient for a single window we need to add ourselves to
1341 WARNING: Cyclical transient ness is possible if two windows are
1342 transient for eachother.
1344 else if (newparent
&&
1345 /* don't make ourself its child if it is already our child */
1346 !client_is_direct_child(self
, newparent
) &&
1347 client_normal(newparent
))
1349 newparent
->transients
= g_slist_prepend(newparent
->transients
, self
);
1350 self
->parents
= g_slist_prepend(self
->parents
, newparent
);
1353 /* Add any group transient windows to our children. But if we're transient
1354 for the group, then other group transients are not our children.
1356 WARNING: Cyclical transient-ness is possible. For e.g. if:
1357 A is transient for the group
1358 B is transient for A
1359 C is transient for B
1360 A can't be transient for C or we have a cycle
1362 if (!newgtran
&& newgroup
&&
1364 !client_search_top_direct_parent(newparent
)->transient_for_group
) &&
1365 client_normal(self
))
1367 for (it
= newgroup
->members
; it
; it
= g_slist_next(it
)) {
1369 if (c
!= self
&& c
->transient_for_group
&&
1370 /* Don't make it our child if it is already our parent */
1371 !client_is_direct_child(c
, self
))
1373 self
->transients
= g_slist_prepend(self
->transients
, c
);
1374 c
->parents
= g_slist_prepend(c
->parents
, self
);
1379 /** If we change our group transient-ness, our children change their
1380 effect group transient-ness, which affects how they relate to other
1383 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
1385 if (!c
->transient_for_group
)
1386 client_update_transient_tree(c
, c
->group
, c
->group
,
1387 c
->transient_for_group
,
1388 c
->transient_for_group
,
1389 client_direct_parent(c
),
1390 client_direct_parent(c
));
1394 static void client_get_mwm_hints(ObClient
*self
)
1399 self
->mwmhints
.flags
= 0; /* default to none */
1401 if (PROP_GETA32(self
->window
, motif_wm_hints
, motif_wm_hints
,
1403 if (num
>= OB_MWM_ELEMENTS
) {
1404 self
->mwmhints
.flags
= hints
[0];
1405 self
->mwmhints
.functions
= hints
[1];
1406 self
->mwmhints
.decorations
= hints
[2];
1412 void client_get_type_and_transientness(ObClient
*self
)
1419 self
->transient
= FALSE
;
1421 if (PROP_GETA32(self
->window
, net_wm_window_type
, atom
, &val
, &num
)) {
1422 /* use the first value that we know about in the array */
1423 for (i
= 0; i
< num
; ++i
) {
1424 if (val
[i
] == prop_atoms
.net_wm_window_type_desktop
)
1425 self
->type
= OB_CLIENT_TYPE_DESKTOP
;
1426 else if (val
[i
] == prop_atoms
.net_wm_window_type_dock
)
1427 self
->type
= OB_CLIENT_TYPE_DOCK
;
1428 else if (val
[i
] == prop_atoms
.net_wm_window_type_toolbar
)
1429 self
->type
= OB_CLIENT_TYPE_TOOLBAR
;
1430 else if (val
[i
] == prop_atoms
.net_wm_window_type_menu
)
1431 self
->type
= OB_CLIENT_TYPE_MENU
;
1432 else if (val
[i
] == prop_atoms
.net_wm_window_type_utility
)
1433 self
->type
= OB_CLIENT_TYPE_UTILITY
;
1434 else if (val
[i
] == prop_atoms
.net_wm_window_type_splash
)
1435 self
->type
= OB_CLIENT_TYPE_SPLASH
;
1436 else if (val
[i
] == prop_atoms
.net_wm_window_type_dialog
)
1437 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1438 else if (val
[i
] == prop_atoms
.net_wm_window_type_normal
)
1439 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1440 else if (val
[i
] == prop_atoms
.kde_net_wm_window_type_override
) {
1441 /* prevent this window from getting any decor or
1443 self
->mwmhints
.flags
&= (OB_MWM_FLAG_FUNCTIONS
|
1444 OB_MWM_FLAG_DECORATIONS
);
1445 self
->mwmhints
.decorations
= 0;
1446 self
->mwmhints
.functions
= 0;
1448 if (self
->type
!= (ObClientType
) -1)
1449 break; /* grab the first legit type */
1454 if (XGetTransientForHint(ob_display
, self
->window
, &t
))
1455 self
->transient
= TRUE
;
1457 if (self
->type
== (ObClientType
) -1) {
1458 /*the window type hint was not set, which means we either classify
1459 ourself as a normal window or a dialog, depending on if we are a
1461 if (self
->transient
)
1462 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1464 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1467 /* then, based on our type, we can update our transientness.. */
1468 if (self
->type
== OB_CLIENT_TYPE_DIALOG
||
1469 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
1470 self
->type
== OB_CLIENT_TYPE_MENU
||
1471 self
->type
== OB_CLIENT_TYPE_UTILITY
)
1473 self
->transient
= TRUE
;
1477 void client_update_protocols(ObClient
*self
)
1480 guint num_return
, i
;
1482 self
->focus_notify
= FALSE
;
1483 self
->delete_window
= FALSE
;
1485 if (PROP_GETA32(self
->window
, wm_protocols
, atom
, &proto
, &num_return
)) {
1486 for (i
= 0; i
< num_return
; ++i
) {
1487 if (proto
[i
] == prop_atoms
.wm_delete_window
)
1488 /* this means we can request the window to close */
1489 self
->delete_window
= TRUE
;
1490 else if (proto
[i
] == prop_atoms
.wm_take_focus
)
1491 /* if this protocol is requested, then the window will be
1492 notified whenever we want it to receive focus */
1493 self
->focus_notify
= TRUE
;
1495 else if (proto
[i
] == prop_atoms
.net_wm_sync_request
)
1496 /* if this protocol is requested, then resizing the
1497 window will be synchronized between the frame and the
1499 self
->sync_request
= TRUE
;
1507 void client_update_sync_request_counter(ObClient
*self
)
1511 if (PROP_GET32(self
->window
, net_wm_sync_request_counter
, cardinal
, &i
)) {
1512 self
->sync_counter
= i
;
1514 self
->sync_counter
= None
;
1518 void client_get_colormap(ObClient
*self
)
1520 XWindowAttributes wa
;
1522 if (XGetWindowAttributes(ob_display
, self
->window
, &wa
))
1523 client_update_colormap(self
, wa
.colormap
);
1526 void client_update_colormap(ObClient
*self
, Colormap colormap
)
1528 if (colormap
== self
->colormap
) return;
1530 ob_debug("Setting client %s colormap: 0x%x\n", self
->title
, colormap
);
1532 if (client_focused(self
)) {
1533 screen_install_colormap(self
, FALSE
); /* uninstall old one */
1534 self
->colormap
= colormap
;
1535 screen_install_colormap(self
, FALSE
); /* install new one */
1537 self
->colormap
= colormap
;
1540 void client_update_normal_hints(ObClient
*self
)
1546 self
->min_ratio
= 0.0f
;
1547 self
->max_ratio
= 0.0f
;
1548 SIZE_SET(self
->size_inc
, 1, 1);
1549 SIZE_SET(self
->base_size
, 0, 0);
1550 SIZE_SET(self
->min_size
, 0, 0);
1551 SIZE_SET(self
->max_size
, G_MAXINT
, G_MAXINT
);
1553 /* get the hints from the window */
1554 if (XGetWMNormalHints(ob_display
, self
->window
, &size
, &ret
)) {
1555 /* normal windows can't request placement! har har
1556 if (!client_normal(self))
1558 self
->positioned
= (size
.flags
& (PPosition
|USPosition
));
1559 self
->sized
= (size
.flags
& (PSize
|USSize
));
1561 if (size
.flags
& PWinGravity
)
1562 self
->gravity
= size
.win_gravity
;
1564 if (size
.flags
& PAspect
) {
1565 if (size
.min_aspect
.y
)
1567 (gfloat
) size
.min_aspect
.x
/ size
.min_aspect
.y
;
1568 if (size
.max_aspect
.y
)
1570 (gfloat
) size
.max_aspect
.x
/ size
.max_aspect
.y
;
1573 if (size
.flags
& PMinSize
)
1574 SIZE_SET(self
->min_size
, size
.min_width
, size
.min_height
);
1576 if (size
.flags
& PMaxSize
)
1577 SIZE_SET(self
->max_size
, size
.max_width
, size
.max_height
);
1579 if (size
.flags
& PBaseSize
)
1580 SIZE_SET(self
->base_size
, size
.base_width
, size
.base_height
);
1582 if (size
.flags
& PResizeInc
&& size
.width_inc
&& size
.height_inc
)
1583 SIZE_SET(self
->size_inc
, size
.width_inc
, size
.height_inc
);
1585 ob_debug("Normal hints: min size (%d %d) max size (%d %d)\n "
1586 "size inc (%d %d) base size (%d %d)\n",
1587 self
->min_size
.width
, self
->min_size
.height
,
1588 self
->max_size
.width
, self
->max_size
.height
,
1589 self
->size_inc
.width
, self
->size_inc
.height
,
1590 self
->base_size
.width
, self
->base_size
.height
);
1593 ob_debug("Normal hints: not set\n");
1596 void client_setup_decor_and_functions(ObClient
*self
, gboolean reconfig
)
1598 /* start with everything (cept fullscreen) */
1600 (OB_FRAME_DECOR_TITLEBAR
|
1601 OB_FRAME_DECOR_HANDLE
|
1602 OB_FRAME_DECOR_GRIPS
|
1603 OB_FRAME_DECOR_BORDER
|
1604 OB_FRAME_DECOR_ICON
|
1605 OB_FRAME_DECOR_ALLDESKTOPS
|
1606 OB_FRAME_DECOR_ICONIFY
|
1607 OB_FRAME_DECOR_MAXIMIZE
|
1608 OB_FRAME_DECOR_SHADE
|
1609 OB_FRAME_DECOR_CLOSE
);
1611 (OB_CLIENT_FUNC_RESIZE
|
1612 OB_CLIENT_FUNC_MOVE
|
1613 OB_CLIENT_FUNC_ICONIFY
|
1614 OB_CLIENT_FUNC_MAXIMIZE
|
1615 OB_CLIENT_FUNC_SHADE
|
1616 OB_CLIENT_FUNC_CLOSE
|
1617 OB_CLIENT_FUNC_BELOW
|
1618 OB_CLIENT_FUNC_ABOVE
|
1619 OB_CLIENT_FUNC_UNDECORATE
);
1621 if (!(self
->min_size
.width
< self
->max_size
.width
||
1622 self
->min_size
.height
< self
->max_size
.height
))
1623 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1625 switch (self
->type
) {
1626 case OB_CLIENT_TYPE_NORMAL
:
1627 /* normal windows retain all of the possible decorations and
1628 functionality, and are the only windows that you can fullscreen */
1629 self
->functions
|= OB_CLIENT_FUNC_FULLSCREEN
;
1632 case OB_CLIENT_TYPE_DIALOG
:
1633 case OB_CLIENT_TYPE_UTILITY
:
1634 /* these windows don't have anything added or removed by default */
1637 case OB_CLIENT_TYPE_MENU
:
1638 case OB_CLIENT_TYPE_TOOLBAR
:
1639 /* these windows can't iconify or maximize */
1640 self
->decorations
&= ~(OB_FRAME_DECOR_ICONIFY
|
1641 OB_FRAME_DECOR_MAXIMIZE
);
1642 self
->functions
&= ~(OB_CLIENT_FUNC_ICONIFY
|
1643 OB_CLIENT_FUNC_MAXIMIZE
);
1646 case OB_CLIENT_TYPE_SPLASH
:
1647 /* these don't get get any decorations, and the only thing you can
1648 do with them is move them */
1649 self
->decorations
= 0;
1650 self
->functions
= OB_CLIENT_FUNC_MOVE
;
1653 case OB_CLIENT_TYPE_DESKTOP
:
1654 /* these windows are not manipulated by the window manager */
1655 self
->decorations
= 0;
1656 self
->functions
= 0;
1659 case OB_CLIENT_TYPE_DOCK
:
1660 /* these windows are not manipulated by the window manager, but they
1661 can set below layer which has a special meaning */
1662 self
->decorations
= 0;
1663 self
->functions
= OB_CLIENT_FUNC_BELOW
;
1667 /* Mwm Hints are applied subtractively to what has already been chosen for
1668 decor and functionality */
1669 if (self
->mwmhints
.flags
& OB_MWM_FLAG_DECORATIONS
) {
1670 if (! (self
->mwmhints
.decorations
& OB_MWM_DECOR_ALL
)) {
1671 if (! ((self
->mwmhints
.decorations
& OB_MWM_DECOR_HANDLE
) ||
1672 (self
->mwmhints
.decorations
& OB_MWM_DECOR_TITLE
)))
1674 /* if the mwm hints request no handle or title, then all
1675 decorations are disabled, but keep the border if that's
1677 if (self
->mwmhints
.decorations
& OB_MWM_DECOR_BORDER
)
1678 self
->decorations
= OB_FRAME_DECOR_BORDER
;
1680 self
->decorations
= 0;
1685 if (self
->mwmhints
.flags
& OB_MWM_FLAG_FUNCTIONS
) {
1686 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_ALL
)) {
1687 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_RESIZE
))
1688 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1689 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_MOVE
))
1690 self
->functions
&= ~OB_CLIENT_FUNC_MOVE
;
1691 /* dont let mwm hints kill any buttons
1692 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1693 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1694 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1695 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1697 /* dont let mwm hints kill the close button
1698 if (! (self->mwmhints.functions & MwmFunc_Close))
1699 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1703 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
))
1704 self
->decorations
&= ~OB_FRAME_DECOR_SHADE
;
1705 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
))
1706 self
->decorations
&= ~OB_FRAME_DECOR_ICONIFY
;
1707 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
))
1708 self
->decorations
&= ~(OB_FRAME_DECOR_GRIPS
| OB_FRAME_DECOR_HANDLE
);
1710 /* can't maximize without moving/resizing */
1711 if (!((self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) &&
1712 (self
->functions
& OB_CLIENT_FUNC_MOVE
) &&
1713 (self
->functions
& OB_CLIENT_FUNC_RESIZE
))) {
1714 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1715 self
->decorations
&= ~OB_FRAME_DECOR_MAXIMIZE
;
1718 if (self
->max_horz
&& self
->max_vert
) {
1719 /* you can't resize fully maximized windows */
1720 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1721 /* kill the handle on fully maxed windows */
1722 self
->decorations
&= ~(OB_FRAME_DECOR_HANDLE
| OB_FRAME_DECOR_GRIPS
);
1725 /* If there are no decorations to remove, don't allow the user to try
1727 if (self
->decorations
== 0)
1728 self
->functions
&= ~OB_CLIENT_FUNC_UNDECORATE
;
1730 /* finally, the user can have requested no decorations, which overrides
1731 everything (but doesnt give it a border if it doesnt have one) */
1732 if (self
->undecorated
)
1733 self
->decorations
= 0;
1735 /* if we don't have a titlebar, then we cannot shade! */
1736 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1737 self
->functions
&= ~OB_CLIENT_FUNC_SHADE
;
1739 /* now we need to check against rules for the client's current state */
1740 if (self
->fullscreen
) {
1741 self
->functions
&= (OB_CLIENT_FUNC_CLOSE
|
1742 OB_CLIENT_FUNC_FULLSCREEN
|
1743 OB_CLIENT_FUNC_ICONIFY
);
1744 self
->decorations
= 0;
1747 client_change_allowed_actions(self
);
1750 /* force reconfigure to make sure decorations are updated */
1751 client_reconfigure(self
, TRUE
);
1754 static void client_change_allowed_actions(ObClient
*self
)
1759 /* desktop windows are kept on all desktops */
1760 if (self
->type
!= OB_CLIENT_TYPE_DESKTOP
)
1761 actions
[num
++] = prop_atoms
.net_wm_action_change_desktop
;
1763 if (self
->functions
& OB_CLIENT_FUNC_SHADE
)
1764 actions
[num
++] = prop_atoms
.net_wm_action_shade
;
1765 if (self
->functions
& OB_CLIENT_FUNC_CLOSE
)
1766 actions
[num
++] = prop_atoms
.net_wm_action_close
;
1767 if (self
->functions
& OB_CLIENT_FUNC_MOVE
)
1768 actions
[num
++] = prop_atoms
.net_wm_action_move
;
1769 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
)
1770 actions
[num
++] = prop_atoms
.net_wm_action_minimize
;
1771 if (self
->functions
& OB_CLIENT_FUNC_RESIZE
)
1772 actions
[num
++] = prop_atoms
.net_wm_action_resize
;
1773 if (self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
)
1774 actions
[num
++] = prop_atoms
.net_wm_action_fullscreen
;
1775 if (self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) {
1776 actions
[num
++] = prop_atoms
.net_wm_action_maximize_horz
;
1777 actions
[num
++] = prop_atoms
.net_wm_action_maximize_vert
;
1779 if (self
->functions
& OB_CLIENT_FUNC_ABOVE
)
1780 actions
[num
++] = prop_atoms
.net_wm_action_above
;
1781 if (self
->functions
& OB_CLIENT_FUNC_BELOW
)
1782 actions
[num
++] = prop_atoms
.net_wm_action_below
;
1783 if (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
)
1784 actions
[num
++] = prop_atoms
.ob_wm_action_undecorate
;
1786 PROP_SETA32(self
->window
, net_wm_allowed_actions
, atom
, actions
, num
);
1788 /* make sure the window isn't breaking any rules now */
1790 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
) && self
->shaded
) {
1791 if (self
->frame
) client_shade(self
, FALSE
);
1792 else self
->shaded
= FALSE
;
1794 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
) && self
->iconic
) {
1795 if (self
->frame
) client_iconify(self
, FALSE
, TRUE
, FALSE
);
1796 else self
->iconic
= FALSE
;
1798 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) && self
->fullscreen
) {
1799 if (self
->frame
) client_fullscreen(self
, FALSE
);
1800 else self
->fullscreen
= FALSE
;
1802 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) && (self
->max_horz
||
1804 if (self
->frame
) client_maximize(self
, FALSE
, 0);
1805 else self
->max_vert
= self
->max_horz
= FALSE
;
1809 void client_update_wmhints(ObClient
*self
)
1813 /* assume a window takes input if it doesnt specify */
1814 self
->can_focus
= TRUE
;
1816 if ((hints
= XGetWMHints(ob_display
, self
->window
)) != NULL
) {
1819 if (hints
->flags
& InputHint
)
1820 self
->can_focus
= hints
->input
;
1822 /* only do this when first managing the window *AND* when we aren't
1824 if (ob_state() != OB_STATE_STARTING
&& self
->frame
== NULL
)
1825 if (hints
->flags
& StateHint
)
1826 self
->iconic
= hints
->initial_state
== IconicState
;
1829 self
->urgent
= (hints
->flags
& XUrgencyHint
);
1830 if (self
->urgent
&& !ur
)
1831 client_hilite(self
, TRUE
);
1832 else if (!self
->urgent
&& ur
&& self
->demands_attention
)
1833 client_hilite(self
, FALSE
);
1835 if (!(hints
->flags
& WindowGroupHint
))
1836 hints
->window_group
= None
;
1838 /* did the group state change? */
1839 if (hints
->window_group
!=
1840 (self
->group
? self
->group
->leader
: None
))
1842 ObGroup
*oldgroup
= self
->group
;
1844 /* remove from the old group if there was one */
1845 if (self
->group
!= NULL
) {
1846 group_remove(self
->group
, self
);
1850 /* add ourself to the group if we have one */
1851 if (hints
->window_group
!= None
) {
1852 self
->group
= group_add(hints
->window_group
, self
);
1855 /* Put ourselves into the new group's transient tree, and remove
1856 ourselves from the old group's */
1857 client_update_transient_tree(self
, oldgroup
, self
->group
,
1858 self
->transient_for_group
,
1859 self
->transient_for_group
,
1860 client_direct_parent(self
),
1861 client_direct_parent(self
));
1863 /* Lastly, being in a group, or not, can change if the window is
1864 transient for anything.
1866 The logic for this is:
1867 self->transient = TRUE always if the window wants to be
1868 transient for something, even if transient_for was NULL because
1869 it wasn't in a group before.
1871 If parents was NULL and oldgroup was NULL we can assume
1872 that when we add the new group, it will become transient for
1875 If transient_for_group is TRUE, then it must have already
1876 had a group. If it is getting a new group, the above call to
1877 client_update_transient_tree has already taken care of
1878 everything ! If it is losing all group status then it will
1879 no longer be transient for anything and that needs to be
1882 if (self
->transient
&&
1883 ((self
->parents
== NULL
&& oldgroup
== NULL
) ||
1884 (self
->transient_for_group
&& !self
->group
)))
1885 client_update_transient_for(self
);
1888 /* the WM_HINTS can contain an icon */
1889 if (hints
->flags
& IconPixmapHint
)
1890 client_update_icons(self
);
1896 void client_update_title(ObClient
*self
)
1899 gchar
*visible
= NULL
;
1901 g_free(self
->title
);
1904 if (!PROP_GETS(self
->window
, net_wm_name
, utf8
, &data
)) {
1905 /* try old x stuff */
1906 if (!(PROP_GETS(self
->window
, wm_name
, locale
, &data
)
1907 || PROP_GETS(self
->window
, wm_name
, utf8
, &data
))) {
1908 if (self
->transient
) {
1910 GNOME alert windows are not given titles:
1911 http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
1913 data
= g_strdup("");
1915 data
= g_strdup("Unnamed Window");
1919 if (self
->client_machine
) {
1920 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1925 PROP_SETS(self
->window
, net_wm_visible_name
, visible
);
1926 self
->title
= visible
;
1929 frame_adjust_title(self
->frame
);
1931 /* update the icon title */
1933 g_free(self
->icon_title
);
1936 if (!PROP_GETS(self
->window
, net_wm_icon_name
, utf8
, &data
))
1937 /* try old x stuff */
1938 if (!(PROP_GETS(self
->window
, wm_icon_name
, locale
, &data
) ||
1939 PROP_GETS(self
->window
, wm_icon_name
, utf8
, &data
)))
1940 data
= g_strdup(self
->title
);
1942 if (self
->client_machine
) {
1943 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1948 PROP_SETS(self
->window
, net_wm_visible_icon_name
, visible
);
1949 self
->icon_title
= visible
;
1952 void client_update_strut(ObClient
*self
)
1956 gboolean got
= FALSE
;
1959 if (PROP_GETA32(self
->window
, net_wm_strut_partial
, cardinal
,
1963 STRUT_PARTIAL_SET(strut
,
1964 data
[0], data
[2], data
[1], data
[3],
1965 data
[4], data
[5], data
[8], data
[9],
1966 data
[6], data
[7], data
[10], data
[11]);
1972 PROP_GETA32(self
->window
, net_wm_strut
, cardinal
, &data
, &num
)) {
1978 /* use the screen's width/height */
1979 a
= screen_physical_area_all_monitors();
1981 STRUT_PARTIAL_SET(strut
,
1982 data
[0], data
[2], data
[1], data
[3],
1983 a
->y
, a
->y
+ a
->height
- 1,
1984 a
->x
, a
->x
+ a
->width
- 1,
1985 a
->y
, a
->y
+ a
->height
- 1,
1986 a
->x
, a
->x
+ a
->width
- 1);
1993 STRUT_PARTIAL_SET(strut
, 0, 0, 0, 0,
1994 0, 0, 0, 0, 0, 0, 0, 0);
1996 if (!STRUT_EQUAL(strut
, self
->strut
)) {
1997 self
->strut
= strut
;
1999 /* updating here is pointless while we're being mapped cuz we're not in
2000 the client list yet */
2002 screen_update_areas();
2006 void client_update_icons(ObClient
*self
)
2012 for (i
= 0; i
< self
->nicons
; ++i
)
2013 g_free(self
->icons
[i
].data
);
2014 if (self
->nicons
> 0)
2015 g_free(self
->icons
);
2018 if (PROP_GETA32(self
->window
, net_wm_icon
, cardinal
, &data
, &num
)) {
2019 /* figure out how many valid icons are in here */
2021 while (num
- i
> 2) {
2025 if (i
> num
|| w
*h
== 0) break;
2029 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2031 /* store the icons */
2033 for (j
= 0; j
< self
->nicons
; ++j
) {
2036 w
= self
->icons
[j
].width
= data
[i
++];
2037 h
= self
->icons
[j
].height
= data
[i
++];
2039 if (w
*h
== 0) continue;
2041 self
->icons
[j
].data
= g_new(RrPixel32
, w
* h
);
2042 for (x
= 0, y
= 0, t
= 0; t
< w
* h
; ++t
, ++x
, ++i
) {
2047 self
->icons
[j
].data
[t
] =
2048 (((data
[i
] >> 24) & 0xff) << RrDefaultAlphaOffset
) +
2049 (((data
[i
] >> 16) & 0xff) << RrDefaultRedOffset
) +
2050 (((data
[i
] >> 8) & 0xff) << RrDefaultGreenOffset
) +
2051 (((data
[i
] >> 0) & 0xff) << RrDefaultBlueOffset
);
2060 if ((hints
= XGetWMHints(ob_display
, self
->window
))) {
2061 if (hints
->flags
& IconPixmapHint
) {
2063 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2064 xerror_set_ignore(TRUE
);
2065 if (!RrPixmapToRGBA(ob_rr_inst
,
2067 (hints
->flags
& IconMaskHint
?
2068 hints
->icon_mask
: None
),
2069 &self
->icons
[0].width
,
2070 &self
->icons
[0].height
,
2071 &self
->icons
[0].data
))
2073 g_free(self
->icons
);
2076 xerror_set_ignore(FALSE
);
2082 /* set the default icon onto the window
2083 in theory, this could be a race, but if a window doesn't set an icon
2084 or removes it entirely, it's not very likely it is going to set one
2085 right away afterwards
2087 if it has parents, then one of them will have an icon already
2089 if (self
->nicons
== 0 && !self
->parents
) {
2090 RrPixel32
*icon
= ob_rr_theme
->def_win_icon
;
2093 data
= g_new(gulong
, 48*48+2);
2094 data
[0] = data
[1] = 48;
2095 for (i
= 0; i
< 48*48; ++i
)
2096 data
[i
+2] = (((icon
[i
] >> RrDefaultAlphaOffset
) & 0xff) << 24) +
2097 (((icon
[i
] >> RrDefaultRedOffset
) & 0xff) << 16) +
2098 (((icon
[i
] >> RrDefaultGreenOffset
) & 0xff) << 8) +
2099 (((icon
[i
] >> RrDefaultBlueOffset
) & 0xff) << 0);
2100 PROP_SETA32(self
->window
, net_wm_icon
, cardinal
, data
, 48*48+2);
2102 } else if (self
->frame
)
2103 /* don't draw the icon empty if we're just setting one now anyways,
2104 we'll get the property change any second */
2105 frame_adjust_icon(self
->frame
);
2108 void client_update_user_time(ObClient
*self
)
2111 gboolean got
= FALSE
;
2113 if (self
->user_time_window
)
2114 got
= PROP_GET32(self
->user_time_window
,
2115 net_wm_user_time
, cardinal
, &time
);
2117 got
= PROP_GET32(self
->window
, net_wm_user_time
, cardinal
, &time
);
2120 /* we set this every time, not just when it grows, because in practice
2121 sometimes time goes backwards! (ntpdate.. yay....) so.. if it goes
2122 backward we don't want all windows to stop focusing. we'll just
2123 assume noone is setting times older than the last one, cuz that
2124 would be pretty stupid anyways
2126 self
->user_time
= time
;
2128 /*ob_debug("window %s user time %u\n", self->title, time);*/
2132 void client_update_user_time_window(ObClient
*self
)
2136 if (!PROP_GET32(self
->window
, net_wm_user_time_window
, window
, &w
))
2139 if (w
!= self
->user_time_window
) {
2140 /* remove the old window */
2141 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
2142 self
->user_time_window
= None
;
2144 if (self
->group
&& self
->group
->leader
== w
) {
2145 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2146 "_NET_WM_USER_TYPE_WINDOW to its group leader\n");
2147 /* do it anyways..? */
2149 else if (w
== self
->window
) {
2150 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2151 "_NET_WM_USER_TIME_WINDOW to itself\n");
2152 w
= None
; /* don't do it */
2155 /* add the new window */
2156 propwin_add(w
, OB_PROPWIN_USER_TIME
, self
);
2157 self
->user_time_window
= w
;
2159 /* and update from it */
2160 client_update_user_time(self
);
2164 void client_update_icon_geometry(ObClient
*self
)
2169 RECT_SET(self
->icon_geometry
, 0, 0, 0, 0);
2171 if (PROP_GETA32(self
->window
, net_wm_icon_geometry
, cardinal
, &data
, &num
)
2174 /* don't let them set it with an area < 0 */
2175 RECT_SET(self
->icon_geometry
, data
[0], data
[1],
2176 MAX(data
[2],0), MAX(data
[3],0));
2180 static void client_get_session_ids(ObClient
*self
)
2187 if (!PROP_GET32(self
->window
, wm_client_leader
, window
, &leader
))
2190 /* get the SM_CLIENT_ID */
2193 got
= PROP_GETS(leader
, sm_client_id
, locale
, &self
->sm_client_id
);
2195 PROP_GETS(self
->window
, sm_client_id
, locale
, &self
->sm_client_id
);
2197 /* get the WM_CLASS (name and class). make them "" if they are not
2201 got
= PROP_GETSS(leader
, wm_class
, locale
, &ss
);
2203 got
= PROP_GETSS(self
->window
, wm_class
, locale
, &ss
);
2207 self
->name
= g_strdup(ss
[0]);
2209 self
->class = g_strdup(ss
[1]);
2214 if (self
->name
== NULL
) self
->name
= g_strdup("");
2215 if (self
->class == NULL
) self
->class = g_strdup("");
2217 /* get the WM_WINDOW_ROLE. make it "" if it is not provided */
2220 got
= PROP_GETS(leader
, wm_window_role
, locale
, &s
);
2222 got
= PROP_GETS(self
->window
, wm_window_role
, locale
, &s
);
2227 self
->role
= g_strdup("");
2229 /* get the WM_COMMAND */
2233 got
= PROP_GETSS(leader
, wm_command
, locale
, &ss
);
2235 got
= PROP_GETSS(self
->window
, wm_command
, locale
, &ss
);
2238 /* merge/mash them all together */
2239 gchar
*merge
= NULL
;
2242 for (i
= 0; ss
[i
]; ++i
) {
2245 merge
= g_strconcat(merge
, ss
[i
], NULL
);
2247 merge
= g_strconcat(ss
[i
], NULL
);
2252 self
->wm_command
= merge
;
2255 /* get the WM_CLIENT_MACHINE */
2258 got
= PROP_GETS(leader
, wm_client_machine
, locale
, &s
);
2260 got
= PROP_GETS(self
->window
, wm_client_machine
, locale
, &s
);
2263 gchar localhost
[128];
2265 gethostname(localhost
, 127);
2266 localhost
[127] = '\0';
2267 if (strcmp(localhost
, s
) != 0)
2268 self
->client_machine
= s
;
2274 static void client_change_wm_state(ObClient
*self
)
2279 old
= self
->wmstate
;
2281 if (self
->shaded
|| self
->iconic
||
2282 (self
->desktop
!= DESKTOP_ALL
&& self
->desktop
!= screen_desktop
))
2284 self
->wmstate
= IconicState
;
2286 self
->wmstate
= NormalState
;
2288 if (old
!= self
->wmstate
) {
2289 PROP_MSG(self
->window
, kde_wm_change_state
,
2290 self
->wmstate
, 1, 0, 0);
2292 state
[0] = self
->wmstate
;
2294 PROP_SETA32(self
->window
, wm_state
, wm_state
, state
, 2);
2298 static void client_change_state(ObClient
*self
)
2300 gulong netstate
[12];
2305 netstate
[num
++] = prop_atoms
.net_wm_state_modal
;
2307 netstate
[num
++] = prop_atoms
.net_wm_state_shaded
;
2309 netstate
[num
++] = prop_atoms
.net_wm_state_hidden
;
2310 if (self
->skip_taskbar
)
2311 netstate
[num
++] = prop_atoms
.net_wm_state_skip_taskbar
;
2312 if (self
->skip_pager
)
2313 netstate
[num
++] = prop_atoms
.net_wm_state_skip_pager
;
2314 if (self
->fullscreen
)
2315 netstate
[num
++] = prop_atoms
.net_wm_state_fullscreen
;
2317 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_vert
;
2319 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_horz
;
2321 netstate
[num
++] = prop_atoms
.net_wm_state_above
;
2323 netstate
[num
++] = prop_atoms
.net_wm_state_below
;
2324 if (self
->demands_attention
)
2325 netstate
[num
++] = prop_atoms
.net_wm_state_demands_attention
;
2326 if (self
->undecorated
)
2327 netstate
[num
++] = prop_atoms
.ob_wm_state_undecorated
;
2328 PROP_SETA32(self
->window
, net_wm_state
, atom
, netstate
, num
);
2331 frame_adjust_state(self
->frame
);
2334 ObClient
*client_search_focus_tree(ObClient
*self
)
2339 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
2340 if (client_focused(it
->data
)) return it
->data
;
2341 if ((ret
= client_search_focus_tree(it
->data
))) return ret
;
2346 ObClient
*client_search_focus_tree_full(ObClient
*self
)
2348 if (self
->parents
) {
2351 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
2352 ObClient
*c
= it
->data
;
2353 if ((c
= client_search_focus_tree_full(it
->data
))) return c
;
2359 /* this function checks the whole tree, the client_search_focus_tree
2360 does not, so we need to check this window */
2361 if (client_focused(self
))
2363 return client_search_focus_tree(self
);
2367 ObClient
*client_search_focus_group_full(ObClient
*self
)
2372 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
2373 ObClient
*c
= it
->data
;
2375 if (client_focused(c
)) return c
;
2376 if ((c
= client_search_focus_tree(it
->data
))) return c
;
2379 if (client_focused(self
)) return self
;
2383 gboolean
client_has_parent(ObClient
*self
)
2385 return self
->parents
!= NULL
;
2388 static ObStackingLayer
calc_layer(ObClient
*self
)
2393 monitor
= screen_physical_area_monitor(client_monitor(self
));
2395 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
2396 l
= OB_STACKING_LAYER_DESKTOP
;
2397 else if (self
->type
== OB_CLIENT_TYPE_DOCK
) {
2398 if (self
->below
) l
= OB_STACKING_LAYER_NORMAL
;
2399 else l
= OB_STACKING_LAYER_ABOVE
;
2401 else if ((self
->fullscreen
||
2402 /* No decorations and fills the monitor = oldskool fullscreen.
2403 But not for maximized windows.
2405 (self
->decorations
== 0 &&
2406 !(self
->max_horz
&& self
->max_vert
) &&
2407 RECT_EQUAL(self
->area
, *monitor
))) &&
2408 (client_focused(self
) || client_search_focus_tree(self
)))
2409 l
= OB_STACKING_LAYER_FULLSCREEN
;
2410 else if (self
->above
) l
= OB_STACKING_LAYER_ABOVE
;
2411 else if (self
->below
) l
= OB_STACKING_LAYER_BELOW
;
2412 else l
= OB_STACKING_LAYER_NORMAL
;
2419 static void client_calc_layer_recursive(ObClient
*self
, ObClient
*orig
,
2420 ObStackingLayer min
)
2422 ObStackingLayer old
, own
;
2426 own
= calc_layer(self
);
2427 self
->layer
= MAX(own
, min
);
2429 if (self
->layer
!= old
) {
2430 stacking_remove(CLIENT_AS_WINDOW(self
));
2431 stacking_add_nonintrusive(CLIENT_AS_WINDOW(self
));
2434 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
2435 client_calc_layer_recursive(it
->data
, orig
,
2439 void client_calc_layer(ObClient
*self
)
2446 /* transients take on the layer of their parents */
2447 it
= client_search_all_top_parents(self
);
2449 for (; it
; it
= g_slist_next(it
))
2450 client_calc_layer_recursive(it
->data
, orig
, 0);
2453 gboolean
client_should_show(ObClient
*self
)
2457 if (client_normal(self
) && screen_showing_desktop
)
2459 if (self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
2465 gboolean
client_show(ObClient
*self
)
2467 gboolean show
= FALSE
;
2469 if (client_should_show(self
)) {
2470 frame_show(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 gboolean
client_hide(ObClient
*self
)
2484 gboolean hide
= FALSE
;
2486 if (!client_should_show(self
)) {
2487 if (self
== focus_client
) {
2488 /* if there is a grab going on, then we need to cancel it. if we
2489 move focus during the grab, applications will get
2490 NotifyWhileGrabbed events and ignore them !
2492 actions should not rely on being able to move focus during an
2495 event_cancel_all_key_grabs();
2498 /* We don't need to ignore enter events here.
2499 The window can hide/iconify in 3 different ways:
2500 1 - through an x message. in this case we ignore all enter events
2501 caused by responding to the x message (unless underMouse)
2502 2 - by a keyboard action. in this case we ignore all enter events
2503 caused by the action
2504 3 - by a mouse action. in this case they are doing stuff with the
2505 mouse and focus _should_ move.
2507 Also in action_end, we simulate an enter event that can't be ignored
2508 so trying to ignore them is futile in case 3 anyways
2511 frame_hide(self
->frame
);
2514 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible,
2515 it needs to be in IconicState. This includes when it is on another
2518 client_change_wm_state(self
);
2523 void client_showhide(ObClient
*self
)
2525 if (!client_show(self
))
2529 gboolean
client_normal(ObClient
*self
) {
2530 return ! (self
->type
== OB_CLIENT_TYPE_DESKTOP
||
2531 self
->type
== OB_CLIENT_TYPE_DOCK
||
2532 self
->type
== OB_CLIENT_TYPE_SPLASH
);
2535 gboolean
client_helper(ObClient
*self
)
2537 return (self
->type
== OB_CLIENT_TYPE_UTILITY
||
2538 self
->type
== OB_CLIENT_TYPE_MENU
||
2539 self
->type
== OB_CLIENT_TYPE_TOOLBAR
);
2542 gboolean
client_mouse_focusable(ObClient
*self
)
2544 return !(self
->type
== OB_CLIENT_TYPE_MENU
||
2545 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
2546 self
->type
== OB_CLIENT_TYPE_SPLASH
||
2547 self
->type
== OB_CLIENT_TYPE_DOCK
);
2550 gboolean
client_enter_focusable(ObClient
*self
)
2552 /* you can focus desktops but it shouldn't on enter */
2553 return (client_mouse_focusable(self
) &&
2554 self
->type
!= OB_CLIENT_TYPE_DESKTOP
);
2558 static void client_apply_startup_state(ObClient
*self
,
2559 gint x
, gint y
, gint w
, gint h
)
2561 /* save the states that we are going to apply */
2562 gboolean iconic
= self
->iconic
;
2563 gboolean fullscreen
= self
->fullscreen
;
2564 gboolean undecorated
= self
->undecorated
;
2565 gboolean shaded
= self
->shaded
;
2566 gboolean demands_attention
= self
->demands_attention
;
2567 gboolean max_horz
= self
->max_horz
;
2568 gboolean max_vert
= self
->max_vert
;
2572 /* turn them all off in the client, so they won't affect the window
2574 self
->iconic
= self
->fullscreen
= self
->undecorated
= self
->shaded
=
2575 self
->demands_attention
= self
->max_horz
= self
->max_vert
= FALSE
;
2577 /* move the client to its placed position, or it it's already there,
2578 generate a ConfigureNotify telling the client where it is.
2580 do this after adjusting the frame. otherwise it gets all weird and
2581 clients don't work right
2583 do this before applying the states so they have the correct
2584 pre-max/pre-fullscreen values
2586 client_try_configure(self
, &x
, &y
, &w
, &h
, &l
, &l
, FALSE
);
2587 ob_debug("placed window 0x%x at %d, %d with size %d x %d\n",
2588 self
->window
, x
, y
, w
, h
);
2589 /* save the area, and make it where it should be for the premax stuff */
2590 oldarea
= self
->area
;
2591 RECT_SET(self
->area
, x
, y
, w
, h
);
2593 /* apply the states. these are in a carefully crafted order.. */
2596 client_iconify(self
, TRUE
, FALSE
, TRUE
);
2598 client_fullscreen(self
, TRUE
);
2600 client_set_undecorated(self
, TRUE
);
2602 client_shade(self
, TRUE
);
2603 if (demands_attention
)
2604 client_hilite(self
, TRUE
);
2606 if (max_vert
&& max_horz
)
2607 client_maximize(self
, TRUE
, 0);
2609 client_maximize(self
, TRUE
, 2);
2611 client_maximize(self
, TRUE
, 1);
2613 /* if the window hasn't been configured yet, then do so now, in fact the
2614 x,y,w,h may _not_ be the same as the area rect, which can end up
2615 meaning that the client isn't properly moved/resized by the fullscreen
2617 pho can cause this because it maps at size of the screen but not 0,0
2618 so openbox moves it on screen to 0,0 (thus x,y=0,0 and area.x,y don't).
2619 then fullscreen'ing makes it go to 0,0 which it thinks it already is at
2620 cuz thats where the pre-fullscreen will be. however the actual area is
2621 not, so this needs to be called even if we have fullscreened/maxed
2623 self
->area
= oldarea
;
2624 client_configure(self
, x
, y
, w
, h
, FALSE
, TRUE
, FALSE
);
2626 /* set the desktop hint, to make sure that it always exists */
2627 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
2629 /* nothing to do for the other states:
2638 void client_gravity_resize_w(ObClient
*self
, gint
*x
, gint oldw
, gint neww
)
2640 /* these should be the current values. this is for when you're not moving,
2642 g_assert(*x
== self
->area
.x
);
2643 g_assert(oldw
== self
->area
.width
);
2646 switch (self
->gravity
) {
2648 case NorthWestGravity
:
2650 case SouthWestGravity
:
2657 *x
-= (neww
- oldw
) / 2;
2659 case NorthEastGravity
:
2661 case SouthEastGravity
:
2667 void client_gravity_resize_h(ObClient
*self
, gint
*y
, gint oldh
, gint newh
)
2669 /* these should be the current values. this is for when you're not moving,
2671 g_assert(*y
== self
->area
.y
);
2672 g_assert(oldh
== self
->area
.height
);
2675 switch (self
->gravity
) {
2677 case NorthWestGravity
:
2679 case NorthEastGravity
:
2686 *y
-= (newh
- oldh
) / 2;
2688 case SouthWestGravity
:
2690 case SouthEastGravity
:
2696 void client_try_configure(ObClient
*self
, gint
*x
, gint
*y
, gint
*w
, gint
*h
,
2697 gint
*logicalw
, gint
*logicalh
,
2700 Rect desired
= {*x
, *y
, *w
, *h
};
2701 frame_rect_to_frame(self
->frame
, &desired
);
2703 /* make the frame recalculate its dimentions n shit without changing
2704 anything visible for real, this way the constraints below can work with
2705 the updated frame dimensions. */
2706 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
2708 /* gets the frame's position */
2709 frame_client_gravity(self
->frame
, x
, y
);
2711 /* these positions are frame positions, not client positions */
2713 /* set the size and position if fullscreen */
2714 if (self
->fullscreen
) {
2718 i
= screen_find_monitor(&desired
);
2719 a
= screen_physical_area_monitor(i
);
2726 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2730 } else if (self
->max_horz
|| self
->max_vert
) {
2734 /* use all possible struts when maximizing to the full screen */
2735 i
= screen_find_monitor(&desired
);
2736 a
= screen_area(self
->desktop
, i
,
2737 (self
->max_horz
&& self
->max_vert
? NULL
: &desired
));
2739 /* set the size and position if maximized */
2740 if (self
->max_horz
) {
2742 *w
= a
->width
- self
->frame
->size
.left
- self
->frame
->size
.right
;
2744 if (self
->max_vert
) {
2746 *h
= a
->height
- self
->frame
->size
.top
- self
->frame
->size
.bottom
;
2749 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2755 /* gets the client's position */
2756 frame_frame_gravity(self
->frame
, x
, y
);
2758 /* work within the prefered sizes given by the window */
2759 if (!(*w
== self
->area
.width
&& *h
== self
->area
.height
)) {
2760 gint basew
, baseh
, minw
, minh
;
2762 gfloat minratio
, maxratio
;
2764 incw
= self
->fullscreen
|| self
->max_horz
? 1 : self
->size_inc
.width
;
2765 inch
= self
->fullscreen
|| self
->max_vert
? 1 : self
->size_inc
.height
;
2766 minratio
= self
->fullscreen
|| (self
->max_horz
&& self
->max_vert
) ?
2767 0 : self
->min_ratio
;
2768 maxratio
= self
->fullscreen
|| (self
->max_horz
&& self
->max_vert
) ?
2769 0 : self
->max_ratio
;
2771 /* base size is substituted with min size if not specified */
2772 if (self
->base_size
.width
|| self
->base_size
.height
) {
2773 basew
= self
->base_size
.width
;
2774 baseh
= self
->base_size
.height
;
2776 basew
= self
->min_size
.width
;
2777 baseh
= self
->min_size
.height
;
2779 /* min size is substituted with base size if not specified */
2780 if (self
->min_size
.width
|| self
->min_size
.height
) {
2781 minw
= self
->min_size
.width
;
2782 minh
= self
->min_size
.height
;
2784 minw
= self
->base_size
.width
;
2785 minh
= self
->base_size
.height
;
2788 /* if this is a user-requested resize, then check against min/max
2791 /* smaller than min size or bigger than max size? */
2792 if (*w
> self
->max_size
.width
) *w
= self
->max_size
.width
;
2793 if (*w
< minw
) *w
= minw
;
2794 if (*h
> self
->max_size
.height
) *h
= self
->max_size
.height
;
2795 if (*h
< minh
) *h
= minh
;
2800 /* keep to the increments */
2804 /* you cannot resize to nothing */
2805 if (basew
+ *w
< 1) *w
= 1 - basew
;
2806 if (baseh
+ *h
< 1) *h
= 1 - baseh
;
2808 /* save the logical size */
2809 *logicalw
= incw
> 1 ? *w
: *w
+ basew
;
2810 *logicalh
= inch
> 1 ? *h
: *h
+ baseh
;
2818 /* adjust the height to match the width for the aspect ratios.
2819 for this, min size is not substituted for base size ever. */
2820 *w
-= self
->base_size
.width
;
2821 *h
-= self
->base_size
.height
;
2824 if (*h
* minratio
> *w
) {
2825 *h
= (gint
)(*w
/ minratio
);
2827 /* you cannot resize to nothing */
2830 *w
= (gint
)(*h
* minratio
);
2834 if (*h
* maxratio
< *w
) {
2835 *h
= (gint
)(*w
/ maxratio
);
2837 /* you cannot resize to nothing */
2840 *w
= (gint
)(*h
* minratio
);
2844 *w
+= self
->base_size
.width
;
2845 *h
+= self
->base_size
.height
;
2848 /* these override the above states! if you cant move you can't move! */
2850 if (!(self
->functions
& OB_CLIENT_FUNC_MOVE
)) {
2854 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
)) {
2855 *w
= self
->area
.width
;
2856 *h
= self
->area
.height
;
2865 void client_configure(ObClient
*self
, gint x
, gint y
, gint w
, gint h
,
2866 gboolean user
, gboolean final
, gboolean force_reply
)
2869 gboolean send_resize_client
;
2870 gboolean moved
= FALSE
, resized
= FALSE
, rootmoved
= FALSE
;
2871 gboolean fmoved
, fresized
;
2872 guint fdecor
= self
->frame
->decorations
;
2873 gboolean fhorz
= self
->frame
->max_horz
;
2874 gboolean fvert
= self
->frame
->max_vert
;
2875 gint logicalw
, logicalh
;
2877 /* find the new x, y, width, and height (and logical size) */
2878 client_try_configure(self
, &x
, &y
, &w
, &h
, &logicalw
, &logicalh
, user
);
2880 /* set the logical size if things changed */
2881 if (!(w
== self
->area
.width
&& h
== self
->area
.height
))
2882 SIZE_SET(self
->logical_size
, logicalw
, logicalh
);
2884 /* figure out if we moved or resized or what */
2885 moved
= (x
!= self
->area
.x
|| y
!= self
->area
.y
);
2886 resized
= (w
!= self
->area
.width
|| h
!= self
->area
.height
);
2888 oldw
= self
->area
.width
;
2889 oldh
= self
->area
.height
;
2890 RECT_SET(self
->area
, x
, y
, w
, h
);
2892 /* for app-requested resizes, always resize if 'resized' is true.
2893 for user-requested ones, only resize if final is true, or when
2894 resizing in redraw mode */
2895 send_resize_client
= ((!user
&& resized
) ||
2897 (resized
&& config_resize_redraw
))));
2899 /* if the client is enlarging, then resize the client before the frame */
2900 if (send_resize_client
&& (w
> oldw
|| h
> oldh
)) {
2901 XMoveResizeWindow(ob_display
, self
->window
,
2902 self
->frame
->size
.left
, self
->frame
->size
.top
,
2903 MAX(w
, oldw
), MAX(h
, oldh
));
2904 frame_adjust_client_area(self
->frame
);
2907 /* find the frame's dimensions and move/resize it */
2911 /* if decorations changed, then readjust everything for the frame */
2912 if (self
->decorations
!= fdecor
||
2913 self
->max_horz
!= fhorz
|| self
->max_vert
!= fvert
)
2915 fmoved
= fresized
= TRUE
;
2918 /* adjust the frame */
2919 if (fmoved
|| fresized
) {
2920 gulong ignore_start
;
2922 ignore_start
= event_start_ignore_all_enters();
2924 frame_adjust_area(self
->frame
, fmoved
, fresized
, FALSE
);
2927 event_end_ignore_all_enters(ignore_start
);
2930 if (!user
|| final
) {
2931 gint oldrx
= self
->root_pos
.x
;
2932 gint oldry
= self
->root_pos
.y
;
2933 /* we have reset the client to 0 border width, so don't include
2934 it in these coords */
2935 POINT_SET(self
->root_pos
,
2936 self
->frame
->area
.x
+ self
->frame
->size
.left
-
2938 self
->frame
->area
.y
+ self
->frame
->size
.top
-
2939 self
->border_width
);
2940 if (self
->root_pos
.x
!= oldrx
|| self
->root_pos
.y
!= oldry
)
2944 /* This is kinda tricky and should not be changed.. let me explain!
2946 When user = FALSE, then the request is coming from the application
2947 itself, and we are more strict about when to send a synthetic
2948 ConfigureNotify. We strictly follow the rules of the ICCCM sec 4.1.5
2949 in this case (if force_reply is true)
2951 When user = TRUE, then the request is coming from "us", like when we
2952 maximize a window or something. In this case we are more lenient. We
2953 used to follow the same rules as above, but _Java_ Swing can't handle
2954 this. So just to appease Swing, when user = TRUE, we always send
2955 a synthetic ConfigureNotify to give the window its root coordinates.
2957 if ((!user
&& !resized
&& (rootmoved
|| force_reply
)) ||
2958 (user
&& final
&& rootmoved
))
2962 event
.type
= ConfigureNotify
;
2963 event
.xconfigure
.display
= ob_display
;
2964 event
.xconfigure
.event
= self
->window
;
2965 event
.xconfigure
.window
= self
->window
;
2967 ob_debug("Sending ConfigureNotify to %s for %d,%d %dx%d\n",
2968 self
->title
, self
->root_pos
.x
, self
->root_pos
.y
, w
, h
);
2970 /* root window real coords */
2971 event
.xconfigure
.x
= self
->root_pos
.x
;
2972 event
.xconfigure
.y
= self
->root_pos
.y
;
2973 event
.xconfigure
.width
= w
;
2974 event
.xconfigure
.height
= h
;
2975 event
.xconfigure
.border_width
= self
->border_width
;
2976 event
.xconfigure
.above
= None
;
2977 event
.xconfigure
.override_redirect
= FALSE
;
2978 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
,
2979 FALSE
, StructureNotifyMask
, &event
);
2982 /* if the client is shrinking, then resize the frame before the client.
2984 both of these resize sections may run, because the top one only resizes
2985 in the direction that is growing
2987 if (send_resize_client
&& (w
<= oldw
|| h
<= oldh
)) {
2988 frame_adjust_client_area(self
->frame
);
2989 XMoveResizeWindow(ob_display
, self
->window
,
2990 self
->frame
->size
.left
, self
->frame
->size
.top
, w
, h
);
2996 void client_fullscreen(ObClient
*self
, gboolean fs
)
3000 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) || /* can't */
3001 self
->fullscreen
== fs
) return; /* already done */
3003 self
->fullscreen
= fs
;
3004 client_change_state(self
); /* change the state hints on the client */
3007 self
->pre_fullscreen_area
= self
->area
;
3008 /* if the window is maximized, its area isn't all that meaningful.
3009 save it's premax area instead. */
3010 if (self
->max_horz
) {
3011 self
->pre_fullscreen_area
.x
= self
->pre_max_area
.x
;
3012 self
->pre_fullscreen_area
.width
= self
->pre_max_area
.width
;
3014 if (self
->max_vert
) {
3015 self
->pre_fullscreen_area
.y
= self
->pre_max_area
.y
;
3016 self
->pre_fullscreen_area
.height
= self
->pre_max_area
.height
;
3019 /* these will help configure_full figure out where to fullscreen
3023 w
= self
->area
.width
;
3024 h
= self
->area
.height
;
3026 g_assert(self
->pre_fullscreen_area
.width
> 0 &&
3027 self
->pre_fullscreen_area
.height
> 0);
3029 x
= self
->pre_fullscreen_area
.x
;
3030 y
= self
->pre_fullscreen_area
.y
;
3031 w
= self
->pre_fullscreen_area
.width
;
3032 h
= self
->pre_fullscreen_area
.height
;
3033 RECT_SET(self
->pre_fullscreen_area
, 0, 0, 0, 0);
3036 ob_debug("Window %s going fullscreen (%d)\n",
3037 self
->title
, self
->fullscreen
);
3039 client_setup_decor_and_functions(self
, FALSE
);
3040 client_move_resize(self
, x
, y
, w
, h
);
3042 /* and adjust our layer/stacking. do this after resizing the window,
3043 and applying decorations, because windows which fill the screen are
3044 considered "fullscreen" and it affects their layer */
3045 client_calc_layer(self
);
3048 /* try focus us when we go into fullscreen mode */
3053 static void client_iconify_recursive(ObClient
*self
,
3054 gboolean iconic
, gboolean curdesk
,
3055 gboolean hide_animation
)
3058 gboolean changed
= FALSE
;
3061 if (self
->iconic
!= iconic
) {
3062 ob_debug("%sconifying window: 0x%lx\n", (iconic
? "I" : "Uni"),
3066 /* don't let non-normal windows iconify along with their parents
3068 if (client_normal(self
)) {
3069 self
->iconic
= iconic
;
3071 /* update the focus lists.. iconic windows go to the bottom of
3073 focus_order_to_bottom(self
);
3078 self
->iconic
= iconic
;
3080 if (curdesk
&& self
->desktop
!= screen_desktop
&&
3081 self
->desktop
!= DESKTOP_ALL
)
3082 client_set_desktop(self
, screen_desktop
, FALSE
, FALSE
);
3084 /* this puts it after the current focused window */
3085 focus_order_remove(self
);
3086 focus_order_add_new(self
);
3093 client_change_state(self
);
3094 if (config_animate_iconify
&& !hide_animation
)
3095 frame_begin_iconify_animation(self
->frame
, iconic
);
3096 /* do this after starting the animation so it doesn't flash */
3097 client_showhide(self
);
3100 /* iconify all direct transients, and deiconify all transients
3102 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3103 if (it
->data
!= self
)
3104 if (client_is_direct_child(self
, it
->data
) || !iconic
)
3105 client_iconify_recursive(it
->data
, iconic
, curdesk
,
3109 void client_iconify(ObClient
*self
, gboolean iconic
, gboolean curdesk
,
3110 gboolean hide_animation
)
3112 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
|| !iconic
) {
3113 /* move up the transient chain as far as possible first */
3114 self
= client_search_top_direct_parent(self
);
3115 client_iconify_recursive(self
, iconic
, curdesk
, hide_animation
);
3119 void client_maximize(ObClient
*self
, gboolean max
, gint dir
)
3123 g_assert(dir
== 0 || dir
== 1 || dir
== 2);
3124 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
)) return; /* can't */
3126 /* check if already done */
3128 if (dir
== 0 && self
->max_horz
&& self
->max_vert
) return;
3129 if (dir
== 1 && self
->max_horz
) return;
3130 if (dir
== 2 && self
->max_vert
) return;
3132 if (dir
== 0 && !self
->max_horz
&& !self
->max_vert
) return;
3133 if (dir
== 1 && !self
->max_horz
) return;
3134 if (dir
== 2 && !self
->max_vert
) return;
3137 /* these will help configure_full figure out which screen to fill with
3141 w
= self
->area
.width
;
3142 h
= self
->area
.height
;
3145 if ((dir
== 0 || dir
== 1) && !self
->max_horz
) { /* horz */
3146 RECT_SET(self
->pre_max_area
,
3147 self
->area
.x
, self
->pre_max_area
.y
,
3148 self
->area
.width
, self
->pre_max_area
.height
);
3150 if ((dir
== 0 || dir
== 2) && !self
->max_vert
) { /* vert */
3151 RECT_SET(self
->pre_max_area
,
3152 self
->pre_max_area
.x
, self
->area
.y
,
3153 self
->pre_max_area
.width
, self
->area
.height
);
3156 if ((dir
== 0 || dir
== 1) && self
->max_horz
) { /* horz */
3157 g_assert(self
->pre_max_area
.width
> 0);
3159 x
= self
->pre_max_area
.x
;
3160 w
= self
->pre_max_area
.width
;
3162 RECT_SET(self
->pre_max_area
, 0, self
->pre_max_area
.y
,
3163 0, self
->pre_max_area
.height
);
3165 if ((dir
== 0 || dir
== 2) && self
->max_vert
) { /* vert */
3166 g_assert(self
->pre_max_area
.height
> 0);
3168 y
= self
->pre_max_area
.y
;
3169 h
= self
->pre_max_area
.height
;
3171 RECT_SET(self
->pre_max_area
, self
->pre_max_area
.x
, 0,
3172 self
->pre_max_area
.width
, 0);
3176 if (dir
== 0 || dir
== 1) /* horz */
3177 self
->max_horz
= max
;
3178 if (dir
== 0 || dir
== 2) /* vert */
3179 self
->max_vert
= max
;
3181 client_change_state(self
); /* change the state hints on the client */
3183 client_setup_decor_and_functions(self
, FALSE
);
3184 client_move_resize(self
, x
, y
, w
, h
);
3187 void client_shade(ObClient
*self
, gboolean shade
)
3189 if ((!(self
->functions
& OB_CLIENT_FUNC_SHADE
) &&
3190 shade
) || /* can't shade */
3191 self
->shaded
== shade
) return; /* already done */
3193 self
->shaded
= shade
;
3194 client_change_state(self
);
3195 client_change_wm_state(self
); /* the window is being hidden/shown */
3196 /* resize the frame to just the titlebar */
3197 frame_adjust_area(self
->frame
, FALSE
, TRUE
, FALSE
);
3200 void client_close(ObClient
*self
)
3204 if (!(self
->functions
& OB_CLIENT_FUNC_CLOSE
)) return;
3206 /* in the case that the client provides no means to requesting that it
3207 close, we just kill it */
3208 if (!self
->delete_window
)
3212 XXX: itd be cool to do timeouts and shit here for killing the client's
3214 like... if the window is around after 5 seconds, then the close button
3215 turns a nice red, and if this function is called again, the client is
3219 ce
.xclient
.type
= ClientMessage
;
3220 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3221 ce
.xclient
.display
= ob_display
;
3222 ce
.xclient
.window
= self
->window
;
3223 ce
.xclient
.format
= 32;
3224 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_delete_window
;
3225 ce
.xclient
.data
.l
[1] = event_curtime
;
3226 ce
.xclient
.data
.l
[2] = 0l;
3227 ce
.xclient
.data
.l
[3] = 0l;
3228 ce
.xclient
.data
.l
[4] = 0l;
3229 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3232 void client_kill(ObClient
*self
)
3234 XKillClient(ob_display
, self
->window
);
3237 void client_hilite(ObClient
*self
, gboolean hilite
)
3239 if (self
->demands_attention
== hilite
)
3240 return; /* no change */
3242 /* don't allow focused windows to hilite */
3243 self
->demands_attention
= hilite
&& !client_focused(self
);
3244 if (self
->frame
!= NULL
) { /* if we're mapping, just set the state */
3245 if (self
->demands_attention
)
3246 frame_flash_start(self
->frame
);
3248 frame_flash_stop(self
->frame
);
3249 client_change_state(self
);
3253 void client_set_desktop_recursive(ObClient
*self
,
3261 if (target
!= self
->desktop
&& self
->type
!= OB_CLIENT_TYPE_DESKTOP
) {
3263 ob_debug("Setting desktop %u\n", target
+1);
3265 g_assert(target
< screen_num_desktops
|| target
== DESKTOP_ALL
);
3267 old
= self
->desktop
;
3268 self
->desktop
= target
;
3269 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, target
);
3270 /* the frame can display the current desktop state */
3271 frame_adjust_state(self
->frame
);
3272 /* 'move' the window to the new desktop */
3276 /* raise if it was not already on the desktop */
3277 if (old
!= DESKTOP_ALL
&& !dontraise
)
3278 stacking_raise(CLIENT_AS_WINDOW(self
));
3279 if (STRUT_EXISTS(self
->strut
))
3280 screen_update_areas();
3282 /* the new desktop's geometry may be different, so we may need to
3283 resize, for example if we are maximized */
3284 client_reconfigure(self
, FALSE
);
3287 /* move all transients */
3288 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3289 if (it
->data
!= self
)
3290 if (client_is_direct_child(self
, it
->data
))
3291 client_set_desktop_recursive(it
->data
, target
,
3292 donthide
, dontraise
);
3295 void client_set_desktop(ObClient
*self
, guint target
,
3296 gboolean donthide
, gboolean dontraise
)
3298 self
= client_search_top_direct_parent(self
);
3299 client_set_desktop_recursive(self
, target
, donthide
, dontraise
);
3302 gboolean
client_is_direct_child(ObClient
*parent
, ObClient
*child
)
3304 while (child
!= parent
&& (child
= client_direct_parent(child
)));
3305 return child
== parent
;
3308 ObClient
*client_search_modal_child(ObClient
*self
)
3313 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
3314 ObClient
*c
= it
->data
;
3315 if ((ret
= client_search_modal_child(c
))) return ret
;
3316 if (c
->modal
) return c
;
3321 gboolean
client_validate(ObClient
*self
)
3325 XSync(ob_display
, FALSE
); /* get all events on the server */
3327 if (XCheckTypedWindowEvent(ob_display
, self
->window
, DestroyNotify
, &e
) ||
3328 XCheckTypedWindowEvent(ob_display
, self
->window
, UnmapNotify
, &e
)) {
3329 XPutBackEvent(ob_display
, &e
);
3336 void client_set_wm_state(ObClient
*self
, glong state
)
3338 if (state
== self
->wmstate
) return; /* no change */
3342 client_iconify(self
, TRUE
, TRUE
, FALSE
);
3345 client_iconify(self
, FALSE
, TRUE
, FALSE
);
3350 void client_set_state(ObClient
*self
, Atom action
, glong data1
, glong data2
)
3352 gboolean shaded
= self
->shaded
;
3353 gboolean fullscreen
= self
->fullscreen
;
3354 gboolean undecorated
= self
->undecorated
;
3355 gboolean max_horz
= self
->max_horz
;
3356 gboolean max_vert
= self
->max_vert
;
3357 gboolean modal
= self
->modal
;
3358 gboolean iconic
= self
->iconic
;
3359 gboolean demands_attention
= self
->demands_attention
;
3360 gboolean above
= self
->above
;
3361 gboolean below
= self
->below
;
3364 if (!(action
== prop_atoms
.net_wm_state_add
||
3365 action
== prop_atoms
.net_wm_state_remove
||
3366 action
== prop_atoms
.net_wm_state_toggle
))
3367 /* an invalid action was passed to the client message, ignore it */
3370 for (i
= 0; i
< 2; ++i
) {
3371 Atom state
= i
== 0 ? data1
: data2
;
3373 if (!state
) continue;
3375 /* if toggling, then pick whether we're adding or removing */
3376 if (action
== prop_atoms
.net_wm_state_toggle
) {
3377 if (state
== prop_atoms
.net_wm_state_modal
)
3378 action
= modal
? prop_atoms
.net_wm_state_remove
:
3379 prop_atoms
.net_wm_state_add
;
3380 else if (state
== prop_atoms
.net_wm_state_maximized_vert
)
3381 action
= self
->max_vert
? prop_atoms
.net_wm_state_remove
:
3382 prop_atoms
.net_wm_state_add
;
3383 else if (state
== prop_atoms
.net_wm_state_maximized_horz
)
3384 action
= self
->max_horz
? prop_atoms
.net_wm_state_remove
:
3385 prop_atoms
.net_wm_state_add
;
3386 else if (state
== prop_atoms
.net_wm_state_shaded
)
3387 action
= shaded
? prop_atoms
.net_wm_state_remove
:
3388 prop_atoms
.net_wm_state_add
;
3389 else if (state
== prop_atoms
.net_wm_state_skip_taskbar
)
3390 action
= self
->skip_taskbar
?
3391 prop_atoms
.net_wm_state_remove
:
3392 prop_atoms
.net_wm_state_add
;
3393 else if (state
== prop_atoms
.net_wm_state_skip_pager
)
3394 action
= self
->skip_pager
?
3395 prop_atoms
.net_wm_state_remove
:
3396 prop_atoms
.net_wm_state_add
;
3397 else if (state
== prop_atoms
.net_wm_state_hidden
)
3398 action
= self
->iconic
?
3399 prop_atoms
.net_wm_state_remove
:
3400 prop_atoms
.net_wm_state_add
;
3401 else if (state
== prop_atoms
.net_wm_state_fullscreen
)
3402 action
= fullscreen
?
3403 prop_atoms
.net_wm_state_remove
:
3404 prop_atoms
.net_wm_state_add
;
3405 else if (state
== prop_atoms
.net_wm_state_above
)
3406 action
= self
->above
? prop_atoms
.net_wm_state_remove
:
3407 prop_atoms
.net_wm_state_add
;
3408 else if (state
== prop_atoms
.net_wm_state_below
)
3409 action
= self
->below
? prop_atoms
.net_wm_state_remove
:
3410 prop_atoms
.net_wm_state_add
;
3411 else if (state
== prop_atoms
.net_wm_state_demands_attention
)
3412 action
= self
->demands_attention
?
3413 prop_atoms
.net_wm_state_remove
:
3414 prop_atoms
.net_wm_state_add
;
3415 else if (state
== prop_atoms
.ob_wm_state_undecorated
)
3416 action
= undecorated
? prop_atoms
.net_wm_state_remove
:
3417 prop_atoms
.net_wm_state_add
;
3420 if (action
== prop_atoms
.net_wm_state_add
) {
3421 if (state
== prop_atoms
.net_wm_state_modal
) {
3423 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3425 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3427 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3429 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3430 self
->skip_taskbar
= TRUE
;
3431 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3432 self
->skip_pager
= TRUE
;
3433 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3435 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3437 } else if (state
== prop_atoms
.net_wm_state_above
) {
3440 } else if (state
== prop_atoms
.net_wm_state_below
) {
3443 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3444 demands_attention
= TRUE
;
3445 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3449 } else { /* action == prop_atoms.net_wm_state_remove */
3450 if (state
== prop_atoms
.net_wm_state_modal
) {
3452 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3454 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3456 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3458 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3459 self
->skip_taskbar
= FALSE
;
3460 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3461 self
->skip_pager
= FALSE
;
3462 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3464 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3466 } else if (state
== prop_atoms
.net_wm_state_above
) {
3468 } else if (state
== prop_atoms
.net_wm_state_below
) {
3470 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3471 demands_attention
= FALSE
;
3472 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3473 undecorated
= FALSE
;
3478 if (max_horz
!= self
->max_horz
|| max_vert
!= self
->max_vert
) {
3479 if (max_horz
!= self
->max_horz
&& max_vert
!= self
->max_vert
) {
3481 if (max_horz
== max_vert
) { /* both going the same way */
3482 client_maximize(self
, max_horz
, 0);
3484 client_maximize(self
, max_horz
, 1);
3485 client_maximize(self
, max_vert
, 2);
3489 if (max_horz
!= self
->max_horz
)
3490 client_maximize(self
, max_horz
, 1);
3492 client_maximize(self
, max_vert
, 2);
3495 /* change fullscreen state before shading, as it will affect if the window
3497 if (fullscreen
!= self
->fullscreen
)
3498 client_fullscreen(self
, fullscreen
);
3499 if (shaded
!= self
->shaded
)
3500 client_shade(self
, shaded
);
3501 if (undecorated
!= self
->undecorated
)
3502 client_set_undecorated(self
, undecorated
);
3503 if (above
!= self
->above
|| below
!= self
->below
) {
3504 self
->above
= above
;
3505 self
->below
= below
;
3506 client_calc_layer(self
);
3509 if (modal
!= self
->modal
) {
3510 self
->modal
= modal
;
3511 /* when a window changes modality, then its stacking order with its
3512 transients needs to change */
3513 stacking_raise(CLIENT_AS_WINDOW(self
));
3515 /* it also may get focused. if something is focused that shouldn't
3516 be focused anymore, then move the focus */
3517 if (focus_client
&& client_focus_target(focus_client
) != focus_client
)
3518 client_focus(focus_client
);
3521 if (iconic
!= self
->iconic
)
3522 client_iconify(self
, iconic
, FALSE
, FALSE
);
3524 if (demands_attention
!= self
->demands_attention
)
3525 client_hilite(self
, demands_attention
);
3527 client_change_state(self
); /* change the hint to reflect these changes */
3530 ObClient
*client_focus_target(ObClient
*self
)
3532 ObClient
*child
= NULL
;
3534 child
= client_search_modal_child(self
);
3535 if (child
) return child
;
3539 gboolean
client_can_focus(ObClient
*self
)
3541 /* choose the correct target */
3542 self
= client_focus_target(self
);
3544 if (!self
->frame
->visible
)
3547 if (!(self
->can_focus
|| self
->focus_notify
))
3553 gboolean
client_focus(ObClient
*self
)
3555 /* we might not focus this window, so if we have modal children which would
3556 be focused instead, bring them to this desktop */
3557 client_bring_modal_windows(self
);
3559 /* choose the correct target */
3560 self
= client_focus_target(self
);
3562 if (!client_can_focus(self
)) {
3563 ob_debug_type(OB_DEBUG_FOCUS
,
3564 "Client %s can't be focused\n", self
->title
);
3568 ob_debug_type(OB_DEBUG_FOCUS
,
3569 "Focusing client \"%s\" (0x%x) at time %u\n",
3570 self
->title
, self
->window
, event_curtime
);
3572 /* if using focus_delay, stop the timer now so that focus doesn't
3574 event_halt_focus_delay();
3576 /* if there is a grab going on, then we need to cancel it. if we move
3577 focus during the grab, applications will get NotifyWhileGrabbed events
3580 actions should not rely on being able to move focus during an
3583 event_cancel_all_key_grabs();
3585 xerror_set_ignore(TRUE
);
3586 xerror_occured
= FALSE
;
3588 if (self
->can_focus
) {
3589 /* This can cause a BadMatch error with CurrentTime, or if an app
3590 passed in a bad time for _NET_WM_ACTIVE_WINDOW. */
3591 XSetInputFocus(ob_display
, self
->window
, RevertToPointerRoot
,
3595 if (self
->focus_notify
) {
3597 ce
.xclient
.type
= ClientMessage
;
3598 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3599 ce
.xclient
.display
= ob_display
;
3600 ce
.xclient
.window
= self
->window
;
3601 ce
.xclient
.format
= 32;
3602 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_take_focus
;
3603 ce
.xclient
.data
.l
[1] = event_curtime
;
3604 ce
.xclient
.data
.l
[2] = 0l;
3605 ce
.xclient
.data
.l
[3] = 0l;
3606 ce
.xclient
.data
.l
[4] = 0l;
3607 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3610 xerror_set_ignore(FALSE
);
3612 ob_debug_type(OB_DEBUG_FOCUS
, "Error focusing? %d\n", xerror_occured
);
3613 return !xerror_occured
;
3616 static void client_present(ObClient
*self
, gboolean here
, gboolean raise
,
3619 if (client_normal(self
) && screen_showing_desktop
)
3620 screen_show_desktop(FALSE
, self
);
3622 client_iconify(self
, FALSE
, here
, FALSE
);
3623 if (self
->desktop
!= DESKTOP_ALL
&&
3624 self
->desktop
!= screen_desktop
)
3627 client_set_desktop(self
, screen_desktop
, FALSE
, TRUE
);
3629 screen_set_desktop(self
->desktop
, FALSE
);
3630 } else if (!self
->frame
->visible
)
3631 /* if its not visible for other reasons, then don't mess
3634 if (self
->shaded
&& unshade
)
3635 client_shade(self
, FALSE
);
3637 stacking_raise(CLIENT_AS_WINDOW(self
));
3642 void client_activate(ObClient
*self
, gboolean here
, gboolean raise
,
3643 gboolean unshade
, gboolean user
)
3645 guint32 last_time
= focus_client
? focus_client
->user_time
: CurrentTime
;
3646 gboolean allow
= FALSE
;
3648 /* if the currently focused app doesn't set a user_time, then it can't
3649 benefit from any focus stealing prevention.
3651 if the timestamp is missing in the request then let it go through
3652 even if it is source=app, because EVERY APPLICATION DOES THIS because
3653 GTK IS VERY BUGGY AND HARDCODES source=application... WHY!?
3655 if (!last_time
|| !event_curtime
)
3657 /* otherwise, if they didn't give a time stamp or if it is too old, they
3660 allow
= event_time_after(event_curtime
, last_time
);
3662 ob_debug_type(OB_DEBUG_FOCUS
,
3663 "Want to activate window 0x%x with time %u (last time %u), "
3664 "source=%s allowing? %d\n",
3665 self
->window
, event_curtime
, last_time
,
3666 (user
? "user" : "application"), allow
);
3669 client_present(self
, here
, raise
, unshade
);
3671 /* don't focus it but tell the user it wants attention */
3672 client_hilite(self
, TRUE
);
3675 static void client_bring_windows_recursive(ObClient
*self
,
3683 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3684 client_bring_windows_recursive(it
->data
, desktop
,
3685 helpers
, modals
, iconic
);
3687 if (((helpers
&& client_helper(self
)) ||
3688 (modals
&& self
->modal
)) &&
3689 ((self
->desktop
!= desktop
&& self
->desktop
!= DESKTOP_ALL
) ||
3690 (iconic
&& self
->iconic
)))
3692 if (iconic
&& self
->iconic
)
3693 client_iconify(self
, FALSE
, TRUE
, FALSE
);
3695 client_set_desktop(self
, desktop
, FALSE
, FALSE
);
3699 void client_bring_helper_windows(ObClient
*self
)
3701 client_bring_windows_recursive(self
, self
->desktop
, TRUE
, FALSE
, FALSE
);
3704 void client_bring_modal_windows(ObClient
*self
)
3706 client_bring_windows_recursive(self
, self
->desktop
, FALSE
, TRUE
, TRUE
);
3709 gboolean
client_focused(ObClient
*self
)
3711 return self
== focus_client
;
3714 static ObClientIcon
* client_icon_recursive(ObClient
*self
, gint w
, gint h
)
3717 gulong min_diff
, min_i
;
3719 if (!self
->nicons
) {
3720 ObClientIcon
*parent
= NULL
;
3723 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
3724 ObClient
*c
= it
->data
;
3725 if ((parent
= client_icon_recursive(c
, w
, h
)))
3732 /* some kind of crappy approximation to find the icon closest in size to
3733 what we requested, but icons are generally all the same ratio as
3734 eachother so it's good enough. */
3736 min_diff
= ABS(self
->icons
[0].width
- w
) + ABS(self
->icons
[0].height
- h
);
3739 for (i
= 1; i
< self
->nicons
; ++i
) {
3742 diff
= ABS(self
->icons
[i
].width
- w
) + ABS(self
->icons
[i
].height
- h
);
3743 if (diff
< min_diff
) {
3748 return &self
->icons
[min_i
];
3751 const ObClientIcon
* client_icon(ObClient
*self
, gint w
, gint h
)
3754 static ObClientIcon deficon
;
3756 if (!(ret
= client_icon_recursive(self
, w
, h
))) {
3757 deficon
.width
= deficon
.height
= 48;
3758 deficon
.data
= ob_rr_theme
->def_win_icon
;
3764 void client_set_layer(ObClient
*self
, gint layer
)
3768 self
->above
= FALSE
;
3769 } else if (layer
== 0) {
3770 self
->below
= self
->above
= FALSE
;
3772 self
->below
= FALSE
;
3775 client_calc_layer(self
);
3776 client_change_state(self
); /* reflect this in the state hints */
3779 void client_set_undecorated(ObClient
*self
, gboolean undecorated
)
3781 if (self
->undecorated
!= undecorated
&&
3782 /* don't let it undecorate if the function is missing, but let
3784 (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
|| !undecorated
))
3786 self
->undecorated
= undecorated
;
3787 client_setup_decor_and_functions(self
, TRUE
);
3788 client_change_state(self
); /* reflect this in the state hints */
3792 guint
client_monitor(ObClient
*self
)
3794 return screen_find_monitor(&self
->frame
->area
);
3797 ObClient
*client_direct_parent(ObClient
*self
)
3799 if (!self
->parents
) return NULL
;
3800 if (self
->transient_for_group
) return NULL
;
3801 return self
->parents
->data
;
3804 ObClient
*client_search_top_direct_parent(ObClient
*self
)
3807 while ((p
= client_direct_parent(self
))) self
= p
;
3811 static GSList
*client_search_all_top_parents_internal(ObClient
*self
,
3813 ObStackingLayer layer
)
3818 /* move up the direct transient chain as far as possible */
3819 while ((p
= client_direct_parent(self
)) &&
3820 (!bylayer
|| p
->layer
== layer
))
3824 ret
= g_slist_prepend(NULL
, self
);
3826 ret
= g_slist_copy(self
->parents
);
3831 GSList
*client_search_all_top_parents(ObClient
*self
)
3833 return client_search_all_top_parents_internal(self
, FALSE
, 0);
3836 GSList
*client_search_all_top_parents_layer(ObClient
*self
)
3838 return client_search_all_top_parents_internal(self
, TRUE
, self
->layer
);
3841 ObClient
*client_search_focus_parent(ObClient
*self
)
3845 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
3846 if (client_focused(it
->data
)) return it
->data
;
3851 ObClient
*client_search_parent(ObClient
*self
, ObClient
*search
)
3855 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
3856 if (it
->data
== search
) return search
;
3861 ObClient
*client_search_transient(ObClient
*self
, ObClient
*search
)
3865 for (sit
= self
->transients
; sit
; sit
= g_slist_next(sit
)) {
3866 if (sit
->data
== search
)
3868 if (client_search_transient(sit
->data
, search
))
3874 static void detect_edge(Rect area
, ObDirection dir
,
3875 gint my_head
, gint my_size
,
3876 gint my_edge_start
, gint my_edge_size
,
3877 gint
*dest
, gboolean
*near_edge
)
3879 gint edge_start
, edge_size
, head
, tail
;
3880 gboolean skip_head
= FALSE
, skip_tail
= FALSE
;
3883 case OB_DIRECTION_NORTH
:
3884 case OB_DIRECTION_SOUTH
:
3885 edge_start
= area
.x
;
3886 edge_size
= area
.width
;
3888 case OB_DIRECTION_EAST
:
3889 case OB_DIRECTION_WEST
:
3890 edge_start
= area
.y
;
3891 edge_size
= area
.height
;
3894 g_assert_not_reached();
3897 /* do we collide with this window? */
3898 if (!RANGES_INTERSECT(my_edge_start
, my_edge_size
,
3899 edge_start
, edge_size
))
3903 case OB_DIRECTION_NORTH
:
3904 head
= RECT_BOTTOM(area
);
3905 tail
= RECT_TOP(area
);
3907 case OB_DIRECTION_SOUTH
:
3908 head
= RECT_TOP(area
);
3909 tail
= RECT_BOTTOM(area
);
3911 case OB_DIRECTION_EAST
:
3912 head
= RECT_LEFT(area
);
3913 tail
= RECT_RIGHT(area
);
3915 case OB_DIRECTION_WEST
:
3916 head
= RECT_RIGHT(area
);
3917 tail
= RECT_LEFT(area
);
3920 g_assert_not_reached();
3923 case OB_DIRECTION_NORTH
:
3924 case OB_DIRECTION_WEST
:
3925 if (my_head
<= head
+ 1)
3927 if (my_head
+ my_size
- 1 <= tail
)
3931 if (tail
- my_size
< *dest
)
3934 case OB_DIRECTION_SOUTH
:
3935 case OB_DIRECTION_EAST
:
3936 if (my_head
>= head
- 1)
3938 if (my_head
- my_size
+ 1 >= tail
)
3942 if (tail
+ my_size
> *dest
)
3946 g_assert_not_reached();
3949 ob_debug("my head %d size %d\n", my_head
, my_size
);
3950 ob_debug("head %d tail %d deest %d\n", head
, tail
, *dest
);
3952 ob_debug("using near edge %d\n", head
);
3956 else if (!skip_tail
) {
3957 ob_debug("using far edge %d\n", tail
);
3964 void client_find_edge_directional(ObClient
*self
, ObDirection dir
,
3965 gint my_head
, gint my_size
,
3966 gint my_edge_start
, gint my_edge_size
,
3967 gint
*dest
, gboolean
*near_edge
)
3974 a
= screen_area(self
->desktop
, SCREEN_AREA_ALL_MONITORS
,
3975 &self
->frame
->area
);
3976 mon
= screen_area(self
->desktop
, SCREEN_AREA_ONE_MONITOR
,
3977 &self
->frame
->area
);
3980 case OB_DIRECTION_NORTH
:
3981 if (my_head
>= RECT_TOP(*mon
))
3982 edge
= RECT_TOP(*mon
) - 1;
3984 edge
= RECT_TOP(*a
) - 1;
3986 case OB_DIRECTION_SOUTH
:
3987 if (my_head
<= RECT_BOTTOM(*mon
))
3988 edge
= RECT_BOTTOM(*mon
) + 1;
3990 edge
= RECT_BOTTOM(*a
) + 1;
3992 case OB_DIRECTION_EAST
:
3993 if (my_head
<= RECT_RIGHT(*mon
))
3994 edge
= RECT_RIGHT(*mon
) + 1;
3996 edge
= RECT_RIGHT(*a
) + 1;
3998 case OB_DIRECTION_WEST
:
3999 if (my_head
>= RECT_LEFT(*mon
))
4000 edge
= RECT_LEFT(*mon
) - 1;
4002 edge
= RECT_LEFT(*a
) - 1;
4005 g_assert_not_reached();
4007 /* default to the far edge, then narrow it down */
4011 for(it
= client_list
; it
; it
= g_list_next(it
)) {
4012 ObClient
*cur
= it
->data
;
4014 /* skip windows to not bump into */
4019 if (self
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
&&
4020 cur
->desktop
!= screen_desktop
)
4023 ob_debug("trying window %s\n", cur
->title
);
4025 detect_edge(cur
->frame
->area
, dir
, my_head
, my_size
, my_edge_start
,
4026 my_edge_size
, dest
, near_edge
);
4028 dock_get_area(&dock_area
);
4029 detect_edge(dock_area
, dir
, my_head
, my_size
, my_edge_start
,
4030 my_edge_size
, dest
, near_edge
);
4033 void client_find_move_directional(ObClient
*self
, ObDirection dir
,
4037 gint e
, e_start
, e_size
;
4041 case OB_DIRECTION_EAST
:
4042 head
= RECT_RIGHT(self
->frame
->area
);
4043 size
= self
->frame
->area
.width
;
4044 e_start
= RECT_TOP(self
->frame
->area
);
4045 e_size
= self
->frame
->area
.height
;
4047 case OB_DIRECTION_WEST
:
4048 head
= RECT_LEFT(self
->frame
->area
);
4049 size
= self
->frame
->area
.width
;
4050 e_start
= RECT_TOP(self
->frame
->area
);
4051 e_size
= self
->frame
->area
.height
;
4053 case OB_DIRECTION_NORTH
:
4054 head
= RECT_TOP(self
->frame
->area
);
4055 size
= self
->frame
->area
.height
;
4056 e_start
= RECT_LEFT(self
->frame
->area
);
4057 e_size
= self
->frame
->area
.width
;
4059 case OB_DIRECTION_SOUTH
:
4060 head
= RECT_BOTTOM(self
->frame
->area
);
4061 size
= self
->frame
->area
.height
;
4062 e_start
= RECT_LEFT(self
->frame
->area
);
4063 e_size
= self
->frame
->area
.width
;
4066 g_assert_not_reached();
4069 client_find_edge_directional(self
, dir
, head
, size
,
4070 e_start
, e_size
, &e
, &near
);
4071 *x
= self
->frame
->area
.x
;
4072 *y
= self
->frame
->area
.y
;
4074 case OB_DIRECTION_EAST
:
4075 if (near
) e
-= self
->frame
->area
.width
;
4079 case OB_DIRECTION_WEST
:
4081 else e
-= self
->frame
->area
.width
;
4084 case OB_DIRECTION_NORTH
:
4086 else e
-= self
->frame
->area
.height
;
4089 case OB_DIRECTION_SOUTH
:
4090 if (near
) e
-= self
->frame
->area
.height
;
4095 g_assert_not_reached();
4097 frame_frame_gravity(self
->frame
, x
, y
);
4100 void client_find_resize_directional(ObClient
*self
, ObDirection side
,
4102 gint
*x
, gint
*y
, gint
*w
, gint
*h
)
4105 gint e
, e_start
, e_size
, delta
;
4110 case OB_DIRECTION_EAST
:
4111 head
= RECT_RIGHT(self
->frame
->area
) +
4112 (self
->size_inc
.width
- 1) * (grow
? 1 : -1);
4113 e_start
= RECT_TOP(self
->frame
->area
);
4114 e_size
= self
->frame
->area
.height
;
4115 dir
= grow
? OB_DIRECTION_EAST
: OB_DIRECTION_WEST
;
4117 case OB_DIRECTION_WEST
:
4118 head
= RECT_LEFT(self
->frame
->area
) -
4119 (self
->size_inc
.width
- 1) * (grow
? 1 : -1);
4120 e_start
= RECT_TOP(self
->frame
->area
);
4121 e_size
= self
->frame
->area
.height
;
4122 dir
= grow
? OB_DIRECTION_WEST
: OB_DIRECTION_EAST
;
4124 case OB_DIRECTION_NORTH
:
4125 head
= RECT_TOP(self
->frame
->area
) -
4126 (self
->size_inc
.height
- 1) * (grow
? 1 : -1);
4127 e_start
= RECT_LEFT(self
->frame
->area
);
4128 e_size
= self
->frame
->area
.width
;
4129 dir
= grow
? OB_DIRECTION_NORTH
: OB_DIRECTION_SOUTH
;
4131 case OB_DIRECTION_SOUTH
:
4132 head
= RECT_BOTTOM(self
->frame
->area
) +
4133 (self
->size_inc
.height
- 1) * (grow
? 1 : -1);
4134 e_start
= RECT_LEFT(self
->frame
->area
);
4135 e_size
= self
->frame
->area
.width
;
4136 dir
= grow
? OB_DIRECTION_SOUTH
: OB_DIRECTION_NORTH
;
4139 g_assert_not_reached();
4142 ob_debug("head %d dir %d\n", head
, dir
);
4143 client_find_edge_directional(self
, dir
, head
, 1,
4144 e_start
, e_size
, &e
, &near
);
4145 ob_debug("edge %d\n", e
);
4146 *x
= self
->frame
->area
.x
;
4147 *y
= self
->frame
->area
.y
;
4148 *w
= self
->frame
->area
.width
;
4149 *h
= self
->frame
->area
.height
;
4151 case OB_DIRECTION_EAST
:
4152 if (grow
== near
) --e
;
4153 delta
= e
- RECT_RIGHT(self
->frame
->area
);
4156 case OB_DIRECTION_WEST
:
4157 if (grow
== near
) ++e
;
4158 delta
= RECT_LEFT(self
->frame
->area
) - e
;
4162 case OB_DIRECTION_NORTH
:
4163 if (grow
== near
) ++e
;
4164 delta
= RECT_TOP(self
->frame
->area
) - e
;
4168 case OB_DIRECTION_SOUTH
:
4169 if (grow
== near
) --e
;
4170 delta
= e
- RECT_BOTTOM(self
->frame
->area
);
4174 g_assert_not_reached();
4176 frame_frame_gravity(self
->frame
, x
, y
);
4177 *w
-= self
->frame
->size
.left
+ self
->frame
->size
.right
;
4178 *h
-= self
->frame
->size
.top
+ self
->frame
->size
.bottom
;
4181 ObClient
* client_under_pointer()
4185 ObClient
*ret
= NULL
;
4187 if (screen_pointer_pos(&x
, &y
)) {
4188 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
4189 if (WINDOW_IS_CLIENT(it
->data
)) {
4190 ObClient
*c
= WINDOW_AS_CLIENT(it
->data
);
4191 if (c
->frame
->visible
&&
4192 /* check the desktop, this is done during desktop
4193 switching and windows are shown/hidden status is not
4195 (c
->desktop
== screen_desktop
||
4196 c
->desktop
== DESKTOP_ALL
) &&
4197 /* ignore all animating windows */
4198 !frame_iconify_animating(c
->frame
) &&
4199 RECT_CONTAINS(c
->frame
->area
, x
, y
))
4210 gboolean
client_has_group_siblings(ObClient
*self
)
4212 return self
->group
&& self
->group
->members
->next
;