From: Tony Crisci Date: Mon, 28 Jul 2014 02:32:50 +0000 (-0400) Subject: Raise floating windows on `focus [direction]` X-Git-Tag: 4.9~61 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=034c82c0aceaeac0a286d0042c04a6d4953f96b1;p=i3%2Fi3 Raise floating windows on `focus [direction]` Raise a window when cycling focus between floating windows with `focus [direction]` command so that newly focused windows are rendered on top of other windows. This is done by placing the window last in the floating nodes of the parent and reordering the stack so the relative order is preserved. fixes #1322 --- diff --git a/src/tree.c b/src/tree.c index 6e289790..a6b15122 100644 --- a/src/tree.c +++ b/src/tree.c @@ -621,6 +621,14 @@ static bool _tree_next(Con *con, char way, orientation_t orientation, bool wrap) if (!next) return false; + /* Raise the floating window on top of other windows preserving + * relative stack order */ + while (TAILQ_LAST(&(parent->floating_head), floating_head) != next) { + Con *last = TAILQ_LAST(&(parent->floating_head), floating_head); + TAILQ_REMOVE(&(parent->floating_head), last, floating_windows); + TAILQ_INSERT_HEAD(&(parent->floating_head), last, floating_windows); + } + con_focus(con_descend_focused(next)); return true; } diff --git a/testcases/t/236-floating-focus-raise.t b/testcases/t/236-floating-focus-raise.t new file mode 100644 index 00000000..4be87137 --- /dev/null +++ b/testcases/t/236-floating-focus-raise.t @@ -0,0 +1,44 @@ +#!perl +# vim:ts=4:sw=4:expandtab +# +# Please read the following documents before working on tests: +# • http://build.i3wm.org/docs/testsuite.html +# (or docs/testsuite) +# +# • http://build.i3wm.org/docs/lib-i3test.html +# (alternatively: perldoc ./testcases/lib/i3test.pm) +# +# • http://build.i3wm.org/docs/ipc.html +# (or docs/ipc) +# +# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf +# (unless you are already familiar with Perl) +# +# Test that focusing floating windows with the command `focus [direction]` +# promotes the focused window to the top of the rendering stack. +# Ticket: #1322 +# Bug still in: 4.8-88-gcc09348 +use i3test; + +my $ws = fresh_workspace; + +my $win1 = open_floating_window; +my $win2 = open_floating_window; +my $win3 = open_floating_window; + +# it's a good idea to do this a few times because of the implementation +for my $i (1 .. 3) { + cmd 'focus left'; + my $ws_con = get_ws($ws); + is($ws_con->{floating_nodes}[-1]->{nodes}[0]->{id}, get_focused($ws), + "focus left put the focused window on top of the floating windows (try $i)"); +} + +for my $i (1 .. 3) { + cmd 'focus right'; + my $ws_con = get_ws($ws); + is($ws_con->{floating_nodes}[-1]->{nodes}[0]->{id}, get_focused($ws), + "focus right put the focused window on top of the floating windows (try $i)"); +} + +done_testing;