X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Fclient.c;h=3f3f161de016c79126136d3eb84491f4d8a09a5a;hb=f54bd60a004a17583cc3e1783a29c4518686dceb;hp=66ed0d9f415bb2bcbee7e8d4b2e3b5fd6532561d;hpb=5aea44adc96555614ec1f4adb1058f4825e98009;p=chaz%2Fopenbox diff --git a/openbox/client.c b/openbox/client.c index 66ed0d9f..3f3f161d 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -32,6 +32,7 @@ #include "event.h" #include "grab.h" #include "focus.h" +#include "propwin.h" #include "stacking.h" #include "openbox.h" #include "group.h" @@ -103,6 +104,7 @@ void client_startup(gboolean reconfig) void client_shutdown(gboolean reconfig) { + if (reconfig) return; } void client_add_destructor(ObClientCallback func, gpointer data) @@ -516,6 +518,9 @@ void client_unmanage(ObClient *self) /* remove the window from our save set */ XChangeSaveSet(ob_display, self->window, SetModeDelete); + /* kill the property windows */ + propwin_remove(self->user_time_window, OB_PROPWIN_USER_TIME, self); + /* update the focus lists */ focus_order_remove(self); if (client_focused(self)) { @@ -1002,7 +1007,9 @@ static void client_get_all(ObClient *self) client_update_title(self); client_update_strut(self); client_update_icons(self); - client_update_user_time(self); + client_update_user_time_window(self); + if (!self->user_time_window) /* check if this would have been called */ + client_update_user_time(self); client_update_icon_geometry(self); } @@ -2019,8 +2026,15 @@ void client_update_icons(ObClient *self) void client_update_user_time(ObClient *self) { guint32 time; + gboolean got = FALSE; + + if (self->user_time_window) + got = PROP_GET32(self->user_time_window, + net_wm_user_time, cardinal, &time); + if (!got) + got = PROP_GET32(self->window, net_wm_user_time, cardinal, &time); - if (PROP_GET32(self->window, net_wm_user_time, cardinal, &time)) { + if (got) { /* we set this every time, not just when it grows, because in practice sometimes time goes backwards! (ntpdate.. yay....) so.. if it goes backward we don't want all windows to stop focusing. we'll just @@ -2029,9 +2043,39 @@ void client_update_user_time(ObClient *self) */ self->user_time = time; - /* - ob_debug("window %s user time %u\n", self->title, time); - */ + /*ob_debug("window %s user time %u\n", self->title, time);*/ + } +} + +void client_update_user_time_window(ObClient *self) +{ + guint32 w; + + if (!PROP_GET32(self->window, net_wm_user_time_window, window, &w)) + w = None; + + if (w != self->user_time_window) { + /* remove the old window */ + propwin_remove(self->user_time_window, OB_PROPWIN_USER_TIME, self); + self->user_time_window = None; + + if (self->group && self->group->leader == w) { + ob_debug_type(OB_DEBUG_APP_BUGS, "Window is setting its " + "_NET_WM_USER_TYPE_WINDOW to its group leader\n"); + /* do it anyways..? */ + } + else if (w == self->window) { + ob_debug_type(OB_DEBUG_APP_BUGS, "Window is setting its " + "_NET_WM_USER_TIME_WINDOW to itself\n"); + w = None; /* don't do it */ + } + + /* add the new window */ + propwin_add(w, OB_PROPWIN_USER_TIME, self); + self->user_time_window = w; + + /* and update from it */ + client_update_user_time(self); } }