all repos — openbox @ b05ac359b8a5a91cd2a115ba4612e8acfdf1d8d6

openbox fork - make it a bit more like ryudo

show the focus cycle popup's icons in linear order when cycling in linear order (bug #2319)
Dana Jansens danakj@orodu.net
commit

b05ac359b8a5a91cd2a115ba4612e8acfdf1d8d6

parent

56fface3a4e2b5970e4867047207da84a58adeb2

3 files changed, 24 insertions(+), 15 deletions(-)

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

@@ -37,6 +37,7 @@ } ObCycleType;

ObClient *focus_cycle_target = NULL; static ObCycleType focus_cycle_type = OB_CYCLE_NONE; +static gboolean focus_cycle_linear; static gboolean focus_cycle_iconic_windows; static gboolean focus_cycle_all_desktops; static gboolean focus_cycle_nonhilite_windows;

@@ -87,7 +88,8 @@ void focus_cycle_reorder()

{ if (focus_cycle_type == OB_CYCLE_NORMAL) { focus_cycle_target = focus_cycle_popup_refresh(focus_cycle_target, - TRUE); + TRUE, + focus_cycle_linear); focus_cycle_update_indicator(focus_cycle_target); if (!focus_cycle_target) focus_cycle(TRUE, TRUE, TRUE, TRUE, TRUE, TRUE,

@@ -126,6 +128,7 @@ list = client_list;

} if (focus_cycle_target == NULL) { + focus_cycle_linear = linear; focus_cycle_iconic_windows = TRUE; focus_cycle_all_desktops = all_desktops; focus_cycle_nonhilite_windows = nonhilite_windows;

@@ -156,7 +159,7 @@ focus_cycle_type = OB_CYCLE_NORMAL;

focus_cycle_draw_indicator(showbar ? ft : NULL); } /* same arguments as focus_target_valid */ - focus_cycle_popup_show(ft, mode); + focus_cycle_popup_show(ft, mode, focus_cycle_linear); return focus_cycle_target; } else if (ft != focus_cycle_target) { focus_cycle_target = ft;

@@ -298,6 +301,7 @@ if (!focus_order)

goto done_cycle; if (focus_cycle_target == NULL) { + focus_cycle_linear = FALSE; focus_cycle_iconic_windows = FALSE; focus_cycle_all_desktops = FALSE; focus_cycle_nonhilite_windows = TRUE;
M openbox/focus_cycle_popup.copenbox/focus_cycle_popup.c

@@ -102,7 +102,8 @@

static gchar *popup_get_name (ObClient *c); static gboolean popup_setup (ObFocusCyclePopup *p, gboolean create_targets, - gboolean refresh_targets); + gboolean refresh_targets, + gboolean linear); static void popup_render (ObFocusCyclePopup *p, const ObClient *c);

@@ -250,7 +251,7 @@ g_slice_free(ObFocusCyclePopupTarget, t);

} static gboolean popup_setup(ObFocusCyclePopup *p, gboolean create_targets, - gboolean refresh_targets) + gboolean refresh_targets, gboolean linear) { gint maxwidth, n; GList *it;

@@ -279,7 +280,10 @@ /* build a list of all the valid focus targets and measure their strings,

and count them */ maxwidth = 0; n = 0; - for (it = g_list_last(focus_order); it; it = g_list_previous(it)) { + for (it = g_list_last(linear ? client_list : focus_order); + it; + it = g_list_previous(it)) + { ObClient *ft = it->data; if (focus_cycle_valid(ft)) {

@@ -700,7 +704,8 @@

XFlush(obt_display); } -void focus_cycle_popup_show(ObClient *c, ObFocusCyclePopupMode mode) +void focus_cycle_popup_show(ObClient *c, ObFocusCyclePopupMode mode, + gboolean linear) { g_assert(c != NULL);

@@ -711,7 +716,7 @@ }

/* do this stuff only when the dialog is first showing */ if (!popup.mapped) { - popup_setup(&popup, TRUE, FALSE); + popup_setup(&popup, TRUE, FALSE, linear); /* this is fixed once the dialog is shown */ popup.mode = mode; }

@@ -751,11 +756,8 @@

g_assert(c != NULL); /* do this stuff only when the dialog is first showing */ - if (!popup.mapped) { + if (!single_popup->popup->mapped) { const Rect *a; - - popup_setup(&popup, FALSE, FALSE); - g_assert(popup.targets == NULL); /* position the popup */ a = screen_physical_area_primary(FALSE);

@@ -821,14 +823,15 @@ return NULL;

} ObClient* focus_cycle_popup_refresh(ObClient *target, - gboolean redraw) + gboolean redraw, + gboolean linear) { if (!popup.mapped) return NULL; if (!focus_cycle_valid(target)) target = popup_revert(target); - redraw = popup_setup(&popup, TRUE, TRUE) && redraw; + redraw = popup_setup(&popup, TRUE, TRUE, linear) && redraw; if (!target && popup.targets) target = ((ObFocusCyclePopupTarget*)popup.targets->data)->client;
M openbox/focus_cycle_popup.hopenbox/focus_cycle_popup.h

@@ -33,7 +33,8 @@

void focus_cycle_popup_startup(gboolean reconfig); void focus_cycle_popup_shutdown(gboolean reconfig); -void focus_cycle_popup_show(struct _ObClient *c, ObFocusCyclePopupMode mode); +void focus_cycle_popup_show(struct _ObClient *c, ObFocusCyclePopupMode mode, + gboolean linear); void focus_cycle_popup_hide(void); void focus_cycle_popup_single_show(struct _ObClient *c);

@@ -46,6 +47,7 @@ the target given to the function is no longer valid, this will return

a different target that is valid, and which should be considered the current focus cycling target. */ struct _ObClient *focus_cycle_popup_refresh(struct _ObClient *target, - gboolean redraw); + gboolean redraw, + gboolean linear); #endif