]> git.sur5r.net Git - i3/i3/commitdiff
Treat stacking containers as if they are in vertical orientation, add testcase
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Jul 2010 23:27:47 +0000 (01:27 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Jul 2010 23:27:47 +0000 (01:27 +0200)
include/con.h
src/con.c
src/tree.c
testcases/t/31-stacking-order.t [new file with mode: 0644]

index f2d05dbcdce3e546d58760feb6e89ad3e22a06d6..716ebfd3dbf58dae60978178c65161f1017115a0 100644 (file)
@@ -113,4 +113,12 @@ void con_toggle_fullscreen(Con *con);
  */
 void con_move_to_workspace(Con *con, Con *workspace);
 
+/**
+ * Returns the orientation of the given container (for stacked containers,
+ * vertical orientation is used regardless of the actual orientation of the
+ * container).
+ *
+ */
+int con_orientation(Con *con);
+
 #endif
index dc9e0a54172f90c921f11451ecf1726b8d068d24..a28d6633ab058206e52dcbb33b8195b46f65f0bc 100644 (file)
--- a/src/con.c
+++ b/src/con.c
@@ -376,3 +376,17 @@ void con_move_to_workspace(Con *con, Con *workspace) {
     con_detach(con);
     con_attach(con, next);
 }
+
+/*
+ * Returns the orientation of the given container (for stacked containers,
+ * vertical orientation is used regardless of the actual orientation of the
+ * container).
+ *
+ */
+int con_orientation(Con *con) {
+    /* stacking containers behave like they are in vertical orientation */
+    if (con->layout == L_STACKED)
+        return VERT;
+
+    return con->orientation;
+}
index 54e36c341d9f1750cf011e3464bc926dea2dd6c5..cf7f60dd14546e5403fdd185507279eb9d1ff432 100644 (file)
@@ -332,7 +332,7 @@ void tree_render() {
 void tree_next(char way, orientation_t orientation) {
     /* 1: get the first parent with the same orientation */
     Con *parent = focused->parent;
-    while (parent->orientation != orientation) {
+    while (con_orientation(parent) != orientation) {
         LOG("need to go one level further up\n");
         /* if the current parent is an output, we are at a workspace
          * and the orientation still does not match */
@@ -377,7 +377,7 @@ void tree_move(char way, orientation_t orientation) {
     if (focused->type == CT_WORKSPACE)
         return;
     bool level_changed = false;
-    while (parent->orientation != orientation) {
+    while (con_orientation(parent) != orientation) {
         LOG("need to go one level further up\n");
         /* if the current parent is an output, we are at a workspace
          * and the orientation still does not match */
diff --git a/testcases/t/31-stacking-order.t b/testcases/t/31-stacking-order.t
new file mode 100644 (file)
index 0000000..caf136f
--- /dev/null
@@ -0,0 +1,64 @@
+#!perl
+# vim:ts=4:sw=4:expandtab
+#
+# Check if stacking containers can be used independantly of
+# the split mode (horizontal/vertical) of the underlying
+# container.
+#
+use i3test tests => 7;
+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');
+
+# Enforce vertical split mode
+$i3->command('split v')->recv;
+
+$i3->command('open')->recv;
+my ($nodes, $focus) = get_ws_content($tmp);
+my $first = $focus->[0];
+
+$i3->command('open')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+my $second = $focus->[0];
+
+isnt($first, $second, 'two different containers opened');
+
+##############################################################
+# change mode to stacking and cycle through the containers
+##############################################################
+
+$i3->command('layout stacking')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+is($focus->[0], $second, 'second container still focused');
+
+$i3->command('next v')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+is($focus->[0], $first, 'first container focused');
+
+$i3->command('prev v')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+is($focus->[0], $second, 'second container focused again');
+
+##############################################################
+# now change the orientation to horizontal and cycle
+##############################################################
+
+$i3->command('level up')->recv;
+$i3->command('split h')->recv;
+$i3->command('level down')->recv;
+
+$i3->command('next v')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+is($focus->[0], $first, 'first container focused');
+
+$i3->command('prev v')->recv;
+($nodes, $focus) = get_ws_content($tmp);
+is($focus->[0], $second, 'second container focused again');
+
+
+diag( "Testing i3, Perl $], $^X" );