all repos — openbox @ 8923bd7026755ecc35898c5573fa9c6670a8c56b

openbox fork - make it a bit more like ryudo

raise windows smartly when merging desktops
Dana Jansens danakj@orodu.net
commit

8923bd7026755ecc35898c5573fa9c6670a8c56b

parent

e048751f914d16cb6346f7e7ca6532eaae44ce31

3 files changed, 33 insertions(+), 21 deletions(-)

jump to
M openbox/action.copenbox/action.c

@@ -2056,29 +2056,41 @@ }

void action_remove_desktop(union ActionData *data) { + guint rmdesktop, movedesktop; + GList *it, *stacking_copy; + if (screen_num_desktops < 2) return; client_action_start(data); - if (screen_desktop == screen_num_desktops - 1) - data->addremovedesktop.current = FALSE; - - /* move all the clients over */ - if (data->addremovedesktop.current) { - GList *it, *stacking_copy; + /* what desktop are we removing and moving to? */ + if (data->addremovedesktop.current) + rmdesktop = screen_desktop; + else + rmdesktop = screen_num_desktops - 1; + if (rmdesktop < screen_num_desktops - 1) + movedesktop = rmdesktop + 1; + else + movedesktop = rmdesktop; - /* make a copy of the list cuz we're changing it */ - stacking_copy = g_list_copy(stacking_list); - for (it = g_list_last(stacking_copy); it; it = g_list_previous(it)) { - if (WINDOW_IS_CLIENT(it->data)) { - ObClient *c = it->data; - if (c->desktop != DESKTOP_ALL && c->desktop > screen_desktop) - client_set_desktop(c, c->desktop - 1, TRUE, TRUE); - /* raise all the windows that are on the current desktop which - is being merged */ - else if (c->desktop == DESKTOP_ALL || - c->desktop == screen_desktop) - stacking_raise(CLIENT_AS_WINDOW(c)); + /* make a copy of the list cuz we're changing it */ + stacking_copy = g_list_copy(stacking_list); + for (it = g_list_last(stacking_copy); it; it = g_list_previous(it)) { + if (WINDOW_IS_CLIENT(it->data)) { + ObClient *c = it->data; + guint d = c->desktop; + if (d != DESKTOP_ALL && d >= movedesktop) { + client_set_desktop(c, c->desktop - 1, TRUE, TRUE); + ob_debug("moving window %s\n", c->title); + } + /* raise all the windows that are on the current desktop which + is being merged */ + if ((screen_desktop == rmdesktop - 1 || + screen_desktop == rmdesktop) && + (d == DESKTOP_ALL || d == screen_desktop)) + { + stacking_raise(CLIENT_AS_WINDOW(c)); + ob_debug("raising window %s\n", c->title); } } }
M openbox/client.copenbox/client.c

@@ -2509,7 +2509,6 @@ */

frame_hide(self->frame); hide = TRUE; - ob_debug("hiding client %s\n", self->title); /* According to the ICCCM (sec 4.1.3.1) when a window is not visible, it needs to be in IconicState. This includes when it is on another
M openbox/screen.copenbox/screen.c

@@ -526,8 +526,9 @@ if (c->desktop != DESKTOP_ALL && c->desktop >= num)

client_set_desktop(c, num - 1, FALSE, TRUE); /* raise all the windows that are on the current desktop which is being merged */ - else if (c->desktop == DESKTOP_ALL || - c->desktop == num - 1) + else if (screen_desktop == num - 1 && + (c->desktop == DESKTOP_ALL || + c->desktop == screen_desktop)) stacking_raise(WINDOW_AS_CLIENT(c)); } }