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 client_normal(self
) &&
390 /* if the window isn't user-sized, then make it fit inside
391 the visible screen area on its monitor. Use basically the same rules
392 for forcing the window on screen in the client_find_onscreen call.
394 do this after place_client, it chooses the monitor!
396 splash screens get "transient" set to TRUE by
397 the place_client call
399 if (ob_state() == OB_STATE_RUNNING
&&
401 (!(self
->sized
& USSize
|| self
->positioned
& USPosition
) &&
402 client_normal(self
) &&
407 RECT_SET(placer
, placex
, placey
, placew
, placeh
);
408 frame_rect_to_frame(self
->frame
, &placer
);
410 Rect
*a
= screen_area(self
->desktop
, SCREEN_AREA_ONE_MONITOR
, &placer
);
412 /* shrink by the frame's area */
413 a
->width
-= self
->frame
->size
.left
+ self
->frame
->size
.right
;
414 a
->height
-= self
->frame
->size
.top
+ self
->frame
->size
.bottom
;
416 /* fit the window inside the area */
417 if (placew
> a
->width
|| self
->area
.height
> a
->height
) {
418 placew
= MIN(self
->area
.width
, a
->width
);
419 placeh
= MIN(self
->area
.height
, a
->height
);
421 ob_debug("setting window size to %dx%d\n",
422 self
->area
.width
, self
->area
.height
);
428 ob_debug("placing window 0x%x at %d, %d with size %d x %d. "
429 "some restrictions may apply\n",
430 self
->window
, placex
, placey
, placew
, placeh
);
432 ob_debug(" but session requested %d, %d %d x %d instead, "
434 self
->session
->x
, self
->session
->y
,
435 self
->session
->w
, self
->session
->h
);
437 /* do this after the window is placed, so the premax/prefullscreen numbers
440 this also places the window
442 client_apply_startup_state(self
, placex
, placey
, placew
, placeh
);
445 guint32 last_time
= focus_client
?
446 focus_client
->user_time
: CurrentTime
;
448 /* This is focus stealing prevention */
449 ob_debug_type(OB_DEBUG_FOCUS
,
450 "Want to focus new window 0x%x with time %u "
452 self
->window
, self
->user_time
, last_time
);
454 /* if it's on another desktop */
455 if (!(self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
456 && /* the timestamp is from before you changed desktops */
457 self
->user_time
&& screen_desktop_user_time
&&
458 !event_time_after(self
->user_time
, screen_desktop_user_time
))
461 ob_debug_type(OB_DEBUG_FOCUS
,
462 "Not focusing the window because its on another "
465 /* If something is focused, and it's not our relative... */
466 else if (focus_client
&& client_search_focus_tree_full(self
) == NULL
&&
467 client_search_focus_group_full(self
) == NULL
)
469 /* If time stamp is old, don't steal focus */
470 if (self
->user_time
&& last_time
&&
471 !event_time_after(self
->user_time
, last_time
))
474 ob_debug_type(OB_DEBUG_FOCUS
,
475 "Not focusing the window because the time is "
478 /* If its a transient (and parents aren't focused) and the time
479 is ambiguous (either the current focus target doesn't have
480 a timestamp, or they are the same (we probably inherited it
482 else if (client_has_parent(self
) &&
483 (!last_time
|| self
->user_time
== last_time
))
486 ob_debug_type(OB_DEBUG_FOCUS
,
487 "Not focusing the window because it is a "
488 "transient, and the time is very ambiguous\n");
490 /* Don't steal focus from globally active clients.
491 I stole this idea from KWin. It seems nice.
493 else if (!(focus_client
->can_focus
||
494 focus_client
->focus_notify
))
497 ob_debug_type(OB_DEBUG_FOCUS
,
498 "Not focusing the window because a globally "
499 "active client has focus\n");
501 /* Don't move focus if it's not going to go to this window
503 else if (client_focus_target(self
) != self
) {
505 ob_debug_type(OB_DEBUG_FOCUS
,
506 "Not focusing the window because another window "
507 "would get the focus anyway\n");
512 ob_debug_type(OB_DEBUG_FOCUS
,
513 "Focus stealing prevention activated for %s with "
514 "time %u (last time %u)\n",
515 self
->title
, self
->user_time
, last_time
);
516 /* if the client isn't focused, then hilite it so the user
518 client_hilite(self
, TRUE
);
522 /* This may look rather odd. Well it's because new windows are added
523 to the stacking order non-intrusively. If we're not going to focus
524 the new window or hilite it, then we raise it to the top. This will
525 take affect for things that don't get focused like splash screens.
526 Also if you don't have focus_new enabled, then it's going to get
527 raised to the top. Legacy begets legacy I guess?
529 if (!client_restore_session_stacking(self
))
530 stacking_raise(CLIENT_AS_WINDOW(self
));
533 mouse_grab_for_client(self
, TRUE
);
535 /* this has to happen before we try focus the window, but we want it to
536 happen after the client's stacking has been determined or it looks bad
540 if (!config_focus_under_mouse
)
541 ignore_start
= event_start_ignore_all_enters();
545 if (!config_focus_under_mouse
)
546 event_end_ignore_all_enters(ignore_start
);
550 gboolean stacked
= client_restore_session_stacking(self
);
551 client_present(self
, FALSE
, !stacked
, TRUE
);
554 /* add to client list/map */
555 client_list
= g_list_append(client_list
, self
);
556 g_hash_table_insert(window_map
, &self
->window
, self
);
558 /* this has to happen after we're in the client_list */
559 if (STRUT_EXISTS(self
->strut
))
560 screen_update_areas();
562 /* update the list hints */
565 /* free the ObAppSettings shallow copy */
568 ob_debug("Managed window 0x%lx plate 0x%x (%s)\n",
569 window
, self
->frame
->window
, self
->class);
575 ObClient
*client_fake_manage(Window window
)
578 ObAppSettings
*settings
;
580 ob_debug("Pretend-managing window: %lx\n", window
);
582 /* do this minimal stuff to figure out the client's decorations */
584 self
= g_new0(ObClient
, 1);
585 self
->window
= window
;
587 client_get_all(self
, FALSE
);
588 /* per-app settings override stuff, and return the settings for other
589 uses too. this returns a shallow copy that needs to be freed */
590 settings
= client_get_settings_state(self
);
592 client_setup_decor_and_functions(self
, FALSE
);
594 /* create the decoration frame for the client window and adjust its size */
595 self
->frame
= frame_new(self
);
596 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
598 ob_debug("gave extents left %d right %d top %d bottom %d\n",
599 self
->frame
->size
.left
, self
->frame
->size
.right
,
600 self
->frame
->size
.top
, self
->frame
->size
.bottom
);
602 /* free the ObAppSettings shallow copy */
608 void client_unmanage_all()
610 while (client_list
!= NULL
)
611 client_unmanage(client_list
->data
);
614 void client_unmanage(ObClient
*self
)
620 ob_debug("Unmanaging window: 0x%x plate 0x%x (%s) (%s)\n",
621 self
->window
, self
->frame
->window
,
622 self
->class, self
->title
? self
->title
: "");
624 g_assert(self
!= NULL
);
626 /* we dont want events no more. do this before hiding the frame so we
627 don't generate more events */
628 XSelectInput(ob_display
, self
->window
, NoEventMask
);
630 /* ignore enter events from the unmap so it doesnt mess with the focus */
631 if (!config_focus_under_mouse
)
632 ignore_start
= event_start_ignore_all_enters();
634 frame_hide(self
->frame
);
635 /* flush to send the hide to the server quickly */
638 if (!config_focus_under_mouse
)
639 event_end_ignore_all_enters(ignore_start
);
641 mouse_grab_for_client(self
, FALSE
);
643 /* remove the window from our save set */
644 XChangeSaveSet(ob_display
, self
->window
, SetModeDelete
);
646 /* kill the property windows */
647 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
649 /* update the focus lists */
650 focus_order_remove(self
);
651 if (client_focused(self
)) {
652 /* don't leave an invalid focus_client */
656 client_list
= g_list_remove(client_list
, self
);
657 stacking_remove(self
);
658 g_hash_table_remove(window_map
, &self
->window
);
660 /* once the client is out of the list, update the struts to remove its
662 if (STRUT_EXISTS(self
->strut
))
663 screen_update_areas();
665 client_call_notifies(self
, client_destroy_notifies
);
667 /* tell our parent(s) that we're gone */
668 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
669 ((ObClient
*)it
->data
)->transients
=
670 g_slist_remove(((ObClient
*)it
->data
)->transients
,self
);
672 /* tell our transients that we're gone */
673 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
674 ((ObClient
*)it
->data
)->parents
=
675 g_slist_remove(((ObClient
*)it
->data
)->parents
, self
);
676 /* we could be keeping our children in a higher layer */
677 client_calc_layer(it
->data
);
680 /* remove from its group */
682 group_remove(self
->group
, self
);
686 /* restore the window's original geometry so it is not lost */
692 if (self
->fullscreen
)
693 a
= self
->pre_fullscreen_area
;
694 else if (self
->max_horz
|| self
->max_vert
) {
695 if (self
->max_horz
) {
696 a
.x
= self
->pre_max_area
.x
;
697 a
.width
= self
->pre_max_area
.width
;
699 if (self
->max_vert
) {
700 a
.y
= self
->pre_max_area
.y
;
701 a
.height
= self
->pre_max_area
.height
;
705 self
->fullscreen
= self
->max_horz
= self
->max_vert
= FALSE
;
706 /* let it be moved and resized no matter what */
707 self
->functions
= OB_CLIENT_FUNC_MOVE
| OB_CLIENT_FUNC_RESIZE
;
708 self
->decorations
= 0; /* unmanaged windows have no decor */
710 /* give the client its border back */
711 XSetWindowBorderWidth(ob_display
, self
->window
, self
->border_width
);
713 client_move_resize(self
, a
.x
, a
.y
, a
.width
, a
.height
);
716 /* reparent the window out of the frame, and free the frame */
717 frame_release_client(self
->frame
);
718 frame_free(self
->frame
);
721 if (ob_state() != OB_STATE_EXITING
) {
722 /* these values should not be persisted across a window
724 PROP_ERASE(self
->window
, net_wm_desktop
);
725 PROP_ERASE(self
->window
, net_wm_state
);
726 PROP_ERASE(self
->window
, wm_state
);
728 /* if we're left in an unmapped state, the client wont be mapped.
729 this is bad, since we will no longer be managing the window on
731 XMapWindow(ob_display
, self
->window
);
734 /* update the list hints */
737 ob_debug("Unmanaged window 0x%lx\n", self
->window
);
739 /* free all data allocated in the client struct */
740 g_slist_free(self
->transients
);
741 for (j
= 0; j
< self
->nicons
; ++j
)
742 g_free(self
->icons
[j
].data
);
743 if (self
->nicons
> 0)
745 g_free(self
->wm_command
);
747 g_free(self
->icon_title
);
751 g_free(self
->client_machine
);
752 g_free(self
->sm_client_id
);
756 void client_fake_unmanage(ObClient
*self
)
758 /* this is all that got allocated to get the decorations */
760 frame_free(self
->frame
);
764 /*! Returns a new structure containing the per-app settings for this client.
765 The returned structure needs to be freed with g_free. */
766 static ObAppSettings
*client_get_settings_state(ObClient
*self
)
768 ObAppSettings
*settings
;
771 settings
= config_create_app_settings();
773 for (it
= config_per_app_settings
; it
; it
= g_slist_next(it
)) {
774 ObAppSettings
*app
= it
->data
;
775 gboolean match
= TRUE
;
777 g_assert(app
->name
!= NULL
|| app
->class != NULL
);
779 /* we know that either name or class is not NULL so it will have to
780 match to use the rule */
782 !g_pattern_match(app
->name
, strlen(self
->name
), self
->name
, NULL
))
784 else if (app
->class &&
785 !g_pattern_match(app
->class,
786 strlen(self
->class), self
->class, NULL
))
788 else if (app
->role
&&
789 !g_pattern_match(app
->role
,
790 strlen(self
->role
), self
->role
, NULL
))
794 ob_debug("Window matching: %s\n", app
->name
);
796 /* copy the settings to our struct, overriding the existing
797 settings if they are not defaults */
798 config_app_settings_copy_non_defaults(app
, settings
);
802 if (settings
->shade
!= -1)
803 self
->shaded
= !!settings
->shade
;
804 if (settings
->decor
!= -1)
805 self
->undecorated
= !settings
->decor
;
806 if (settings
->iconic
!= -1)
807 self
->iconic
= !!settings
->iconic
;
808 if (settings
->skip_pager
!= -1)
809 self
->skip_pager
= !!settings
->skip_pager
;
810 if (settings
->skip_taskbar
!= -1)
811 self
->skip_taskbar
= !!settings
->skip_taskbar
;
813 if (settings
->max_vert
!= -1)
814 self
->max_vert
= !!settings
->max_vert
;
815 if (settings
->max_horz
!= -1)
816 self
->max_horz
= !!settings
->max_horz
;
818 if (settings
->fullscreen
!= -1)
819 self
->fullscreen
= !!settings
->fullscreen
;
821 if (settings
->desktop
) {
822 if (settings
->desktop
== DESKTOP_ALL
)
823 self
->desktop
= settings
->desktop
;
824 else if (settings
->desktop
> 0 &&
825 settings
->desktop
<= screen_num_desktops
)
826 self
->desktop
= settings
->desktop
- 1;
829 if (settings
->layer
== -1) {
833 else if (settings
->layer
== 0) {
837 else if (settings
->layer
== 1) {
844 static void client_restore_session_state(ObClient
*self
)
848 ob_debug_type(OB_DEBUG_SM
,
849 "Restore session for client %s\n", self
->title
);
851 if (!(it
= session_state_find(self
))) {
852 ob_debug_type(OB_DEBUG_SM
,
853 "Session data not found for client %s\n", self
->title
);
857 self
->session
= it
->data
;
859 ob_debug_type(OB_DEBUG_SM
, "Session data loaded for client %s\n",
862 RECT_SET_POINT(self
->area
, self
->session
->x
, self
->session
->y
);
863 self
->positioned
= USPosition
;
864 self
->sized
= USSize
;
865 if (self
->session
->w
> 0)
866 self
->area
.width
= self
->session
->w
;
867 if (self
->session
->h
> 0)
868 self
->area
.height
= self
->session
->h
;
869 XResizeWindow(ob_display
, self
->window
,
870 self
->area
.width
, self
->area
.height
);
872 self
->desktop
= (self
->session
->desktop
== DESKTOP_ALL
?
873 self
->session
->desktop
:
874 MIN(screen_num_desktops
- 1, self
->session
->desktop
));
875 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
877 self
->shaded
= self
->session
->shaded
;
878 self
->iconic
= self
->session
->iconic
;
879 self
->skip_pager
= self
->session
->skip_pager
;
880 self
->skip_taskbar
= self
->session
->skip_taskbar
;
881 self
->fullscreen
= self
->session
->fullscreen
;
882 self
->above
= self
->session
->above
;
883 self
->below
= self
->session
->below
;
884 self
->max_horz
= self
->session
->max_horz
;
885 self
->max_vert
= self
->session
->max_vert
;
886 self
->undecorated
= self
->session
->undecorated
;
889 static gboolean
client_restore_session_stacking(ObClient
*self
)
893 if (!self
->session
) return FALSE
;
895 mypos
= g_list_find(session_saved_state
, self
->session
);
896 if (!mypos
) return FALSE
;
898 /* start above me and look for the first client */
899 for (it
= g_list_previous(mypos
); it
; it
= g_list_previous(it
)) {
902 for (cit
= client_list
; cit
; cit
= g_list_next(cit
)) {
903 ObClient
*c
= cit
->data
;
904 /* found a client that was in the session, so go below it */
905 if (c
->session
== it
->data
) {
906 stacking_below(CLIENT_AS_WINDOW(self
),
907 CLIENT_AS_WINDOW(cit
->data
));
915 void client_move_onscreen(ObClient
*self
, gboolean rude
)
917 gint x
= self
->area
.x
;
918 gint y
= self
->area
.y
;
919 if (client_find_onscreen(self
, &x
, &y
,
921 self
->area
.height
, rude
)) {
922 client_move(self
, x
, y
);
926 gboolean
client_find_onscreen(ObClient
*self
, gint
*x
, gint
*y
, gint w
, gint h
,
929 gint ox
= *x
, oy
= *y
;
930 gboolean rudel
= rude
, ruder
= rude
, rudet
= rude
, rudeb
= rude
;
935 RECT_SET(desired
, *x
, *y
, w
, h
);
936 frame_rect_to_frame(self
->frame
, &desired
);
938 /* get where the frame would be */
939 frame_client_gravity(self
->frame
, x
, y
);
941 /* get the requested size of the window with decorations */
942 fw
= self
->frame
->size
.left
+ w
+ self
->frame
->size
.right
;
943 fh
= self
->frame
->size
.top
+ h
+ self
->frame
->size
.bottom
;
945 /* If rudeness wasn't requested, then still be rude in a given direction
946 if the client is not moving, only resizing in that direction */
948 Point oldtl
, oldtr
, oldbl
, oldbr
;
949 Point newtl
, newtr
, newbl
, newbr
;
950 gboolean stationary_l
, stationary_r
, stationary_t
, stationary_b
;
952 POINT_SET(oldtl
, self
->frame
->area
.x
, self
->frame
->area
.y
);
953 POINT_SET(oldbr
, self
->frame
->area
.x
+ self
->frame
->area
.width
- 1,
954 self
->frame
->area
.y
+ self
->frame
->area
.height
- 1);
955 POINT_SET(oldtr
, oldbr
.x
, oldtl
.y
);
956 POINT_SET(oldbl
, oldtl
.x
, oldbr
.y
);
958 POINT_SET(newtl
, *x
, *y
);
959 POINT_SET(newbr
, *x
+ fw
- 1, *y
+ fh
- 1);
960 POINT_SET(newtr
, newbr
.x
, newtl
.y
);
961 POINT_SET(newbl
, newtl
.x
, newbr
.y
);
963 /* is it moving or just resizing from some corner? */
964 stationary_l
= oldtl
.x
== newtl
.x
;
965 stationary_r
= oldtr
.x
== newtr
.x
;
966 stationary_t
= oldtl
.y
== newtl
.y
;
967 stationary_b
= oldbl
.y
== newbl
.y
;
969 /* if left edge is growing and didnt move right edge */
970 if (stationary_r
&& newtl
.x
< oldtl
.x
)
972 /* if right edge is growing and didnt move left edge */
973 if (stationary_l
&& newtr
.x
> oldtr
.x
)
975 /* if top edge is growing and didnt move bottom edge */
976 if (stationary_b
&& newtl
.y
< oldtl
.y
)
978 /* if bottom edge is growing and didnt move top edge */
979 if (stationary_t
&& newbl
.y
> oldbl
.y
)
983 for (i
= 0; i
< screen_num_monitors
; ++i
) {
986 if (!screen_physical_area_monitor_contains(i
, &desired
))
989 a
= screen_area(self
->desktop
, SCREEN_AREA_ONE_MONITOR
, &desired
);
991 /* This makes sure windows aren't entirely outside of the screen so you
992 can't see them at all.
993 It makes sure 10% of the window is on the screen at least. At don't
994 let it move itself off the top of the screen, which would hide the
995 titlebar on you. (The user can still do this if they want too, it's
996 only limiting the application.
998 if (client_normal(self
)) {
999 if (!self
->strut
.right
&& *x
+ fw
/10 >= a
->x
+ a
->width
- 1)
1000 *x
= a
->x
+ a
->width
- fw
/10;
1001 if (!self
->strut
.bottom
&& *y
+ fh
/10 >= a
->y
+ a
->height
- 1)
1002 *y
= a
->y
+ a
->height
- fh
/10;
1003 if (!self
->strut
.left
&& *x
+ fw
*9/10 - 1 < a
->x
)
1004 *x
= a
->x
- fw
*9/10;
1005 if (!self
->strut
.top
&& *y
+ fh
*9/10 - 1 < a
->y
)
1006 *y
= a
->y
- fw
*9/10;
1009 /* This here doesn't let windows even a pixel outside the
1010 struts/screen. When called from client_manage, programs placing
1011 themselves are forced completely onscreen, while things like
1012 xterm -geometry resolution-width/2 will work fine. Trying to
1013 place it completely offscreen will be handled in the above code.
1014 Sorry for this confused comment, i am tired. */
1015 if (rudel
&& !self
->strut
.left
&& *x
< a
->x
) *x
= a
->x
;
1016 if (ruder
&& !self
->strut
.right
&& *x
+ fw
> a
->x
+ a
->width
)
1017 *x
= a
->x
+ MAX(0, a
->width
- fw
);
1019 if (rudet
&& !self
->strut
.top
&& *y
< a
->y
) *y
= a
->y
;
1020 if (rudeb
&& !self
->strut
.bottom
&& *y
+ fh
> a
->y
+ a
->height
)
1021 *y
= a
->y
+ MAX(0, a
->height
- fh
);
1026 /* get where the client should be */
1027 frame_frame_gravity(self
->frame
, x
, y
);
1029 return ox
!= *x
|| oy
!= *y
;
1032 static void client_get_all(ObClient
*self
, gboolean real
)
1034 /* this is needed for the frame to set itself up */
1035 client_get_area(self
);
1037 /* these things can change the decor and functions of the window */
1039 client_get_mwm_hints(self
);
1040 /* this can change the mwmhints for special cases */
1041 client_get_type_and_transientness(self
);
1042 client_get_state(self
);
1043 client_update_normal_hints(self
);
1045 /* get the session related properties, these can change decorations
1046 from per-app settings */
1047 client_get_session_ids(self
);
1049 /* now we got everything that can affect the decorations */
1053 /* get this early so we have it for debugging */
1054 client_update_title(self
);
1056 client_update_protocols(self
);
1058 client_update_wmhints(self
);
1059 /* this may have already been called from client_update_wmhints */
1060 if (!self
->parents
&& !self
->transient_for_group
)
1061 client_update_transient_for(self
);
1063 client_get_startup_id(self
);
1064 client_get_desktop(self
);/* uses transient data/group/startup id if a
1065 desktop is not specified */
1066 client_get_shaped(self
);
1069 /* a couple type-based defaults for new windows */
1071 /* this makes sure that these windows appear on all desktops */
1072 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
1073 self
->desktop
= DESKTOP_ALL
;
1077 client_update_sync_request_counter(self
);
1080 client_get_colormap(self
);
1081 client_update_strut(self
);
1082 client_update_icons(self
);
1083 client_update_user_time_window(self
);
1084 if (!self
->user_time_window
) /* check if this would have been called */
1085 client_update_user_time(self
);
1086 client_update_icon_geometry(self
);
1089 static void client_get_startup_id(ObClient
*self
)
1091 if (!(PROP_GETS(self
->window
, net_startup_id
, utf8
, &self
->startup_id
)))
1093 PROP_GETS(self
->group
->leader
,
1094 net_startup_id
, utf8
, &self
->startup_id
);
1097 static void client_get_area(ObClient
*self
)
1099 XWindowAttributes wattrib
;
1102 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
1103 g_assert(ret
!= BadWindow
);
1105 RECT_SET(self
->area
, wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
1106 POINT_SET(self
->root_pos
, wattrib
.x
, wattrib
.y
);
1107 self
->border_width
= wattrib
.border_width
;
1109 ob_debug("client area: %d %d %d %d bw %d\n", wattrib
.x
, wattrib
.y
,
1110 wattrib
.width
, wattrib
.height
, wattrib
.border_width
);
1113 static void client_get_desktop(ObClient
*self
)
1115 guint32 d
= screen_num_desktops
; /* an always-invalid value */
1117 if (PROP_GET32(self
->window
, net_wm_desktop
, cardinal
, &d
)) {
1118 if (d
>= screen_num_desktops
&& d
!= DESKTOP_ALL
)
1119 self
->desktop
= screen_num_desktops
- 1;
1122 ob_debug("client requested desktop 0x%x\n", self
->desktop
);
1125 gboolean first
= TRUE
;
1126 guint all
= screen_num_desktops
; /* not a valid value */
1128 /* if they are all on one desktop, then open it on the
1130 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
1131 ObClient
*c
= it
->data
;
1133 if (c
->desktop
== DESKTOP_ALL
) continue;
1139 else if (all
!= c
->desktop
)
1140 all
= screen_num_desktops
; /* make it invalid */
1142 if (all
!= screen_num_desktops
) {
1143 self
->desktop
= all
;
1145 ob_debug("client desktop set from parents: 0x%x\n",
1148 /* try get from the startup-notification protocol */
1149 else if (sn_get_desktop(self
->startup_id
, &self
->desktop
)) {
1150 if (self
->desktop
>= screen_num_desktops
&&
1151 self
->desktop
!= DESKTOP_ALL
)
1152 self
->desktop
= screen_num_desktops
- 1;
1153 ob_debug("client desktop set from startup-notification: 0x%x\n",
1156 /* defaults to the current desktop */
1158 self
->desktop
= screen_desktop
;
1159 ob_debug("client desktop set to the current desktop: %d\n",
1165 static void client_get_state(ObClient
*self
)
1170 if (PROP_GETA32(self
->window
, net_wm_state
, atom
, &state
, &num
)) {
1172 for (i
= 0; i
< num
; ++i
) {
1173 if (state
[i
] == prop_atoms
.net_wm_state_modal
)
1175 else if (state
[i
] == prop_atoms
.net_wm_state_shaded
)
1176 self
->shaded
= TRUE
;
1177 else if (state
[i
] == prop_atoms
.net_wm_state_hidden
)
1178 self
->iconic
= TRUE
;
1179 else if (state
[i
] == prop_atoms
.net_wm_state_skip_taskbar
)
1180 self
->skip_taskbar
= TRUE
;
1181 else if (state
[i
] == prop_atoms
.net_wm_state_skip_pager
)
1182 self
->skip_pager
= TRUE
;
1183 else if (state
[i
] == prop_atoms
.net_wm_state_fullscreen
)
1184 self
->fullscreen
= TRUE
;
1185 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_vert
)
1186 self
->max_vert
= TRUE
;
1187 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_horz
)
1188 self
->max_horz
= TRUE
;
1189 else if (state
[i
] == prop_atoms
.net_wm_state_above
)
1191 else if (state
[i
] == prop_atoms
.net_wm_state_below
)
1193 else if (state
[i
] == prop_atoms
.net_wm_state_demands_attention
)
1194 self
->demands_attention
= TRUE
;
1195 else if (state
[i
] == prop_atoms
.ob_wm_state_undecorated
)
1196 self
->undecorated
= TRUE
;
1203 static void client_get_shaped(ObClient
*self
)
1205 self
->shaped
= FALSE
;
1207 if (extensions_shape
) {
1212 XShapeSelectInput(ob_display
, self
->window
, ShapeNotifyMask
);
1214 XShapeQueryExtents(ob_display
, self
->window
, &s
, &foo
,
1215 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
,
1217 self
->shaped
= (s
!= 0);
1222 void client_update_transient_for(ObClient
*self
)
1225 ObClient
*target
= NULL
;
1226 gboolean trangroup
= FALSE
;
1228 if (XGetTransientForHint(ob_display
, self
->window
, &t
)) {
1229 if (t
!= self
->window
) { /* cant be transient to itself! */
1230 target
= g_hash_table_lookup(window_map
, &t
);
1231 /* if this happens then we need to check for it*/
1232 g_assert(target
!= self
);
1233 if (target
&& !WINDOW_IS_CLIENT(target
)) {
1234 /* this can happen when a dialog is a child of
1235 a dockapp, for example */
1240 /* Setting the transient_for to Root is actually illegal, however
1241 applications from time have done this to specify transient for
1243 if (!target
&& self
->group
&& t
== RootWindow(ob_display
, ob_screen
))
1245 } else if (self
->group
&& self
->transient
)
1248 client_update_transient_tree(self
, self
->group
, self
->group
,
1249 self
->transient_for_group
, trangroup
,
1250 client_direct_parent(self
), target
);
1251 self
->transient_for_group
= trangroup
;
1255 static void client_update_transient_tree(ObClient
*self
,
1256 ObGroup
*oldgroup
, ObGroup
*newgroup
,
1257 gboolean oldgtran
, gboolean newgtran
,
1258 ObClient
* oldparent
,
1259 ObClient
*newparent
)
1264 g_assert(!oldgtran
|| oldgroup
);
1265 g_assert(!newgtran
|| newgroup
);
1266 g_assert((!oldgtran
&& !oldparent
) ||
1267 (oldgtran
&& !oldparent
) ||
1268 (!oldgtran
&& oldparent
));
1269 g_assert((!newgtran
&& !newparent
) ||
1270 (newgtran
&& !newparent
) ||
1271 (!newgtran
&& newparent
));
1274 Group transient windows are not allowed to have other group
1275 transient windows as their children.
1279 /* No change has occured */
1280 if (oldgroup
== newgroup
&&
1281 oldgtran
== newgtran
&&
1282 oldparent
== newparent
) return;
1284 /** Remove the client from the transient tree wherever it has changed **/
1286 /* If the window is becoming a direct transient for a window in its group
1287 then any group transients which were our children and are now becoming
1288 our parents need to stop being our children.
1290 Group transients can't be children of group transients already, but
1291 we could have any number of direct parents above up, any of which could
1292 be transient for the group, and we need to remove it from our children.
1294 if (!oldgtran
&& oldparent
!= newparent
&& newparent
!= NULL
&&
1295 newgroup
!= NULL
&& newgroup
== oldgroup
&&
1296 client_normal(newparent
))
1298 ObClient
*look
= client_search_top_direct_parent(newparent
);
1299 self
->transients
= g_slist_remove(self
->transients
, look
);
1300 look
->parents
= g_slist_remove(look
->parents
, self
);
1304 /* If the group changed, or if we are just becoming transient for the
1305 group, then we need to remove any old group transient windows
1306 from our children. But if we were already transient for the group, then
1307 other group transients are not our children. */
1308 if ((oldgroup
!= newgroup
|| (newgtran
&& oldgtran
!= newgtran
)) &&
1309 oldgroup
!= NULL
&& !oldgtran
)
1311 for (it
= self
->transients
; it
; it
= next
) {
1312 next
= g_slist_next(it
);
1314 if (c
->group
== oldgroup
&& client_normal(self
)) {
1315 self
->transients
= g_slist_delete_link(self
->transients
, it
);
1316 c
->parents
= g_slist_remove(c
->parents
, self
);
1321 /* If we used to be transient for a group and now we are not, or we're
1322 transient for a new group, then we need to remove ourselves from all
1324 if (oldgtran
&& (oldgroup
!= newgroup
|| oldgtran
!= newgtran
))
1326 for (it
= self
->parents
; it
; it
= next
) {
1327 next
= g_slist_next(it
);
1329 if (!c
->transient_for_group
&& client_normal(c
)) {
1330 c
->transients
= g_slist_remove(c
->transients
, self
);
1331 self
->parents
= g_slist_delete_link(self
->parents
, it
);
1335 /* If we used to be transient for a single window and we are no longer
1336 transient for it, then we need to remove ourself from its children */
1337 else if (oldparent
&& oldparent
!= newparent
&&
1338 client_normal(oldparent
))
1340 oldparent
->transients
= g_slist_remove(oldparent
->transients
, self
);
1341 self
->parents
= g_slist_remove(self
->parents
, oldparent
);
1344 /** Re-add the client to the transient tree wherever it has changed **/
1346 /* If we're now transient for a group and we weren't transient for it
1347 before then we need to add ourselves to all our new parents */
1348 if (newgtran
&& (oldgroup
!= newgroup
|| oldgtran
!= newgtran
))
1350 for (it
= oldgroup
->members
; it
; it
= g_slist_next(it
)) {
1352 if (c
!= self
&& !c
->transient_for_group
&& client_normal(c
))
1354 c
->transients
= g_slist_prepend(c
->transients
, self
);
1355 self
->parents
= g_slist_prepend(self
->parents
, c
);
1359 /* If we are now transient for a single window which we weren't before,
1360 we need to add ourselves to its children
1362 WARNING: Cyclical transient ness is possible if two windows are
1363 transient for eachother.
1365 else if (newparent
&& newparent
!= oldparent
&&
1366 /* don't make ourself its child if it is already our child */
1367 !client_is_direct_child(self
, newparent
) &&
1368 client_normal(newparent
))
1370 newparent
->transients
= g_slist_prepend(newparent
->transients
, self
);
1371 self
->parents
= g_slist_prepend(self
->parents
, newparent
);
1374 /* If the group changed then we need to add any new group transient
1375 windows to our children. But if we're transient for the group, then
1376 other group transients are not our children.
1378 WARNING: Cyclical transient-ness is possible. For e.g. if:
1379 A is transient for the group
1380 B is transient for A
1381 C is transient for B
1382 A can't be transient for C or we have a cycle
1384 if (oldgroup
!= newgroup
&& newgroup
!= NULL
&& !newgtran
&&
1385 client_normal(self
))
1387 for (it
= newgroup
->members
; it
; it
= g_slist_next(it
)) {
1389 if (c
!= self
&& c
->transient_for_group
&&
1390 /* Don't make it our child if it is already our parent */
1391 !client_is_direct_child(c
, self
))
1393 self
->transients
= g_slist_prepend(self
->transients
, c
);
1394 c
->parents
= g_slist_prepend(c
->parents
, self
);
1400 static void client_get_mwm_hints(ObClient
*self
)
1405 self
->mwmhints
.flags
= 0; /* default to none */
1407 if (PROP_GETA32(self
->window
, motif_wm_hints
, motif_wm_hints
,
1409 if (num
>= OB_MWM_ELEMENTS
) {
1410 self
->mwmhints
.flags
= hints
[0];
1411 self
->mwmhints
.functions
= hints
[1];
1412 self
->mwmhints
.decorations
= hints
[2];
1418 void client_get_type_and_transientness(ObClient
*self
)
1425 self
->transient
= FALSE
;
1427 if (PROP_GETA32(self
->window
, net_wm_window_type
, atom
, &val
, &num
)) {
1428 /* use the first value that we know about in the array */
1429 for (i
= 0; i
< num
; ++i
) {
1430 if (val
[i
] == prop_atoms
.net_wm_window_type_desktop
)
1431 self
->type
= OB_CLIENT_TYPE_DESKTOP
;
1432 else if (val
[i
] == prop_atoms
.net_wm_window_type_dock
)
1433 self
->type
= OB_CLIENT_TYPE_DOCK
;
1434 else if (val
[i
] == prop_atoms
.net_wm_window_type_toolbar
)
1435 self
->type
= OB_CLIENT_TYPE_TOOLBAR
;
1436 else if (val
[i
] == prop_atoms
.net_wm_window_type_menu
)
1437 self
->type
= OB_CLIENT_TYPE_MENU
;
1438 else if (val
[i
] == prop_atoms
.net_wm_window_type_utility
)
1439 self
->type
= OB_CLIENT_TYPE_UTILITY
;
1440 else if (val
[i
] == prop_atoms
.net_wm_window_type_splash
)
1441 self
->type
= OB_CLIENT_TYPE_SPLASH
;
1442 else if (val
[i
] == prop_atoms
.net_wm_window_type_dialog
)
1443 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1444 else if (val
[i
] == prop_atoms
.net_wm_window_type_normal
)
1445 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1446 else if (val
[i
] == prop_atoms
.kde_net_wm_window_type_override
) {
1447 /* prevent this window from getting any decor or
1449 self
->mwmhints
.flags
&= (OB_MWM_FLAG_FUNCTIONS
|
1450 OB_MWM_FLAG_DECORATIONS
);
1451 self
->mwmhints
.decorations
= 0;
1452 self
->mwmhints
.functions
= 0;
1454 if (self
->type
!= (ObClientType
) -1)
1455 break; /* grab the first legit type */
1460 if (XGetTransientForHint(ob_display
, self
->window
, &t
))
1461 self
->transient
= TRUE
;
1463 if (self
->type
== (ObClientType
) -1) {
1464 /*the window type hint was not set, which means we either classify
1465 ourself as a normal window or a dialog, depending on if we are a
1467 if (self
->transient
)
1468 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1470 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1473 /* then, based on our type, we can update our transientness.. */
1474 if (self
->type
== OB_CLIENT_TYPE_DIALOG
||
1475 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
1476 self
->type
== OB_CLIENT_TYPE_MENU
||
1477 self
->type
== OB_CLIENT_TYPE_UTILITY
)
1479 self
->transient
= TRUE
;
1483 void client_update_protocols(ObClient
*self
)
1486 guint num_return
, i
;
1488 self
->focus_notify
= FALSE
;
1489 self
->delete_window
= FALSE
;
1491 if (PROP_GETA32(self
->window
, wm_protocols
, atom
, &proto
, &num_return
)) {
1492 for (i
= 0; i
< num_return
; ++i
) {
1493 if (proto
[i
] == prop_atoms
.wm_delete_window
)
1494 /* this means we can request the window to close */
1495 self
->delete_window
= TRUE
;
1496 else if (proto
[i
] == prop_atoms
.wm_take_focus
)
1497 /* if this protocol is requested, then the window will be
1498 notified whenever we want it to receive focus */
1499 self
->focus_notify
= TRUE
;
1501 else if (proto
[i
] == prop_atoms
.net_wm_sync_request
)
1502 /* if this protocol is requested, then resizing the
1503 window will be synchronized between the frame and the
1505 self
->sync_request
= TRUE
;
1513 void client_update_sync_request_counter(ObClient
*self
)
1517 if (PROP_GET32(self
->window
, net_wm_sync_request_counter
, cardinal
, &i
)) {
1518 self
->sync_counter
= i
;
1520 self
->sync_counter
= None
;
1524 void client_get_colormap(ObClient
*self
)
1526 XWindowAttributes wa
;
1528 if (XGetWindowAttributes(ob_display
, self
->window
, &wa
))
1529 client_update_colormap(self
, wa
.colormap
);
1532 void client_update_colormap(ObClient
*self
, Colormap colormap
)
1534 if (colormap
== self
->colormap
) return;
1536 ob_debug("Setting client %s colormap: 0x%x\n", self
->title
, colormap
);
1538 if (client_focused(self
)) {
1539 screen_install_colormap(self
, FALSE
); /* uninstall old one */
1540 self
->colormap
= colormap
;
1541 screen_install_colormap(self
, FALSE
); /* install new one */
1543 self
->colormap
= colormap
;
1546 void client_update_normal_hints(ObClient
*self
)
1552 self
->min_ratio
= 0.0f
;
1553 self
->max_ratio
= 0.0f
;
1554 SIZE_SET(self
->size_inc
, 1, 1);
1555 SIZE_SET(self
->base_size
, 0, 0);
1556 SIZE_SET(self
->min_size
, 0, 0);
1557 SIZE_SET(self
->max_size
, G_MAXINT
, G_MAXINT
);
1559 /* get the hints from the window */
1560 if (XGetWMNormalHints(ob_display
, self
->window
, &size
, &ret
)) {
1561 /* normal windows can't request placement! har har
1562 if (!client_normal(self))
1564 self
->positioned
= (size
.flags
& (PPosition
|USPosition
));
1565 self
->sized
= (size
.flags
& (PSize
|USSize
));
1567 if (size
.flags
& PWinGravity
)
1568 self
->gravity
= size
.win_gravity
;
1570 if (size
.flags
& PAspect
) {
1571 if (size
.min_aspect
.y
)
1573 (gfloat
) size
.min_aspect
.x
/ size
.min_aspect
.y
;
1574 if (size
.max_aspect
.y
)
1576 (gfloat
) size
.max_aspect
.x
/ size
.max_aspect
.y
;
1579 if (size
.flags
& PMinSize
)
1580 SIZE_SET(self
->min_size
, size
.min_width
, size
.min_height
);
1582 if (size
.flags
& PMaxSize
)
1583 SIZE_SET(self
->max_size
, size
.max_width
, size
.max_height
);
1585 if (size
.flags
& PBaseSize
)
1586 SIZE_SET(self
->base_size
, size
.base_width
, size
.base_height
);
1588 if (size
.flags
& PResizeInc
&& size
.width_inc
&& size
.height_inc
)
1589 SIZE_SET(self
->size_inc
, size
.width_inc
, size
.height_inc
);
1591 ob_debug("Normal hints: min size (%d %d) max size (%d %d)\n "
1592 "size inc (%d %d) base size (%d %d)\n",
1593 self
->min_size
.width
, self
->min_size
.height
,
1594 self
->max_size
.width
, self
->max_size
.height
,
1595 self
->size_inc
.width
, self
->size_inc
.height
,
1596 self
->base_size
.width
, self
->base_size
.height
);
1599 ob_debug("Normal hints: not set\n");
1602 void client_setup_decor_and_functions(ObClient
*self
, gboolean reconfig
)
1604 /* start with everything (cept fullscreen) */
1606 (OB_FRAME_DECOR_TITLEBAR
|
1607 OB_FRAME_DECOR_HANDLE
|
1608 OB_FRAME_DECOR_GRIPS
|
1609 OB_FRAME_DECOR_BORDER
|
1610 OB_FRAME_DECOR_ICON
|
1611 OB_FRAME_DECOR_ALLDESKTOPS
|
1612 OB_FRAME_DECOR_ICONIFY
|
1613 OB_FRAME_DECOR_MAXIMIZE
|
1614 OB_FRAME_DECOR_SHADE
|
1615 OB_FRAME_DECOR_CLOSE
);
1617 (OB_CLIENT_FUNC_RESIZE
|
1618 OB_CLIENT_FUNC_MOVE
|
1619 OB_CLIENT_FUNC_ICONIFY
|
1620 OB_CLIENT_FUNC_MAXIMIZE
|
1621 OB_CLIENT_FUNC_SHADE
|
1622 OB_CLIENT_FUNC_CLOSE
|
1623 OB_CLIENT_FUNC_BELOW
|
1624 OB_CLIENT_FUNC_ABOVE
|
1625 OB_CLIENT_FUNC_UNDECORATE
);
1627 if (!(self
->min_size
.width
< self
->max_size
.width
||
1628 self
->min_size
.height
< self
->max_size
.height
))
1629 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1631 switch (self
->type
) {
1632 case OB_CLIENT_TYPE_NORMAL
:
1633 /* normal windows retain all of the possible decorations and
1634 functionality, and are the only windows that you can fullscreen */
1635 self
->functions
|= OB_CLIENT_FUNC_FULLSCREEN
;
1638 case OB_CLIENT_TYPE_DIALOG
:
1639 case OB_CLIENT_TYPE_UTILITY
:
1640 /* these windows don't have anything added or removed by default */
1643 case OB_CLIENT_TYPE_MENU
:
1644 case OB_CLIENT_TYPE_TOOLBAR
:
1645 /* these windows can't iconify or maximize */
1646 self
->decorations
&= ~(OB_FRAME_DECOR_ICONIFY
|
1647 OB_FRAME_DECOR_MAXIMIZE
);
1648 self
->functions
&= ~(OB_CLIENT_FUNC_ICONIFY
|
1649 OB_CLIENT_FUNC_MAXIMIZE
);
1652 case OB_CLIENT_TYPE_SPLASH
:
1653 /* these don't get get any decorations, and the only thing you can
1654 do with them is move them */
1655 self
->decorations
= 0;
1656 self
->functions
= OB_CLIENT_FUNC_MOVE
;
1659 case OB_CLIENT_TYPE_DESKTOP
:
1660 /* these windows are not manipulated by the window manager */
1661 self
->decorations
= 0;
1662 self
->functions
= 0;
1665 case OB_CLIENT_TYPE_DOCK
:
1666 /* these windows are not manipulated by the window manager, but they
1667 can set below layer which has a special meaning */
1668 self
->decorations
= 0;
1669 self
->functions
= OB_CLIENT_FUNC_BELOW
;
1673 /* Mwm Hints are applied subtractively to what has already been chosen for
1674 decor and functionality */
1675 if (self
->mwmhints
.flags
& OB_MWM_FLAG_DECORATIONS
) {
1676 if (! (self
->mwmhints
.decorations
& OB_MWM_DECOR_ALL
)) {
1677 if (! ((self
->mwmhints
.decorations
& OB_MWM_DECOR_HANDLE
) ||
1678 (self
->mwmhints
.decorations
& OB_MWM_DECOR_TITLE
)))
1680 /* if the mwm hints request no handle or title, then all
1681 decorations are disabled, but keep the border if that's
1683 if (self
->mwmhints
.decorations
& OB_MWM_DECOR_BORDER
)
1684 self
->decorations
= OB_FRAME_DECOR_BORDER
;
1686 self
->decorations
= 0;
1691 if (self
->mwmhints
.flags
& OB_MWM_FLAG_FUNCTIONS
) {
1692 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_ALL
)) {
1693 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_RESIZE
))
1694 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1695 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_MOVE
))
1696 self
->functions
&= ~OB_CLIENT_FUNC_MOVE
;
1697 /* dont let mwm hints kill any buttons
1698 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1699 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1700 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1701 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1703 /* dont let mwm hints kill the close button
1704 if (! (self->mwmhints.functions & MwmFunc_Close))
1705 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1709 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
))
1710 self
->decorations
&= ~OB_FRAME_DECOR_SHADE
;
1711 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
))
1712 self
->decorations
&= ~OB_FRAME_DECOR_ICONIFY
;
1713 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
))
1714 self
->decorations
&= ~(OB_FRAME_DECOR_GRIPS
| OB_FRAME_DECOR_HANDLE
);
1716 /* can't maximize without moving/resizing */
1717 if (!((self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) &&
1718 (self
->functions
& OB_CLIENT_FUNC_MOVE
) &&
1719 (self
->functions
& OB_CLIENT_FUNC_RESIZE
))) {
1720 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1721 self
->decorations
&= ~OB_FRAME_DECOR_MAXIMIZE
;
1724 if (self
->max_horz
&& self
->max_vert
) {
1725 /* you can't resize fully maximized windows */
1726 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1727 /* kill the handle on fully maxed windows */
1728 self
->decorations
&= ~(OB_FRAME_DECOR_HANDLE
| OB_FRAME_DECOR_GRIPS
);
1731 /* If there are no decorations to remove, don't allow the user to try
1733 if (self
->decorations
== 0)
1734 self
->functions
&= ~OB_CLIENT_FUNC_UNDECORATE
;
1736 /* finally, the user can have requested no decorations, which overrides
1737 everything (but doesnt give it a border if it doesnt have one) */
1738 if (self
->undecorated
)
1739 self
->decorations
= 0;
1741 /* if we don't have a titlebar, then we cannot shade! */
1742 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1743 self
->functions
&= ~OB_CLIENT_FUNC_SHADE
;
1745 /* now we need to check against rules for the client's current state */
1746 if (self
->fullscreen
) {
1747 self
->functions
&= (OB_CLIENT_FUNC_CLOSE
|
1748 OB_CLIENT_FUNC_FULLSCREEN
|
1749 OB_CLIENT_FUNC_ICONIFY
);
1750 self
->decorations
= 0;
1753 client_change_allowed_actions(self
);
1756 /* force reconfigure to make sure decorations are updated */
1757 client_reconfigure(self
, TRUE
);
1760 static void client_change_allowed_actions(ObClient
*self
)
1765 /* desktop windows are kept on all desktops */
1766 if (self
->type
!= OB_CLIENT_TYPE_DESKTOP
)
1767 actions
[num
++] = prop_atoms
.net_wm_action_change_desktop
;
1769 if (self
->functions
& OB_CLIENT_FUNC_SHADE
)
1770 actions
[num
++] = prop_atoms
.net_wm_action_shade
;
1771 if (self
->functions
& OB_CLIENT_FUNC_CLOSE
)
1772 actions
[num
++] = prop_atoms
.net_wm_action_close
;
1773 if (self
->functions
& OB_CLIENT_FUNC_MOVE
)
1774 actions
[num
++] = prop_atoms
.net_wm_action_move
;
1775 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
)
1776 actions
[num
++] = prop_atoms
.net_wm_action_minimize
;
1777 if (self
->functions
& OB_CLIENT_FUNC_RESIZE
)
1778 actions
[num
++] = prop_atoms
.net_wm_action_resize
;
1779 if (self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
)
1780 actions
[num
++] = prop_atoms
.net_wm_action_fullscreen
;
1781 if (self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) {
1782 actions
[num
++] = prop_atoms
.net_wm_action_maximize_horz
;
1783 actions
[num
++] = prop_atoms
.net_wm_action_maximize_vert
;
1785 if (self
->functions
& OB_CLIENT_FUNC_ABOVE
)
1786 actions
[num
++] = prop_atoms
.net_wm_action_above
;
1787 if (self
->functions
& OB_CLIENT_FUNC_BELOW
)
1788 actions
[num
++] = prop_atoms
.net_wm_action_below
;
1789 if (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
)
1790 actions
[num
++] = prop_atoms
.ob_wm_action_undecorate
;
1792 PROP_SETA32(self
->window
, net_wm_allowed_actions
, atom
, actions
, num
);
1794 /* make sure the window isn't breaking any rules now */
1796 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
) && self
->shaded
) {
1797 if (self
->frame
) client_shade(self
, FALSE
);
1798 else self
->shaded
= FALSE
;
1800 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
) && self
->iconic
) {
1801 if (self
->frame
) client_iconify(self
, FALSE
, TRUE
, FALSE
);
1802 else self
->iconic
= FALSE
;
1804 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) && self
->fullscreen
) {
1805 if (self
->frame
) client_fullscreen(self
, FALSE
);
1806 else self
->fullscreen
= FALSE
;
1808 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) && (self
->max_horz
||
1810 if (self
->frame
) client_maximize(self
, FALSE
, 0);
1811 else self
->max_vert
= self
->max_horz
= FALSE
;
1815 void client_update_wmhints(ObClient
*self
)
1819 /* assume a window takes input if it doesnt specify */
1820 self
->can_focus
= TRUE
;
1822 if ((hints
= XGetWMHints(ob_display
, self
->window
)) != NULL
) {
1825 if (hints
->flags
& InputHint
)
1826 self
->can_focus
= hints
->input
;
1828 /* only do this when first managing the window *AND* when we aren't
1830 if (ob_state() != OB_STATE_STARTING
&& self
->frame
== NULL
)
1831 if (hints
->flags
& StateHint
)
1832 self
->iconic
= hints
->initial_state
== IconicState
;
1835 self
->urgent
= (hints
->flags
& XUrgencyHint
);
1836 if (self
->urgent
&& !ur
)
1837 client_hilite(self
, TRUE
);
1838 else if (!self
->urgent
&& ur
&& self
->demands_attention
)
1839 client_hilite(self
, FALSE
);
1841 if (!(hints
->flags
& WindowGroupHint
))
1842 hints
->window_group
= None
;
1844 /* did the group state change? */
1845 if (hints
->window_group
!=
1846 (self
->group
? self
->group
->leader
: None
))
1848 ObGroup
*oldgroup
= self
->group
;
1850 /* remove from the old group if there was one */
1851 if (self
->group
!= NULL
) {
1852 group_remove(self
->group
, self
);
1856 /* add ourself to the group if we have one */
1857 if (hints
->window_group
!= None
) {
1858 self
->group
= group_add(hints
->window_group
, self
);
1861 /* Put ourselves into the new group's transient tree, and remove
1862 ourselves from the old group's */
1863 client_update_transient_tree(self
, oldgroup
, self
->group
,
1864 self
->transient_for_group
,
1865 self
->transient_for_group
,
1866 client_direct_parent(self
),
1867 client_direct_parent(self
));
1869 /* Lastly, being in a group, or not, can change if the window is
1870 transient for anything.
1872 The logic for this is:
1873 self->transient = TRUE always if the window wants to be
1874 transient for something, even if transient_for was NULL because
1875 it wasn't in a group before.
1877 If parents was NULL and oldgroup was NULL we can assume
1878 that when we add the new group, it will become transient for
1881 If transient_for_group is TRUE, then it must have already
1882 had a group. If it is getting a new group, the above call to
1883 client_update_transient_tree has already taken care of
1884 everything ! If it is losing all group status then it will
1885 no longer be transient for anything and that needs to be
1888 if (self
->transient
&&
1889 ((self
->parents
== NULL
&& oldgroup
== NULL
) ||
1890 (self
->transient_for_group
&& !self
->group
)))
1891 client_update_transient_for(self
);
1894 /* the WM_HINTS can contain an icon */
1895 if (hints
->flags
& IconPixmapHint
)
1896 client_update_icons(self
);
1902 void client_update_title(ObClient
*self
)
1905 gchar
*visible
= NULL
;
1907 g_free(self
->title
);
1910 if (!PROP_GETS(self
->window
, net_wm_name
, utf8
, &data
)) {
1911 /* try old x stuff */
1912 if (!(PROP_GETS(self
->window
, wm_name
, locale
, &data
)
1913 || PROP_GETS(self
->window
, wm_name
, utf8
, &data
))) {
1914 if (self
->transient
) {
1916 GNOME alert windows are not given titles:
1917 http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
1919 data
= g_strdup("");
1921 data
= g_strdup("Unnamed Window");
1925 if (self
->client_machine
) {
1926 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1931 PROP_SETS(self
->window
, net_wm_visible_name
, visible
);
1932 self
->title
= visible
;
1935 frame_adjust_title(self
->frame
);
1937 /* update the icon title */
1939 g_free(self
->icon_title
);
1942 if (!PROP_GETS(self
->window
, net_wm_icon_name
, utf8
, &data
))
1943 /* try old x stuff */
1944 if (!(PROP_GETS(self
->window
, wm_icon_name
, locale
, &data
) ||
1945 PROP_GETS(self
->window
, wm_icon_name
, utf8
, &data
)))
1946 data
= g_strdup(self
->title
);
1948 if (self
->client_machine
) {
1949 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1954 PROP_SETS(self
->window
, net_wm_visible_icon_name
, visible
);
1955 self
->icon_title
= visible
;
1958 void client_update_strut(ObClient
*self
)
1962 gboolean got
= FALSE
;
1965 if (PROP_GETA32(self
->window
, net_wm_strut_partial
, cardinal
,
1969 STRUT_PARTIAL_SET(strut
,
1970 data
[0], data
[2], data
[1], data
[3],
1971 data
[4], data
[5], data
[8], data
[9],
1972 data
[6], data
[7], data
[10], data
[11]);
1978 PROP_GETA32(self
->window
, net_wm_strut
, cardinal
, &data
, &num
)) {
1984 /* use the screen's width/height */
1985 a
= screen_physical_area_all_monitors();
1987 STRUT_PARTIAL_SET(strut
,
1988 data
[0], data
[2], data
[1], data
[3],
1989 a
->y
, a
->y
+ a
->height
- 1,
1990 a
->x
, a
->x
+ a
->width
- 1,
1991 a
->y
, a
->y
+ a
->height
- 1,
1992 a
->x
, a
->x
+ a
->width
- 1);
1999 STRUT_PARTIAL_SET(strut
, 0, 0, 0, 0,
2000 0, 0, 0, 0, 0, 0, 0, 0);
2002 if (!STRUT_EQUAL(strut
, self
->strut
)) {
2003 self
->strut
= strut
;
2005 /* updating here is pointless while we're being mapped cuz we're not in
2006 the client list yet */
2008 screen_update_areas();
2012 void client_update_icons(ObClient
*self
)
2018 for (i
= 0; i
< self
->nicons
; ++i
)
2019 g_free(self
->icons
[i
].data
);
2020 if (self
->nicons
> 0)
2021 g_free(self
->icons
);
2024 if (PROP_GETA32(self
->window
, net_wm_icon
, cardinal
, &data
, &num
)) {
2025 /* figure out how many valid icons are in here */
2027 while (num
- i
> 2) {
2031 if (i
> num
|| w
*h
== 0) break;
2035 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2037 /* store the icons */
2039 for (j
= 0; j
< self
->nicons
; ++j
) {
2042 w
= self
->icons
[j
].width
= data
[i
++];
2043 h
= self
->icons
[j
].height
= data
[i
++];
2045 if (w
*h
== 0) continue;
2047 self
->icons
[j
].data
= g_new(RrPixel32
, w
* h
);
2048 for (x
= 0, y
= 0, t
= 0; t
< w
* h
; ++t
, ++x
, ++i
) {
2053 self
->icons
[j
].data
[t
] =
2054 (((data
[i
] >> 24) & 0xff) << RrDefaultAlphaOffset
) +
2055 (((data
[i
] >> 16) & 0xff) << RrDefaultRedOffset
) +
2056 (((data
[i
] >> 8) & 0xff) << RrDefaultGreenOffset
) +
2057 (((data
[i
] >> 0) & 0xff) << RrDefaultBlueOffset
);
2066 if ((hints
= XGetWMHints(ob_display
, self
->window
))) {
2067 if (hints
->flags
& IconPixmapHint
) {
2069 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2070 xerror_set_ignore(TRUE
);
2071 if (!RrPixmapToRGBA(ob_rr_inst
,
2073 (hints
->flags
& IconMaskHint
?
2074 hints
->icon_mask
: None
),
2075 &self
->icons
[0].width
,
2076 &self
->icons
[0].height
,
2077 &self
->icons
[0].data
))
2079 g_free(self
->icons
);
2082 xerror_set_ignore(FALSE
);
2088 /* set the default icon onto the window
2089 in theory, this could be a race, but if a window doesn't set an icon
2090 or removes it entirely, it's not very likely it is going to set one
2091 right away afterwards
2093 if it has parents, then one of them will have an icon already
2095 if (self
->nicons
== 0 && !self
->parents
) {
2096 RrPixel32
*icon
= ob_rr_theme
->def_win_icon
;
2099 data
= g_new(gulong
, 48*48+2);
2100 data
[0] = data
[1] = 48;
2101 for (i
= 0; i
< 48*48; ++i
)
2102 data
[i
+2] = (((icon
[i
] >> RrDefaultAlphaOffset
) & 0xff) << 24) +
2103 (((icon
[i
] >> RrDefaultRedOffset
) & 0xff) << 16) +
2104 (((icon
[i
] >> RrDefaultGreenOffset
) & 0xff) << 8) +
2105 (((icon
[i
] >> RrDefaultBlueOffset
) & 0xff) << 0);
2106 PROP_SETA32(self
->window
, net_wm_icon
, cardinal
, data
, 48*48+2);
2108 } else if (self
->frame
)
2109 /* don't draw the icon empty if we're just setting one now anyways,
2110 we'll get the property change any second */
2111 frame_adjust_icon(self
->frame
);
2114 void client_update_user_time(ObClient
*self
)
2117 gboolean got
= FALSE
;
2119 if (self
->user_time_window
)
2120 got
= PROP_GET32(self
->user_time_window
,
2121 net_wm_user_time
, cardinal
, &time
);
2123 got
= PROP_GET32(self
->window
, net_wm_user_time
, cardinal
, &time
);
2126 /* we set this every time, not just when it grows, because in practice
2127 sometimes time goes backwards! (ntpdate.. yay....) so.. if it goes
2128 backward we don't want all windows to stop focusing. we'll just
2129 assume noone is setting times older than the last one, cuz that
2130 would be pretty stupid anyways
2132 self
->user_time
= time
;
2134 /*ob_debug("window %s user time %u\n", self->title, time);*/
2138 void client_update_user_time_window(ObClient
*self
)
2142 if (!PROP_GET32(self
->window
, net_wm_user_time_window
, window
, &w
))
2145 if (w
!= self
->user_time_window
) {
2146 /* remove the old window */
2147 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
2148 self
->user_time_window
= None
;
2150 if (self
->group
&& self
->group
->leader
== w
) {
2151 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2152 "_NET_WM_USER_TYPE_WINDOW to its group leader\n");
2153 /* do it anyways..? */
2155 else if (w
== self
->window
) {
2156 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2157 "_NET_WM_USER_TIME_WINDOW to itself\n");
2158 w
= None
; /* don't do it */
2161 /* add the new window */
2162 propwin_add(w
, OB_PROPWIN_USER_TIME
, self
);
2163 self
->user_time_window
= w
;
2165 /* and update from it */
2166 client_update_user_time(self
);
2170 void client_update_icon_geometry(ObClient
*self
)
2175 RECT_SET(self
->icon_geometry
, 0, 0, 0, 0);
2177 if (PROP_GETA32(self
->window
, net_wm_icon_geometry
, cardinal
, &data
, &num
)
2180 /* don't let them set it with an area < 0 */
2181 RECT_SET(self
->icon_geometry
, data
[0], data
[1],
2182 MAX(data
[2],0), MAX(data
[3],0));
2186 static void client_get_session_ids(ObClient
*self
)
2193 if (!PROP_GET32(self
->window
, wm_client_leader
, window
, &leader
))
2196 /* get the SM_CLIENT_ID */
2199 got
= PROP_GETS(leader
, sm_client_id
, locale
, &self
->sm_client_id
);
2201 PROP_GETS(self
->window
, sm_client_id
, locale
, &self
->sm_client_id
);
2203 /* get the WM_CLASS (name and class). make them "" if they are not
2207 got
= PROP_GETSS(leader
, wm_class
, locale
, &ss
);
2209 got
= PROP_GETSS(self
->window
, wm_class
, locale
, &ss
);
2213 self
->name
= g_strdup(ss
[0]);
2215 self
->class = g_strdup(ss
[1]);
2220 if (self
->name
== NULL
) self
->name
= g_strdup("");
2221 if (self
->class == NULL
) self
->class = g_strdup("");
2223 /* get the WM_WINDOW_ROLE. make it "" if it is not provided */
2226 got
= PROP_GETS(leader
, wm_window_role
, locale
, &s
);
2228 got
= PROP_GETS(self
->window
, wm_window_role
, locale
, &s
);
2233 self
->role
= g_strdup("");
2235 /* get the WM_COMMAND */
2239 got
= PROP_GETSS(leader
, wm_command
, locale
, &ss
);
2241 got
= PROP_GETSS(self
->window
, wm_command
, locale
, &ss
);
2244 /* merge/mash them all together */
2245 gchar
*merge
= NULL
;
2248 for (i
= 0; ss
[i
]; ++i
) {
2251 merge
= g_strconcat(merge
, ss
[i
], NULL
);
2253 merge
= g_strconcat(ss
[i
], NULL
);
2258 self
->wm_command
= merge
;
2261 /* get the WM_CLIENT_MACHINE */
2264 got
= PROP_GETS(leader
, wm_client_machine
, locale
, &s
);
2266 got
= PROP_GETS(self
->window
, wm_client_machine
, locale
, &s
);
2269 gchar localhost
[128];
2271 gethostname(localhost
, 127);
2272 localhost
[127] = '\0';
2273 if (strcmp(localhost
, s
) != 0)
2274 self
->client_machine
= s
;
2280 static void client_change_wm_state(ObClient
*self
)
2285 old
= self
->wmstate
;
2287 if (self
->shaded
|| self
->iconic
||
2288 (self
->desktop
!= DESKTOP_ALL
&& self
->desktop
!= screen_desktop
))
2290 self
->wmstate
= IconicState
;
2292 self
->wmstate
= NormalState
;
2294 if (old
!= self
->wmstate
) {
2295 PROP_MSG(self
->window
, kde_wm_change_state
,
2296 self
->wmstate
, 1, 0, 0);
2298 state
[0] = self
->wmstate
;
2300 PROP_SETA32(self
->window
, wm_state
, wm_state
, state
, 2);
2304 static void client_change_state(ObClient
*self
)
2306 gulong netstate
[12];
2311 netstate
[num
++] = prop_atoms
.net_wm_state_modal
;
2313 netstate
[num
++] = prop_atoms
.net_wm_state_shaded
;
2315 netstate
[num
++] = prop_atoms
.net_wm_state_hidden
;
2316 if (self
->skip_taskbar
)
2317 netstate
[num
++] = prop_atoms
.net_wm_state_skip_taskbar
;
2318 if (self
->skip_pager
)
2319 netstate
[num
++] = prop_atoms
.net_wm_state_skip_pager
;
2320 if (self
->fullscreen
)
2321 netstate
[num
++] = prop_atoms
.net_wm_state_fullscreen
;
2323 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_vert
;
2325 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_horz
;
2327 netstate
[num
++] = prop_atoms
.net_wm_state_above
;
2329 netstate
[num
++] = prop_atoms
.net_wm_state_below
;
2330 if (self
->demands_attention
)
2331 netstate
[num
++] = prop_atoms
.net_wm_state_demands_attention
;
2332 if (self
->undecorated
)
2333 netstate
[num
++] = prop_atoms
.ob_wm_state_undecorated
;
2334 PROP_SETA32(self
->window
, net_wm_state
, atom
, netstate
, num
);
2337 frame_adjust_state(self
->frame
);
2340 ObClient
*client_search_focus_tree(ObClient
*self
)
2345 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
2346 if (client_focused(it
->data
)) return it
->data
;
2347 if ((ret
= client_search_focus_tree(it
->data
))) return ret
;
2352 ObClient
*client_search_focus_tree_full(ObClient
*self
)
2354 if (self
->parents
) {
2357 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
2358 ObClient
*c
= it
->data
;
2359 if ((c
= client_search_focus_tree_full(it
->data
))) return c
;
2365 /* this function checks the whole tree, the client_search_focus_tree
2366 does not, so we need to check this window */
2367 if (client_focused(self
))
2369 return client_search_focus_tree(self
);
2373 ObClient
*client_search_focus_group_full(ObClient
*self
)
2378 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
2379 ObClient
*c
= it
->data
;
2381 if (client_focused(c
)) return c
;
2382 if ((c
= client_search_focus_tree(it
->data
))) return c
;
2385 if (client_focused(self
)) return self
;
2389 gboolean
client_has_parent(ObClient
*self
)
2391 return self
->parents
!= NULL
;
2394 static ObStackingLayer
calc_layer(ObClient
*self
)
2399 monitor
= screen_physical_area_monitor(client_monitor(self
));
2401 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
2402 l
= OB_STACKING_LAYER_DESKTOP
;
2403 else if (self
->type
== OB_CLIENT_TYPE_DOCK
) {
2404 if (self
->below
) l
= OB_STACKING_LAYER_NORMAL
;
2405 else l
= OB_STACKING_LAYER_ABOVE
;
2407 else if ((self
->fullscreen
||
2408 /* No decorations and fills the monitor = oldskool fullscreen.
2409 But not for maximized windows.
2411 (self
->decorations
== 0 &&
2412 !(self
->max_horz
&& self
->max_vert
) &&
2413 RECT_EQUAL(self
->area
, *monitor
))) &&
2414 (client_focused(self
) || client_search_focus_tree(self
)))
2415 l
= OB_STACKING_LAYER_FULLSCREEN
;
2416 else if (self
->above
) l
= OB_STACKING_LAYER_ABOVE
;
2417 else if (self
->below
) l
= OB_STACKING_LAYER_BELOW
;
2418 else l
= OB_STACKING_LAYER_NORMAL
;
2425 static void client_calc_layer_recursive(ObClient
*self
, ObClient
*orig
,
2426 ObStackingLayer min
)
2428 ObStackingLayer old
, own
;
2432 own
= calc_layer(self
);
2433 self
->layer
= MAX(own
, min
);
2435 if (self
->layer
!= old
) {
2436 stacking_remove(CLIENT_AS_WINDOW(self
));
2437 stacking_add_nonintrusive(CLIENT_AS_WINDOW(self
));
2440 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
2441 client_calc_layer_recursive(it
->data
, orig
,
2445 void client_calc_layer(ObClient
*self
)
2452 /* transients take on the layer of their parents */
2453 it
= client_search_all_top_parents(self
);
2455 for (; it
; it
= g_slist_next(it
))
2456 client_calc_layer_recursive(it
->data
, orig
, 0);
2459 gboolean
client_should_show(ObClient
*self
)
2463 if (client_normal(self
) && screen_showing_desktop
)
2465 if (self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
2471 gboolean
client_show(ObClient
*self
)
2473 gboolean show
= FALSE
;
2475 if (client_should_show(self
)) {
2476 frame_show(self
->frame
);
2479 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible,
2480 it needs to be in IconicState. This includes when it is on another
2483 client_change_wm_state(self
);
2488 gboolean
client_hide(ObClient
*self
)
2490 gboolean hide
= FALSE
;
2492 if (!client_should_show(self
)) {
2493 if (self
== focus_client
) {
2494 /* if there is a grab going on, then we need to cancel it. if we
2495 move focus during the grab, applications will get
2496 NotifyWhileGrabbed events and ignore them !
2498 actions should not rely on being able to move focus during an
2501 event_cancel_all_key_grabs();
2504 /* We don't need to ignore enter events here.
2505 The window can hide/iconify in 3 different ways:
2506 1 - through an x message. in this case we ignore all enter events
2507 caused by responding to the x message (unless underMouse)
2508 2 - by a keyboard action. in this case we ignore all enter events
2509 caused by the action
2510 3 - by a mouse action. in this case they are doing stuff with the
2511 mouse and focus _should_ move.
2513 Also in action_end, we simulate an enter event that can't be ignored
2514 so trying to ignore them is futile in case 3 anyways
2517 frame_hide(self
->frame
);
2520 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible,
2521 it needs to be in IconicState. This includes when it is on another
2524 client_change_wm_state(self
);
2529 void client_showhide(ObClient
*self
)
2531 if (!client_show(self
))
2535 gboolean
client_normal(ObClient
*self
) {
2536 return ! (self
->type
== OB_CLIENT_TYPE_DESKTOP
||
2537 self
->type
== OB_CLIENT_TYPE_DOCK
||
2538 self
->type
== OB_CLIENT_TYPE_SPLASH
);
2541 gboolean
client_helper(ObClient
*self
)
2543 return (self
->type
== OB_CLIENT_TYPE_UTILITY
||
2544 self
->type
== OB_CLIENT_TYPE_MENU
||
2545 self
->type
== OB_CLIENT_TYPE_TOOLBAR
);
2548 gboolean
client_mouse_focusable(ObClient
*self
)
2550 return !(self
->type
== OB_CLIENT_TYPE_MENU
||
2551 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
2552 self
->type
== OB_CLIENT_TYPE_SPLASH
||
2553 self
->type
== OB_CLIENT_TYPE_DOCK
);
2556 gboolean
client_enter_focusable(ObClient
*self
)
2558 /* you can focus desktops but it shouldn't on enter */
2559 return (client_mouse_focusable(self
) &&
2560 self
->type
!= OB_CLIENT_TYPE_DESKTOP
);
2564 static void client_apply_startup_state(ObClient
*self
,
2565 gint x
, gint y
, gint w
, gint h
)
2567 /* save the states that we are going to apply */
2568 gboolean iconic
= self
->iconic
;
2569 gboolean fullscreen
= self
->fullscreen
;
2570 gboolean undecorated
= self
->undecorated
;
2571 gboolean shaded
= self
->shaded
;
2572 gboolean demands_attention
= self
->demands_attention
;
2573 gboolean max_horz
= self
->max_horz
;
2574 gboolean max_vert
= self
->max_vert
;
2578 /* turn them all off in the client, so they won't affect the window
2580 self
->iconic
= self
->fullscreen
= self
->undecorated
= self
->shaded
=
2581 self
->demands_attention
= self
->max_horz
= self
->max_vert
= FALSE
;
2583 /* move the client to its placed position, or it it's already there,
2584 generate a ConfigureNotify telling the client where it is.
2586 do this after adjusting the frame. otherwise it gets all weird and
2587 clients don't work right
2589 do this before applying the states so they have the correct
2590 pre-max/pre-fullscreen values
2592 client_try_configure(self
, &x
, &y
, &w
, &h
, &l
, &l
, FALSE
);
2593 ob_debug("placed window 0x%x at %d, %d with size %d x %d\n",
2594 self
->window
, x
, y
, w
, h
);
2595 /* save the area, and make it where it should be for the premax stuff */
2596 oldarea
= self
->area
;
2597 RECT_SET(self
->area
, x
, y
, w
, h
);
2599 /* apply the states. these are in a carefully crafted order.. */
2602 client_iconify(self
, TRUE
, FALSE
, TRUE
);
2604 client_fullscreen(self
, TRUE
);
2606 client_set_undecorated(self
, TRUE
);
2608 client_shade(self
, TRUE
);
2609 if (demands_attention
)
2610 client_hilite(self
, TRUE
);
2612 if (max_vert
&& max_horz
)
2613 client_maximize(self
, TRUE
, 0);
2615 client_maximize(self
, TRUE
, 2);
2617 client_maximize(self
, TRUE
, 1);
2619 /* if the window hasn't been configured yet, then do so now, in fact the
2620 x,y,w,h may _not_ be the same as the area rect, which can end up
2621 meaning that the client isn't properly moved/resized by the fullscreen
2623 pho can cause this because it maps at size of the screen but not 0,0
2624 so openbox moves it on screen to 0,0 (thus x,y=0,0 and area.x,y don't).
2625 then fullscreen'ing makes it go to 0,0 which it thinks it already is at
2626 cuz thats where the pre-fullscreen will be. however the actual area is
2627 not, so this needs to be called even if we have fullscreened/maxed
2629 self
->area
= oldarea
;
2630 client_configure(self
, x
, y
, w
, h
, FALSE
, TRUE
, FALSE
);
2632 /* set the desktop hint, to make sure that it always exists */
2633 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
2635 /* nothing to do for the other states:
2644 void client_gravity_resize_w(ObClient
*self
, gint
*x
, gint oldw
, gint neww
)
2646 /* these should be the current values. this is for when you're not moving,
2648 g_assert(*x
== self
->area
.x
);
2649 g_assert(oldw
== self
->area
.width
);
2652 switch (self
->gravity
) {
2654 case NorthWestGravity
:
2656 case SouthWestGravity
:
2663 *x
-= (neww
- oldw
) / 2;
2665 case NorthEastGravity
:
2667 case SouthEastGravity
:
2673 void client_gravity_resize_h(ObClient
*self
, gint
*y
, gint oldh
, gint newh
)
2675 /* these should be the current values. this is for when you're not moving,
2677 g_assert(*y
== self
->area
.y
);
2678 g_assert(oldh
== self
->area
.height
);
2681 switch (self
->gravity
) {
2683 case NorthWestGravity
:
2685 case NorthEastGravity
:
2692 *y
-= (newh
- oldh
) / 2;
2694 case SouthWestGravity
:
2696 case SouthEastGravity
:
2702 void client_try_configure(ObClient
*self
, gint
*x
, gint
*y
, gint
*w
, gint
*h
,
2703 gint
*logicalw
, gint
*logicalh
,
2706 Rect desired
= {*x
, *y
, *w
, *h
};
2707 frame_rect_to_frame(self
->frame
, &desired
);
2709 /* make the frame recalculate its dimentions n shit without changing
2710 anything visible for real, this way the constraints below can work with
2711 the updated frame dimensions. */
2712 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
2714 /* gets the frame's position */
2715 frame_client_gravity(self
->frame
, x
, y
);
2717 /* these positions are frame positions, not client positions */
2719 /* set the size and position if fullscreen */
2720 if (self
->fullscreen
) {
2724 i
= screen_find_monitor(&desired
);
2725 a
= screen_physical_area_monitor(i
);
2732 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2736 } else if (self
->max_horz
|| self
->max_vert
) {
2740 /* use all possible struts when maximizing to the full screen */
2741 i
= screen_find_monitor(&desired
);
2742 a
= screen_area(self
->desktop
, i
,
2743 (self
->max_horz
&& self
->max_vert
? NULL
: &desired
));
2745 /* set the size and position if maximized */
2746 if (self
->max_horz
) {
2748 *w
= a
->width
- self
->frame
->size
.left
- self
->frame
->size
.right
;
2750 if (self
->max_vert
) {
2752 *h
= a
->height
- self
->frame
->size
.top
- self
->frame
->size
.bottom
;
2755 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2761 /* gets the client's position */
2762 frame_frame_gravity(self
->frame
, x
, y
);
2764 /* work within the prefered sizes given by the window */
2765 if (!(*w
== self
->area
.width
&& *h
== self
->area
.height
)) {
2766 gint basew
, baseh
, minw
, minh
;
2768 gfloat minratio
, maxratio
;
2770 incw
= self
->fullscreen
|| self
->max_horz
? 1 : self
->size_inc
.width
;
2771 inch
= self
->fullscreen
|| self
->max_vert
? 1 : self
->size_inc
.height
;
2772 minratio
= self
->fullscreen
|| (self
->max_horz
&& self
->max_vert
) ?
2773 0 : self
->min_ratio
;
2774 maxratio
= self
->fullscreen
|| (self
->max_horz
&& self
->max_vert
) ?
2775 0 : self
->max_ratio
;
2777 /* base size is substituted with min size if not specified */
2778 if (self
->base_size
.width
|| self
->base_size
.height
) {
2779 basew
= self
->base_size
.width
;
2780 baseh
= self
->base_size
.height
;
2782 basew
= self
->min_size
.width
;
2783 baseh
= self
->min_size
.height
;
2785 /* min size is substituted with base size if not specified */
2786 if (self
->min_size
.width
|| self
->min_size
.height
) {
2787 minw
= self
->min_size
.width
;
2788 minh
= self
->min_size
.height
;
2790 minw
= self
->base_size
.width
;
2791 minh
= self
->base_size
.height
;
2794 /* if this is a user-requested resize, then check against min/max
2797 /* smaller than min size or bigger than max size? */
2798 if (*w
> self
->max_size
.width
) *w
= self
->max_size
.width
;
2799 if (*w
< minw
) *w
= minw
;
2800 if (*h
> self
->max_size
.height
) *h
= self
->max_size
.height
;
2801 if (*h
< minh
) *h
= minh
;
2806 /* keep to the increments */
2810 /* you cannot resize to nothing */
2811 if (basew
+ *w
< 1) *w
= 1 - basew
;
2812 if (baseh
+ *h
< 1) *h
= 1 - baseh
;
2814 /* save the logical size */
2815 *logicalw
= incw
> 1 ? *w
: *w
+ basew
;
2816 *logicalh
= inch
> 1 ? *h
: *h
+ baseh
;
2824 /* adjust the height to match the width for the aspect ratios.
2825 for this, min size is not substituted for base size ever. */
2826 *w
-= self
->base_size
.width
;
2827 *h
-= self
->base_size
.height
;
2830 if (*h
* minratio
> *w
) {
2831 *h
= (gint
)(*w
/ minratio
);
2833 /* you cannot resize to nothing */
2836 *w
= (gint
)(*h
* minratio
);
2840 if (*h
* maxratio
< *w
) {
2841 *h
= (gint
)(*w
/ maxratio
);
2843 /* you cannot resize to nothing */
2846 *w
= (gint
)(*h
* minratio
);
2850 *w
+= self
->base_size
.width
;
2851 *h
+= self
->base_size
.height
;
2854 /* these override the above states! if you cant move you can't move! */
2856 if (!(self
->functions
& OB_CLIENT_FUNC_MOVE
)) {
2860 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
)) {
2861 *w
= self
->area
.width
;
2862 *h
= self
->area
.height
;
2871 void client_configure(ObClient
*self
, gint x
, gint y
, gint w
, gint h
,
2872 gboolean user
, gboolean final
, gboolean force_reply
)
2875 gboolean send_resize_client
;
2876 gboolean moved
= FALSE
, resized
= FALSE
, rootmoved
= FALSE
;
2877 gboolean fmoved
, fresized
;
2878 guint fdecor
= self
->frame
->decorations
;
2879 gboolean fhorz
= self
->frame
->max_horz
;
2880 gboolean fvert
= self
->frame
->max_vert
;
2881 gint logicalw
, logicalh
;
2883 /* find the new x, y, width, and height (and logical size) */
2884 client_try_configure(self
, &x
, &y
, &w
, &h
, &logicalw
, &logicalh
, user
);
2886 /* set the logical size if things changed */
2887 if (!(w
== self
->area
.width
&& h
== self
->area
.height
))
2888 SIZE_SET(self
->logical_size
, logicalw
, logicalh
);
2890 /* figure out if we moved or resized or what */
2891 moved
= (x
!= self
->area
.x
|| y
!= self
->area
.y
);
2892 resized
= (w
!= self
->area
.width
|| h
!= self
->area
.height
);
2894 oldw
= self
->area
.width
;
2895 oldh
= self
->area
.height
;
2896 RECT_SET(self
->area
, x
, y
, w
, h
);
2898 /* for app-requested resizes, always resize if 'resized' is true.
2899 for user-requested ones, only resize if final is true, or when
2900 resizing in redraw mode */
2901 send_resize_client
= ((!user
&& resized
) ||
2903 (resized
&& config_resize_redraw
))));
2905 /* if the client is enlarging, then resize the client before the frame */
2906 if (send_resize_client
&& (w
> oldw
|| h
> oldh
)) {
2907 XMoveResizeWindow(ob_display
, self
->window
,
2908 self
->frame
->size
.left
, self
->frame
->size
.top
,
2909 MAX(w
, oldw
), MAX(h
, oldh
));
2910 frame_adjust_client_area(self
->frame
);
2913 /* find the frame's dimensions and move/resize it */
2917 /* if decorations changed, then readjust everything for the frame */
2918 if (self
->decorations
!= fdecor
||
2919 self
->max_horz
!= fhorz
|| self
->max_vert
!= fvert
)
2921 fmoved
= fresized
= TRUE
;
2924 /* adjust the frame */
2925 if (fmoved
|| fresized
) {
2926 gulong ignore_start
;
2928 ignore_start
= event_start_ignore_all_enters();
2930 frame_adjust_area(self
->frame
, fmoved
, fresized
, FALSE
);
2933 event_end_ignore_all_enters(ignore_start
);
2936 if (!user
|| final
) {
2937 gint oldrx
= self
->root_pos
.x
;
2938 gint oldry
= self
->root_pos
.y
;
2939 /* we have reset the client to 0 border width, so don't include
2940 it in these coords */
2941 POINT_SET(self
->root_pos
,
2942 self
->frame
->area
.x
+ self
->frame
->size
.left
-
2944 self
->frame
->area
.y
+ self
->frame
->size
.top
-
2945 self
->border_width
);
2946 if (self
->root_pos
.x
!= oldrx
|| self
->root_pos
.y
!= oldry
)
2950 /* This is kinda tricky and should not be changed.. let me explain!
2952 When user = FALSE, then the request is coming from the application
2953 itself, and we are more strict about when to send a synthetic
2954 ConfigureNotify. We strictly follow the rules of the ICCCM sec 4.1.5
2955 in this case (if force_reply is true)
2957 When user = TRUE, then the request is coming from "us", like when we
2958 maximize a window or something. In this case we are more lenient. We
2959 used to follow the same rules as above, but _Java_ Swing can't handle
2960 this. So just to appease Swing, when user = TRUE, we always send
2961 a synthetic ConfigureNotify to give the window its root coordinates.
2963 if ((!user
&& !resized
&& (rootmoved
|| force_reply
)) ||
2964 (user
&& final
&& rootmoved
))
2968 event
.type
= ConfigureNotify
;
2969 event
.xconfigure
.display
= ob_display
;
2970 event
.xconfigure
.event
= self
->window
;
2971 event
.xconfigure
.window
= self
->window
;
2973 ob_debug("Sending ConfigureNotify to %s for %d,%d %dx%d\n",
2974 self
->title
, self
->root_pos
.x
, self
->root_pos
.y
, w
, h
);
2976 /* root window real coords */
2977 event
.xconfigure
.x
= self
->root_pos
.x
;
2978 event
.xconfigure
.y
= self
->root_pos
.y
;
2979 event
.xconfigure
.width
= w
;
2980 event
.xconfigure
.height
= h
;
2981 event
.xconfigure
.border_width
= self
->border_width
;
2982 event
.xconfigure
.above
= None
;
2983 event
.xconfigure
.override_redirect
= FALSE
;
2984 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
,
2985 FALSE
, StructureNotifyMask
, &event
);
2988 /* if the client is shrinking, then resize the frame before the client.
2990 both of these resize sections may run, because the top one only resizes
2991 in the direction that is growing
2993 if (send_resize_client
&& (w
<= oldw
|| h
<= oldh
)) {
2994 frame_adjust_client_area(self
->frame
);
2995 XMoveResizeWindow(ob_display
, self
->window
,
2996 self
->frame
->size
.left
, self
->frame
->size
.top
, w
, h
);
3002 void client_fullscreen(ObClient
*self
, gboolean fs
)
3006 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) || /* can't */
3007 self
->fullscreen
== fs
) return; /* already done */
3009 self
->fullscreen
= fs
;
3010 client_change_state(self
); /* change the state hints on the client */
3013 self
->pre_fullscreen_area
= self
->area
;
3014 /* if the window is maximized, its area isn't all that meaningful.
3015 save it's premax area instead. */
3016 if (self
->max_horz
) {
3017 self
->pre_fullscreen_area
.x
= self
->pre_max_area
.x
;
3018 self
->pre_fullscreen_area
.width
= self
->pre_max_area
.width
;
3020 if (self
->max_vert
) {
3021 self
->pre_fullscreen_area
.y
= self
->pre_max_area
.y
;
3022 self
->pre_fullscreen_area
.height
= self
->pre_max_area
.height
;
3025 /* these will help configure_full figure out where to fullscreen
3029 w
= self
->area
.width
;
3030 h
= self
->area
.height
;
3032 g_assert(self
->pre_fullscreen_area
.width
> 0 &&
3033 self
->pre_fullscreen_area
.height
> 0);
3035 x
= self
->pre_fullscreen_area
.x
;
3036 y
= self
->pre_fullscreen_area
.y
;
3037 w
= self
->pre_fullscreen_area
.width
;
3038 h
= self
->pre_fullscreen_area
.height
;
3039 RECT_SET(self
->pre_fullscreen_area
, 0, 0, 0, 0);
3042 ob_debug("Window %s going fullscreen (%d)\n",
3043 self
->title
, self
->fullscreen
);
3045 client_setup_decor_and_functions(self
, FALSE
);
3046 client_move_resize(self
, x
, y
, w
, h
);
3048 /* and adjust our layer/stacking. do this after resizing the window,
3049 and applying decorations, because windows which fill the screen are
3050 considered "fullscreen" and it affects their layer */
3051 client_calc_layer(self
);
3054 /* try focus us when we go into fullscreen mode */
3059 static void client_iconify_recursive(ObClient
*self
,
3060 gboolean iconic
, gboolean curdesk
,
3061 gboolean hide_animation
)
3064 gboolean changed
= FALSE
;
3067 if (self
->iconic
!= iconic
) {
3068 ob_debug("%sconifying window: 0x%lx\n", (iconic
? "I" : "Uni"),
3072 /* don't let non-normal windows iconify along with their parents
3074 if (client_normal(self
)) {
3075 self
->iconic
= iconic
;
3077 /* update the focus lists.. iconic windows go to the bottom of
3079 focus_order_to_bottom(self
);
3084 self
->iconic
= iconic
;
3086 if (curdesk
&& self
->desktop
!= screen_desktop
&&
3087 self
->desktop
!= DESKTOP_ALL
)
3088 client_set_desktop(self
, screen_desktop
, FALSE
, FALSE
);
3090 /* this puts it after the current focused window */
3091 focus_order_remove(self
);
3092 focus_order_add_new(self
);
3099 client_change_state(self
);
3100 if (config_animate_iconify
&& !hide_animation
)
3101 frame_begin_iconify_animation(self
->frame
, iconic
);
3102 /* do this after starting the animation so it doesn't flash */
3103 client_showhide(self
);
3106 /* iconify all direct transients, and deiconify all transients
3108 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3109 if (it
->data
!= self
)
3110 if (client_is_direct_child(self
, it
->data
) || !iconic
)
3111 client_iconify_recursive(it
->data
, iconic
, curdesk
,
3115 void client_iconify(ObClient
*self
, gboolean iconic
, gboolean curdesk
,
3116 gboolean hide_animation
)
3118 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
|| !iconic
) {
3119 /* move up the transient chain as far as possible first */
3120 self
= client_search_top_direct_parent(self
);
3121 client_iconify_recursive(self
, iconic
, curdesk
, hide_animation
);
3125 void client_maximize(ObClient
*self
, gboolean max
, gint dir
)
3129 g_assert(dir
== 0 || dir
== 1 || dir
== 2);
3130 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
)) return; /* can't */
3132 /* check if already done */
3134 if (dir
== 0 && self
->max_horz
&& self
->max_vert
) return;
3135 if (dir
== 1 && self
->max_horz
) return;
3136 if (dir
== 2 && self
->max_vert
) return;
3138 if (dir
== 0 && !self
->max_horz
&& !self
->max_vert
) return;
3139 if (dir
== 1 && !self
->max_horz
) return;
3140 if (dir
== 2 && !self
->max_vert
) return;
3143 /* these will help configure_full figure out which screen to fill with
3147 w
= self
->area
.width
;
3148 h
= self
->area
.height
;
3151 if ((dir
== 0 || dir
== 1) && !self
->max_horz
) { /* horz */
3152 RECT_SET(self
->pre_max_area
,
3153 self
->area
.x
, self
->pre_max_area
.y
,
3154 self
->area
.width
, self
->pre_max_area
.height
);
3156 if ((dir
== 0 || dir
== 2) && !self
->max_vert
) { /* vert */
3157 RECT_SET(self
->pre_max_area
,
3158 self
->pre_max_area
.x
, self
->area
.y
,
3159 self
->pre_max_area
.width
, self
->area
.height
);
3162 if ((dir
== 0 || dir
== 1) && self
->max_horz
) { /* horz */
3163 g_assert(self
->pre_max_area
.width
> 0);
3165 x
= self
->pre_max_area
.x
;
3166 w
= self
->pre_max_area
.width
;
3168 RECT_SET(self
->pre_max_area
, 0, self
->pre_max_area
.y
,
3169 0, self
->pre_max_area
.height
);
3171 if ((dir
== 0 || dir
== 2) && self
->max_vert
) { /* vert */
3172 g_assert(self
->pre_max_area
.height
> 0);
3174 y
= self
->pre_max_area
.y
;
3175 h
= self
->pre_max_area
.height
;
3177 RECT_SET(self
->pre_max_area
, self
->pre_max_area
.x
, 0,
3178 self
->pre_max_area
.width
, 0);
3182 if (dir
== 0 || dir
== 1) /* horz */
3183 self
->max_horz
= max
;
3184 if (dir
== 0 || dir
== 2) /* vert */
3185 self
->max_vert
= max
;
3187 client_change_state(self
); /* change the state hints on the client */
3189 client_setup_decor_and_functions(self
, FALSE
);
3190 client_move_resize(self
, x
, y
, w
, h
);
3193 void client_shade(ObClient
*self
, gboolean shade
)
3195 if ((!(self
->functions
& OB_CLIENT_FUNC_SHADE
) &&
3196 shade
) || /* can't shade */
3197 self
->shaded
== shade
) return; /* already done */
3199 self
->shaded
= shade
;
3200 client_change_state(self
);
3201 client_change_wm_state(self
); /* the window is being hidden/shown */
3202 /* resize the frame to just the titlebar */
3203 frame_adjust_area(self
->frame
, FALSE
, TRUE
, FALSE
);
3206 void client_close(ObClient
*self
)
3210 if (!(self
->functions
& OB_CLIENT_FUNC_CLOSE
)) return;
3212 /* in the case that the client provides no means to requesting that it
3213 close, we just kill it */
3214 if (!self
->delete_window
)
3218 XXX: itd be cool to do timeouts and shit here for killing the client's
3220 like... if the window is around after 5 seconds, then the close button
3221 turns a nice red, and if this function is called again, the client is
3225 ce
.xclient
.type
= ClientMessage
;
3226 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3227 ce
.xclient
.display
= ob_display
;
3228 ce
.xclient
.window
= self
->window
;
3229 ce
.xclient
.format
= 32;
3230 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_delete_window
;
3231 ce
.xclient
.data
.l
[1] = event_curtime
;
3232 ce
.xclient
.data
.l
[2] = 0l;
3233 ce
.xclient
.data
.l
[3] = 0l;
3234 ce
.xclient
.data
.l
[4] = 0l;
3235 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3238 void client_kill(ObClient
*self
)
3240 XKillClient(ob_display
, self
->window
);
3243 void client_hilite(ObClient
*self
, gboolean hilite
)
3245 if (self
->demands_attention
== hilite
)
3246 return; /* no change */
3248 /* don't allow focused windows to hilite */
3249 self
->demands_attention
= hilite
&& !client_focused(self
);
3250 if (self
->frame
!= NULL
) { /* if we're mapping, just set the state */
3251 if (self
->demands_attention
)
3252 frame_flash_start(self
->frame
);
3254 frame_flash_stop(self
->frame
);
3255 client_change_state(self
);
3259 void client_set_desktop_recursive(ObClient
*self
,
3267 if (target
!= self
->desktop
&& self
->type
!= OB_CLIENT_TYPE_DESKTOP
) {
3269 ob_debug("Setting desktop %u\n", target
+1);
3271 g_assert(target
< screen_num_desktops
|| target
== DESKTOP_ALL
);
3273 old
= self
->desktop
;
3274 self
->desktop
= target
;
3275 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, target
);
3276 /* the frame can display the current desktop state */
3277 frame_adjust_state(self
->frame
);
3278 /* 'move' the window to the new desktop */
3282 /* raise if it was not already on the desktop */
3283 if (old
!= DESKTOP_ALL
&& !dontraise
)
3284 stacking_raise(CLIENT_AS_WINDOW(self
));
3285 if (STRUT_EXISTS(self
->strut
))
3286 screen_update_areas();
3288 /* the new desktop's geometry may be different, so we may need to
3289 resize, for example if we are maximized */
3290 client_reconfigure(self
, FALSE
);
3293 /* move all transients */
3294 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3295 if (it
->data
!= self
)
3296 if (client_is_direct_child(self
, it
->data
))
3297 client_set_desktop_recursive(it
->data
, target
,
3298 donthide
, dontraise
);
3301 void client_set_desktop(ObClient
*self
, guint target
,
3302 gboolean donthide
, gboolean dontraise
)
3304 self
= client_search_top_direct_parent(self
);
3305 client_set_desktop_recursive(self
, target
, donthide
, dontraise
);
3308 gboolean
client_is_direct_child(ObClient
*parent
, ObClient
*child
)
3310 while (child
!= parent
&& (child
= client_direct_parent(child
)));
3311 return child
== parent
;
3314 ObClient
*client_search_modal_child(ObClient
*self
)
3319 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
3320 ObClient
*c
= it
->data
;
3321 if ((ret
= client_search_modal_child(c
))) return ret
;
3322 if (c
->modal
) return c
;
3327 gboolean
client_validate(ObClient
*self
)
3331 XSync(ob_display
, FALSE
); /* get all events on the server */
3333 if (XCheckTypedWindowEvent(ob_display
, self
->window
, DestroyNotify
, &e
) ||
3334 XCheckTypedWindowEvent(ob_display
, self
->window
, UnmapNotify
, &e
)) {
3335 XPutBackEvent(ob_display
, &e
);
3342 void client_set_wm_state(ObClient
*self
, glong state
)
3344 if (state
== self
->wmstate
) return; /* no change */
3348 client_iconify(self
, TRUE
, TRUE
, FALSE
);
3351 client_iconify(self
, FALSE
, TRUE
, FALSE
);
3356 void client_set_state(ObClient
*self
, Atom action
, glong data1
, glong data2
)
3358 gboolean shaded
= self
->shaded
;
3359 gboolean fullscreen
= self
->fullscreen
;
3360 gboolean undecorated
= self
->undecorated
;
3361 gboolean max_horz
= self
->max_horz
;
3362 gboolean max_vert
= self
->max_vert
;
3363 gboolean modal
= self
->modal
;
3364 gboolean iconic
= self
->iconic
;
3365 gboolean demands_attention
= self
->demands_attention
;
3366 gboolean above
= self
->above
;
3367 gboolean below
= self
->below
;
3370 if (!(action
== prop_atoms
.net_wm_state_add
||
3371 action
== prop_atoms
.net_wm_state_remove
||
3372 action
== prop_atoms
.net_wm_state_toggle
))
3373 /* an invalid action was passed to the client message, ignore it */
3376 for (i
= 0; i
< 2; ++i
) {
3377 Atom state
= i
== 0 ? data1
: data2
;
3379 if (!state
) continue;
3381 /* if toggling, then pick whether we're adding or removing */
3382 if (action
== prop_atoms
.net_wm_state_toggle
) {
3383 if (state
== prop_atoms
.net_wm_state_modal
)
3384 action
= modal
? prop_atoms
.net_wm_state_remove
:
3385 prop_atoms
.net_wm_state_add
;
3386 else if (state
== prop_atoms
.net_wm_state_maximized_vert
)
3387 action
= self
->max_vert
? prop_atoms
.net_wm_state_remove
:
3388 prop_atoms
.net_wm_state_add
;
3389 else if (state
== prop_atoms
.net_wm_state_maximized_horz
)
3390 action
= self
->max_horz
? prop_atoms
.net_wm_state_remove
:
3391 prop_atoms
.net_wm_state_add
;
3392 else if (state
== prop_atoms
.net_wm_state_shaded
)
3393 action
= shaded
? prop_atoms
.net_wm_state_remove
:
3394 prop_atoms
.net_wm_state_add
;
3395 else if (state
== prop_atoms
.net_wm_state_skip_taskbar
)
3396 action
= self
->skip_taskbar
?
3397 prop_atoms
.net_wm_state_remove
:
3398 prop_atoms
.net_wm_state_add
;
3399 else if (state
== prop_atoms
.net_wm_state_skip_pager
)
3400 action
= self
->skip_pager
?
3401 prop_atoms
.net_wm_state_remove
:
3402 prop_atoms
.net_wm_state_add
;
3403 else if (state
== prop_atoms
.net_wm_state_hidden
)
3404 action
= self
->iconic
?
3405 prop_atoms
.net_wm_state_remove
:
3406 prop_atoms
.net_wm_state_add
;
3407 else if (state
== prop_atoms
.net_wm_state_fullscreen
)
3408 action
= fullscreen
?
3409 prop_atoms
.net_wm_state_remove
:
3410 prop_atoms
.net_wm_state_add
;
3411 else if (state
== prop_atoms
.net_wm_state_above
)
3412 action
= self
->above
? prop_atoms
.net_wm_state_remove
:
3413 prop_atoms
.net_wm_state_add
;
3414 else if (state
== prop_atoms
.net_wm_state_below
)
3415 action
= self
->below
? prop_atoms
.net_wm_state_remove
:
3416 prop_atoms
.net_wm_state_add
;
3417 else if (state
== prop_atoms
.net_wm_state_demands_attention
)
3418 action
= self
->demands_attention
?
3419 prop_atoms
.net_wm_state_remove
:
3420 prop_atoms
.net_wm_state_add
;
3421 else if (state
== prop_atoms
.ob_wm_state_undecorated
)
3422 action
= undecorated
? prop_atoms
.net_wm_state_remove
:
3423 prop_atoms
.net_wm_state_add
;
3426 if (action
== prop_atoms
.net_wm_state_add
) {
3427 if (state
== prop_atoms
.net_wm_state_modal
) {
3429 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3431 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3433 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3435 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3436 self
->skip_taskbar
= TRUE
;
3437 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3438 self
->skip_pager
= TRUE
;
3439 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3441 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3443 } else if (state
== prop_atoms
.net_wm_state_above
) {
3446 } else if (state
== prop_atoms
.net_wm_state_below
) {
3449 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3450 demands_attention
= TRUE
;
3451 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3455 } else { /* action == prop_atoms.net_wm_state_remove */
3456 if (state
== prop_atoms
.net_wm_state_modal
) {
3458 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3460 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3462 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3464 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3465 self
->skip_taskbar
= FALSE
;
3466 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3467 self
->skip_pager
= FALSE
;
3468 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3470 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3472 } else if (state
== prop_atoms
.net_wm_state_above
) {
3474 } else if (state
== prop_atoms
.net_wm_state_below
) {
3476 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3477 demands_attention
= FALSE
;
3478 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3479 undecorated
= FALSE
;
3484 if (max_horz
!= self
->max_horz
|| max_vert
!= self
->max_vert
) {
3485 if (max_horz
!= self
->max_horz
&& max_vert
!= self
->max_vert
) {
3487 if (max_horz
== max_vert
) { /* both going the same way */
3488 client_maximize(self
, max_horz
, 0);
3490 client_maximize(self
, max_horz
, 1);
3491 client_maximize(self
, max_vert
, 2);
3495 if (max_horz
!= self
->max_horz
)
3496 client_maximize(self
, max_horz
, 1);
3498 client_maximize(self
, max_vert
, 2);
3501 /* change fullscreen state before shading, as it will affect if the window
3503 if (fullscreen
!= self
->fullscreen
)
3504 client_fullscreen(self
, fullscreen
);
3505 if (shaded
!= self
->shaded
)
3506 client_shade(self
, shaded
);
3507 if (undecorated
!= self
->undecorated
)
3508 client_set_undecorated(self
, undecorated
);
3509 if (above
!= self
->above
|| below
!= self
->below
) {
3510 self
->above
= above
;
3511 self
->below
= below
;
3512 client_calc_layer(self
);
3515 if (modal
!= self
->modal
) {
3516 self
->modal
= modal
;
3517 /* when a window changes modality, then its stacking order with its
3518 transients needs to change */
3519 stacking_raise(CLIENT_AS_WINDOW(self
));
3521 /* it also may get focused. if something is focused that shouldn't
3522 be focused anymore, then move the focus */
3523 if (focus_client
&& client_focus_target(focus_client
) != focus_client
)
3524 client_focus(focus_client
);
3527 if (iconic
!= self
->iconic
)
3528 client_iconify(self
, iconic
, FALSE
, FALSE
);
3530 if (demands_attention
!= self
->demands_attention
)
3531 client_hilite(self
, demands_attention
);
3533 client_change_state(self
); /* change the hint to reflect these changes */
3536 ObClient
*client_focus_target(ObClient
*self
)
3538 ObClient
*child
= NULL
;
3540 child
= client_search_modal_child(self
);
3541 if (child
) return child
;
3545 gboolean
client_can_focus(ObClient
*self
)
3547 /* choose the correct target */
3548 self
= client_focus_target(self
);
3550 if (!self
->frame
->visible
)
3553 if (!(self
->can_focus
|| self
->focus_notify
))
3559 gboolean
client_focus(ObClient
*self
)
3561 /* we might not focus this window, so if we have modal children which would
3562 be focused instead, bring them to this desktop */
3563 client_bring_modal_windows(self
);
3565 /* choose the correct target */
3566 self
= client_focus_target(self
);
3568 if (!client_can_focus(self
)) {
3569 ob_debug_type(OB_DEBUG_FOCUS
,
3570 "Client %s can't be focused\n", self
->title
);
3574 ob_debug_type(OB_DEBUG_FOCUS
,
3575 "Focusing client \"%s\" (0x%x) at time %u\n",
3576 self
->title
, self
->window
, event_curtime
);
3578 /* if using focus_delay, stop the timer now so that focus doesn't
3580 event_halt_focus_delay();
3582 /* if there is a grab going on, then we need to cancel it. if we move
3583 focus during the grab, applications will get NotifyWhileGrabbed events
3586 actions should not rely on being able to move focus during an
3589 event_cancel_all_key_grabs();
3591 xerror_set_ignore(TRUE
);
3592 xerror_occured
= FALSE
;
3594 if (self
->can_focus
) {
3595 /* This can cause a BadMatch error with CurrentTime, or if an app
3596 passed in a bad time for _NET_WM_ACTIVE_WINDOW. */
3597 XSetInputFocus(ob_display
, self
->window
, RevertToPointerRoot
,
3601 if (self
->focus_notify
) {
3603 ce
.xclient
.type
= ClientMessage
;
3604 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3605 ce
.xclient
.display
= ob_display
;
3606 ce
.xclient
.window
= self
->window
;
3607 ce
.xclient
.format
= 32;
3608 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_take_focus
;
3609 ce
.xclient
.data
.l
[1] = event_curtime
;
3610 ce
.xclient
.data
.l
[2] = 0l;
3611 ce
.xclient
.data
.l
[3] = 0l;
3612 ce
.xclient
.data
.l
[4] = 0l;
3613 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3616 xerror_set_ignore(FALSE
);
3618 ob_debug_type(OB_DEBUG_FOCUS
, "Error focusing? %d\n", xerror_occured
);
3619 return !xerror_occured
;
3622 static void client_present(ObClient
*self
, gboolean here
, gboolean raise
,
3625 if (client_normal(self
) && screen_showing_desktop
)
3626 screen_show_desktop(FALSE
, self
);
3628 client_iconify(self
, FALSE
, here
, FALSE
);
3629 if (self
->desktop
!= DESKTOP_ALL
&&
3630 self
->desktop
!= screen_desktop
)
3633 client_set_desktop(self
, screen_desktop
, FALSE
, TRUE
);
3635 screen_set_desktop(self
->desktop
, FALSE
);
3636 } else if (!self
->frame
->visible
)
3637 /* if its not visible for other reasons, then don't mess
3640 if (self
->shaded
&& unshade
)
3641 client_shade(self
, FALSE
);
3643 stacking_raise(CLIENT_AS_WINDOW(self
));
3648 void client_activate(ObClient
*self
, gboolean here
, gboolean raise
,
3649 gboolean unshade
, gboolean user
)
3651 guint32 last_time
= focus_client
? focus_client
->user_time
: CurrentTime
;
3652 gboolean allow
= FALSE
;
3654 /* if the currently focused app doesn't set a user_time, then it can't
3655 benefit from any focus stealing prevention.
3657 if the timestamp is missing in the request then let it go through
3658 even if it is source=app, because EVERY APPLICATION DOES THIS because
3659 GTK IS VERY BUGGY AND HARDCODES source=application... WHY!?
3661 if (!last_time
|| !event_curtime
)
3663 /* otherwise, if they didn't give a time stamp or if it is too old, they
3666 allow
= event_time_after(event_curtime
, last_time
);
3668 ob_debug_type(OB_DEBUG_FOCUS
,
3669 "Want to activate window 0x%x with time %u (last time %u), "
3670 "source=%s allowing? %d\n",
3671 self
->window
, event_curtime
, last_time
,
3672 (user
? "user" : "application"), allow
);
3675 client_present(self
, here
, raise
, unshade
);
3677 /* don't focus it but tell the user it wants attention */
3678 client_hilite(self
, TRUE
);
3681 static void client_bring_windows_recursive(ObClient
*self
,
3689 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3690 client_bring_windows_recursive(it
->data
, desktop
,
3691 helpers
, modals
, iconic
);
3693 if (((helpers
&& client_helper(self
)) ||
3694 (modals
&& self
->modal
)) &&
3695 ((self
->desktop
!= desktop
&& self
->desktop
!= DESKTOP_ALL
) ||
3696 (iconic
&& self
->iconic
)))
3698 if (iconic
&& self
->iconic
)
3699 client_iconify(self
, FALSE
, TRUE
, FALSE
);
3701 client_set_desktop(self
, desktop
, FALSE
, FALSE
);
3705 void client_bring_helper_windows(ObClient
*self
)
3707 client_bring_windows_recursive(self
, self
->desktop
, TRUE
, FALSE
, FALSE
);
3710 void client_bring_modal_windows(ObClient
*self
)
3712 client_bring_windows_recursive(self
, self
->desktop
, FALSE
, TRUE
, TRUE
);
3715 gboolean
client_focused(ObClient
*self
)
3717 return self
== focus_client
;
3720 static ObClientIcon
* client_icon_recursive(ObClient
*self
, gint w
, gint h
)
3723 gulong min_diff
, min_i
;
3725 if (!self
->nicons
) {
3726 ObClientIcon
*parent
= NULL
;
3729 for (it
= self
->parents
; it
; it
= g_slist_next(it
)) {
3730 ObClient
*c
= it
->data
;
3731 if ((parent
= client_icon_recursive(c
, w
, h
)))
3738 /* some kind of crappy approximation to find the icon closest in size to
3739 what we requested, but icons are generally all the same ratio as
3740 eachother so it's good enough. */
3742 min_diff
= ABS(self
->icons
[0].width
- w
) + ABS(self
->icons
[0].height
- h
);
3745 for (i
= 1; i
< self
->nicons
; ++i
) {
3748 diff
= ABS(self
->icons
[i
].width
- w
) + ABS(self
->icons
[i
].height
- h
);
3749 if (diff
< min_diff
) {
3754 return &self
->icons
[min_i
];
3757 const ObClientIcon
* client_icon(ObClient
*self
, gint w
, gint h
)
3760 static ObClientIcon deficon
;
3762 if (!(ret
= client_icon_recursive(self
, w
, h
))) {
3763 deficon
.width
= deficon
.height
= 48;
3764 deficon
.data
= ob_rr_theme
->def_win_icon
;
3770 void client_set_layer(ObClient
*self
, gint layer
)
3774 self
->above
= FALSE
;
3775 } else if (layer
== 0) {
3776 self
->below
= self
->above
= FALSE
;
3778 self
->below
= FALSE
;
3781 client_calc_layer(self
);
3782 client_change_state(self
); /* reflect this in the state hints */
3785 void client_set_undecorated(ObClient
*self
, gboolean undecorated
)
3787 if (self
->undecorated
!= undecorated
&&
3788 /* don't let it undecorate if the function is missing, but let
3790 (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
|| !undecorated
))
3792 self
->undecorated
= undecorated
;
3793 client_setup_decor_and_functions(self
, TRUE
);
3794 client_change_state(self
); /* reflect this in the state hints */
3798 guint
client_monitor(ObClient
*self
)
3800 return screen_find_monitor(&self
->frame
->area
);
3803 ObClient
*client_direct_parent(ObClient
*self
)
3805 if (!self
->parents
) return NULL
;
3806 if (self
->transient_for_group
) return NULL
;
3807 return self
->parents
->data
;
3810 ObClient
*client_search_top_direct_parent(ObClient
*self
)
3813 while ((p
= client_direct_parent(self
))) self
= p
;
3817 static GSList
*client_search_all_top_parents_internal(ObClient
*self
,
3819 ObStackingLayer layer
)
3824 /* move up the direct transient chain as far as possible */
3825 while ((p
= client_direct_parent(self
)) &&
3826 (!bylayer
|| p
->layer
== layer
))
3830 ret
= g_slist_prepend(NULL
, self
);
3832 ret
= g_slist_copy(self
->parents
);
3837 GSList
*client_search_all_top_parents(ObClient
*self
)
3839 return client_search_all_top_parents_internal(self
, FALSE
, 0);
3842 GSList
*client_search_all_top_parents_layer(ObClient
*self
)
3844 return client_search_all_top_parents_internal(self
, TRUE
, self
->layer
);
3847 ObClient
*client_search_focus_parent(ObClient
*self
)
3851 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
3852 if (client_focused(it
->data
)) return it
->data
;
3857 ObClient
*client_search_parent(ObClient
*self
, ObClient
*search
)
3861 for (it
= self
->parents
; it
; it
= g_slist_next(it
))
3862 if (it
->data
== search
) return search
;
3867 ObClient
*client_search_transient(ObClient
*self
, ObClient
*search
)
3871 for (sit
= self
->transients
; sit
; sit
= g_slist_next(sit
)) {
3872 if (sit
->data
== search
)
3874 if (client_search_transient(sit
->data
, search
))
3880 void client_find_edge_directional(ObClient
*self
, ObDirection dir
,
3881 gint my_head
, gint my_size
,
3882 gint my_edge_start
, gint my_edge_size
,
3883 gint
*dest
, gboolean
*near_edge
)
3889 a
= screen_area(self
->desktop
, SCREEN_AREA_ALL_MONITORS
,
3890 &self
->frame
->area
);
3891 mon
= screen_area(self
->desktop
, SCREEN_AREA_ONE_MONITOR
,
3892 &self
->frame
->area
);
3895 case OB_DIRECTION_NORTH
:
3896 if (my_head
>= RECT_TOP(*mon
))
3897 edge
= RECT_TOP(*mon
) - 1;
3899 edge
= RECT_TOP(*a
) - 1;
3901 case OB_DIRECTION_SOUTH
:
3902 if (my_head
<= RECT_BOTTOM(*mon
))
3903 edge
= RECT_BOTTOM(*mon
) + 1;
3905 edge
= RECT_BOTTOM(*a
) + 1;
3907 case OB_DIRECTION_EAST
:
3908 if (my_head
<= RECT_RIGHT(*mon
))
3909 edge
= RECT_RIGHT(*mon
) + 1;
3911 edge
= RECT_RIGHT(*a
) + 1;
3913 case OB_DIRECTION_WEST
:
3914 if (my_head
>= RECT_LEFT(*mon
))
3915 edge
= RECT_LEFT(*mon
) - 1;
3917 edge
= RECT_LEFT(*a
) - 1;
3920 g_assert_not_reached();
3922 /* default to the far edge, then narrow it down */
3926 for(it
= client_list
; it
; it
= g_list_next(it
)) {
3927 ObClient
*cur
= it
->data
;
3928 gint edge_start
, edge_size
, head
, tail
;
3929 gboolean skip_head
= FALSE
, skip_tail
= FALSE
;
3931 /* skip windows to not bump into */
3936 if (self
->desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
&&
3937 cur
->desktop
!= screen_desktop
)
3940 ob_debug("trying window %s\n", cur
->title
);
3943 case OB_DIRECTION_NORTH
:
3944 case OB_DIRECTION_SOUTH
:
3945 edge_start
= cur
->frame
->area
.x
;
3946 edge_size
= cur
->frame
->area
.width
;
3948 case OB_DIRECTION_EAST
:
3949 case OB_DIRECTION_WEST
:
3950 edge_start
= cur
->frame
->area
.y
;
3951 edge_size
= cur
->frame
->area
.height
;
3954 g_assert_not_reached();
3957 /* do we collide with this window? */
3958 if (!RANGES_INTERSECT(my_edge_start
, my_edge_size
,
3959 edge_start
, edge_size
))
3963 case OB_DIRECTION_NORTH
:
3964 head
= RECT_BOTTOM(cur
->frame
->area
);
3965 tail
= RECT_TOP(cur
->frame
->area
);
3967 case OB_DIRECTION_SOUTH
:
3968 head
= RECT_TOP(cur
->frame
->area
);
3969 tail
= RECT_BOTTOM(cur
->frame
->area
);
3971 case OB_DIRECTION_EAST
:
3972 head
= RECT_LEFT(cur
->frame
->area
);
3973 tail
= RECT_RIGHT(cur
->frame
->area
);
3975 case OB_DIRECTION_WEST
:
3976 head
= RECT_RIGHT(cur
->frame
->area
);
3977 tail
= RECT_LEFT(cur
->frame
->area
);
3980 g_assert_not_reached();
3984 case OB_DIRECTION_NORTH
:
3985 case OB_DIRECTION_WEST
:
3986 if (my_head
<= head
+ 1)
3988 if (my_head
+ my_size
- 1 <= tail
+ 1)
3992 if (tail
- my_size
< *dest
)
3995 case OB_DIRECTION_SOUTH
:
3996 case OB_DIRECTION_EAST
:
3997 if (my_head
>= head
- 1)
3999 if (my_head
- my_size
+ 1 >= tail
- 1)
4003 if (tail
+ my_size
> *dest
)
4007 g_assert_not_reached();
4010 ob_debug("my head %d size %d\n", my_head
, my_size
);
4011 ob_debug("head %d tail %d deest %d\n", head
, tail
, *dest
);
4013 ob_debug("using near edge %d\n", head
);
4017 else if (!skip_tail
) {
4018 ob_debug("using far edge %d\n", tail
);
4025 void client_find_move_directional(ObClient
*self
, ObDirection dir
,
4029 gint e
, e_start
, e_size
;
4033 case OB_DIRECTION_EAST
:
4034 head
= RECT_RIGHT(self
->frame
->area
);
4035 size
= self
->frame
->area
.width
;
4036 e_start
= RECT_TOP(self
->frame
->area
);
4037 e_size
= self
->frame
->area
.height
;
4039 case OB_DIRECTION_WEST
:
4040 head
= RECT_LEFT(self
->frame
->area
);
4041 size
= self
->frame
->area
.width
;
4042 e_start
= RECT_TOP(self
->frame
->area
);
4043 e_size
= self
->frame
->area
.height
;
4045 case OB_DIRECTION_NORTH
:
4046 head
= RECT_TOP(self
->frame
->area
);
4047 size
= self
->frame
->area
.height
;
4048 e_start
= RECT_LEFT(self
->frame
->area
);
4049 e_size
= self
->frame
->area
.width
;
4051 case OB_DIRECTION_SOUTH
:
4052 head
= RECT_BOTTOM(self
->frame
->area
);
4053 size
= self
->frame
->area
.height
;
4054 e_start
= RECT_LEFT(self
->frame
->area
);
4055 e_size
= self
->frame
->area
.width
;
4058 g_assert_not_reached();
4061 client_find_edge_directional(self
, dir
, head
, size
,
4062 e_start
, e_size
, &e
, &near
);
4063 *x
= self
->frame
->area
.x
;
4064 *y
= self
->frame
->area
.y
;
4066 case OB_DIRECTION_EAST
:
4067 if (near
) e
-= self
->frame
->area
.width
;
4071 case OB_DIRECTION_WEST
:
4073 else e
-= self
->frame
->area
.width
;
4076 case OB_DIRECTION_NORTH
:
4078 else e
-= self
->frame
->area
.height
;
4081 case OB_DIRECTION_SOUTH
:
4082 if (near
) e
-= self
->frame
->area
.height
;
4087 g_assert_not_reached();
4089 frame_frame_gravity(self
->frame
, x
, y
);
4092 void client_find_resize_directional(ObClient
*self
, ObDirection side
,
4094 gint
*x
, gint
*y
, gint
*w
, gint
*h
)
4097 gint e
, e_start
, e_size
, delta
;
4102 case OB_DIRECTION_EAST
:
4103 head
= RECT_RIGHT(self
->frame
->area
) + (self
->size_inc
.width
- 1);
4104 size
= self
->frame
->area
.width
;
4105 e_start
= RECT_TOP(self
->frame
->area
);
4106 e_size
= self
->frame
->area
.height
;
4107 dir
= grow
? OB_DIRECTION_EAST
: OB_DIRECTION_WEST
;
4109 case OB_DIRECTION_WEST
:
4110 head
= RECT_LEFT(self
->frame
->area
) - (self
->size_inc
.width
- 1);
4111 size
= self
->frame
->area
.width
;
4112 e_start
= RECT_TOP(self
->frame
->area
);
4113 e_size
= self
->frame
->area
.height
;
4114 dir
= grow
? OB_DIRECTION_WEST
: OB_DIRECTION_EAST
;
4116 case OB_DIRECTION_NORTH
:
4117 head
= RECT_TOP(self
->frame
->area
) - (self
->size_inc
.height
- 1);
4118 size
= self
->frame
->area
.height
;
4119 e_start
= RECT_LEFT(self
->frame
->area
);
4120 e_size
= self
->frame
->area
.width
;
4121 dir
= grow
? OB_DIRECTION_NORTH
: OB_DIRECTION_SOUTH
;
4123 case OB_DIRECTION_SOUTH
:
4124 head
= RECT_BOTTOM(self
->frame
->area
) + (self
->size_inc
.height
- 1);
4125 size
= self
->frame
->area
.height
;
4126 e_start
= RECT_LEFT(self
->frame
->area
);
4127 e_size
= self
->frame
->area
.width
;
4128 dir
= grow
? OB_DIRECTION_SOUTH
: OB_DIRECTION_NORTH
;
4131 g_assert_not_reached();
4134 client_find_edge_directional(self
, dir
, head
, size
,
4135 e_start
, e_size
, &e
, &near
);
4136 *x
= self
->frame
->area
.x
;
4137 *y
= self
->frame
->area
.y
;
4138 *w
= self
->frame
->area
.width
;
4139 *h
= self
->frame
->area
.height
;
4141 case OB_DIRECTION_EAST
:
4143 delta
= e
- RECT_RIGHT(self
->frame
->area
);
4146 case OB_DIRECTION_WEST
:
4148 delta
= RECT_LEFT(self
->frame
->area
) - e
;
4152 case OB_DIRECTION_NORTH
:
4154 delta
= RECT_TOP(self
->frame
->area
) - e
;
4158 case OB_DIRECTION_SOUTH
:
4160 delta
= e
- RECT_BOTTOM(self
->frame
->area
);
4164 g_assert_not_reached();
4166 frame_frame_gravity(self
->frame
, x
, y
);
4167 *w
-= self
->frame
->size
.left
+ self
->frame
->size
.right
;
4168 *h
-= self
->frame
->size
.top
+ self
->frame
->size
.bottom
;
4171 ObClient
* client_under_pointer()
4175 ObClient
*ret
= NULL
;
4177 if (screen_pointer_pos(&x
, &y
)) {
4178 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
4179 if (WINDOW_IS_CLIENT(it
->data
)) {
4180 ObClient
*c
= WINDOW_AS_CLIENT(it
->data
);
4181 if (c
->frame
->visible
&&
4182 /* check the desktop, this is done during desktop
4183 switching and windows are shown/hidden status is not
4185 (c
->desktop
== screen_desktop
||
4186 c
->desktop
== DESKTOP_ALL
) &&
4187 /* ignore all animating windows */
4188 !frame_iconify_animating(c
->frame
) &&
4189 RECT_CONTAINS(c
->frame
->area
, x
, y
))
4200 gboolean
client_has_group_siblings(ObClient
*self
)
4202 return self
->group
&& self
->group
->members
->next
;
4205 ObClientIcon
*client_thumbnail(ObClient
*self
, gint wantw
, gint wanth
)
4211 if (!self
->frame
->pixmap
) return NULL
;
4212 if (!RrPixmapToRGBA(ob_rr_inst
, self
->frame
->pixmap
, None
, &w
, &h
, &data
))
4215 /* resize the thumbnail (within aspect ratio) to the given sizes */
4217 ret
= g_new(ObClientIcon
, 1);
4224 void clienticon_free(ObClientIcon
*ci
)