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 static void client_restore_session_state(ObClient
*self
);
83 static gboolean
client_restore_session_stacking(ObClient
*self
);
84 static ObAppSettings
*client_get_settings_state(ObClient
*self
);
85 static void client_update_transient_tree(ObClient
*self
,
86 ObGroup
*oldgroup
, ObGroup
*newgroup
,
89 static void client_present(ObClient
*self
, gboolean here
, gboolean raise
);
90 static GSList
*client_search_all_top_parents_internal(ObClient
*self
,
92 ObStackingLayer layer
);
93 static void client_call_notifies(ObClient
*self
, GSList
*list
);
95 void client_startup(gboolean reconfig
)
102 void client_shutdown(gboolean reconfig
)
104 if (reconfig
) return;
107 static void client_call_notifies(ObClient
*self
, GSList
*list
)
111 for (it
= list
; it
; it
= g_slist_next(it
)) {
112 ClientCallback
*d
= it
->data
;
113 d
->func(self
, d
->data
);
117 void client_add_destroy_notify(ObClientCallback func
, gpointer data
)
119 ClientCallback
*d
= g_new(ClientCallback
, 1);
122 client_destroy_notifies
= g_slist_prepend(client_destroy_notifies
, d
);
125 void client_remove_destroy_notify(ObClientCallback func
)
129 for (it
= client_destroy_notifies
; it
; it
= g_slist_next(it
)) {
130 ClientCallback
*d
= it
->data
;
131 if (d
->func
== func
) {
133 client_destroy_notifies
=
134 g_slist_delete_link(client_destroy_notifies
, it
);
140 void client_set_list()
142 Window
*windows
, *win_it
;
144 guint size
= g_list_length(client_list
);
146 /* create an array of the window ids */
148 windows
= g_new(Window
, size
);
150 for (it
= client_list
; it
; it
= g_list_next(it
), ++win_it
)
151 *win_it
= ((ObClient
*)it
->data
)->window
;
155 PROP_SETA32(RootWindow(ob_display
, ob_screen
),
156 net_client_list
, window
, (gulong
*)windows
, size
);
165 void client_foreach_transient(ObClient *self, ObClientForeachFunc func, gpointer data)
169 for (it = self->transients; it; it = g_slist_next(it)) {
170 if (!func(it->data, data)) return;
171 client_foreach_transient(it->data, func, data);
175 void client_foreach_ancestor(ObClient *self, ObClientForeachFunc func, gpointer data)
177 if (self->transient_for) {
178 if (self->transient_for != OB_TRAN_GROUP) {
179 if (!func(self->transient_for, data)) return;
180 client_foreach_ancestor(self->transient_for, func, data);
184 for (it = self->group->members; it; it = g_slist_next(it))
185 if (it->data != self &&
186 !((ObClient*)it->data)->transient_for) {
187 if (!func(it->data, data)) return;
188 client_foreach_ancestor(it->data, func, data);
195 void client_manage_all()
200 XWindowAttributes attrib
;
202 XQueryTree(ob_display
, RootWindow(ob_display
, ob_screen
),
203 &w
, &w
, &children
, &nchild
);
205 /* remove all icon windows from the list */
206 for (i
= 0; i
< nchild
; i
++) {
207 if (children
[i
] == None
) continue;
208 wmhints
= XGetWMHints(ob_display
, children
[i
]);
210 if ((wmhints
->flags
& IconWindowHint
) &&
211 (wmhints
->icon_window
!= children
[i
]))
212 for (j
= 0; j
< nchild
; j
++)
213 if (children
[j
] == wmhints
->icon_window
) {
221 for (i
= 0; i
< nchild
; ++i
) {
222 if (children
[i
] == None
)
224 if (XGetWindowAttributes(ob_display
, children
[i
], &attrib
)) {
225 if (attrib
.override_redirect
) continue;
227 if (attrib
.map_state
!= IsUnmapped
)
228 client_manage(children
[i
]);
234 void client_manage(Window window
)
238 XWindowAttributes attrib
;
239 XSetWindowAttributes attrib_set
;
241 gboolean activate
= FALSE
;
242 ObAppSettings
*settings
;
247 /* check if it has already been unmapped by the time we started
248 mapping. the grab does a sync so we don't have to here */
249 if (XCheckTypedWindowEvent(ob_display
, window
, DestroyNotify
, &e
) ||
250 XCheckTypedWindowEvent(ob_display
, window
, UnmapNotify
, &e
))
252 XPutBackEvent(ob_display
, &e
);
254 ob_debug("Trying to manage unmapped window. Aborting that.\n");
256 return; /* don't manage it */
259 /* make sure it isn't an override-redirect window */
260 if (!XGetWindowAttributes(ob_display
, window
, &attrib
) ||
261 attrib
.override_redirect
)
264 return; /* don't manage it */
267 /* is the window a docking app */
268 if ((wmhint
= XGetWMHints(ob_display
, window
))) {
269 if ((wmhint
->flags
& StateHint
) &&
270 wmhint
->initial_state
== WithdrawnState
)
272 dock_add(window
, wmhint
);
280 ob_debug("Managing window: 0x%lx\n", window
);
282 /* choose the events we want to receive on the CLIENT window */
283 attrib_set
.event_mask
= CLIENT_EVENTMASK
;
284 attrib_set
.do_not_propagate_mask
= CLIENT_NOPROPAGATEMASK
;
285 XChangeWindowAttributes(ob_display
, window
,
286 CWEventMask
|CWDontPropagate
, &attrib_set
);
288 /* create the ObClient struct, and populate it from the hints on the
290 self
= g_new0(ObClient
, 1);
291 self
->obwin
.type
= Window_Client
;
292 self
->window
= window
;
294 /* non-zero defaults */
295 self
->wmstate
= WithdrawnState
; /* make sure it gets updated first time */
296 self
->gravity
= NorthWestGravity
;
297 self
->desktop
= screen_num_desktops
; /* always an invalid value */
298 self
->user_time
= focus_client
? focus_client
->user_time
: CurrentTime
;
300 /* get all the stuff off the window */
301 client_get_all(self
, TRUE
);
303 /* specify that if we exit, the window should not be destroyed and
304 should be reparented back to root automatically */
305 XChangeSaveSet(ob_display
, window
, SetModeInsert
);
307 /* create the decoration frame for the client window */
308 self
->frame
= frame_new(self
);
310 frame_grab_client(self
->frame
);
312 /* we've grabbed everything and set everything that we need to at mapping
316 /* per-app settings override stuff from client_get_all, and return the
317 settings for other uses too. the returned settings is a shallow copy,
318 that needs to be freed with g_free(). */
319 settings
= client_get_settings_state(self
);
320 /* the session should get the last say thought */
321 client_restore_session_state(self
);
323 /* now we have all of the window's information so we can set this up */
324 client_setup_decor_and_functions(self
);
327 Time t
= sn_app_started(self
->startup_id
, self
->class);
328 if (t
) self
->user_time
= t
;
331 /* do this after we have a frame.. it uses the frame to help determine the
332 WM_STATE to apply. */
333 client_change_state(self
);
335 /* add ourselves to the focus order */
336 focus_order_add_new(self
);
338 /* do this to add ourselves to the stacking list in a non-intrusive way */
339 client_calc_layer(self
);
341 /* focus the new window? */
342 if (ob_state() != OB_STATE_STARTING
&&
343 (!self
->session
|| self
->session
->focused
) &&
345 /* this means focus=true for window is same as config_focus_new=true */
346 ((config_focus_new
|| (settings
&& settings
->focus
== 1)) ||
347 client_search_focus_tree_full(self
)) &&
348 /* this checks for focus=false for the window */
349 (!settings
|| settings
->focus
!= 0) &&
350 /* note the check against Type_Normal/Dialog, not client_normal(self),
351 which would also include other types. in this case we want more
352 strict rules for focus */
353 (self
->type
== OB_CLIENT_TYPE_NORMAL
||
354 self
->type
== OB_CLIENT_TYPE_DIALOG
))
359 /* adjust the frame to the client's size before showing or placing
361 frame_adjust_area(self
->frame
, FALSE
, TRUE
, FALSE
);
362 frame_adjust_client_area(self
->frame
);
364 /* where the frame was placed is where the window was originally */
365 placex
= self
->area
.x
;
366 placey
= self
->area
.y
;
368 /* figure out placement for the window if the window is new */
369 if (ob_state() == OB_STATE_RUNNING
) {
372 ob_debug("Positioned: %s @ %d %d\n",
373 (!self
->positioned
? "no" :
374 (self
->positioned
== PPosition
? "program specified" :
375 (self
->positioned
== USPosition
? "user specified" :
376 (self
->positioned
== (PPosition
| USPosition
) ?
377 "program + user specified" :
378 "BADNESS !?")))), self
->area
.x
, self
->area
.y
);
380 ob_debug("Sized: %s @ %d %d\n",
381 (!self
->sized
? "no" :
382 (self
->sized
== PSize
? "program specified" :
383 (self
->sized
== USSize
? "user specified" :
384 (self
->sized
== (PSize
| USSize
) ?
385 "program + user specified" :
386 "BADNESS !?")))), self
->area
.width
, self
->area
.height
);
388 transient
= place_client(self
, &placex
, &placey
, settings
);
390 /* if the window isn't user-positioned, then make it fit inside
391 the visible screen area on its monitor.
393 the monitor is chosen by place_client! */
394 if (!(self
->sized
& USSize
)) {
395 /* make a copy to modify */
396 Rect a
= *screen_area_monitor(self
->desktop
, client_monitor(self
));
398 /* shrink by the frame's area */
399 a
.width
-= self
->frame
->size
.left
+ self
->frame
->size
.right
;
400 a
.height
-= self
->frame
->size
.top
+ self
->frame
->size
.bottom
;
402 /* fit the window inside the area */
403 if (self
->area
.width
> a
.width
|| self
->area
.height
> a
.height
) {
404 self
->area
.width
= MIN(self
->area
.width
, a
.width
);
405 self
->area
.height
= MIN(self
->area
.height
, a
.height
);
407 ob_debug("setting window size to %dx%d\n",
408 self
->area
.width
, self
->area
.height
);
410 /* adjust the frame to the client's new size */
411 frame_adjust_area(self
->frame
, FALSE
, TRUE
, FALSE
);
412 frame_adjust_client_area(self
->frame
);
416 /* make sure the window is visible. */
417 client_find_onscreen(self
, &placex
, &placey
,
418 self
->area
.width
, self
->area
.height
,
419 /* non-normal clients has less rules, and
420 windows that are being restored from a
421 session do also. we can assume you want
422 it back where you saved it. Clients saying
423 they placed themselves are subjected to
424 harder rules, ones that are placed by
425 place.c or by the user are allowed partially
426 off-screen and on xinerama divides (ie,
427 it is up to the placement routines to avoid
428 the xinerama divides) */
430 (!(self
->positioned
& USPosition
) &&
431 client_normal(self
) &&
435 ob_debug("placing window 0x%x at %d, %d with size %d x %d\n",
436 self
->window
, placex
, placey
,
437 self
->area
.width
, self
->area
.height
);
439 ob_debug(" but session requested %d %d instead, overriding\n",
440 self
->session
->x
, self
->session
->y
);
442 /* do this after the window is placed, so the premax/prefullscreen numbers
444 also, this moves the window to the position where it has been placed
446 client_apply_startup_state(self
);
448 /* move the client to its placed position, or it it's already there,
449 generate a ConfigureNotify telling the client where it is.
451 do this after adjusting the frame. otherwise it gets all weird and
452 clients don't work right
454 also do this after applying the startup state so maximize and fullscreen
455 will get the right sizes and positions if the client is starting with
458 client_configure(self
, placex
, placey
,
459 self
->area
.width
, self
->area
.height
,
465 guint32 last_time
= focus_client
?
466 focus_client
->user_time
: CurrentTime
;
468 /* This is focus stealing prevention */
469 ob_debug_type(OB_DEBUG_FOCUS
,
470 "Want to focus new window 0x%x with time %u "
472 self
->window
, self
->user_time
, last_time
);
474 /* if it's on another desktop */
475 if (!(self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
476 && /* the timestamp is from before you changed desktops */
477 self
->user_time
&& screen_desktop_user_time
&&
478 !event_time_after(self
->user_time
, screen_desktop_user_time
))
481 ob_debug_type(OB_DEBUG_FOCUS
,
482 "Not focusing the window because its on another "
485 /* If something is focused, and it's not our relative... */
486 else if (focus_client
&& client_search_focus_tree_full(self
) == NULL
)
488 /* If time stamp is old, don't steal focus */
489 if (self
->user_time
&& last_time
&&
490 !event_time_after(self
->user_time
, last_time
))
493 ob_debug_type(OB_DEBUG_FOCUS
,
494 "Not focusing the window because the time is "
497 /* If its a transient (and parents aren't focused) and the time
498 is ambiguous (either the current focus target doesn't have
499 a timestamp, or they are the same (we probably inherited it
501 else if (client_has_parent(self
) &&
502 (!last_time
|| self
->user_time
== last_time
))
505 ob_debug_type(OB_DEBUG_FOCUS
,
506 "Not focusing the window because it is a "
507 "transient, and the time is very ambiguous\n");
509 /* Don't steal focus from globally active clients.
510 I stole this idea from KWin. It seems nice.
512 else if (!(focus_client
->can_focus
||
513 focus_client
->focus_notify
))
516 ob_debug_type(OB_DEBUG_FOCUS
,
517 "Not focusing the window because a globally "
518 "active client has focus\n");
520 /* Don't move focus if it's not going to go to this window
522 else if (client_focus_target(self
) != self
) {
524 ob_debug_type(OB_DEBUG_FOCUS
,
525 "Not focusing the window because another window "
526 "would get the focus anyway\n");
531 ob_debug_type(OB_DEBUG_FOCUS
,
532 "Focus stealing prevention activated for %s with "
533 "time %u (last time %u)\n",
534 self
->title
, self
->user_time
, last_time
);
535 /* if the client isn't focused, then hilite it so the user
537 client_hilite(self
, TRUE
);
541 /* This may look rather odd. Well it's because new windows are added
542 to the stacking order non-intrusively. If we're not going to focus
543 the new window or hilite it, then we raise it to the top. This will
544 take affect for things that don't get focused like splash screens.
545 Also if you don't have focus_new enabled, then it's going to get
546 raised to the top. Legacy begets legacy I guess?
548 if (!client_restore_session_stacking(self
))
549 stacking_raise(CLIENT_AS_WINDOW(self
));
552 mouse_grab_for_client(self
, TRUE
);
554 /* this has to happen before we try focus the window, but we want it to
555 happen after the client's stacking has been determined or it looks bad
560 gboolean stacked
= client_restore_session_stacking(self
);
561 client_present(self
, FALSE
, !stacked
);
564 /* add to client list/map */
565 client_list
= g_list_append(client_list
, self
);
566 g_hash_table_insert(window_map
, &self
->window
, self
);
568 /* this has to happen after we're in the client_list */
569 if (STRUT_EXISTS(self
->strut
))
570 screen_update_areas();
572 /* update the list hints */
575 /* free the ObAppSettings shallow copy */
578 ob_debug("Managed window 0x%lx plate 0x%x (%s)\n",
579 window
, self
->frame
->plate
, self
->class);
585 ObClient
*client_fake_manage(Window window
)
588 ObAppSettings
*settings
;
590 ob_debug("Pretend-managing window: %lx\n", window
);
592 /* do this minimal stuff to figure out the client's decorations */
594 self
= g_new0(ObClient
, 1);
595 self
->window
= window
;
597 client_get_all(self
, FALSE
);
598 /* per-app settings override stuff, and return the settings for other
599 uses too. this returns a shallow copy that needs to be freed */
600 settings
= client_get_settings_state(self
);
602 client_setup_decor_and_functions(self
);
604 /* create the decoration frame for the client window and adjust its size */
605 self
->frame
= frame_new(self
);
606 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
608 ob_debug("gave extents left %d right %d top %d bottom %d\n",
609 self
->frame
->size
.left
, self
->frame
->size
.right
,
610 self
->frame
->size
.top
, self
->frame
->size
.bottom
);
612 /* free the ObAppSettings shallow copy */
618 void client_unmanage_all()
620 while (client_list
!= NULL
)
621 client_unmanage(client_list
->data
);
624 void client_unmanage(ObClient
*self
)
629 ob_debug("Unmanaging window: 0x%x plate 0x%x (%s) (%s)\n",
630 self
->window
, self
->frame
->plate
,
631 self
->class, self
->title
? self
->title
: "");
633 g_assert(self
!= NULL
);
635 /* we dont want events no more. do this before hiding the frame so we
636 don't generate more events */
637 XSelectInput(ob_display
, self
->window
, NoEventMask
);
639 frame_hide(self
->frame
);
640 /* flush to send the hide to the server quickly */
643 /* ignore enter events from the unmap so it doesnt mess with the
645 event_ignore_all_queued_enters();
647 mouse_grab_for_client(self
, FALSE
);
649 /* remove the window from our save set */
650 XChangeSaveSet(ob_display
, self
->window
, SetModeDelete
);
652 /* kill the property windows */
653 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
655 /* update the focus lists */
656 focus_order_remove(self
);
657 if (client_focused(self
)) {
658 /* don't leave an invalid focus_client */
662 client_list
= g_list_remove(client_list
, self
);
663 stacking_remove(self
);
664 g_hash_table_remove(window_map
, &self
->window
);
666 /* once the client is out of the list, update the struts to remove its
668 if (STRUT_EXISTS(self
->strut
))
669 screen_update_areas();
671 client_call_notifies(self
, client_destroy_notifies
);
673 /* tell our parent(s) that we're gone */
674 if (self
->transient_for
== OB_TRAN_GROUP
) { /* transient of group */
675 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
))
676 if (it
->data
!= self
)
677 ((ObClient
*)it
->data
)->transients
=
678 g_slist_remove(((ObClient
*)it
->data
)->transients
,self
);
679 } else if (self
->transient_for
) { /* transient of window */
680 self
->transient_for
->transients
=
681 g_slist_remove(self
->transient_for
->transients
, self
);
684 /* tell our transients that we're gone */
685 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
686 if (((ObClient
*)it
->data
)->transient_for
!= OB_TRAN_GROUP
) {
687 ((ObClient
*)it
->data
)->transient_for
= NULL
;
688 client_calc_layer(it
->data
);
692 /* remove from its group */
694 group_remove(self
->group
, self
);
698 /* restore the window's original geometry so it is not lost */
704 if (self
->fullscreen
)
705 a
= self
->pre_fullscreen_area
;
706 else if (self
->max_horz
|| self
->max_vert
) {
707 if (self
->max_horz
) {
708 a
.x
= self
->pre_max_area
.x
;
709 a
.width
= self
->pre_max_area
.width
;
711 if (self
->max_vert
) {
712 a
.y
= self
->pre_max_area
.y
;
713 a
.height
= self
->pre_max_area
.height
;
717 self
->fullscreen
= self
->max_horz
= self
->max_vert
= FALSE
;
718 /* let it be moved and resized no matter what */
719 self
->functions
= OB_CLIENT_FUNC_MOVE
| OB_CLIENT_FUNC_RESIZE
;
720 self
->decorations
= 0; /* unmanaged windows have no decor */
722 client_move_resize(self
, a
.x
, a
.y
, a
.width
, a
.height
);
725 /* reparent the window out of the frame, and free the frame */
726 frame_release_client(self
->frame
);
727 frame_free(self
->frame
);
730 if (ob_state() != OB_STATE_EXITING
) {
731 /* these values should not be persisted across a window
733 PROP_ERASE(self
->window
, net_wm_desktop
);
734 PROP_ERASE(self
->window
, net_wm_state
);
735 PROP_ERASE(self
->window
, wm_state
);
737 /* if we're left in an unmapped state, the client wont be mapped.
738 this is bad, since we will no longer be managing the window on
740 XMapWindow(ob_display
, self
->window
);
743 /* update the list hints */
746 ob_debug("Unmanaged window 0x%lx\n", self
->window
);
748 /* free all data allocated in the client struct */
749 g_slist_free(self
->transients
);
750 for (j
= 0; j
< self
->nicons
; ++j
)
751 g_free(self
->icons
[j
].data
);
752 if (self
->nicons
> 0)
754 g_free(self
->wm_command
);
756 g_free(self
->icon_title
);
760 g_free(self
->client_machine
);
761 g_free(self
->sm_client_id
);
765 void client_fake_unmanage(ObClient
*self
)
767 /* this is all that got allocated to get the decorations */
769 frame_free(self
->frame
);
773 /*! Returns a new structure containing the per-app settings for this client.
774 The returned structure needs to be freed with g_free. */
775 static ObAppSettings
*client_get_settings_state(ObClient
*self
)
777 ObAppSettings
*settings
;
780 settings
= config_create_app_settings();
782 for (it
= config_per_app_settings
; it
; it
= g_slist_next(it
)) {
783 ObAppSettings
*app
= it
->data
;
784 gboolean match
= TRUE
;
786 g_assert(app
->name
!= NULL
|| app
->class != NULL
);
788 /* we know that either name or class is not NULL so it will have to
789 match to use the rule */
791 !g_pattern_match(app
->name
, strlen(self
->name
), self
->name
, NULL
))
793 else if (app
->class &&
794 !g_pattern_match(app
->class,
795 strlen(self
->class), self
->class, NULL
))
797 else if (app
->role
&&
798 !g_pattern_match(app
->role
,
799 strlen(self
->role
), self
->role
, NULL
))
803 ob_debug("Window matching: %s\n", app
->name
);
805 /* copy the settings to our struct, overriding the existing
806 settings if they are not defaults */
807 config_app_settings_copy_non_defaults(app
, settings
);
811 if (settings
->shade
!= -1)
812 self
->shaded
= !!settings
->shade
;
813 if (settings
->decor
!= -1)
814 self
->undecorated
= !settings
->decor
;
815 if (settings
->iconic
!= -1)
816 self
->iconic
= !!settings
->iconic
;
817 if (settings
->skip_pager
!= -1)
818 self
->skip_pager
= !!settings
->skip_pager
;
819 if (settings
->skip_taskbar
!= -1)
820 self
->skip_taskbar
= !!settings
->skip_taskbar
;
822 if (settings
->max_vert
!= -1)
823 self
->max_vert
= !!settings
->max_vert
;
824 if (settings
->max_horz
!= -1)
825 self
->max_horz
= !!settings
->max_horz
;
827 if (settings
->fullscreen
!= -1)
828 self
->fullscreen
= !!settings
->fullscreen
;
830 if (settings
->desktop
) {
831 if (settings
->desktop
== DESKTOP_ALL
)
832 self
->desktop
= settings
->desktop
;
833 else if (settings
->desktop
> 0 &&
834 settings
->desktop
<= screen_num_desktops
)
835 self
->desktop
= settings
->desktop
- 1;
838 if (settings
->layer
== -1) {
842 else if (settings
->layer
== 0) {
846 else if (settings
->layer
== 1) {
853 static void client_restore_session_state(ObClient
*self
)
857 ob_debug_type(OB_DEBUG_SM
,
858 "Restore session for client %s\n", self
->title
);
860 if (!(it
= session_state_find(self
))) {
861 ob_debug_type(OB_DEBUG_SM
,
862 "Session data not found for client %s\n", self
->title
);
866 self
->session
= it
->data
;
868 ob_debug_type(OB_DEBUG_SM
, "Session data loaded for client %s\n",
871 RECT_SET_POINT(self
->area
, self
->session
->x
, self
->session
->y
);
872 self
->positioned
= USPosition
;
873 self
->sized
= USSize
;
874 if (self
->session
->w
> 0)
875 self
->area
.width
= self
->session
->w
;
876 if (self
->session
->h
> 0)
877 self
->area
.height
= self
->session
->h
;
878 XResizeWindow(ob_display
, self
->window
,
879 self
->area
.width
, self
->area
.height
);
881 self
->desktop
= (self
->session
->desktop
== DESKTOP_ALL
?
882 self
->session
->desktop
:
883 MIN(screen_num_desktops
- 1, self
->session
->desktop
));
884 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
886 self
->shaded
= self
->session
->shaded
;
887 self
->iconic
= self
->session
->iconic
;
888 self
->skip_pager
= self
->session
->skip_pager
;
889 self
->skip_taskbar
= self
->session
->skip_taskbar
;
890 self
->fullscreen
= self
->session
->fullscreen
;
891 self
->above
= self
->session
->above
;
892 self
->below
= self
->session
->below
;
893 self
->max_horz
= self
->session
->max_horz
;
894 self
->max_vert
= self
->session
->max_vert
;
895 self
->undecorated
= self
->session
->undecorated
;
898 static gboolean
client_restore_session_stacking(ObClient
*self
)
902 if (!self
->session
) return FALSE
;
904 mypos
= g_list_find(session_saved_state
, self
->session
);
905 if (!mypos
) return FALSE
;
907 /* start above me and look for the first client */
908 for (it
= g_list_previous(mypos
); it
; it
= g_list_previous(it
)) {
911 for (cit
= client_list
; cit
; cit
= g_list_next(cit
)) {
912 ObClient
*c
= cit
->data
;
913 /* found a client that was in the session, so go below it */
914 if (c
->session
== it
->data
) {
915 stacking_below(CLIENT_AS_WINDOW(self
),
916 CLIENT_AS_WINDOW(cit
->data
));
924 void client_move_onscreen(ObClient
*self
, gboolean rude
)
926 gint x
= self
->area
.x
;
927 gint y
= self
->area
.y
;
928 if (client_find_onscreen(self
, &x
, &y
,
930 self
->area
.height
, rude
)) {
931 client_move(self
, x
, y
);
935 gboolean
client_find_onscreen(ObClient
*self
, gint
*x
, gint
*y
, gint w
, gint h
,
939 gint ox
= *x
, oy
= *y
;
940 gboolean rudel
= rude
, ruder
= rude
, rudet
= rude
, rudeb
= rude
;
944 RECT_SET(desired
, *x
, *y
, w
, h
);
945 all_a
= screen_area(self
->desktop
);
946 mon_a
= screen_area_monitor(self
->desktop
, screen_find_monitor(&desired
));
948 /* get where the frame would be */
949 frame_client_gravity(self
->frame
, x
, y
, w
, h
);
951 /* get the requested size of the window with decorations */
952 fw
= self
->frame
->size
.left
+ w
+ self
->frame
->size
.right
;
953 fh
= self
->frame
->size
.top
+ h
+ self
->frame
->size
.bottom
;
955 /* This makes sure windows aren't entirely outside of the screen so you
956 can't see them at all.
957 It makes sure 10% of the window is on the screen at least. At don't let
958 it move itself off the top of the screen, which would hide the titlebar
959 on you. (The user can still do this if they want too, it's only limiting
962 XXX watch for xinerama dead areas...
964 if (client_normal(self
)) {
965 if (!self
->strut
.right
&& *x
+ fw
/10 >= all_a
->x
+ all_a
->width
- 1)
966 *x
= all_a
->x
+ all_a
->width
- fw
/10;
967 if (!self
->strut
.bottom
&& *y
+ fh
/10 >= all_a
->y
+ all_a
->height
- 1)
968 *y
= all_a
->y
+ all_a
->height
- fh
/10;
969 if (!self
->strut
.left
&& *x
+ fw
*9/10 - 1 < all_a
->x
)
970 *x
= all_a
->x
- fw
*9/10;
971 if (!self
->strut
.top
&& *y
+ fh
*9/10 - 1 < all_a
->y
)
972 *y
= all_a
->y
- fw
*9/10;
975 /* If rudeness wasn't requested, then figure out of the client is currently
976 entirely on the screen. If it is, and the position isn't changing by
977 request, and it is enlarging, then be rude even though it wasn't
980 Point oldtl
, oldtr
, oldbl
, oldbr
;
981 Point newtl
, newtr
, newbl
, newbr
;
982 gboolean stationary_l
, stationary_r
, stationary_t
, stationary_b
;
984 POINT_SET(oldtl
, self
->frame
->area
.x
, self
->frame
->area
.y
);
985 POINT_SET(oldbr
, self
->frame
->area
.x
+ self
->frame
->area
.width
- 1,
986 self
->frame
->area
.y
+ self
->frame
->area
.height
- 1);
987 POINT_SET(oldtr
, oldbr
.x
, oldtl
.y
);
988 POINT_SET(oldbl
, oldtl
.x
, oldbr
.y
);
990 POINT_SET(newtl
, *x
, *y
);
991 POINT_SET(newbr
, *x
+ fw
- 1, *y
+ fh
- 1);
992 POINT_SET(newtr
, newbr
.x
, newtl
.y
);
993 POINT_SET(newbl
, newtl
.x
, newbr
.y
);
995 /* is it moving or just resizing from some corner? */
996 stationary_l
= oldtl
.x
== newtl
.x
;
997 stationary_r
= oldtr
.x
== newtr
.x
;
998 stationary_t
= oldtl
.y
== newtl
.y
;
999 stationary_b
= oldbl
.y
== newbl
.y
;
1001 /* if left edge is growing and didnt move right edge */
1002 if (stationary_r
&& newtl
.x
< oldtl
.x
)
1004 /* if right edge is growing and didnt move left edge */
1005 if (stationary_l
&& newtr
.x
> oldtr
.x
)
1007 /* if top edge is growing and didnt move bottom edge */
1008 if (stationary_b
&& newtl
.y
< oldtl
.y
)
1010 /* if bottom edge is growing and didnt move top edge */
1011 if (stationary_t
&& newbl
.y
> oldbl
.y
)
1015 /* This here doesn't let windows even a pixel outside the struts/screen.
1016 * When called from client_manage, programs placing themselves are
1017 * forced completely onscreen, while things like
1018 * xterm -geometry resolution-width/2 will work fine. Trying to
1019 * place it completely offscreen will be handled in the above code.
1020 * Sorry for this confused comment, i am tired. */
1021 if (rudel
&& !self
->strut
.left
&& *x
< mon_a
->x
) *x
= mon_a
->x
;
1022 if (ruder
&& !self
->strut
.right
&& *x
+ fw
> mon_a
->x
+ mon_a
->width
)
1023 *x
= mon_a
->x
+ MAX(0, mon_a
->width
- fw
);
1025 if (rudet
&& !self
->strut
.top
&& *y
< mon_a
->y
) *y
= mon_a
->y
;
1026 if (rudeb
&& !self
->strut
.bottom
&& *y
+ fh
> mon_a
->y
+ mon_a
->height
)
1027 *y
= mon_a
->y
+ MAX(0, mon_a
->height
- fh
);
1029 /* get where the client should be */
1030 frame_frame_gravity(self
->frame
, x
, y
, w
, h
);
1032 return ox
!= *x
|| oy
!= *y
;
1035 static void client_get_all(ObClient
*self
, gboolean real
)
1037 /* this is needed for the frame to set itself up */
1038 client_get_area(self
);
1040 /* these things can change the decor and functions of the window */
1042 client_get_mwm_hints(self
);
1043 /* this can change the mwmhints for special cases */
1044 client_get_type_and_transientness(self
);
1045 client_get_state(self
);
1046 client_update_normal_hints(self
);
1048 /* get the session related properties, these can change decorations
1049 from per-app settings */
1050 client_get_session_ids(self
);
1052 /* now we got everything that can affect the decorations */
1056 /* get this early so we have it for debugging */
1057 client_update_title(self
);
1059 client_update_protocols(self
);
1061 client_update_wmhints(self
);
1062 /* this may have already been called from client_update_wmhints */
1063 if (self
->transient_for
== NULL
)
1064 client_update_transient_for(self
);
1066 client_get_startup_id(self
);
1067 client_get_desktop(self
);/* uses transient data/group/startup id if a
1068 desktop is not specified */
1069 client_get_shaped(self
);
1072 /* a couple type-based defaults for new windows */
1074 /* this makes sure that these windows appear on all desktops */
1075 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
1076 self
->desktop
= DESKTOP_ALL
;
1080 client_update_sync_request_counter(self
);
1083 client_get_colormap(self
);
1084 client_update_strut(self
);
1085 client_update_icons(self
);
1086 client_update_user_time_window(self
);
1087 if (!self
->user_time_window
) /* check if this would have been called */
1088 client_update_user_time(self
);
1089 client_update_icon_geometry(self
);
1092 static void client_get_startup_id(ObClient
*self
)
1094 if (!(PROP_GETS(self
->window
, net_startup_id
, utf8
, &self
->startup_id
)))
1096 PROP_GETS(self
->group
->leader
,
1097 net_startup_id
, utf8
, &self
->startup_id
);
1100 static void client_get_area(ObClient
*self
)
1102 XWindowAttributes wattrib
;
1105 ret
= XGetWindowAttributes(ob_display
, self
->window
, &wattrib
);
1106 g_assert(ret
!= BadWindow
);
1108 RECT_SET(self
->area
, wattrib
.x
, wattrib
.y
, wattrib
.width
, wattrib
.height
);
1109 POINT_SET(self
->root_pos
, wattrib
.x
, wattrib
.y
);
1110 self
->border_width
= wattrib
.border_width
;
1112 ob_debug("client area: %d %d %d %d bw %d\n", wattrib
.x
, wattrib
.y
,
1113 wattrib
.width
, wattrib
.height
, wattrib
.border_width
);
1116 static void client_get_desktop(ObClient
*self
)
1118 guint32 d
= screen_num_desktops
; /* an always-invalid value */
1120 if (PROP_GET32(self
->window
, net_wm_desktop
, cardinal
, &d
)) {
1121 if (d
>= screen_num_desktops
&& d
!= DESKTOP_ALL
)
1122 self
->desktop
= screen_num_desktops
- 1;
1125 ob_debug("client requested desktop 0x%x\n", self
->desktop
);
1127 gboolean trdesk
= FALSE
;
1129 if (self
->transient_for
) {
1130 if (self
->transient_for
!= OB_TRAN_GROUP
) {
1131 if (self
->transient_for
->desktop
!= DESKTOP_ALL
) {
1132 self
->desktop
= self
->transient_for
->desktop
;
1136 /* if all the group is on one desktop, then open it on the
1139 gboolean first
= TRUE
;
1140 guint all
= screen_num_desktops
; /* not a valid value */
1142 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
1143 ObClient
*c
= it
->data
;
1149 else if (all
!= c
->desktop
)
1150 all
= screen_num_desktops
; /* make it invalid */
1153 if (all
!= screen_num_desktops
) {
1154 self
->desktop
= all
;
1160 /* try get from the startup-notification protocol */
1161 if (sn_get_desktop(self
->startup_id
, &self
->desktop
)) {
1162 if (self
->desktop
>= screen_num_desktops
&&
1163 self
->desktop
!= DESKTOP_ALL
)
1164 self
->desktop
= screen_num_desktops
- 1;
1166 /* defaults to the current desktop */
1167 self
->desktop
= screen_desktop
;
1172 static void client_get_state(ObClient
*self
)
1177 if (PROP_GETA32(self
->window
, net_wm_state
, atom
, &state
, &num
)) {
1179 for (i
= 0; i
< num
; ++i
) {
1180 if (state
[i
] == prop_atoms
.net_wm_state_modal
)
1182 else if (state
[i
] == prop_atoms
.net_wm_state_shaded
)
1183 self
->shaded
= TRUE
;
1184 else if (state
[i
] == prop_atoms
.net_wm_state_hidden
)
1185 self
->iconic
= TRUE
;
1186 else if (state
[i
] == prop_atoms
.net_wm_state_skip_taskbar
)
1187 self
->skip_taskbar
= TRUE
;
1188 else if (state
[i
] == prop_atoms
.net_wm_state_skip_pager
)
1189 self
->skip_pager
= TRUE
;
1190 else if (state
[i
] == prop_atoms
.net_wm_state_fullscreen
)
1191 self
->fullscreen
= TRUE
;
1192 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_vert
)
1193 self
->max_vert
= TRUE
;
1194 else if (state
[i
] == prop_atoms
.net_wm_state_maximized_horz
)
1195 self
->max_horz
= TRUE
;
1196 else if (state
[i
] == prop_atoms
.net_wm_state_above
)
1198 else if (state
[i
] == prop_atoms
.net_wm_state_below
)
1200 else if (state
[i
] == prop_atoms
.net_wm_state_demands_attention
)
1201 self
->demands_attention
= TRUE
;
1202 else if (state
[i
] == prop_atoms
.ob_wm_state_undecorated
)
1203 self
->undecorated
= TRUE
;
1210 static void client_get_shaped(ObClient
*self
)
1212 self
->shaped
= FALSE
;
1214 if (extensions_shape
) {
1219 XShapeSelectInput(ob_display
, self
->window
, ShapeNotifyMask
);
1221 XShapeQueryExtents(ob_display
, self
->window
, &s
, &foo
,
1222 &foo
, &ufoo
, &ufoo
, &foo
, &foo
, &foo
, &ufoo
,
1224 self
->shaped
= (s
!= 0);
1229 void client_update_transient_for(ObClient
*self
)
1232 ObClient
*target
= NULL
;
1234 if (XGetTransientForHint(ob_display
, self
->window
, &t
)) {
1235 if (t
!= self
->window
) { /* cant be transient to itself! */
1236 target
= g_hash_table_lookup(window_map
, &t
);
1237 /* if this happens then we need to check for it*/
1238 g_assert(target
!= self
);
1239 if (target
&& !WINDOW_IS_CLIENT(target
)) {
1240 /* this can happen when a dialog is a child of
1241 a dockapp, for example */
1245 /* THIS IS SO ANNOYING ! ! ! ! Let me explain.... have a seat..
1247 Setting the transient_for to Root is actually illegal, however
1248 applications from time have done this to specify transient for
1251 Now you can do that by being a TYPE_DIALOG and not setting
1252 the transient_for hint at all on your window. But people still
1253 use Root, and Kwin is very strange in this regard.
1255 KWin 3.0 will not consider windows with transient_for set to
1256 Root as transient for their group *UNLESS* they are also modal.
1257 In that case, it will make them transient for the group. This
1258 leads to all sorts of weird behavior from KDE apps which are
1259 only tested in KWin. I'd like to follow their behavior just to
1260 make this work right with KDE stuff, but that seems wrong.
1262 if (!target
&& self
->group
) {
1263 /* not transient to a client, see if it is transient for a
1265 if (t
== RootWindow(ob_display
, ob_screen
)) {
1266 /* window is a transient for its group! */
1267 target
= OB_TRAN_GROUP
;
1271 } else if (self
->transient
&& self
->group
)
1272 target
= OB_TRAN_GROUP
;
1274 client_update_transient_tree(self
, self
->group
, self
->group
,
1275 self
->transient_for
, target
);
1276 self
->transient_for
= target
;
1280 static void client_update_transient_tree(ObClient
*self
,
1281 ObGroup
*oldgroup
, ObGroup
*newgroup
,
1282 ObClient
* oldparent
,
1283 ObClient
*newparent
)
1289 Group transient windows are not allowed to have other group
1290 transient windows as their children.
1294 /* No change has occured */
1295 if (oldgroup
== newgroup
&& oldparent
== newparent
) return;
1297 /** Remove the client from the transient tree wherever it has changed **/
1299 /* If the window is becoming a direct transient for a window in its group
1300 then any group transients which were our children and are now becoming
1301 our parents need to stop being our children.
1303 Group transients can't be children of group transients already, but
1304 we could have any number of direct parents above up, any of which could
1305 be transient for the group, and we need to remove it from our children.
1307 if (oldparent
!= newparent
&&
1308 newparent
!= NULL
&& newparent
!= OB_TRAN_GROUP
&&
1309 newgroup
!= NULL
&& newgroup
== oldgroup
)
1311 ObClient
*look
= newparent
;
1313 self
->transients
= g_slist_remove(self
->transients
, look
);
1314 look
= look
->transient_for
;
1315 } while (look
!= NULL
&& look
!= OB_TRAN_GROUP
);
1319 /* If the group changed, or if we are just becoming transient for the
1320 group, then we need to remove any old group transient windows
1321 from our children. But if we were already transient for the group, then
1322 other group transients are not our children. */
1323 if ((oldgroup
!= newgroup
||
1324 (newparent
== OB_TRAN_GROUP
&& oldparent
!= newparent
)) &&
1325 oldgroup
!= NULL
&& oldparent
!= OB_TRAN_GROUP
)
1327 for (it
= self
->transients
; it
; it
= next
) {
1328 next
= g_slist_next(it
);
1330 if (c
->group
== oldgroup
)
1331 self
->transients
= g_slist_delete_link(self
->transients
, it
);
1335 /* If we used to be transient for a group and now we are not, or we're
1336 transient for a new group, then we need to remove ourselves from all
1338 if (oldparent
== OB_TRAN_GROUP
&& (oldgroup
!= newgroup
||
1339 oldparent
!= newparent
))
1341 for (it
= oldgroup
->members
; it
; it
= g_slist_next(it
)) {
1343 if (c
!= self
&& (!c
->transient_for
||
1344 c
->transient_for
!= OB_TRAN_GROUP
))
1345 c
->transients
= g_slist_remove(c
->transients
, self
);
1348 /* If we used to be transient for a single window and we are no longer
1349 transient for it, then we need to remove ourself from its children */
1350 else if (oldparent
!= NULL
&& oldparent
!= OB_TRAN_GROUP
&&
1351 oldparent
!= newparent
)
1352 oldparent
->transients
= g_slist_remove(oldparent
->transients
, self
);
1355 /** Re-add the client to the transient tree wherever it has changed **/
1357 /* If we're now transient for a group and we weren't transient for it
1358 before then we need to add ourselves to all our new parents */
1359 if (newparent
== OB_TRAN_GROUP
&& (oldgroup
!= newgroup
||
1360 oldparent
!= newparent
))
1362 for (it
= oldgroup
->members
; it
; it
= g_slist_next(it
)) {
1364 if (c
!= self
&& (!c
->transient_for
||
1365 c
->transient_for
!= OB_TRAN_GROUP
))
1366 c
->transients
= g_slist_prepend(c
->transients
, self
);
1369 /* If we are now transient for a single window which we weren't before,
1370 we need to add ourselves to its children
1372 WARNING: Cyclical transient ness is possible if two windows are
1373 transient for eachother.
1375 else if (newparent
!= NULL
&& newparent
!= OB_TRAN_GROUP
&&
1376 newparent
!= oldparent
&&
1377 /* don't make ourself its child if it is already our child */
1378 !client_is_direct_child(self
, newparent
))
1379 newparent
->transients
= g_slist_prepend(newparent
->transients
, self
);
1381 /* If the group changed then we need to add any new group transient
1382 windows to our children. But if we're transient for the group, then
1383 other group transients are not our children.
1385 WARNING: Cyclical transient-ness is possible. For e.g. if:
1386 A is transient for the group
1387 B is transient for A
1388 C is transient for B
1389 A can't be transient for C or we have a cycle
1391 if (oldgroup
!= newgroup
&& newgroup
!= NULL
&&
1392 newparent
!= OB_TRAN_GROUP
)
1394 for (it
= newgroup
->members
; it
; it
= g_slist_next(it
)) {
1396 if (c
!= self
&& c
->transient_for
== OB_TRAN_GROUP
&&
1397 /* Don't make it our child if it is already our parent */
1398 !client_is_direct_child(c
, self
))
1400 self
->transients
= g_slist_prepend(self
->transients
, c
);
1406 static void client_get_mwm_hints(ObClient
*self
)
1411 self
->mwmhints
.flags
= 0; /* default to none */
1413 if (PROP_GETA32(self
->window
, motif_wm_hints
, motif_wm_hints
,
1415 if (num
>= OB_MWM_ELEMENTS
) {
1416 self
->mwmhints
.flags
= hints
[0];
1417 self
->mwmhints
.functions
= hints
[1];
1418 self
->mwmhints
.decorations
= hints
[2];
1424 void client_get_type_and_transientness(ObClient
*self
)
1431 self
->transient
= FALSE
;
1433 if (PROP_GETA32(self
->window
, net_wm_window_type
, atom
, &val
, &num
)) {
1434 /* use the first value that we know about in the array */
1435 for (i
= 0; i
< num
; ++i
) {
1436 if (val
[i
] == prop_atoms
.net_wm_window_type_desktop
)
1437 self
->type
= OB_CLIENT_TYPE_DESKTOP
;
1438 else if (val
[i
] == prop_atoms
.net_wm_window_type_dock
)
1439 self
->type
= OB_CLIENT_TYPE_DOCK
;
1440 else if (val
[i
] == prop_atoms
.net_wm_window_type_toolbar
)
1441 self
->type
= OB_CLIENT_TYPE_TOOLBAR
;
1442 else if (val
[i
] == prop_atoms
.net_wm_window_type_menu
)
1443 self
->type
= OB_CLIENT_TYPE_MENU
;
1444 else if (val
[i
] == prop_atoms
.net_wm_window_type_utility
)
1445 self
->type
= OB_CLIENT_TYPE_UTILITY
;
1446 else if (val
[i
] == prop_atoms
.net_wm_window_type_splash
)
1447 self
->type
= OB_CLIENT_TYPE_SPLASH
;
1448 else if (val
[i
] == prop_atoms
.net_wm_window_type_dialog
)
1449 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1450 else if (val
[i
] == prop_atoms
.net_wm_window_type_normal
)
1451 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1452 else if (val
[i
] == prop_atoms
.kde_net_wm_window_type_override
) {
1453 /* prevent this window from getting any decor or
1455 self
->mwmhints
.flags
&= (OB_MWM_FLAG_FUNCTIONS
|
1456 OB_MWM_FLAG_DECORATIONS
);
1457 self
->mwmhints
.decorations
= 0;
1458 self
->mwmhints
.functions
= 0;
1460 if (self
->type
!= (ObClientType
) -1)
1461 break; /* grab the first legit type */
1466 if (XGetTransientForHint(ob_display
, self
->window
, &t
))
1467 self
->transient
= TRUE
;
1469 if (self
->type
== (ObClientType
) -1) {
1470 /*the window type hint was not set, which means we either classify
1471 ourself as a normal window or a dialog, depending on if we are a
1473 if (self
->transient
)
1474 self
->type
= OB_CLIENT_TYPE_DIALOG
;
1476 self
->type
= OB_CLIENT_TYPE_NORMAL
;
1479 /* then, based on our type, we can update our transientness.. */
1480 if (self
->type
== OB_CLIENT_TYPE_DIALOG
||
1481 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
1482 self
->type
== OB_CLIENT_TYPE_MENU
||
1483 self
->type
== OB_CLIENT_TYPE_UTILITY
)
1485 self
->transient
= TRUE
;
1489 void client_update_protocols(ObClient
*self
)
1492 guint num_return
, i
;
1494 self
->focus_notify
= FALSE
;
1495 self
->delete_window
= FALSE
;
1497 if (PROP_GETA32(self
->window
, wm_protocols
, atom
, &proto
, &num_return
)) {
1498 for (i
= 0; i
< num_return
; ++i
) {
1499 if (proto
[i
] == prop_atoms
.wm_delete_window
)
1500 /* this means we can request the window to close */
1501 self
->delete_window
= TRUE
;
1502 else if (proto
[i
] == prop_atoms
.wm_take_focus
)
1503 /* if this protocol is requested, then the window will be
1504 notified whenever we want it to receive focus */
1505 self
->focus_notify
= TRUE
;
1507 else if (proto
[i
] == prop_atoms
.net_wm_sync_request
)
1508 /* if this protocol is requested, then resizing the
1509 window will be synchronized between the frame and the
1511 self
->sync_request
= TRUE
;
1519 void client_update_sync_request_counter(ObClient
*self
)
1523 if (PROP_GET32(self
->window
, net_wm_sync_request_counter
, cardinal
, &i
)) {
1524 self
->sync_counter
= i
;
1526 self
->sync_counter
= None
;
1530 void client_get_colormap(ObClient
*self
)
1532 XWindowAttributes wa
;
1534 if (XGetWindowAttributes(ob_display
, self
->window
, &wa
))
1535 client_update_colormap(self
, wa
.colormap
);
1538 void client_update_colormap(ObClient
*self
, Colormap colormap
)
1540 if (colormap
== self
->colormap
) return;
1542 ob_debug("Setting client %s colormap: 0x%x\n", self
->title
, colormap
);
1544 if (client_focused(self
)) {
1545 screen_install_colormap(self
, FALSE
); /* uninstall old one */
1546 self
->colormap
= colormap
;
1547 screen_install_colormap(self
, FALSE
); /* install new one */
1549 self
->colormap
= colormap
;
1552 void client_update_normal_hints(ObClient
*self
)
1558 self
->min_ratio
= 0.0f
;
1559 self
->max_ratio
= 0.0f
;
1560 SIZE_SET(self
->size_inc
, 1, 1);
1561 SIZE_SET(self
->base_size
, 0, 0);
1562 SIZE_SET(self
->min_size
, 0, 0);
1563 SIZE_SET(self
->max_size
, G_MAXINT
, G_MAXINT
);
1565 /* get the hints from the window */
1566 if (XGetWMNormalHints(ob_display
, self
->window
, &size
, &ret
)) {
1567 /* normal windows can't request placement! har har
1568 if (!client_normal(self))
1570 self
->positioned
= (size
.flags
& (PPosition
|USPosition
));
1571 self
->sized
= (size
.flags
& (PSize
|USSize
));
1573 if (size
.flags
& PWinGravity
)
1574 self
->gravity
= size
.win_gravity
;
1576 if (size
.flags
& PAspect
) {
1577 if (size
.min_aspect
.y
)
1579 (gfloat
) size
.min_aspect
.x
/ size
.min_aspect
.y
;
1580 if (size
.max_aspect
.y
)
1582 (gfloat
) size
.max_aspect
.x
/ size
.max_aspect
.y
;
1585 if (size
.flags
& PMinSize
)
1586 SIZE_SET(self
->min_size
, size
.min_width
, size
.min_height
);
1588 if (size
.flags
& PMaxSize
)
1589 SIZE_SET(self
->max_size
, size
.max_width
, size
.max_height
);
1591 if (size
.flags
& PBaseSize
)
1592 SIZE_SET(self
->base_size
, size
.base_width
, size
.base_height
);
1594 if (size
.flags
& PResizeInc
&& size
.width_inc
&& size
.height_inc
)
1595 SIZE_SET(self
->size_inc
, size
.width_inc
, size
.height_inc
);
1599 /*! This needs to be followed by a call to client_configure to make
1601 void client_setup_decor_and_functions(ObClient
*self
)
1603 /* start with everything (cept fullscreen) */
1605 (OB_FRAME_DECOR_TITLEBAR
|
1606 OB_FRAME_DECOR_HANDLE
|
1607 OB_FRAME_DECOR_GRIPS
|
1608 OB_FRAME_DECOR_BORDER
|
1609 OB_FRAME_DECOR_ICON
|
1610 OB_FRAME_DECOR_ALLDESKTOPS
|
1611 OB_FRAME_DECOR_ICONIFY
|
1612 OB_FRAME_DECOR_MAXIMIZE
|
1613 OB_FRAME_DECOR_SHADE
|
1614 OB_FRAME_DECOR_CLOSE
);
1616 (OB_CLIENT_FUNC_RESIZE
|
1617 OB_CLIENT_FUNC_MOVE
|
1618 OB_CLIENT_FUNC_ICONIFY
|
1619 OB_CLIENT_FUNC_MAXIMIZE
|
1620 OB_CLIENT_FUNC_SHADE
|
1621 OB_CLIENT_FUNC_CLOSE
|
1622 OB_CLIENT_FUNC_BELOW
|
1623 OB_CLIENT_FUNC_ABOVE
|
1624 OB_CLIENT_FUNC_UNDECORATE
);
1626 if (!(self
->min_size
.width
< self
->max_size
.width
||
1627 self
->min_size
.height
< self
->max_size
.height
))
1628 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1630 switch (self
->type
) {
1631 case OB_CLIENT_TYPE_NORMAL
:
1632 /* normal windows retain all of the possible decorations and
1633 functionality, and are the only windows that you can fullscreen */
1634 self
->functions
|= OB_CLIENT_FUNC_FULLSCREEN
;
1637 case OB_CLIENT_TYPE_DIALOG
:
1638 case OB_CLIENT_TYPE_UTILITY
:
1639 /* these windows don't have anything added or removed by default */
1642 case OB_CLIENT_TYPE_MENU
:
1643 case OB_CLIENT_TYPE_TOOLBAR
:
1644 /* these windows can't iconify or maximize */
1645 self
->decorations
&= ~(OB_FRAME_DECOR_ICONIFY
|
1646 OB_FRAME_DECOR_MAXIMIZE
);
1647 self
->functions
&= ~(OB_CLIENT_FUNC_ICONIFY
|
1648 OB_CLIENT_FUNC_MAXIMIZE
);
1651 case OB_CLIENT_TYPE_SPLASH
:
1652 /* these don't get get any decorations, and the only thing you can
1653 do with them is move them */
1654 self
->decorations
= 0;
1655 self
->functions
= OB_CLIENT_FUNC_MOVE
;
1658 case OB_CLIENT_TYPE_DESKTOP
:
1659 /* these windows are not manipulated by the window manager */
1660 self
->decorations
= 0;
1661 self
->functions
= 0;
1664 case OB_CLIENT_TYPE_DOCK
:
1665 /* these windows are not manipulated by the window manager, but they
1666 can set below layer which has a special meaning */
1667 self
->decorations
= 0;
1668 self
->functions
= OB_CLIENT_FUNC_BELOW
;
1672 /* Mwm Hints are applied subtractively to what has already been chosen for
1673 decor and functionality */
1674 if (self
->mwmhints
.flags
& OB_MWM_FLAG_DECORATIONS
) {
1675 if (! (self
->mwmhints
.decorations
& OB_MWM_DECOR_ALL
)) {
1676 if (! ((self
->mwmhints
.decorations
& OB_MWM_DECOR_HANDLE
) ||
1677 (self
->mwmhints
.decorations
& OB_MWM_DECOR_TITLE
)))
1679 /* if the mwm hints request no handle or title, then all
1680 decorations are disabled, but keep the border if that's
1682 if (self
->mwmhints
.decorations
& OB_MWM_DECOR_BORDER
)
1683 self
->decorations
= OB_FRAME_DECOR_BORDER
;
1685 self
->decorations
= 0;
1690 if (self
->mwmhints
.flags
& OB_MWM_FLAG_FUNCTIONS
) {
1691 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_ALL
)) {
1692 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_RESIZE
))
1693 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1694 if (! (self
->mwmhints
.functions
& OB_MWM_FUNC_MOVE
))
1695 self
->functions
&= ~OB_CLIENT_FUNC_MOVE
;
1696 /* dont let mwm hints kill any buttons
1697 if (! (self->mwmhints.functions & OB_MWM_FUNC_ICONIFY))
1698 self->functions &= ~OB_CLIENT_FUNC_ICONIFY;
1699 if (! (self->mwmhints.functions & OB_MWM_FUNC_MAXIMIZE))
1700 self->functions &= ~OB_CLIENT_FUNC_MAXIMIZE;
1702 /* dont let mwm hints kill the close button
1703 if (! (self->mwmhints.functions & MwmFunc_Close))
1704 self->functions &= ~OB_CLIENT_FUNC_CLOSE; */
1708 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
))
1709 self
->decorations
&= ~OB_FRAME_DECOR_SHADE
;
1710 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
))
1711 self
->decorations
&= ~OB_FRAME_DECOR_ICONIFY
;
1712 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
))
1713 self
->decorations
&= ~(OB_FRAME_DECOR_GRIPS
| OB_FRAME_DECOR_HANDLE
);
1715 /* can't maximize without moving/resizing */
1716 if (!((self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) &&
1717 (self
->functions
& OB_CLIENT_FUNC_MOVE
) &&
1718 (self
->functions
& OB_CLIENT_FUNC_RESIZE
))) {
1719 self
->functions
&= ~OB_CLIENT_FUNC_MAXIMIZE
;
1720 self
->decorations
&= ~OB_FRAME_DECOR_MAXIMIZE
;
1723 if (self
->max_horz
&& self
->max_vert
) {
1724 /* you can't resize fully maximized windows */
1725 self
->functions
&= ~OB_CLIENT_FUNC_RESIZE
;
1726 /* kill the handle on fully maxed windows */
1727 self
->decorations
&= ~(OB_FRAME_DECOR_HANDLE
| OB_FRAME_DECOR_GRIPS
);
1730 /* If there are no decorations to remove, don't allow the user to try
1732 if (self
->decorations
== 0)
1733 self
->functions
&= ~OB_CLIENT_FUNC_UNDECORATE
;
1735 /* finally, the user can have requested no decorations, which overrides
1736 everything (but doesnt give it a border if it doesnt have one) */
1737 if (self
->undecorated
) {
1738 if (config_theme_keepborder
)
1739 self
->decorations
&= OB_FRAME_DECOR_BORDER
;
1741 self
->decorations
= 0;
1744 /* if we don't have a titlebar, then we cannot shade! */
1745 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1746 self
->functions
&= ~OB_CLIENT_FUNC_SHADE
;
1748 /* now we need to check against rules for the client's current state */
1749 if (self
->fullscreen
) {
1750 self
->functions
&= (OB_CLIENT_FUNC_CLOSE
|
1751 OB_CLIENT_FUNC_FULLSCREEN
|
1752 OB_CLIENT_FUNC_ICONIFY
);
1753 self
->decorations
= 0;
1756 client_change_allowed_actions(self
);
1759 static void client_change_allowed_actions(ObClient
*self
)
1764 /* desktop windows are kept on all desktops */
1765 if (self
->type
!= OB_CLIENT_TYPE_DESKTOP
)
1766 actions
[num
++] = prop_atoms
.net_wm_action_change_desktop
;
1768 if (self
->functions
& OB_CLIENT_FUNC_SHADE
)
1769 actions
[num
++] = prop_atoms
.net_wm_action_shade
;
1770 if (self
->functions
& OB_CLIENT_FUNC_CLOSE
)
1771 actions
[num
++] = prop_atoms
.net_wm_action_close
;
1772 if (self
->functions
& OB_CLIENT_FUNC_MOVE
)
1773 actions
[num
++] = prop_atoms
.net_wm_action_move
;
1774 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
)
1775 actions
[num
++] = prop_atoms
.net_wm_action_minimize
;
1776 if (self
->functions
& OB_CLIENT_FUNC_RESIZE
)
1777 actions
[num
++] = prop_atoms
.net_wm_action_resize
;
1778 if (self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
)
1779 actions
[num
++] = prop_atoms
.net_wm_action_fullscreen
;
1780 if (self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) {
1781 actions
[num
++] = prop_atoms
.net_wm_action_maximize_horz
;
1782 actions
[num
++] = prop_atoms
.net_wm_action_maximize_vert
;
1784 if (self
->functions
& OB_CLIENT_FUNC_ABOVE
)
1785 actions
[num
++] = prop_atoms
.net_wm_action_above
;
1786 if (self
->functions
& OB_CLIENT_FUNC_BELOW
)
1787 actions
[num
++] = prop_atoms
.net_wm_action_below
;
1788 if (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
)
1789 actions
[num
++] = prop_atoms
.ob_wm_action_undecorate
;
1791 PROP_SETA32(self
->window
, net_wm_allowed_actions
, atom
, actions
, num
);
1793 /* make sure the window isn't breaking any rules now */
1795 if (!(self
->functions
& OB_CLIENT_FUNC_SHADE
) && self
->shaded
) {
1796 if (self
->frame
) client_shade(self
, FALSE
);
1797 else self
->shaded
= FALSE
;
1799 if (!(self
->functions
& OB_CLIENT_FUNC_ICONIFY
) && self
->iconic
) {
1800 if (self
->frame
) client_iconify(self
, FALSE
, TRUE
, FALSE
);
1801 else self
->iconic
= FALSE
;
1803 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) && self
->fullscreen
) {
1804 if (self
->frame
) client_fullscreen(self
, FALSE
);
1805 else self
->fullscreen
= FALSE
;
1807 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
) && (self
->max_horz
||
1809 if (self
->frame
) client_maximize(self
, FALSE
, 0);
1810 else self
->max_vert
= self
->max_horz
= FALSE
;
1814 void client_reconfigure(ObClient
*self
)
1816 client_configure(self
, self
->area
.x
, self
->area
.y
,
1817 self
->area
.width
, self
->area
.height
,
1818 self
->border_width
, FALSE
, TRUE
);
1821 void client_update_wmhints(ObClient
*self
)
1825 /* assume a window takes input if it doesnt specify */
1826 self
->can_focus
= TRUE
;
1828 if ((hints
= XGetWMHints(ob_display
, self
->window
)) != NULL
) {
1831 if (hints
->flags
& InputHint
)
1832 self
->can_focus
= hints
->input
;
1834 /* only do this when first managing the window *AND* when we aren't
1836 if (ob_state() != OB_STATE_STARTING
&& self
->frame
== NULL
)
1837 if (hints
->flags
& StateHint
)
1838 self
->iconic
= hints
->initial_state
== IconicState
;
1841 self
->urgent
= (hints
->flags
& XUrgencyHint
);
1842 if (self
->urgent
&& !ur
)
1843 client_hilite(self
, TRUE
);
1844 else if (!self
->urgent
&& ur
&& self
->demands_attention
)
1845 client_hilite(self
, FALSE
);
1847 if (!(hints
->flags
& WindowGroupHint
))
1848 hints
->window_group
= None
;
1850 /* did the group state change? */
1851 if (hints
->window_group
!=
1852 (self
->group
? self
->group
->leader
: None
))
1854 ObGroup
*oldgroup
= self
->group
;
1856 /* remove from the old group if there was one */
1857 if (self
->group
!= NULL
) {
1858 group_remove(self
->group
, self
);
1862 /* add ourself to the group if we have one */
1863 if (hints
->window_group
!= None
) {
1864 self
->group
= group_add(hints
->window_group
, self
);
1867 /* Put ourselves into the new group's transient tree, and remove
1868 ourselves from the old group's */
1869 client_update_transient_tree(self
, oldgroup
, self
->group
,
1870 self
->transient_for
,
1871 self
->transient_for
);
1873 /* Lastly, being in a group, or not, can change if the window is
1874 transient for anything.
1876 The logic for this is:
1877 self->transient = TRUE always if the window wants to be
1878 transient for something, even if transient_for was NULL because
1879 it wasn't in a group before.
1881 If transient_for was NULL and oldgroup was NULL we can assume
1882 that when we add the new group, it will become transient for
1885 If transient_for was OB_TRAN_GROUP, then it must have already
1886 had a group. If it is getting a new group, the above call to
1887 client_update_transient_tree has already taken care of
1888 everything ! If it is losing all group status then it will
1889 no longer be transient for anything and that needs to be
1892 if (self
->transient
&&
1893 ((self
->transient_for
== NULL
&& oldgroup
== NULL
) ||
1894 (self
->transient_for
== OB_TRAN_GROUP
&& !self
->group
)))
1895 client_update_transient_for(self
);
1898 /* the WM_HINTS can contain an icon */
1899 if (hints
->flags
& IconPixmapHint
)
1900 client_update_icons(self
);
1906 void client_update_title(ObClient
*self
)
1909 gchar
*visible
= NULL
;
1911 g_free(self
->title
);
1914 if (!PROP_GETS(self
->window
, net_wm_name
, utf8
, &data
)) {
1915 /* try old x stuff */
1916 if (!(PROP_GETS(self
->window
, wm_name
, locale
, &data
)
1917 || PROP_GETS(self
->window
, wm_name
, utf8
, &data
))) {
1918 if (self
->transient
) {
1920 GNOME alert windows are not given titles:
1921 http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
1923 data
= g_strdup("");
1925 data
= g_strdup("Unnamed Window");
1929 if (self
->client_machine
) {
1930 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1935 PROP_SETS(self
->window
, net_wm_visible_name
, visible
);
1936 self
->title
= visible
;
1939 frame_adjust_title(self
->frame
);
1941 /* update the icon title */
1943 g_free(self
->icon_title
);
1946 if (!PROP_GETS(self
->window
, net_wm_icon_name
, utf8
, &data
))
1947 /* try old x stuff */
1948 if (!(PROP_GETS(self
->window
, wm_icon_name
, locale
, &data
) ||
1949 PROP_GETS(self
->window
, wm_icon_name
, utf8
, &data
)))
1950 data
= g_strdup(self
->title
);
1952 if (self
->client_machine
) {
1953 visible
= g_strdup_printf("%s (%s)", data
, self
->client_machine
);
1958 PROP_SETS(self
->window
, net_wm_visible_icon_name
, visible
);
1959 self
->icon_title
= visible
;
1962 void client_update_strut(ObClient
*self
)
1966 gboolean got
= FALSE
;
1969 if (PROP_GETA32(self
->window
, net_wm_strut_partial
, cardinal
,
1973 STRUT_PARTIAL_SET(strut
,
1974 data
[0], data
[2], data
[1], data
[3],
1975 data
[4], data
[5], data
[8], data
[9],
1976 data
[6], data
[7], data
[10], data
[11]);
1982 PROP_GETA32(self
->window
, net_wm_strut
, cardinal
, &data
, &num
)) {
1988 /* use the screen's width/height */
1989 a
= screen_physical_area();
1991 STRUT_PARTIAL_SET(strut
,
1992 data
[0], data
[2], data
[1], data
[3],
1993 a
->y
, a
->y
+ a
->height
- 1,
1994 a
->x
, a
->x
+ a
->width
- 1,
1995 a
->y
, a
->y
+ a
->height
- 1,
1996 a
->x
, a
->x
+ a
->width
- 1);
2002 STRUT_PARTIAL_SET(strut
, 0, 0, 0, 0,
2003 0, 0, 0, 0, 0, 0, 0, 0);
2005 if (!STRUT_EQUAL(strut
, self
->strut
)) {
2006 self
->strut
= strut
;
2008 /* updating here is pointless while we're being mapped cuz we're not in
2009 the client list yet */
2011 screen_update_areas();
2015 void client_update_icons(ObClient
*self
)
2021 for (i
= 0; i
< self
->nicons
; ++i
)
2022 g_free(self
->icons
[i
].data
);
2023 if (self
->nicons
> 0)
2024 g_free(self
->icons
);
2027 if (PROP_GETA32(self
->window
, net_wm_icon
, cardinal
, &data
, &num
)) {
2028 /* figure out how many valid icons are in here */
2030 while (num
- i
> 2) {
2034 if (i
> num
|| w
*h
== 0) break;
2038 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2040 /* store the icons */
2042 for (j
= 0; j
< self
->nicons
; ++j
) {
2045 w
= self
->icons
[j
].width
= data
[i
++];
2046 h
= self
->icons
[j
].height
= data
[i
++];
2048 if (w
*h
== 0) continue;
2050 self
->icons
[j
].data
= g_new(RrPixel32
, w
* h
);
2051 for (x
= 0, y
= 0, t
= 0; t
< w
* h
; ++t
, ++x
, ++i
) {
2056 self
->icons
[j
].data
[t
] =
2057 (((data
[i
] >> 24) & 0xff) << RrDefaultAlphaOffset
) +
2058 (((data
[i
] >> 16) & 0xff) << RrDefaultRedOffset
) +
2059 (((data
[i
] >> 8) & 0xff) << RrDefaultGreenOffset
) +
2060 (((data
[i
] >> 0) & 0xff) << RrDefaultBlueOffset
);
2069 if ((hints
= XGetWMHints(ob_display
, self
->window
))) {
2070 if (hints
->flags
& IconPixmapHint
) {
2072 self
->icons
= g_new(ObClientIcon
, self
->nicons
);
2073 xerror_set_ignore(TRUE
);
2074 if (!RrPixmapToRGBA(ob_rr_inst
,
2076 (hints
->flags
& IconMaskHint
?
2077 hints
->icon_mask
: None
),
2078 &self
->icons
[self
->nicons
-1].width
,
2079 &self
->icons
[self
->nicons
-1].height
,
2080 &self
->icons
[self
->nicons
-1].data
)){
2081 g_free(&self
->icons
[self
->nicons
-1]);
2084 xerror_set_ignore(FALSE
);
2090 /* set the default icon onto the window
2091 in theory, this could be a race, but if a window doesn't set an icon
2092 or removes it entirely, it's not very likely it is going to set one
2093 right away afterwards */
2094 if (self
->nicons
== 0) {
2095 RrPixel32
*icon
= ob_rr_theme
->def_win_icon
;
2098 data
= g_new(gulong
, 48*48+2);
2099 data
[0] = data
[1] = 48;
2100 for (i
= 0; i
< 48*48; ++i
)
2101 data
[i
+2] = (((icon
[i
] >> RrDefaultAlphaOffset
) & 0xff) << 24) +
2102 (((icon
[i
] >> RrDefaultRedOffset
) & 0xff) << 16) +
2103 (((icon
[i
] >> RrDefaultGreenOffset
) & 0xff) << 8) +
2104 (((icon
[i
] >> RrDefaultBlueOffset
) & 0xff) << 0);
2105 PROP_SETA32(self
->window
, net_wm_icon
, cardinal
, data
, 48*48+2);
2107 } else if (self
->frame
)
2108 /* don't draw the icon empty if we're just setting one now anyways,
2109 we'll get the property change any second */
2110 frame_adjust_icon(self
->frame
);
2113 void client_update_user_time(ObClient
*self
)
2116 gboolean got
= FALSE
;
2118 if (self
->user_time_window
)
2119 got
= PROP_GET32(self
->user_time_window
,
2120 net_wm_user_time
, cardinal
, &time
);
2122 got
= PROP_GET32(self
->window
, net_wm_user_time
, cardinal
, &time
);
2125 /* we set this every time, not just when it grows, because in practice
2126 sometimes time goes backwards! (ntpdate.. yay....) so.. if it goes
2127 backward we don't want all windows to stop focusing. we'll just
2128 assume noone is setting times older than the last one, cuz that
2129 would be pretty stupid anyways
2131 self
->user_time
= time
;
2133 /*ob_debug("window %s user time %u\n", self->title, time);*/
2137 void client_update_user_time_window(ObClient
*self
)
2141 if (!PROP_GET32(self
->window
, net_wm_user_time_window
, window
, &w
))
2144 if (w
!= self
->user_time_window
) {
2145 /* remove the old window */
2146 propwin_remove(self
->user_time_window
, OB_PROPWIN_USER_TIME
, self
);
2147 self
->user_time_window
= None
;
2149 if (self
->group
&& self
->group
->leader
== w
) {
2150 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2151 "_NET_WM_USER_TYPE_WINDOW to its group leader\n");
2152 /* do it anyways..? */
2154 else if (w
== self
->window
) {
2155 ob_debug_type(OB_DEBUG_APP_BUGS
, "Window is setting its "
2156 "_NET_WM_USER_TIME_WINDOW to itself\n");
2157 w
= None
; /* don't do it */
2160 /* add the new window */
2161 propwin_add(w
, OB_PROPWIN_USER_TIME
, self
);
2162 self
->user_time_window
= w
;
2164 /* and update from it */
2165 client_update_user_time(self
);
2169 void client_update_icon_geometry(ObClient
*self
)
2174 RECT_SET(self
->icon_geometry
, 0, 0, 0, 0);
2176 if (PROP_GETA32(self
->window
, net_wm_icon_geometry
, cardinal
, &data
, &num
)
2179 /* don't let them set it with an area < 0 */
2180 RECT_SET(self
->icon_geometry
, data
[0], data
[1],
2181 MAX(data
[2],0), MAX(data
[3],0));
2185 static void client_get_session_ids(ObClient
*self
)
2192 if (!PROP_GET32(self
->window
, wm_client_leader
, window
, &leader
))
2195 /* get the SM_CLIENT_ID */
2198 got
= PROP_GETS(leader
, sm_client_id
, locale
, &self
->sm_client_id
);
2200 PROP_GETS(self
->window
, sm_client_id
, locale
, &self
->sm_client_id
);
2202 /* get the WM_CLASS (name and class). make them "" if they are not
2206 got
= PROP_GETSS(leader
, wm_class
, locale
, &ss
);
2208 got
= PROP_GETSS(self
->window
, wm_class
, locale
, &ss
);
2212 self
->name
= g_strdup(ss
[0]);
2214 self
->class = g_strdup(ss
[1]);
2219 if (self
->name
== NULL
) self
->name
= g_strdup("");
2220 if (self
->class == NULL
) self
->class = g_strdup("");
2222 /* get the WM_WINDOW_ROLE. make it "" if it is not provided */
2225 got
= PROP_GETS(leader
, wm_window_role
, locale
, &s
);
2227 got
= PROP_GETS(self
->window
, wm_window_role
, locale
, &s
);
2232 self
->role
= g_strdup("");
2234 /* get the WM_COMMAND */
2238 got
= PROP_GETSS(leader
, wm_command
, locale
, &ss
);
2240 got
= PROP_GETSS(self
->window
, wm_command
, locale
, &ss
);
2243 /* merge/mash them all together */
2244 gchar
*merge
= NULL
;
2247 for (i
= 0; ss
[i
]; ++i
) {
2250 merge
= g_strconcat(merge
, ss
[i
], NULL
);
2252 merge
= g_strconcat(ss
[i
], NULL
);
2257 self
->wm_command
= merge
;
2260 /* get the WM_CLIENT_MACHINE */
2263 got
= PROP_GETS(leader
, wm_client_machine
, locale
, &s
);
2265 got
= PROP_GETS(self
->window
, wm_client_machine
, locale
, &s
);
2268 gchar localhost
[128];
2270 gethostname(localhost
, 127);
2271 localhost
[127] = '\0';
2272 if (strcmp(localhost
, s
) != 0)
2273 self
->client_machine
= s
;
2279 static void client_change_wm_state(ObClient
*self
)
2284 old
= self
->wmstate
;
2286 if (self
->shaded
|| self
->iconic
||
2287 (self
->desktop
!= DESKTOP_ALL
&& self
->desktop
!= screen_desktop
))
2289 self
->wmstate
= IconicState
;
2291 self
->wmstate
= NormalState
;
2293 if (old
!= self
->wmstate
) {
2294 PROP_MSG(self
->window
, kde_wm_change_state
,
2295 self
->wmstate
, 1, 0, 0);
2297 state
[0] = self
->wmstate
;
2299 PROP_SETA32(self
->window
, wm_state
, wm_state
, state
, 2);
2303 static void client_change_state(ObClient
*self
)
2305 gulong netstate
[11];
2310 netstate
[num
++] = prop_atoms
.net_wm_state_modal
;
2312 netstate
[num
++] = prop_atoms
.net_wm_state_shaded
;
2314 netstate
[num
++] = prop_atoms
.net_wm_state_hidden
;
2315 if (self
->skip_taskbar
)
2316 netstate
[num
++] = prop_atoms
.net_wm_state_skip_taskbar
;
2317 if (self
->skip_pager
)
2318 netstate
[num
++] = prop_atoms
.net_wm_state_skip_pager
;
2319 if (self
->fullscreen
)
2320 netstate
[num
++] = prop_atoms
.net_wm_state_fullscreen
;
2322 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_vert
;
2324 netstate
[num
++] = prop_atoms
.net_wm_state_maximized_horz
;
2326 netstate
[num
++] = prop_atoms
.net_wm_state_above
;
2328 netstate
[num
++] = prop_atoms
.net_wm_state_below
;
2329 if (self
->demands_attention
)
2330 netstate
[num
++] = prop_atoms
.net_wm_state_demands_attention
;
2331 if (self
->undecorated
)
2332 netstate
[num
++] = prop_atoms
.ob_wm_state_undecorated
;
2333 PROP_SETA32(self
->window
, net_wm_state
, atom
, netstate
, num
);
2336 frame_adjust_state(self
->frame
);
2339 ObClient
*client_search_focus_tree(ObClient
*self
)
2344 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
2345 if (client_focused(it
->data
)) return it
->data
;
2346 if ((ret
= client_search_focus_tree(it
->data
))) return ret
;
2351 ObClient
*client_search_focus_tree_full(ObClient
*self
)
2353 if (self
->transient_for
) {
2354 if (self
->transient_for
!= OB_TRAN_GROUP
) {
2355 return client_search_focus_tree_full(self
->transient_for
);
2359 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
2360 if (it
->data
!= self
) {
2361 ObClient
*c
= it
->data
;
2363 if (client_focused(c
)) return c
;
2364 if ((c
= client_search_focus_tree(it
->data
))) return c
;
2370 /* this function checks the whole tree, the client_search_focus_tree
2371 does not, so we need to check this window */
2372 if (client_focused(self
))
2374 return client_search_focus_tree(self
);
2377 gboolean
client_has_parent(ObClient
*self
)
2379 return (self
->transient_for
&&
2380 (self
->transient_for
!= OB_TRAN_GROUP
||
2381 (self
->group
&& self
->group
->members
->next
)));
2384 static ObStackingLayer
calc_layer(ObClient
*self
)
2388 if (self
->type
== OB_CLIENT_TYPE_DESKTOP
)
2389 l
= OB_STACKING_LAYER_DESKTOP
;
2390 else if (self
->type
== OB_CLIENT_TYPE_DOCK
) {
2391 if (self
->below
) l
= OB_STACKING_LAYER_NORMAL
;
2392 else l
= OB_STACKING_LAYER_ABOVE
;
2394 else if ((self
->fullscreen
||
2395 /* No decorations and fills the monitor = oldskool fullscreen.
2396 But not for maximized windows.
2398 (self
->decorations
== 0 &&
2399 !(self
->max_horz
&& self
->max_vert
) &&
2400 RECT_EQUAL(self
->area
,
2401 *screen_physical_area_monitor
2402 (client_monitor(self
))))) &&
2403 (client_focused(self
) || client_search_focus_tree(self
)))
2404 l
= OB_STACKING_LAYER_FULLSCREEN
;
2405 else if (self
->above
) l
= OB_STACKING_LAYER_ABOVE
;
2406 else if (self
->below
) l
= OB_STACKING_LAYER_BELOW
;
2407 else l
= OB_STACKING_LAYER_NORMAL
;
2412 static void client_calc_layer_recursive(ObClient
*self
, ObClient
*orig
,
2413 ObStackingLayer min
)
2415 ObStackingLayer old
, own
;
2419 own
= calc_layer(self
);
2420 self
->layer
= MAX(own
, min
);
2422 if (self
->layer
!= old
) {
2423 stacking_remove(CLIENT_AS_WINDOW(self
));
2424 stacking_add_nonintrusive(CLIENT_AS_WINDOW(self
));
2427 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
2428 client_calc_layer_recursive(it
->data
, orig
,
2432 void client_calc_layer(ObClient
*self
)
2439 /* transients take on the layer of their parents */
2440 it
= client_search_all_top_parents(self
);
2442 for (; it
; it
= g_slist_next(it
))
2443 client_calc_layer_recursive(it
->data
, orig
, 0);
2446 gboolean
client_should_show(ObClient
*self
)
2450 if (client_normal(self
) && screen_showing_desktop
)
2452 if (self
->desktop
== screen_desktop
|| self
->desktop
== DESKTOP_ALL
)
2458 gboolean
client_show(ObClient
*self
)
2460 gboolean show
= FALSE
;
2462 if (client_should_show(self
)) {
2463 frame_show(self
->frame
);
2466 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible,
2467 it needs to be in IconicState. This includes when it is on another
2470 client_change_wm_state(self
);
2475 gboolean
client_hide(ObClient
*self
)
2477 gboolean hide
= FALSE
;
2479 if (!client_should_show(self
)) {
2480 if (self
== focus_client
) {
2481 /* if there is a grab going on, then we need to cancel it. if we
2482 move focus during the grab, applications will get
2483 NotifyWhileGrabbed events and ignore them !
2485 actions should not rely on being able to move focus during an
2488 event_cancel_all_key_grabs();
2491 frame_hide(self
->frame
);
2494 /* According to the ICCCM (sec 4.1.3.1) when a window is not visible,
2495 it needs to be in IconicState. This includes when it is on another
2498 client_change_wm_state(self
);
2503 void client_showhide(ObClient
*self
)
2505 if (!client_show(self
))
2509 gboolean
client_normal(ObClient
*self
) {
2510 return ! (self
->type
== OB_CLIENT_TYPE_DESKTOP
||
2511 self
->type
== OB_CLIENT_TYPE_DOCK
||
2512 self
->type
== OB_CLIENT_TYPE_SPLASH
);
2515 gboolean
client_helper(ObClient
*self
)
2517 return (self
->type
== OB_CLIENT_TYPE_UTILITY
||
2518 self
->type
== OB_CLIENT_TYPE_MENU
||
2519 self
->type
== OB_CLIENT_TYPE_TOOLBAR
);
2522 gboolean
client_mouse_focusable(ObClient
*self
)
2524 return !(self
->type
== OB_CLIENT_TYPE_MENU
||
2525 self
->type
== OB_CLIENT_TYPE_TOOLBAR
||
2526 self
->type
== OB_CLIENT_TYPE_SPLASH
||
2527 self
->type
== OB_CLIENT_TYPE_DOCK
);
2530 gboolean
client_enter_focusable(ObClient
*self
)
2532 /* you can focus desktops but it shouldn't on enter */
2533 return (client_mouse_focusable(self
) &&
2534 self
->type
!= OB_CLIENT_TYPE_DESKTOP
);
2538 static void client_apply_startup_state(ObClient
*self
)
2540 /* set the desktop hint, to make sure that it always exists */
2541 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, self
->desktop
);
2543 /* these are in a carefully crafted order.. */
2546 self
->iconic
= FALSE
;
2547 client_iconify(self
, TRUE
, FALSE
, TRUE
);
2549 if (self
->fullscreen
) {
2550 self
->fullscreen
= FALSE
;
2551 client_fullscreen(self
, TRUE
);
2553 if (self
->undecorated
) {
2554 self
->undecorated
= FALSE
;
2555 client_set_undecorated(self
, TRUE
);
2558 self
->shaded
= FALSE
;
2559 client_shade(self
, TRUE
);
2561 if (self
->demands_attention
) {
2562 self
->demands_attention
= FALSE
;
2563 client_hilite(self
, TRUE
);
2566 if (self
->max_vert
&& self
->max_horz
) {
2567 self
->max_vert
= self
->max_horz
= FALSE
;
2568 client_maximize(self
, TRUE
, 0);
2569 } else if (self
->max_vert
) {
2570 self
->max_vert
= FALSE
;
2571 client_maximize(self
, TRUE
, 2);
2572 } else if (self
->max_horz
) {
2573 self
->max_horz
= FALSE
;
2574 client_maximize(self
, TRUE
, 1);
2577 /* nothing to do for the other states:
2586 void client_gravity_resize_w(ObClient
*self
, gint
*x
, gint oldw
, gint neww
)
2588 /* these should be the current values. this is for when you're not moving,
2590 g_assert(*x
== self
->area
.x
);
2591 g_assert(oldw
== self
->area
.width
);
2594 switch (self
->gravity
) {
2596 case NorthWestGravity
:
2598 case SouthWestGravity
:
2605 *x
-= (neww
- oldw
) / 2;
2607 case NorthEastGravity
:
2609 case SouthEastGravity
:
2615 void client_gravity_resize_h(ObClient
*self
, gint
*y
, gint oldh
, gint newh
)
2617 /* these should be the current values. this is for when you're not moving,
2619 g_assert(*y
== self
->area
.y
);
2620 g_assert(oldh
== self
->area
.height
);
2623 switch (self
->gravity
) {
2625 case NorthWestGravity
:
2627 case NorthEastGravity
:
2634 *y
-= (newh
- oldh
) / 2;
2636 case SouthWestGravity
:
2638 case SouthEastGravity
:
2644 void client_try_configure(ObClient
*self
, gint
*x
, gint
*y
, gint
*w
, gint
*h
,
2645 gint
*logicalw
, gint
*logicalh
,
2648 Rect desired_area
= {*x
, *y
, *w
, *h
};
2650 /* make the frame recalculate its dimentions n shit without changing
2651 anything visible for real, this way the constraints below can work with
2652 the updated frame dimensions. */
2653 frame_adjust_area(self
->frame
, FALSE
, TRUE
, TRUE
);
2655 /* work within the prefered sizes given by the window */
2656 if (!(*w
== self
->area
.width
&& *h
== self
->area
.height
)) {
2657 gint basew
, baseh
, minw
, minh
;
2659 /* base size is substituted with min size if not specified */
2660 if (self
->base_size
.width
|| self
->base_size
.height
) {
2661 basew
= self
->base_size
.width
;
2662 baseh
= self
->base_size
.height
;
2664 basew
= self
->min_size
.width
;
2665 baseh
= self
->min_size
.height
;
2667 /* min size is substituted with base size if not specified */
2668 if (self
->min_size
.width
|| self
->min_size
.height
) {
2669 minw
= self
->min_size
.width
;
2670 minh
= self
->min_size
.height
;
2672 minw
= self
->base_size
.width
;
2673 minh
= self
->base_size
.height
;
2676 /* if this is a user-requested resize, then check against min/max
2679 /* smaller than min size or bigger than max size? */
2680 if (*w
> self
->max_size
.width
) *w
= self
->max_size
.width
;
2681 if (*w
< minw
) *w
= minw
;
2682 if (*h
> self
->max_size
.height
) *h
= self
->max_size
.height
;
2683 if (*h
< minh
) *h
= minh
;
2688 /* keep to the increments */
2689 *w
/= self
->size_inc
.width
;
2690 *h
/= self
->size_inc
.height
;
2692 /* you cannot resize to nothing */
2693 if (basew
+ *w
< 1) *w
= 1 - basew
;
2694 if (baseh
+ *h
< 1) *h
= 1 - baseh
;
2696 /* save the logical size */
2697 *logicalw
= self
->size_inc
.width
> 1 ? *w
: *w
+ basew
;
2698 *logicalh
= self
->size_inc
.height
> 1 ? *h
: *h
+ baseh
;
2700 *w
*= self
->size_inc
.width
;
2701 *h
*= self
->size_inc
.height
;
2706 /* adjust the height to match the width for the aspect ratios.
2707 for this, min size is not substituted for base size ever. */
2708 *w
-= self
->base_size
.width
;
2709 *h
-= self
->base_size
.height
;
2711 if (!self
->fullscreen
) {
2712 if (self
->min_ratio
)
2713 if (*h
* self
->min_ratio
> *w
) {
2714 *h
= (gint
)(*w
/ self
->min_ratio
);
2716 /* you cannot resize to nothing */
2719 *w
= (gint
)(*h
* self
->min_ratio
);
2722 if (self
->max_ratio
)
2723 if (*h
* self
->max_ratio
< *w
) {
2724 *h
= (gint
)(*w
/ self
->max_ratio
);
2726 /* you cannot resize to nothing */
2729 *w
= (gint
)(*h
* self
->min_ratio
);
2734 *w
+= self
->base_size
.width
;
2735 *h
+= self
->base_size
.height
;
2738 /* gets the frame's position */
2739 frame_client_gravity(self
->frame
, x
, y
, *w
, *h
);
2741 /* these positions are frame positions, not client positions */
2743 /* set the size and position if fullscreen */
2744 if (self
->fullscreen
) {
2748 i
= screen_find_monitor(&desired_area
);
2749 a
= screen_physical_area_monitor(i
);
2756 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2758 } else if (self
->max_horz
|| self
->max_vert
) {
2762 i
= screen_find_monitor(&desired_area
);
2763 a
= screen_area_monitor(self
->desktop
, i
);
2765 /* set the size and position if maximized */
2766 if (self
->max_horz
) {
2768 *w
= a
->width
- self
->frame
->size
.left
- self
->frame
->size
.right
;
2770 if (self
->max_vert
) {
2772 *h
= a
->height
- self
->frame
->size
.top
- self
->frame
->size
.bottom
;
2775 user
= FALSE
; /* ignore if the client can't be moved/resized when it
2779 /* gets the client's position */
2780 frame_frame_gravity(self
->frame
, x
, y
, *w
, *h
);
2782 /* these override the above states! if you cant move you can't move! */
2784 if (!(self
->functions
& OB_CLIENT_FUNC_MOVE
)) {
2788 if (!(self
->functions
& OB_CLIENT_FUNC_RESIZE
)) {
2789 *w
= self
->area
.width
;
2790 *h
= self
->area
.height
;
2799 void client_configure(ObClient
*self
, gint x
, gint y
, gint w
, gint h
, gint b
,
2800 gboolean user
, gboolean final
)
2803 gboolean send_resize_client
;
2804 gboolean moved
= FALSE
, resized
= FALSE
;
2805 gboolean fmoved
, fresized
;
2806 guint fdecor
= self
->frame
->decorations
;
2807 gboolean fhorz
= self
->frame
->max_horz
;
2808 gboolean fvert
= self
->frame
->max_vert
;
2809 gint logicalw
, logicalh
;
2811 /* find the new x, y, width, and height (and logical size) */
2812 client_try_configure(self
, &x
, &y
, &w
, &h
, &logicalw
, &logicalh
, user
);
2814 /* set the logical size if things changed */
2815 if (!(w
== self
->area
.width
&& h
== self
->area
.height
))
2816 SIZE_SET(self
->logical_size
, logicalw
, logicalh
);
2818 /* figure out if we moved or resized or what */
2819 moved
= x
!= self
->area
.x
|| y
!= self
->area
.y
;
2820 resized
= w
!= self
->area
.width
|| h
!= self
->area
.height
||
2821 b
!= self
->border_width
;
2823 oldw
= self
->area
.width
;
2824 oldh
= self
->area
.height
;
2825 RECT_SET(self
->area
, x
, y
, w
, h
);
2826 self
->border_width
= b
;
2828 /* for app-requested resizes, always resize if 'resized' is true.
2829 for user-requested ones, only resize if final is true, or when
2830 resizing in redraw mode */
2831 send_resize_client
= ((!user
&& resized
) ||
2833 (resized
&& config_resize_redraw
))));
2835 /* if the client is enlarging, then resize the client before the frame */
2836 if (send_resize_client
&& (w
> oldw
|| h
> oldh
)) {
2837 XWindowChanges changes
;
2838 changes
.x
= -self
->border_width
;
2839 changes
.y
= -self
->border_width
;
2840 changes
.width
= MAX(w
, oldw
);
2841 changes
.height
= MAX(h
, oldh
);
2842 changes
.border_width
= self
->border_width
;
2843 XConfigureWindow(ob_display
, self
->window
,
2844 CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
,
2846 /* resize the plate to show the client padding color underneath */
2847 frame_adjust_client_area(self
->frame
);
2850 /* find the frame's dimensions and move/resize it */
2854 /* if decorations changed, then readjust everything for the frame */
2855 if (self
->decorations
!= fdecor
||
2856 self
->max_horz
!= fhorz
|| self
->max_vert
!= fvert
)
2858 fmoved
= fresized
= TRUE
;
2861 /* adjust the frame */
2862 if (fmoved
|| fresized
)
2863 frame_adjust_area(self
->frame
, fmoved
, fresized
, FALSE
);
2865 if ((!user
|| (user
&& final
)) && !resized
)
2869 /* we have reset the client to 0 border width, so don't include
2870 it in these coords */
2871 POINT_SET(self
->root_pos
,
2872 self
->frame
->area
.x
+ self
->frame
->size
.left
-
2874 self
->frame
->area
.y
+ self
->frame
->size
.top
-
2875 self
->border_width
);
2877 event
.type
= ConfigureNotify
;
2878 event
.xconfigure
.display
= ob_display
;
2879 event
.xconfigure
.event
= self
->window
;
2880 event
.xconfigure
.window
= self
->window
;
2882 ob_debug("Sending ConfigureNotify to %s for %d,%d %dx%d\n",
2883 self
->title
, self
->root_pos
.x
, self
->root_pos
.y
, w
, h
);
2885 /* root window real coords */
2886 event
.xconfigure
.x
= self
->root_pos
.x
;
2887 event
.xconfigure
.y
= self
->root_pos
.y
;
2888 event
.xconfigure
.width
= w
;
2889 event
.xconfigure
.height
= h
;
2890 event
.xconfigure
.border_width
= self
->border_width
;
2891 event
.xconfigure
.above
= None
;
2892 event
.xconfigure
.override_redirect
= FALSE
;
2893 XSendEvent(event
.xconfigure
.display
, event
.xconfigure
.window
,
2894 FALSE
, StructureNotifyMask
, &event
);
2897 /* if the client is shrinking, then resize the frame before the client */
2898 if (send_resize_client
&& (w
<= oldw
&& h
<= oldh
)) {
2899 /* resize the plate to show the client padding color underneath */
2900 frame_adjust_client_area(self
->frame
);
2902 if (send_resize_client
) {
2903 XWindowChanges changes
;
2904 changes
.x
= -self
->border_width
;
2905 changes
.y
= -self
->border_width
;
2908 changes
.border_width
= self
->border_width
;
2909 XConfigureWindow(ob_display
, self
->window
,
2910 CWX
|CWY
|CWWidth
|CWHeight
|CWBorderWidth
,
2918 void client_fullscreen(ObClient
*self
, gboolean fs
)
2922 if (!(self
->functions
& OB_CLIENT_FUNC_FULLSCREEN
) || /* can't */
2923 self
->fullscreen
== fs
) return; /* already done */
2925 self
->fullscreen
= fs
;
2926 client_change_state(self
); /* change the state hints on the client */
2929 self
->pre_fullscreen_area
= self
->area
;
2930 /* if the window is maximized, its area isn't all that meaningful.
2931 save it's premax area instead. */
2932 if (self
->max_horz
) {
2933 self
->pre_fullscreen_area
.x
= self
->pre_max_area
.x
;
2934 self
->pre_fullscreen_area
.width
= self
->pre_max_area
.width
;
2936 if (self
->max_vert
) {
2937 self
->pre_fullscreen_area
.y
= self
->pre_max_area
.y
;
2938 self
->pre_fullscreen_area
.height
= self
->pre_max_area
.height
;
2941 /* these will help configure_full figure out where to fullscreen
2945 w
= self
->area
.width
;
2946 h
= self
->area
.height
;
2948 g_assert(self
->pre_fullscreen_area
.width
> 0 &&
2949 self
->pre_fullscreen_area
.height
> 0);
2951 x
= self
->pre_fullscreen_area
.x
;
2952 y
= self
->pre_fullscreen_area
.y
;
2953 w
= self
->pre_fullscreen_area
.width
;
2954 h
= self
->pre_fullscreen_area
.height
;
2955 RECT_SET(self
->pre_fullscreen_area
, 0, 0, 0, 0);
2958 client_setup_decor_and_functions(self
);
2960 client_move_resize(self
, x
, y
, w
, h
);
2962 /* and adjust our layer/stacking. do this after resizing the window,
2963 and applying decorations, because windows which fill the screen are
2964 considered "fullscreen" and it affects their layer */
2965 client_calc_layer(self
);
2968 /* try focus us when we go into fullscreen mode */
2973 static void client_iconify_recursive(ObClient
*self
,
2974 gboolean iconic
, gboolean curdesk
,
2975 gboolean hide_animation
)
2978 gboolean changed
= FALSE
;
2981 if (self
->iconic
!= iconic
) {
2982 ob_debug("%sconifying window: 0x%lx\n", (iconic
? "I" : "Uni"),
2986 /* don't let non-normal windows iconify along with their parents
2988 if (client_normal(self
)) {
2989 self
->iconic
= iconic
;
2991 /* update the focus lists.. iconic windows go to the bottom of
2993 focus_order_to_bottom(self
);
2998 self
->iconic
= iconic
;
3000 if (curdesk
&& self
->desktop
!= screen_desktop
&&
3001 self
->desktop
!= DESKTOP_ALL
)
3002 client_set_desktop(self
, screen_desktop
, FALSE
);
3004 /* this puts it after the current focused window */
3005 focus_order_remove(self
);
3006 focus_order_add_new(self
);
3013 client_change_state(self
);
3014 if (config_animate_iconify
&& !hide_animation
)
3015 frame_begin_iconify_animation(self
->frame
, iconic
);
3016 /* do this after starting the animation so it doesn't flash */
3017 client_showhide(self
);
3020 /* iconify all direct transients, and deiconify all transients
3022 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3023 if (it
->data
!= self
)
3024 if (client_is_direct_child(self
, it
->data
) || !iconic
)
3025 client_iconify_recursive(it
->data
, iconic
, curdesk
,
3029 void client_iconify(ObClient
*self
, gboolean iconic
, gboolean curdesk
,
3030 gboolean hide_animation
)
3032 if (self
->functions
& OB_CLIENT_FUNC_ICONIFY
|| !iconic
) {
3033 /* move up the transient chain as far as possible first */
3034 self
= client_search_top_normal_parent(self
);
3035 client_iconify_recursive(self
, iconic
, curdesk
, hide_animation
);
3039 void client_maximize(ObClient
*self
, gboolean max
, gint dir
)
3043 g_assert(dir
== 0 || dir
== 1 || dir
== 2);
3044 if (!(self
->functions
& OB_CLIENT_FUNC_MAXIMIZE
)) return; /* can't */
3046 /* check if already done */
3048 if (dir
== 0 && self
->max_horz
&& self
->max_vert
) return;
3049 if (dir
== 1 && self
->max_horz
) return;
3050 if (dir
== 2 && self
->max_vert
) return;
3052 if (dir
== 0 && !self
->max_horz
&& !self
->max_vert
) return;
3053 if (dir
== 1 && !self
->max_horz
) return;
3054 if (dir
== 2 && !self
->max_vert
) return;
3057 /* these will help configure_full figure out which screen to fill with
3061 w
= self
->area
.width
;
3062 h
= self
->area
.height
;
3065 if ((dir
== 0 || dir
== 1) && !self
->max_horz
) { /* horz */
3066 RECT_SET(self
->pre_max_area
,
3067 self
->area
.x
, self
->pre_max_area
.y
,
3068 self
->area
.width
, self
->pre_max_area
.height
);
3070 if ((dir
== 0 || dir
== 2) && !self
->max_vert
) { /* vert */
3071 RECT_SET(self
->pre_max_area
,
3072 self
->pre_max_area
.x
, self
->area
.y
,
3073 self
->pre_max_area
.width
, self
->area
.height
);
3076 if ((dir
== 0 || dir
== 1) && self
->max_horz
) { /* horz */
3077 g_assert(self
->pre_max_area
.width
> 0);
3079 x
= self
->pre_max_area
.x
;
3080 w
= self
->pre_max_area
.width
;
3082 RECT_SET(self
->pre_max_area
, 0, self
->pre_max_area
.y
,
3083 0, self
->pre_max_area
.height
);
3085 if ((dir
== 0 || dir
== 2) && self
->max_vert
) { /* vert */
3086 g_assert(self
->pre_max_area
.height
> 0);
3088 y
= self
->pre_max_area
.y
;
3089 h
= self
->pre_max_area
.height
;
3091 RECT_SET(self
->pre_max_area
, self
->pre_max_area
.x
, 0,
3092 self
->pre_max_area
.width
, 0);
3096 if (dir
== 0 || dir
== 1) /* horz */
3097 self
->max_horz
= max
;
3098 if (dir
== 0 || dir
== 2) /* vert */
3099 self
->max_vert
= max
;
3101 client_change_state(self
); /* change the state hints on the client */
3103 client_setup_decor_and_functions(self
);
3105 client_move_resize(self
, x
, y
, w
, h
);
3108 void client_shade(ObClient
*self
, gboolean shade
)
3110 if ((!(self
->functions
& OB_CLIENT_FUNC_SHADE
) &&
3111 shade
) || /* can't shade */
3112 self
->shaded
== shade
) return; /* already done */
3114 self
->shaded
= shade
;
3115 client_change_state(self
);
3116 client_change_wm_state(self
); /* the window is being hidden/shown */
3117 /* resize the frame to just the titlebar */
3118 frame_adjust_area(self
->frame
, FALSE
, FALSE
, FALSE
);
3121 void client_close(ObClient
*self
)
3125 if (!(self
->functions
& OB_CLIENT_FUNC_CLOSE
)) return;
3127 /* in the case that the client provides no means to requesting that it
3128 close, we just kill it */
3129 if (!self
->delete_window
)
3133 XXX: itd be cool to do timeouts and shit here for killing the client's
3135 like... if the window is around after 5 seconds, then the close button
3136 turns a nice red, and if this function is called again, the client is
3140 ce
.xclient
.type
= ClientMessage
;
3141 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3142 ce
.xclient
.display
= ob_display
;
3143 ce
.xclient
.window
= self
->window
;
3144 ce
.xclient
.format
= 32;
3145 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_delete_window
;
3146 ce
.xclient
.data
.l
[1] = event_curtime
;
3147 ce
.xclient
.data
.l
[2] = 0l;
3148 ce
.xclient
.data
.l
[3] = 0l;
3149 ce
.xclient
.data
.l
[4] = 0l;
3150 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3153 void client_kill(ObClient
*self
)
3155 XKillClient(ob_display
, self
->window
);
3158 void client_hilite(ObClient
*self
, gboolean hilite
)
3160 if (self
->demands_attention
== hilite
)
3161 return; /* no change */
3163 /* don't allow focused windows to hilite */
3164 self
->demands_attention
= hilite
&& !client_focused(self
);
3165 if (self
->frame
!= NULL
) { /* if we're mapping, just set the state */
3166 if (self
->demands_attention
)
3167 frame_flash_start(self
->frame
);
3169 frame_flash_stop(self
->frame
);
3170 client_change_state(self
);
3174 void client_set_desktop_recursive(ObClient
*self
,
3181 if (target
!= self
->desktop
&& self
->type
!= OB_CLIENT_TYPE_DESKTOP
) {
3183 ob_debug("Setting desktop %u\n", target
+1);
3185 g_assert(target
< screen_num_desktops
|| target
== DESKTOP_ALL
);
3187 old
= self
->desktop
;
3188 self
->desktop
= target
;
3189 PROP_SET32(self
->window
, net_wm_desktop
, cardinal
, target
);
3190 /* the frame can display the current desktop state */
3191 frame_adjust_state(self
->frame
);
3192 /* 'move' the window to the new desktop */
3194 client_showhide(self
);
3195 /* raise if it was not already on the desktop */
3196 if (old
!= DESKTOP_ALL
)
3197 stacking_raise(CLIENT_AS_WINDOW(self
));
3198 if (STRUT_EXISTS(self
->strut
))
3199 screen_update_areas();
3202 /* move all transients */
3203 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3204 if (it
->data
!= self
)
3205 if (client_is_direct_child(self
, it
->data
))
3206 client_set_desktop_recursive(it
->data
, target
, donthide
);
3209 void client_set_desktop(ObClient
*self
, guint target
,
3212 self
= client_search_top_normal_parent(self
);
3213 client_set_desktop_recursive(self
, target
, donthide
);
3216 gboolean
client_is_direct_child(ObClient
*parent
, ObClient
*child
)
3218 while (child
!= parent
&&
3219 child
->transient_for
&& child
->transient_for
!= OB_TRAN_GROUP
)
3220 child
= child
->transient_for
;
3221 return child
== parent
;
3224 ObClient
*client_search_modal_child(ObClient
*self
)
3229 for (it
= self
->transients
; it
; it
= g_slist_next(it
)) {
3230 ObClient
*c
= it
->data
;
3231 if ((ret
= client_search_modal_child(c
))) return ret
;
3232 if (c
->modal
) return c
;
3237 gboolean
client_validate(ObClient
*self
)
3241 XSync(ob_display
, FALSE
); /* get all events on the server */
3243 if (XCheckTypedWindowEvent(ob_display
, self
->window
, DestroyNotify
, &e
) ||
3244 XCheckTypedWindowEvent(ob_display
, self
->window
, UnmapNotify
, &e
)) {
3245 XPutBackEvent(ob_display
, &e
);
3252 void client_set_wm_state(ObClient
*self
, glong state
)
3254 if (state
== self
->wmstate
) return; /* no change */
3258 client_iconify(self
, TRUE
, TRUE
, FALSE
);
3261 client_iconify(self
, FALSE
, TRUE
, FALSE
);
3266 void client_set_state(ObClient
*self
, Atom action
, glong data1
, glong data2
)
3268 gboolean shaded
= self
->shaded
;
3269 gboolean fullscreen
= self
->fullscreen
;
3270 gboolean undecorated
= self
->undecorated
;
3271 gboolean max_horz
= self
->max_horz
;
3272 gboolean max_vert
= self
->max_vert
;
3273 gboolean modal
= self
->modal
;
3274 gboolean iconic
= self
->iconic
;
3275 gboolean demands_attention
= self
->demands_attention
;
3276 gboolean above
= self
->above
;
3277 gboolean below
= self
->below
;
3280 if (!(action
== prop_atoms
.net_wm_state_add
||
3281 action
== prop_atoms
.net_wm_state_remove
||
3282 action
== prop_atoms
.net_wm_state_toggle
))
3283 /* an invalid action was passed to the client message, ignore it */
3286 for (i
= 0; i
< 2; ++i
) {
3287 Atom state
= i
== 0 ? data1
: data2
;
3289 if (!state
) continue;
3291 /* if toggling, then pick whether we're adding or removing */
3292 if (action
== prop_atoms
.net_wm_state_toggle
) {
3293 if (state
== prop_atoms
.net_wm_state_modal
)
3294 action
= modal
? prop_atoms
.net_wm_state_remove
:
3295 prop_atoms
.net_wm_state_add
;
3296 else if (state
== prop_atoms
.net_wm_state_maximized_vert
)
3297 action
= self
->max_vert
? prop_atoms
.net_wm_state_remove
:
3298 prop_atoms
.net_wm_state_add
;
3299 else if (state
== prop_atoms
.net_wm_state_maximized_horz
)
3300 action
= self
->max_horz
? prop_atoms
.net_wm_state_remove
:
3301 prop_atoms
.net_wm_state_add
;
3302 else if (state
== prop_atoms
.net_wm_state_shaded
)
3303 action
= shaded
? prop_atoms
.net_wm_state_remove
:
3304 prop_atoms
.net_wm_state_add
;
3305 else if (state
== prop_atoms
.net_wm_state_skip_taskbar
)
3306 action
= self
->skip_taskbar
?
3307 prop_atoms
.net_wm_state_remove
:
3308 prop_atoms
.net_wm_state_add
;
3309 else if (state
== prop_atoms
.net_wm_state_skip_pager
)
3310 action
= self
->skip_pager
?
3311 prop_atoms
.net_wm_state_remove
:
3312 prop_atoms
.net_wm_state_add
;
3313 else if (state
== prop_atoms
.net_wm_state_hidden
)
3314 action
= self
->iconic
?
3315 prop_atoms
.net_wm_state_remove
:
3316 prop_atoms
.net_wm_state_add
;
3317 else if (state
== prop_atoms
.net_wm_state_fullscreen
)
3318 action
= fullscreen
?
3319 prop_atoms
.net_wm_state_remove
:
3320 prop_atoms
.net_wm_state_add
;
3321 else if (state
== prop_atoms
.net_wm_state_above
)
3322 action
= self
->above
? prop_atoms
.net_wm_state_remove
:
3323 prop_atoms
.net_wm_state_add
;
3324 else if (state
== prop_atoms
.net_wm_state_below
)
3325 action
= self
->below
? prop_atoms
.net_wm_state_remove
:
3326 prop_atoms
.net_wm_state_add
;
3327 else if (state
== prop_atoms
.net_wm_state_demands_attention
)
3328 action
= self
->demands_attention
?
3329 prop_atoms
.net_wm_state_remove
:
3330 prop_atoms
.net_wm_state_add
;
3331 else if (state
== prop_atoms
.ob_wm_state_undecorated
)
3332 action
= undecorated
? prop_atoms
.net_wm_state_remove
:
3333 prop_atoms
.net_wm_state_add
;
3336 if (action
== prop_atoms
.net_wm_state_add
) {
3337 if (state
== prop_atoms
.net_wm_state_modal
) {
3339 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3341 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3343 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3345 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3346 self
->skip_taskbar
= TRUE
;
3347 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3348 self
->skip_pager
= TRUE
;
3349 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3351 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3353 } else if (state
== prop_atoms
.net_wm_state_above
) {
3356 } else if (state
== prop_atoms
.net_wm_state_below
) {
3359 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3360 demands_attention
= TRUE
;
3361 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3365 } else { /* action == prop_atoms.net_wm_state_remove */
3366 if (state
== prop_atoms
.net_wm_state_modal
) {
3368 } else if (state
== prop_atoms
.net_wm_state_maximized_vert
) {
3370 } else if (state
== prop_atoms
.net_wm_state_maximized_horz
) {
3372 } else if (state
== prop_atoms
.net_wm_state_shaded
) {
3374 } else if (state
== prop_atoms
.net_wm_state_skip_taskbar
) {
3375 self
->skip_taskbar
= FALSE
;
3376 } else if (state
== prop_atoms
.net_wm_state_skip_pager
) {
3377 self
->skip_pager
= FALSE
;
3378 } else if (state
== prop_atoms
.net_wm_state_hidden
) {
3380 } else if (state
== prop_atoms
.net_wm_state_fullscreen
) {
3382 } else if (state
== prop_atoms
.net_wm_state_above
) {
3384 } else if (state
== prop_atoms
.net_wm_state_below
) {
3386 } else if (state
== prop_atoms
.net_wm_state_demands_attention
) {
3387 demands_attention
= FALSE
;
3388 } else if (state
== prop_atoms
.ob_wm_state_undecorated
) {
3389 undecorated
= FALSE
;
3394 if (max_horz
!= self
->max_horz
|| max_vert
!= self
->max_vert
) {
3395 if (max_horz
!= self
->max_horz
&& max_vert
!= self
->max_vert
) {
3397 if (max_horz
== max_vert
) { /* both going the same way */
3398 client_maximize(self
, max_horz
, 0);
3400 client_maximize(self
, max_horz
, 1);
3401 client_maximize(self
, max_vert
, 2);
3405 if (max_horz
!= self
->max_horz
)
3406 client_maximize(self
, max_horz
, 1);
3408 client_maximize(self
, max_vert
, 2);
3411 /* change fullscreen state before shading, as it will affect if the window
3413 if (fullscreen
!= self
->fullscreen
)
3414 client_fullscreen(self
, fullscreen
);
3415 if (shaded
!= self
->shaded
)
3416 client_shade(self
, shaded
);
3417 if (undecorated
!= self
->undecorated
)
3418 client_set_undecorated(self
, undecorated
);
3419 if (above
!= self
->above
|| below
!= self
->below
) {
3420 self
->above
= above
;
3421 self
->below
= below
;
3422 client_calc_layer(self
);
3425 if (modal
!= self
->modal
) {
3426 self
->modal
= modal
;
3427 /* when a window changes modality, then its stacking order with its
3428 transients needs to change */
3429 stacking_raise(CLIENT_AS_WINDOW(self
));
3431 /* it also may get focused. if something is focused that shouldn't
3432 be focused anymore, then move the focus */
3433 if (focus_client
&& client_focus_target(focus_client
) != focus_client
)
3434 client_focus(focus_client
);
3437 if (iconic
!= self
->iconic
)
3438 client_iconify(self
, iconic
, FALSE
, FALSE
);
3440 if (demands_attention
!= self
->demands_attention
)
3441 client_hilite(self
, demands_attention
);
3443 client_change_state(self
); /* change the hint to reflect these changes */
3446 ObClient
*client_focus_target(ObClient
*self
)
3448 ObClient
*child
= NULL
;
3450 child
= client_search_modal_child(self
);
3451 if (child
) return child
;
3455 gboolean
client_can_focus(ObClient
*self
)
3457 /* choose the correct target */
3458 self
= client_focus_target(self
);
3460 if (!self
->frame
->visible
)
3463 if (!(self
->can_focus
|| self
->focus_notify
))
3469 gboolean
client_focus(ObClient
*self
)
3471 /* we might not focus this window, so if we have modal children which would
3472 be focused instead, bring them to this desktop */
3473 client_bring_modal_windows(self
);
3475 /* choose the correct target */
3476 self
= client_focus_target(self
);
3478 if (!client_can_focus(self
)) {
3479 if (!self
->frame
->visible
) {
3480 /* update the focus lists */
3481 focus_order_to_top(self
);
3486 ob_debug_type(OB_DEBUG_FOCUS
,
3487 "Focusing client \"%s\" (0x%x) at time %u\n",
3488 self
->title
, self
->window
, event_curtime
);
3490 /* if there is a grab going on, then we need to cancel it. if we move
3491 focus during the grab, applications will get NotifyWhileGrabbed events
3494 actions should not rely on being able to move focus during an
3497 event_cancel_all_key_grabs();
3499 xerror_set_ignore(TRUE
);
3500 xerror_occured
= FALSE
;
3502 if (self
->can_focus
) {
3503 /* This can cause a BadMatch error with CurrentTime, or if an app
3504 passed in a bad time for _NET_WM_ACTIVE_WINDOW. */
3505 XSetInputFocus(ob_display
, self
->window
, RevertToPointerRoot
,
3509 if (self
->focus_notify
) {
3511 ce
.xclient
.type
= ClientMessage
;
3512 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
3513 ce
.xclient
.display
= ob_display
;
3514 ce
.xclient
.window
= self
->window
;
3515 ce
.xclient
.format
= 32;
3516 ce
.xclient
.data
.l
[0] = prop_atoms
.wm_take_focus
;
3517 ce
.xclient
.data
.l
[1] = event_curtime
;
3518 ce
.xclient
.data
.l
[2] = 0l;
3519 ce
.xclient
.data
.l
[3] = 0l;
3520 ce
.xclient
.data
.l
[4] = 0l;
3521 XSendEvent(ob_display
, self
->window
, FALSE
, NoEventMask
, &ce
);
3524 xerror_set_ignore(FALSE
);
3526 ob_debug_type(OB_DEBUG_FOCUS
, "Error focusing? %d\n", xerror_occured
);
3527 return !xerror_occured
;
3530 /*! Present the client to the user.
3531 @param raise If the client should be raised or not. You should only set
3532 raise to false if you don't care if the window is completely
3535 static void client_present(ObClient
*self
, gboolean here
, gboolean raise
)
3537 /* if using focus_delay, stop the timer now so that focus doesn't
3539 event_halt_focus_delay();
3541 if (client_normal(self
) && screen_showing_desktop
)
3542 screen_show_desktop(FALSE
, self
);
3544 client_iconify(self
, FALSE
, here
, FALSE
);
3545 if (self
->desktop
!= DESKTOP_ALL
&&
3546 self
->desktop
!= screen_desktop
)
3549 client_set_desktop(self
, screen_desktop
, FALSE
);
3551 screen_set_desktop(self
->desktop
, FALSE
);
3552 } else if (!self
->frame
->visible
)
3553 /* if its not visible for other reasons, then don't mess
3557 client_shade(self
, FALSE
);
3559 stacking_raise(CLIENT_AS_WINDOW(self
));
3564 void client_activate(ObClient
*self
, gboolean here
, gboolean user
)
3566 guint32 last_time
= focus_client
? focus_client
->user_time
: CurrentTime
;
3567 gboolean allow
= FALSE
;
3569 /* if the request came from the user, or if nothing is focused, then grant
3571 if the currently focused app doesn't set a user_time, then it can't
3572 benefit from any focus stealing prevention.
3574 if (user
|| !focus_client
|| !last_time
)
3576 /* otherwise, if they didn't give a time stamp or if it is too old, they
3579 allow
= event_curtime
&& event_time_after(event_curtime
, last_time
);
3581 ob_debug_type(OB_DEBUG_FOCUS
,
3582 "Want to activate window 0x%x with time %u (last time %u), "
3583 "source=%s allowing? %d\n",
3584 self
->window
, event_curtime
, last_time
,
3585 (user
? "user" : "application"), allow
);
3588 client_present(self
, here
, TRUE
);
3590 /* don't focus it but tell the user it wants attention */
3591 client_hilite(self
, TRUE
);
3594 static void client_bring_windows_recursive(ObClient
*self
,
3601 for (it
= self
->transients
; it
; it
= g_slist_next(it
))
3602 client_bring_windows_recursive(it
->data
, desktop
, helpers
, modals
);
3604 if (((helpers
&& client_helper(self
)) ||
3605 (modals
&& self
->modal
))&&
3606 self
->desktop
!= desktop
&& self
->desktop
!= DESKTOP_ALL
)
3608 client_set_desktop(self
, desktop
, FALSE
);
3612 void client_bring_helper_windows(ObClient
*self
)
3614 client_bring_windows_recursive(self
, self
->desktop
, TRUE
, FALSE
);
3617 void client_bring_modal_windows(ObClient
*self
)
3619 client_bring_windows_recursive(self
, self
->desktop
, FALSE
, TRUE
);
3622 gboolean
client_focused(ObClient
*self
)
3624 return self
== focus_client
;
3627 static ObClientIcon
* client_icon_recursive(ObClient
*self
, gint w
, gint h
)
3630 gulong min_diff
, min_i
;
3632 if (!self
->nicons
) {
3633 ObClientIcon
*parent
= NULL
;
3635 if (self
->transient_for
) {
3636 if (self
->transient_for
!= OB_TRAN_GROUP
)
3637 parent
= client_icon_recursive(self
->transient_for
, w
, h
);
3640 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
3641 ObClient
*c
= it
->data
;
3642 if (c
!= self
&& !c
->transient_for
) {
3643 if ((parent
= client_icon_recursive(c
, w
, h
)))
3653 /* some kind of crappy approximation to find the icon closest in size to
3654 what we requested, but icons are generally all the same ratio as
3655 eachother so it's good enough. */
3657 min_diff
= ABS(self
->icons
[0].width
- w
) + ABS(self
->icons
[0].height
- h
);
3660 for (i
= 1; i
< self
->nicons
; ++i
) {
3663 diff
= ABS(self
->icons
[i
].width
- w
) + ABS(self
->icons
[i
].height
- h
);
3664 if (diff
< min_diff
) {
3669 return &self
->icons
[min_i
];
3672 const ObClientIcon
* client_icon(ObClient
*self
, gint w
, gint h
)
3675 static ObClientIcon deficon
;
3677 if (!(ret
= client_icon_recursive(self
, w
, h
))) {
3678 deficon
.width
= deficon
.height
= 48;
3679 deficon
.data
= ob_rr_theme
->def_win_icon
;
3685 void client_set_layer(ObClient
*self
, gint layer
)
3689 self
->above
= FALSE
;
3690 } else if (layer
== 0) {
3691 self
->below
= self
->above
= FALSE
;
3693 self
->below
= FALSE
;
3696 client_calc_layer(self
);
3697 client_change_state(self
); /* reflect this in the state hints */
3700 void client_set_undecorated(ObClient
*self
, gboolean undecorated
)
3702 if (self
->undecorated
!= undecorated
&&
3703 /* don't let it undecorate if the function is missing, but let
3705 (self
->functions
& OB_CLIENT_FUNC_UNDECORATE
|| !undecorated
))
3707 self
->undecorated
= undecorated
;
3708 client_setup_decor_and_functions(self
);
3709 client_reconfigure(self
); /* show the lack of decorations */
3710 client_change_state(self
); /* reflect this in the state hints */
3714 guint
client_monitor(ObClient
*self
)
3716 return screen_find_monitor(&self
->frame
->area
);
3719 ObClient
*client_search_top_normal_parent(ObClient
*self
)
3721 while (self
->transient_for
&& self
->transient_for
!= OB_TRAN_GROUP
&&
3722 client_normal(self
->transient_for
))
3723 self
= self
->transient_for
;
3727 static GSList
*client_search_all_top_parents_internal(ObClient
*self
,
3729 ObStackingLayer layer
)
3733 /* move up the direct transient chain as far as possible */
3734 while (self
->transient_for
&& self
->transient_for
!= OB_TRAN_GROUP
&&
3735 (!bylayer
|| self
->transient_for
->layer
== layer
) &&
3736 client_normal(self
->transient_for
))
3737 self
= self
->transient_for
;
3739 if (!self
->transient_for
)
3740 ret
= g_slist_prepend(ret
, self
);
3744 g_assert(self
->group
);
3746 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
3747 ObClient
*c
= it
->data
;
3749 if (!c
->transient_for
&& client_normal(c
) &&
3750 (!bylayer
|| c
->layer
== layer
))
3752 ret
= g_slist_prepend(ret
, c
);
3756 if (ret
== NULL
) /* no group parents */
3757 ret
= g_slist_prepend(ret
, self
);
3763 GSList
*client_search_all_top_parents(ObClient
*self
)
3765 return client_search_all_top_parents_internal(self
, FALSE
, 0);
3768 GSList
*client_search_all_top_parents_layer(ObClient
*self
)
3770 return client_search_all_top_parents_internal(self
, TRUE
, self
->layer
);
3773 ObClient
*client_search_focus_parent(ObClient
*self
)
3775 if (self
->transient_for
) {
3776 if (self
->transient_for
!= OB_TRAN_GROUP
) {
3777 if (client_focused(self
->transient_for
))
3778 return self
->transient_for
;
3782 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
3783 ObClient
*c
= it
->data
;
3785 /* checking transient_for prevents infinate loops! */
3786 if (c
!= self
&& !c
->transient_for
)
3787 if (client_focused(c
))
3796 ObClient
*client_search_parent(ObClient
*self
, ObClient
*search
)
3798 if (self
->transient_for
) {
3799 if (self
->transient_for
!= OB_TRAN_GROUP
) {
3800 if (self
->transient_for
== search
)
3805 for (it
= self
->group
->members
; it
; it
= g_slist_next(it
)) {
3806 ObClient
*c
= it
->data
;
3808 /* checking transient_for prevents infinate loops! */
3809 if (c
!= self
&& !c
->transient_for
)
3819 ObClient
*client_search_transient(ObClient
*self
, ObClient
*search
)
3823 for (sit
= self
->transients
; sit
; sit
= g_slist_next(sit
)) {
3824 if (sit
->data
== search
)
3826 if (client_search_transient(sit
->data
, search
))
3832 #define WANT_EDGE(cur, c) \
3835 if(!client_normal(cur)) \
3837 if(screen_desktop != cur->desktop && cur->desktop != DESKTOP_ALL) \
3842 #define HIT_EDGE(my_edge_start, my_edge_end, his_edge_start, his_edge_end) \
3843 if ((his_edge_start >= my_edge_start && \
3844 his_edge_start <= my_edge_end) || \
3845 (my_edge_start >= his_edge_start && \
3846 my_edge_start <= his_edge_end)) \
3849 /* finds the nearest edge in the given direction from the current client
3850 * note to self: the edge is the -frame- edge (the actual one), not the
3853 gint
client_directional_edge_search(ObClient
*c
, ObDirection dir
, gboolean hang
)
3855 gint dest
, monitor_dest
;
3856 gint my_edge_start
, my_edge_end
, my_offset
;
3863 a
= screen_area(c
->desktop
);
3864 monitor
= screen_area_monitor(c
->desktop
, client_monitor(c
));
3867 case OB_DIRECTION_NORTH
:
3868 my_edge_start
= c
->frame
->area
.x
;
3869 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3870 my_offset
= c
->frame
->area
.y
+ (hang
? c
->frame
->area
.height
: 0);
3872 /* default: top of screen */
3873 dest
= a
->y
+ (hang
? c
->frame
->area
.height
: 0);
3874 monitor_dest
= monitor
->y
+ (hang
? c
->frame
->area
.height
: 0);
3875 /* if the monitor edge comes before the screen edge, */
3876 /* use that as the destination instead. (For xinerama) */
3877 if (monitor_dest
!= dest
&& my_offset
> monitor_dest
)
3878 dest
= monitor_dest
;
3880 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3881 gint his_edge_start
, his_edge_end
, his_offset
;
3882 ObClient
*cur
= it
->data
;
3886 his_edge_start
= cur
->frame
->area
.x
;
3887 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3888 his_offset
= cur
->frame
->area
.y
+
3889 (hang
? 0 : cur
->frame
->area
.height
);
3891 if(his_offset
+ 1 > my_offset
)
3894 if(his_offset
< dest
)
3897 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
3900 case OB_DIRECTION_SOUTH
:
3901 my_edge_start
= c
->frame
->area
.x
;
3902 my_edge_end
= c
->frame
->area
.x
+ c
->frame
->area
.width
;
3903 my_offset
= c
->frame
->area
.y
+ (hang
? 0 : c
->frame
->area
.height
);
3905 /* default: bottom of screen */
3906 dest
= a
->y
+ a
->height
- (hang
? c
->frame
->area
.height
: 0);
3907 monitor_dest
= monitor
->y
+ monitor
->height
-
3908 (hang
? c
->frame
->area
.height
: 0);
3909 /* if the monitor edge comes before the screen edge, */
3910 /* use that as the destination instead. (For xinerama) */
3911 if (monitor_dest
!= dest
&& my_offset
< monitor_dest
)
3912 dest
= monitor_dest
;
3914 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3915 gint his_edge_start
, his_edge_end
, his_offset
;
3916 ObClient
*cur
= it
->data
;
3920 his_edge_start
= cur
->frame
->area
.x
;
3921 his_edge_end
= cur
->frame
->area
.x
+ cur
->frame
->area
.width
;
3922 his_offset
= cur
->frame
->area
.y
+
3923 (hang
? cur
->frame
->area
.height
: 0);
3926 if(his_offset
- 1 < my_offset
)
3929 if(his_offset
> dest
)
3932 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
3935 case OB_DIRECTION_WEST
:
3936 my_edge_start
= c
->frame
->area
.y
;
3937 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3938 my_offset
= c
->frame
->area
.x
+ (hang
? c
->frame
->area
.width
: 0);
3940 /* default: leftmost egde of screen */
3941 dest
= a
->x
+ (hang
? c
->frame
->area
.width
: 0);
3942 monitor_dest
= monitor
->x
+ (hang
? c
->frame
->area
.width
: 0);
3943 /* if the monitor edge comes before the screen edge, */
3944 /* use that as the destination instead. (For xinerama) */
3945 if (monitor_dest
!= dest
&& my_offset
> monitor_dest
)
3946 dest
= monitor_dest
;
3948 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3949 gint his_edge_start
, his_edge_end
, his_offset
;
3950 ObClient
*cur
= it
->data
;
3954 his_edge_start
= cur
->frame
->area
.y
;
3955 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3956 his_offset
= cur
->frame
->area
.x
+
3957 (hang
? 0 : cur
->frame
->area
.width
);
3959 if(his_offset
+ 1 > my_offset
)
3962 if(his_offset
< dest
)
3965 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
3968 case OB_DIRECTION_EAST
:
3969 my_edge_start
= c
->frame
->area
.y
;
3970 my_edge_end
= c
->frame
->area
.y
+ c
->frame
->area
.height
;
3971 my_offset
= c
->frame
->area
.x
+ (hang
? 0 : c
->frame
->area
.width
);
3973 /* default: rightmost edge of screen */
3974 dest
= a
->x
+ a
->width
- (hang
? c
->frame
->area
.width
: 0);
3975 monitor_dest
= monitor
->x
+ monitor
->width
-
3976 (hang
? c
->frame
->area
.width
: 0);
3977 /* if the monitor edge comes before the screen edge, */
3978 /* use that as the destination instead. (For xinerama) */
3979 if (monitor_dest
!= dest
&& my_offset
< monitor_dest
)
3980 dest
= monitor_dest
;
3982 for(it
= client_list
; it
&& my_offset
!= dest
; it
= g_list_next(it
)) {
3983 gint his_edge_start
, his_edge_end
, his_offset
;
3984 ObClient
*cur
= it
->data
;
3988 his_edge_start
= cur
->frame
->area
.y
;
3989 his_edge_end
= cur
->frame
->area
.y
+ cur
->frame
->area
.height
;
3990 his_offset
= cur
->frame
->area
.x
+
3991 (hang
? cur
->frame
->area
.width
: 0);
3993 if(his_offset
- 1 < my_offset
)
3996 if(his_offset
> dest
)
3999 HIT_EDGE(my_edge_start
, my_edge_end
, his_edge_start
, his_edge_end
)
4002 case OB_DIRECTION_NORTHEAST
:
4003 case OB_DIRECTION_SOUTHEAST
:
4004 case OB_DIRECTION_NORTHWEST
:
4005 case OB_DIRECTION_SOUTHWEST
:
4006 /* not implemented */
4008 g_assert_not_reached();
4009 dest
= 0; /* suppress warning */
4014 ObClient
* client_under_pointer()
4018 ObClient
*ret
= NULL
;
4020 if (screen_pointer_pos(&x
, &y
)) {
4021 for (it
= stacking_list
; it
; it
= g_list_next(it
)) {
4022 if (WINDOW_IS_CLIENT(it
->data
)) {
4023 ObClient
*c
= WINDOW_AS_CLIENT(it
->data
);
4024 if (c
->frame
->visible
&&
4025 /* ignore all animating windows */
4026 !frame_iconify_animating(c
->frame
) &&
4027 RECT_CONTAINS(c
->frame
->area
, x
, y
))
4038 gboolean
client_has_group_siblings(ObClient
*self
)
4040 return self
->group
&& self
->group
->members
->next
;