]> git.sur5r.net Git - i3/i3/commitdiff
close empty parent containers, add testcase
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Jul 2010 22:54:47 +0000 (00:54 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Jul 2010 22:54:47 +0000 (00:54 +0200)
src/tree.c
testcases/t/30-close-empty-split.t [new file with mode: 0644]

index 6c49c96ba084457753d146202e51eb488764783a..54e36c341d9f1750cf011e3464bc926dea2dd6c5 100644 (file)
@@ -201,6 +201,15 @@ void tree_close(Con *con, bool kill_window) {
     DLOG("focusing %p / %s\n", next, next->name);
     /* TODO: check if the container (or one of its children) was focused */
     con_focus(next);
+
+    /* check if the parent container is empty now and close it */
+    if (parent->type != CT_WORKSPACE &&
+        TAILQ_EMPTY(&(parent->nodes_head))) {
+        DLOG("Closing empty parent container\n");
+        /* TODO: check if this container would swallow any other client and
+         * don’t close it automatically. */
+        tree_close(parent, false);
+    }
 }
 
 /*
diff --git a/testcases/t/30-close-empty-split.t b/testcases/t/30-close-empty-split.t
new file mode 100644 (file)
index 0000000..31d0ad1
--- /dev/null
@@ -0,0 +1,48 @@
+#!perl
+# vim:ts=4:sw=4:expandtab
+#
+# Check if empty split containers are automatically closed.
+#
+use i3test tests => 4;
+use Time::HiRes qw(sleep);
+
+my $i3 = i3("/tmp/nestedcons");
+
+my $tmp = get_unused_workspace();
+$i3->command("workspace $tmp")->recv;
+
+ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
+
+$i3->command('open')->recv;
+my ($nodes, $focus) = get_ws_content($tmp);
+my $first = $focus->[0];
+
+$i3->command('split v')->recv;
+
+($nodes, $focus) = get_ws_content($tmp);
+
+is($nodes->[0]->{focused}, 0, 'split container not focused');
+
+# focus the split container
+$i3->command('level up')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+my $split = $focus->[0];
+$i3->command('level down')->recv;
+
+$i3->command('open')->recv;
+
+($nodes, $focus) = get_ws_content($tmp);
+my $second = $focus->[0];
+
+isnt($first, $second, 'different container focused');
+
+##############################################################
+# close both windows and see if the split container still exists
+##############################################################
+
+$i3->command('kill')->recv;
+$i3->command('kill')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+isnt($nodes->[0]->{id}, $split, 'split container closed');
+
+diag( "Testing i3, Perl $], $^X" );