X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Ffocus.c;h=f88ad26f3277b29e389ef034086ae3977a521f1b;hb=141c249b8cd3b94a722acc8c0225b3cbf83e5042;hp=197948e98c286c619a01cbd24036d16d45aac0d3;hpb=3f2d342de80d819f5a40b6af1e4cc5478429e6be;p=chaz%2Fopenbox diff --git a/openbox/focus.c b/openbox/focus.c index 197948e9..f88ad26f 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -37,9 +37,9 @@ #include #include -ObClient *focus_client, *focus_hilite; -GList *focus_order; -ObClient *focus_cycle_target; +ObClient *focus_client = NULL; +GList *focus_order = NULL; +ObClient *focus_cycle_target = NULL; struct { InternalWindow top; @@ -81,7 +81,7 @@ void focus_startup(gboolean reconfig) client_add_destructor(focus_cycle_destructor, NULL); /* start with nothing focused */ - focus_set_client(NULL); + focus_nothing(); focus_indicator.top.obwin.type = Window_Internal; focus_indicator.left.obwin.type = Window_Internal; @@ -156,7 +156,6 @@ static void push_to_top(ObClient *client) void focus_set_client(ObClient *client) { Window active; - ObClient *old; ob_debug_type(OB_DEBUG_FOCUS, "focus_set_client 0x%lx\n", client ? client->window : 0); @@ -165,37 +164,26 @@ void focus_set_client(ObClient *client) screen_install_colormap(focus_client, FALSE); screen_install_colormap(client, TRUE); - if (client == NULL) { - ob_debug_type(OB_DEBUG_FOCUS, "actively focusing NONWINDOW\n"); - - /* when nothing will be focused, send focus to the backup target */ - XSetInputFocus(ob_display, screen_support_win, RevertToNone, - event_curtime); - XSync(ob_display, FALSE); - } - /* in the middle of cycling..? kill it. CurrentTime is fine, time won't be used. */ if (focus_cycle_target) focus_cycle(TRUE, TRUE, TRUE, TRUE, TRUE, TRUE); - old = focus_client; focus_client = client; - /* move to the top of the list */ - if (client != NULL) + if (client != NULL) { + /* move to the top of the list */ push_to_top(client); + /* remove hiliting from the window when it gets focused */ + client_hilite(client, FALSE); + } /* set the NET_ACTIVE_WINDOW hint, but preserve it on shutdown */ if (ob_state() != OB_STATE_EXITING) { active = client ? client->window : None; PROP_SET32(RootWindow(ob_display, ob_screen), net_active_window, window, active); - - /* remove hiliting from the window when it gets focused */ - if (client != NULL) - client_hilite(client, FALSE); } } @@ -231,8 +219,11 @@ ObClient* focus_fallback_target(gboolean allow_refocus, ObClient *old) #endif ob_debug_type(OB_DEBUG_FOCUS, "trying omnipresentness\n"); - if (allow_refocus && old && old->desktop == DESKTOP_ALL) + if (allow_refocus && old && old->desktop == DESKTOP_ALL && + client_normal(old)) + { return old; + } ob_debug_type(OB_DEBUG_FOCUS, "trying the focus order\n"); @@ -251,13 +242,15 @@ ObClient* focus_fallback_target(gboolean allow_refocus, ObClient *old) a splashscreen or a desktop window (save the desktop as a backup fallback though) */ - if (client_can_focus(c) && c->desktop == screen_desktop && - !c->iconic) + if (client_can_focus(c) && !c->iconic) { - if (client_normal(c)) { + if (c->desktop == screen_desktop && client_normal(c)) { ob_debug_type(OB_DEBUG_FOCUS, "found in focus order\n"); return it->data; - } else if (c->type == OB_CLIENT_TYPE_DESKTOP && !desktop) + } else if ((c->desktop == screen_desktop || + c->desktop == DESKTOP_ALL) && + c->type == OB_CLIENT_TYPE_DESKTOP && + desktop == NULL) desktop = c; } } @@ -265,27 +258,40 @@ ObClient* focus_fallback_target(gboolean allow_refocus, ObClient *old) /* as a last resort fallback to the desktop window if there is one. (if there's more than one, then the one most recently focused.) */ + ob_debug_type(OB_DEBUG_FOCUS, "found desktop: \n", !!desktop); return desktop; } void focus_fallback(gboolean allow_refocus) { ObClient *new; - ObClient *old; - - /* save this before moving focus away to nothing */ - old = focus_client; + ObClient *old = focus_client; /* unfocus any focused clients.. they can be focused by Pointer events and such, and then when I try focus them, I won't get a FocusIn event at all for them. */ - focus_set_client(NULL); + focus_nothing(); if ((new = focus_fallback_target(allow_refocus, old))) client_focus(new); } +void focus_nothing() +{ + /* Install our own colormap */ + if (focus_client != NULL) { + screen_install_colormap(focus_client, FALSE); + screen_install_colormap(NULL, TRUE); + } + + focus_client = NULL; + + /* when nothing will be focused, send focus to the backup target */ + XSetInputFocus(ob_display, screen_support_win, RevertToPointerRoot, + event_curtime); +} + static void popup_cycle(ObClient *c, gboolean show) { if (!show) { @@ -332,6 +338,9 @@ void focus_cycle_draw_indicator() XUnmapWindow(ob_display, focus_indicator.left.win); XUnmapWindow(ob_display, focus_indicator.right.win); XUnmapWindow(ob_display, focus_indicator.bottom.win); + + /* kill enter events cause by this unmapping */ + event_ignore_queued_enters(); } else { /* if (focus_cycle_target)