]> git.sur5r.net Git - i3/i3/blobdiff - src/tree.c
Bugfix: Don’t focus new cons when there is a fullscreen con (Thanks dothebart)
[i3/i3] / src / tree.c
index bff101df74e0a891f4538a9d5ae216069e80e084..ef254a8f122300cbaca98b18a7b51a6a2292c305 100644 (file)
@@ -61,12 +61,15 @@ Con *tree_open_con(Con *con) {
         con = focused->parent;
         /* If the parent is an output, we are on a workspace. In this case,
          * the new container needs to be opened as a leaf of the workspace. */
-        if (con->type == CT_OUTPUT)
+        if (con->parent->type == CT_OUTPUT && con->type != CT_DOCKAREA) {
             con = focused;
+        }
+
         /* If the currently focused container is a floating container, we
          * attach the new container to the workspace */
         if (con->type == CT_FLOATING_CON)
             con = con->parent;
+        DLOG("con = %p\n", con);
     }
 
     assert(con != NULL);
@@ -77,9 +80,6 @@ Con *tree_open_con(Con *con) {
     /* 4: re-calculate child->percent for each child */
     con_fix_percent(con);
 
-    /* 5: focus the new container */
-    con_focus(new);
-
     return new;
 }
 
@@ -155,11 +155,8 @@ void tree_close(Con *con, bool kill_window, bool dont_kill_parent) {
         DLOG("parent container killed\n");
         if (con == focused) {
             DLOG("This is the focused container, i need to find another one to focus. I start looking at ws = %p\n", ws);
-            next = ws;
-            /* now go down the focus stack as far as
-             * possible, excluding the current container */
-            while (!TAILQ_EMPTY(&(next->focus_head)))
-                next = TAILQ_FIRST(&(next->focus_head));
+            /* go down the focus stack as far as possible */
+            next = con_descend_focused(ws);
 
             dont_kill_parent = true;
             DLOG("Alright, focusing %p\n", next);
@@ -180,22 +177,26 @@ void tree_close(Con *con, bool kill_window, bool dont_kill_parent) {
     }
 
     if (was_mapped || con == focused) {
-        DLOG("focusing %p / %s\n", next, next->name);
-        /* TODO: check if the container (or one of its children) was focused */
-        con_focus(next);
+        if (kill_window || !dont_kill_parent || con == focused) {
+            DLOG("focusing %p / %s\n", next, next->name);
+            /* TODO: check if the container (or one of its children) was focused */
+            if (next->type == CT_DOCKAREA) {
+                /* Instead of focusing the dockarea, we need to restore focus to the workspace */
+                con_focus(con_descend_focused(output_get_content(next->parent)));
+            } else {
+                con_focus(next);
+            }
+        }
+        else {
+            DLOG("not focusing because we're not killing anybody");
+        }
     } else {
         DLOG("not focusing, was not mapped\n");
     }
 
     /* check if the parent container is empty now and close it */
-    if (!dont_kill_parent &&
-        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, false);
-    }
+    if (!dont_kill_parent)
+        CALL(parent, on_remove_child);
 }
 
 /*
@@ -263,8 +264,9 @@ void tree_split(Con *con, orientation_t orientation) {
  */
 void level_up() {
     /* We can focus up to the workspace, but not any higher in the tree */
-    if (focused->parent->type != CT_CON &&
-        focused->parent->type != CT_WORKSPACE) {
+    if ((focused->parent->type != CT_CON &&
+        focused->parent->type != CT_WORKSPACE) ||
+        focused->type == CT_WORKSPACE) {
         printf("cannot go up\n");
         return;
     }
@@ -333,7 +335,8 @@ void tree_next(char way, orientation_t orientation) {
     /* 1: get the first parent with the same orientation */
     Con *parent = focused->parent;
     while (focused->type != CT_WORKSPACE &&
-           con_orientation(parent) != orientation) {
+           (con_orientation(parent) != orientation ||
+            con_num_children(parent) == 1)) {
         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 */
@@ -344,6 +347,11 @@ void tree_next(char way, orientation_t orientation) {
     Con *current = TAILQ_FIRST(&(parent->focus_head));
     assert(current != TAILQ_END(&(parent->focus_head)));
 
+    if (TAILQ_EMPTY(&(parent->nodes_head))) {
+        DLOG("Nothing to focus here, move along...\n");
+        return;
+    }
+
     /* 2: chose next (or previous) */
     Con *next;
     if (way == 'n') {
@@ -361,147 +369,7 @@ void tree_next(char way, orientation_t orientation) {
     /* 3: focus choice comes in here. at the moment we will go down
      * until we find a window */
     /* TODO: check for window, atm we only go down as far as possible */
-    while (!TAILQ_EMPTY(&(next->focus_head)))
-        next = TAILQ_FIRST(&(next->focus_head));
-
-    DLOG("focusing %p\n", next);
-    con_focus(next);
-}
-
-/*
- * Moves the current container in the given way (next/previous) and given
- * orientation (horizontal/vertical).
- *
- */
-void tree_move(char way, orientation_t orientation) {
-    /* 1: get the first parent with the same orientation */
-    Con *parent = focused->parent;
-    Con *old_parent = parent;
-    if (focused->type == CT_WORKSPACE)
-        return;
-    bool level_changed = false;
-    while (con_orientation(parent) != orientation) {
-        DLOG("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. In this case, we split the
-         * workspace to have the same look & feel as in older i3 releases. */
-        if (parent->type == CT_WORKSPACE) {
-            DLOG("Arrived at workspace, splitting...\n");
-            /* 1: create a new split container */
-            Con *new = con_new(NULL);
-            new->parent = parent;
-
-            /* 2: copy layout and orientation from workspace */
-            new->layout = parent->layout;
-            new->orientation = parent->orientation;
-
-            Con *old_focused = TAILQ_FIRST(&(parent->focus_head));
-            if (old_focused == TAILQ_END(&(parent->focus_head)))
-                old_focused = NULL;
-
-            /* 3: move the existing cons of this workspace below the new con */
-            DLOG("Moving cons\n");
-            Con *child;
-            while (!TAILQ_EMPTY(&(parent->nodes_head))) {
-                child = TAILQ_FIRST(&(parent->nodes_head));
-                con_detach(child);
-                con_attach(child, new, true);
-            }
-
-            /* 4: switch workspace orientation */
-            parent->orientation = orientation;
-
-            /* 4: attach the new split container to the workspace */
-            DLOG("Attaching new split to ws\n");
-            con_attach(new, parent, false);
-
-            if (old_focused)
-                con_focus(old_focused);
-
-            level_changed = true;
-
-            break;
-        }
-        parent = parent->parent;
-        level_changed = true;
-    }
-    Con *current = TAILQ_FIRST(&(parent->focus_head));
-    assert(current != TAILQ_END(&(parent->focus_head)));
-
-    /* 2: chose next (or previous) */
-    Con *next = current;
-    if (way == 'n') {
-        LOG("i would insert it after %p / %s\n", next, next->name);
-
-        /* Have a look at the next container: If there is no next container or
-         * if it is a leaf node, we move the focused one left to it. However,
-         * for split containers, we descend into it. */
-        next = TAILQ_NEXT(next, nodes);
-        if (next == TAILQ_END(&(next->parent->nodes_head))) {
-            if (focused == current)
-                return;
-            next = current;
-        } else {
-            if (level_changed && con_is_leaf(next)) {
-                next = current;
-            } else {
-                /* if this is a split container, we need to go down */
-                while (!TAILQ_EMPTY(&(next->focus_head)))
-                    next = TAILQ_FIRST(&(next->focus_head));
-            }
-        }
-
-        con_detach(focused);
-        focused->parent = next->parent;
-
-        TAILQ_INSERT_AFTER(&(next->parent->nodes_head), next, focused, nodes);
-        TAILQ_INSERT_HEAD(&(next->parent->focus_head), focused, focused);
-        /* TODO: don’t influence focus handling? */
-    } else {
-        LOG("i would insert it before %p / %s\n", current, current->name);
-        bool gone_down = false;
-        next = TAILQ_PREV(next, nodes_head, nodes);
-        if (next == TAILQ_END(&(next->parent->nodes_head))) {
-            if (focused == current)
-                return;
-            next = current;
-        } else {
-            if (level_changed && con_is_leaf(next)) {
-                next = current;
-            } else {
-                /* if this is a split container, we need to go down */
-                while (!TAILQ_EMPTY(&(next->focus_head))) {
-                    gone_down = true;
-                    next = TAILQ_FIRST(&(next->focus_head));
-                }
-            }
-        }
-
-        con_detach(focused);
-        focused->parent = next->parent;
-
-        /* After going down in the tree, we insert the container *after*
-         * the currently focused one even though the command used "before".
-         * This is to keep the user experience clear, since the before/after
-         * only signifies the direction of the movement on top-level */
-        if (gone_down)
-            TAILQ_INSERT_AFTER(&(next->parent->nodes_head), next, focused, nodes);
-        else TAILQ_INSERT_BEFORE(next, focused, nodes);
-        TAILQ_INSERT_HEAD(&(next->parent->focus_head), focused, focused);
-        /* TODO: don’t influence focus handling? */
-    }
-
-    /* We need to call con_focus() to fix the focus stack "above" the container
-     * we just inserted the focused container into (otherwise, the parent
-     * container(s) would still point to the old container(s)). */
-    con_focus(focused);
-
-    if (con_num_children(old_parent) == 0) {
-        DLOG("Old container empty after moving. Let's close it\n");
-        tree_close(old_parent, false, false);
-    }
-
-    tree_flatten(croot);
+    con_focus(con_descend_focused(next));
 }
 
 /*
@@ -557,6 +425,7 @@ void tree_flatten(Con *con) {
         TAILQ_INSERT_BEFORE(con, current, nodes);
         DLOG("attaching to focus list\n");
         TAILQ_INSERT_TAIL(&(parent->focus_head), current, focused);
+        current->percent = con->percent;
     }
     DLOG("re-attached all\n");