]> git.sur5r.net Git - i3/i3/commitdiff
Use the combined geometry of children when setting a split container to floating...
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 6 Mar 2011 01:38:21 +0000 (02:38 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 6 Mar 2011 01:39:15 +0000 (02:39 +0100)
Fixes #332

src/floating.c
src/x.c
testcases/t/55-floating-split-size.t [new file with mode: 0644]

index 4a2e904fd436c64c51f5db2b2dc2b9aed4478142..2218da29c1bdb2588454ffd013304a4492b60621 100644 (file)
@@ -98,7 +98,19 @@ void floating_enable(Con *con, bool automatic) {
     int deco_height = font->height + 5;
 
     DLOG("Original rect: (%d, %d) with %d x %d\n", con->rect.x, con->rect.y, con->rect.width, con->rect.height);
+    Rect zero = { 0, 0, 0, 0 };
     nc->rect = con->geometry;
+    /* If the geometry was not set (split containers), we need to determine a
+     * sensible one by combining the geometry of all children */
+    if (memcmp(&(nc->rect), &zero, sizeof(Rect)) == 0) {
+        DLOG("Geometry not set, combining children\n");
+        Con *child;
+        TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
+            DLOG("child geometry: %d x %d\n", child->geometry.width, child->geometry.height);
+            nc->rect.width += child->geometry.width;
+            nc->rect.height = max(nc->rect.height, child->geometry.height);
+        }
+    }
     /* Raise the width/height to at least 75x50 (minimum size for windows) */
     nc->rect.width = max(nc->rect.width, 75);
     nc->rect.height = max(nc->rect.height, 50);
diff --git a/src/x.c b/src/x.c
index 5a13b51a325ce3c79d832de1a5b81580df383fe3..f932f9cbbcf3812f156e082e2539ce46127cd14c 100644 (file)
--- a/src/x.c
+++ b/src/x.c
@@ -149,8 +149,7 @@ void x_move_win(Con *src, Con *dest) {
         return;
     }
 
-    Rect zero;
-    memset(&zero, 0, sizeof(Rect));
+    Rect zero = { 0, 0, 0, 0 };
     if (memcmp(&(state_dest->window_rect), &(zero), sizeof(Rect)) == 0) {
         memcpy(&(state_dest->window_rect), &(state_src->window_rect), sizeof(Rect));
         DLOG("COPYING RECT\n");
diff --git a/testcases/t/55-floating-split-size.t b/testcases/t/55-floating-split-size.t
new file mode 100644 (file)
index 0000000..26671eb
--- /dev/null
@@ -0,0 +1,70 @@
+#!perl
+# vim:ts=4:sw=4:expandtab
+#
+# Test to see if i3 combines the geometry of all children in a split container
+# when setting the split container to floating
+#
+use X11::XCB qw(:all);
+use Time::HiRes qw(sleep);
+use i3test;
+
+BEGIN {
+    use_ok('X11::XCB::Window');
+}
+
+my $x = X11::XCB::Connection->new;
+my $i3 = i3("/tmp/nestedcons");
+
+my $tmp = get_unused_workspace;
+cmd "workspace $tmp";
+
+#####################################################################
+# open a window with 200x80
+#####################################################################
+
+my $first = $x->root->create_child(
+    class => WINDOW_CLASS_INPUT_OUTPUT,
+    rect => [ 0, 0, 200, 80],
+    background_color => '#FF0000',
+);
+
+$first->map;
+
+sleep 0.25;
+
+#####################################################################
+# Open a second window with 300x90
+#####################################################################
+
+my $second = $x->root->create_child(
+    class => WINDOW_CLASS_INPUT_OUTPUT,
+    rect => [ 0, 0, 300, 90],
+    background_color => '#00FF00',
+);
+
+$second->map;
+
+sleep 0.25;
+
+#####################################################################
+# Set the parent to floating
+#####################################################################
+cmd 'nop setting floating';
+cmd 'level up';
+cmd 'mode floating';
+
+#####################################################################
+# Get geometry of the first floating node (the split container)
+#####################################################################
+
+my @nodes = @{get_ws($tmp)->{floating_nodes}};
+my $rect = $nodes[0]->{rect};
+
+# we compare the width with ± 20 pixels for borders
+cmp_ok($rect->{width}, '>', 500-20, 'width now > 480');
+cmp_ok($rect->{width}, '<', 500+20, 'width now < 520');
+# we compare the height with ± 40 pixels for decorations
+cmp_ok($rect->{height}, '>', 90-40, 'width now > 50');
+cmp_ok($rect->{height}, '<', 90+40, 'width now < 130');
+
+done_testing;