2 #define I3__FILE__ "tree.c"
4 * vim:ts=4:sw=4:expandtab
6 * i3 - an improved dynamic tiling window manager
7 * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
9 * tree.c: Everything that primarily modifies the layout tree data structure.
17 struct all_cons_head all_cons = TAILQ_HEAD_INITIALIZER(all_cons);
20 * Create the pseudo-output __i3. Output-independent workspaces such as
21 * __i3_scratch will live there.
24 static Con *_create___i3(void) {
25 Con *__i3 = con_new(croot, NULL);
27 __i3->name = sstrdup("__i3");
28 __i3->type = CT_OUTPUT;
29 __i3->layout = L_OUTPUT;
30 con_fix_percent(croot);
31 x_set_name(__i3, "[i3 con] pseudo-output __i3");
32 /* For retaining the correct position/size of a scratchpad window, the
33 * dimensions of the real outputs should be multiples of the __i3
34 * pseudo-output. Ensuring that is the job of scratchpad_fix_resolution()
35 * which gets called after this function and after detecting all the
36 * outputs (or whenever an output changes). */
37 __i3->rect.width = 1280;
38 __i3->rect.height = 1024;
40 /* Add a content container. */
41 DLOG("adding main content container\n");
42 Con *content = con_new(NULL, NULL);
43 content->type = CT_CON;
45 content->name = sstrdup("content");
46 content->layout = L_SPLITH;
48 x_set_name(content, "[i3 con] content __i3");
49 con_attach(content, __i3, false);
51 /* Attach the __i3_scratch workspace. */
52 Con *ws = con_new(NULL, NULL);
53 ws->type = CT_WORKSPACE;
55 ws->name = sstrdup("__i3_scratch");
56 ws->layout = L_SPLITH;
57 con_attach(ws, content, false);
58 x_set_name(ws, "[i3 con] workspace __i3_scratch");
59 ws->fullscreen_mode = CF_OUTPUT;
65 * Loads tree from 'path' (used for in-place restarts).
68 bool tree_restore(const char *path, xcb_get_geometry_reply_t *geometry) {
69 char *globbed = resolve_tilde(path);
71 if (!path_exists(globbed)) {
72 LOG("%s does not exist, not restoring tree\n", globbed);
77 /* TODO: refactor the following */
78 croot = con_new(NULL, NULL);
79 croot->rect = (Rect) {
86 tree_append_json(focused, globbed, NULL);
88 DLOG("appended tree, using new root\n");
89 croot = TAILQ_FIRST(&(croot->nodes_head));
90 DLOG("new root = %p\n", croot);
91 Con *out = TAILQ_FIRST(&(croot->nodes_head));
92 DLOG("out = %p\n", out);
93 Con *ws = TAILQ_FIRST(&(out->nodes_head));
94 DLOG("ws = %p\n", ws);
96 /* For in-place restarting into v4.2, we need to make sure the new
97 * pseudo-output __i3 is present. */
98 if (strcmp(out->name, "__i3") != 0) {
99 DLOG("Adding pseudo-output __i3 during inplace restart\n");
100 Con *__i3 = _create___i3();
101 /* Ensure that it is the first output, other places in the code make
102 * that assumption. */
103 TAILQ_REMOVE(&(croot->nodes_head), __i3, nodes);
104 TAILQ_INSERT_HEAD(&(croot->nodes_head), __i3, nodes);
111 * Initializes the tree by creating the root node. The CT_OUTPUT Cons below the
112 * root node are created in randr.c for each Output.
115 void tree_init(xcb_get_geometry_reply_t *geometry) {
116 croot = con_new(NULL, NULL);
118 croot->name = "root";
119 croot->type = CT_ROOT;
120 croot->layout = L_SPLITH;
121 croot->rect = (Rect) {
131 * Opens an empty container in the current container
134 Con *tree_open_con(Con *con, i3Window *window) {
136 /* every focusable Con has a parent (outputs have parent root) */
137 con = focused->parent;
138 /* If the parent is an output, we are on a workspace. In this case,
139 * the new container needs to be opened as a leaf of the workspace. */
140 if (con->parent->type == CT_OUTPUT && con->type != CT_DOCKAREA) {
144 /* If the currently focused container is a floating container, we
145 * attach the new container to the currently focused spot in its
147 if (con->type == CT_FLOATING_CON) {
148 con = con_descend_tiling_focused(con->parent);
149 if (con->type != CT_WORKSPACE)
152 DLOG("con = %p\n", con);
157 /* 3. create the container and attach it to its parent */
158 Con *new = con_new(con, window);
159 new->layout = L_SPLITH;
161 /* 4: re-calculate child->percent for each child */
162 con_fix_percent(con);
167 static bool _is_con_mapped(Con *con) {
170 TAILQ_FOREACH(child, &(con->nodes_head), nodes)
171 if (_is_con_mapped(child))
178 * Closes the given container including all children.
179 * Returns true if the container was killed or false if just WM_DELETE was sent
180 * and the window is expected to kill itself.
182 * The dont_kill_parent flag is specified when the function calls itself
183 * recursively while deleting a containers children.
185 * The force_set_focus flag is specified in the case of killing a floating
186 * window: tree_close() will be invoked for the CT_FLOATINGCON (the parent
187 * container) and focus should be set there.
190 bool tree_close(Con *con, kill_window_t kill_window, bool dont_kill_parent, bool force_set_focus) {
191 bool was_mapped = con->mapped;
192 Con *parent = con->parent;
195 /* Even if the container itself is not mapped, its children may be
196 * mapped (for example split containers don't have a mapped window on
197 * their own but usually contain mapped children). */
198 was_mapped = _is_con_mapped(con);
201 /* remove the urgency hint of the workspace (if set) */
204 con_update_parents_urgency(con);
205 workspace_update_urgent_flag(con_get_workspace(con));
208 /* Get the container which is next focused */
209 Con *next = con_next_focused(con);
210 DLOG("next = %p, focused = %p\n", next, focused);
212 DLOG("closing %p, kill_window = %d\n", con, kill_window);
213 Con *child, *nextchild;
214 bool abort_kill = false;
215 /* We cannot use TAILQ_FOREACH because the children get deleted
216 * in their parent’s nodes_head */
217 for (child = TAILQ_FIRST(&(con->nodes_head)); child;) {
218 nextchild = TAILQ_NEXT(child, nodes);
219 DLOG("killing child=%p\n", child);
220 if (!tree_close(child, kill_window, true, false))
226 DLOG("One of the children could not be killed immediately (WM_DELETE sent), aborting.\n");
230 if (con->window != NULL) {
231 if (kill_window != DONT_KILL_WINDOW) {
232 x_window_kill(con->window->id, kill_window);
235 xcb_void_cookie_t cookie;
236 /* Ignore any further events by clearing the event mask,
238 * then reparent it to the root window. */
239 xcb_change_window_attributes(conn, con->window->id,
240 XCB_CW_EVENT_MASK, (uint32_t[]) {XCB_NONE});
241 xcb_unmap_window(conn, con->window->id);
242 cookie = xcb_reparent_window(conn, con->window->id, root, 0, 0);
244 /* Ignore X11 errors for the ReparentWindow request.
245 * X11 Errors are returned when the window was already destroyed */
246 add_ignore_event(cookie.sequence, 0);
248 /* We are no longer handling this window, thus set WM_STATE to
249 * WM_STATE_WITHDRAWN (see ICCCM 4.1.3.1) */
250 long data[] = {XCB_ICCCM_WM_STATE_WITHDRAWN, XCB_NONE};
251 cookie = xcb_change_property(conn, XCB_PROP_MODE_REPLACE,
252 con->window->id, A_WM_STATE, A_WM_STATE, 32, 2, data);
254 /* Ignore X11 errors for the ReparentWindow request.
255 * X11 Errors are returned when the window was already destroyed */
256 add_ignore_event(cookie.sequence, 0);
258 ipc_send_window_event("close", con);
259 FREE(con->window->class_class);
260 FREE(con->window->class_instance);
261 i3string_free(con->window->name);
262 FREE(con->window->ran_assignments);
266 Con *ws = con_get_workspace(con);
268 /* Figure out which container to focus next before detaching 'con'. */
269 if (con_is_floating(con)) {
270 if (con == focused) {
271 DLOG("This is the focused container, i need to find another one to focus. I start looking at ws = %p\n", ws);
272 next = con_next_focused(parent);
274 dont_kill_parent = true;
275 DLOG("Alright, focusing %p\n", next);
281 /* Detach the container so that it will not be rendered anymore. */
284 /* disable urgency timer, if needed */
285 if (con->urgency_timer != NULL) {
286 DLOG("Removing urgency timer of con %p\n", con);
287 workspace_update_urgent_flag(ws);
288 ev_timer_stop(main_loop, con->urgency_timer);
289 FREE(con->urgency_timer);
292 if (con->type != CT_FLOATING_CON) {
293 /* If the container is *not* floating, we might need to re-distribute
294 * percentage values for the resized containers. */
295 con_fix_percent(parent);
298 /* Render the tree so that the surrounding containers take up the space
299 * which 'con' does no longer occupy. If we don’t render here, there will
300 * be a gap in our containers and that could trigger an EnterNotify for an
301 * underlying container, see ticket #660.
303 * Rendering has to be avoided when dont_kill_parent is set (when
304 * tree_close calls itself recursively) because the tree is in a
305 * non-renderable state during that time. */
306 if (!dont_kill_parent)
309 /* kill the X11 part of this container */
312 if (con_is_floating(con)) {
313 DLOG("Container was floating, killing floating container\n");
314 tree_close(parent, DONT_KILL_WINDOW, false, (con == focused));
315 DLOG("parent container killed\n");
319 FREE(con->deco_render_params);
320 TAILQ_REMOVE(&all_cons, con, all_cons);
323 /* in the case of floating windows, we already focused another container
324 * when closing the parent, so we can exit now. */
326 DLOG("No next container, i will just exit now\n");
330 if (was_mapped || con == focused) {
331 if ((kill_window != DONT_KILL_WINDOW) || !dont_kill_parent || con == focused) {
332 DLOG("focusing %p / %s\n", next, next->name);
333 if (next->type == CT_DOCKAREA) {
334 /* Instead of focusing the dockarea, we need to restore focus to the workspace */
335 con_focus(con_descend_focused(output_get_content(next->parent)));
337 if (!force_set_focus && con != focused)
338 DLOG("not changing focus, the container was not focused before\n");
343 DLOG("not focusing because we're not killing anybody\n");
346 DLOG("not focusing, was not mapped\n");
349 /* check if the parent container is empty now and close it */
350 if (!dont_kill_parent)
351 CALL(parent, on_remove_child);
357 * Closes the current container using tree_close().
360 void tree_close_con(kill_window_t kill_window) {
361 assert(focused != NULL);
363 /* There *should* be no possibility to focus outputs / root container */
364 assert(focused->type != CT_OUTPUT);
365 assert(focused->type != CT_ROOT);
367 if (focused->type == CT_WORKSPACE) {
368 DLOG("Workspaces cannot be close, closing all children instead\n");
369 Con *child, *nextchild;
370 for (child = TAILQ_FIRST(&(focused->focus_head)); child;) {
371 nextchild = TAILQ_NEXT(child, focused);
372 DLOG("killing child=%p\n", child);
373 tree_close(child, kill_window, false, false);
381 tree_close(focused, kill_window, false, false);
385 * Splits (horizontally or vertically) the given container by creating a new
386 * container which contains the old one and the future ones.
389 void tree_split(Con *con, orientation_t orientation) {
390 if (con_is_floating(con)) {
391 DLOG("Floating containers can't be split.\n");
395 if (con->type == CT_WORKSPACE) {
396 if (con_num_children(con) < 2) {
397 DLOG("Just changing orientation of workspace\n");
398 con->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
401 /* if there is more than one container on the workspace
402 * move them into a new container and handle this instead */
403 con = workspace_encapsulate(con);
407 Con *parent = con->parent;
409 /* Force re-rendering to make the indicator border visible. */
410 FREE(con->deco_render_params);
411 FREE(parent->deco_render_params);
413 /* if we are in a container whose parent contains only one
414 * child (its split functionality is unused so far), we just change the
415 * orientation (more intuitive than splitting again) */
416 if (con_num_children(parent) == 1 &&
417 (parent->layout == L_SPLITH ||
418 parent->layout == L_SPLITV)) {
419 parent->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
420 DLOG("Just changing orientation of existing container\n");
424 DLOG("Splitting in orientation %d\n", orientation);
426 /* 2: replace it with a new Con */
427 Con *new = con_new(NULL, NULL);
428 TAILQ_REPLACE(&(parent->nodes_head), con, new, nodes);
429 TAILQ_REPLACE(&(parent->focus_head), con, new, focused);
430 new->parent = parent;
431 new->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
433 /* 3: swap 'percent' (resize factor) */
434 new->percent = con->percent;
437 /* 4: add it as a child to the new Con */
438 con_attach(con, new, false);
442 * Moves focus one level up. Returns true if focus changed.
445 bool level_up(void) {
446 /* Skip over floating containers and go directly to the grandparent
447 * (which should always be a workspace) */
448 if (focused->parent->type == CT_FLOATING_CON) {
449 con_focus(focused->parent->parent);
453 /* We can focus up to the workspace, but not any higher in the tree */
454 if ((focused->parent->type != CT_CON &&
455 focused->parent->type != CT_WORKSPACE) ||
456 focused->type == CT_WORKSPACE) {
457 ELOG("'focus parent': Focus is already on the workspace, cannot go higher than that.\n");
460 con_focus(focused->parent);
465 * Moves focus one level down. Returns true if focus changed.
468 bool level_down(void) {
469 /* Go down the focus stack of the current node */
470 Con *next = TAILQ_FIRST(&(focused->focus_head));
471 if (next == TAILQ_END(&(focused->focus_head))) {
472 DLOG("cannot go down\n");
474 } else if (next->type == CT_FLOATING_CON) {
475 /* Floating cons shouldn't be directly focused; try immediately
476 * going to the grandchild of the focused con. */
477 Con *child = TAILQ_FIRST(&(next->focus_head));
478 if (child == TAILQ_END(&(next->focus_head))) {
479 DLOG("cannot go down\n");
482 next = TAILQ_FIRST(&(next->focus_head));
489 static void mark_unmapped(Con *con) {
493 TAILQ_FOREACH(current, &(con->nodes_head), nodes)
494 mark_unmapped(current);
495 if (con->type == CT_WORKSPACE) {
496 /* We need to call mark_unmapped on floating nodes aswell since we can
497 * make containers floating. */
498 TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
499 mark_unmapped(current);
504 * Renders the tree, that is rendering all outputs using render_con() and
505 * pushing the changes to X11 using x_push_changes().
508 void tree_render(void) {
512 DLOG("-- BEGIN RENDERING --\n");
513 /* Reset map state for all nodes in tree */
514 /* TODO: a nicer method to walk all nodes would be good, maybe? */
515 mark_unmapped(croot);
516 croot->mapped = true;
518 render_con(croot, false);
520 x_push_changes(croot);
521 DLOG("-- END RENDERING --\n");
525 * Recursive function to walk the tree until a con can be found to focus.
528 static bool _tree_next(Con *con, char way, orientation_t orientation, bool wrap) {
529 /* When dealing with fullscreen containers, it's necessary to go up to the
530 * workspace level, because 'focus $dir' will start at the con's real
531 * position in the tree, and it may not be possible to get to the edge
532 * normally due to fullscreen focusing restrictions. */
533 if (con->fullscreen_mode == CF_OUTPUT && con->type != CT_WORKSPACE)
534 con = con_get_workspace(con);
536 /* Stop recursing at workspaces after attempting to switch to next
537 * workspace if possible. */
538 if (con->type == CT_WORKSPACE) {
539 if (con_get_fullscreen_con(con, CF_GLOBAL)) {
540 DLOG("Cannot change workspace while in global fullscreen mode.\n");
543 Output *current_output = get_output_containing(con->rect.x, con->rect.y);
548 DLOG("Current output is %s\n", current_output->name);
550 /* Try to find next output */
551 direction_t direction;
552 if (way == 'n' && orientation == HORIZ)
554 else if (way == 'p' && orientation == HORIZ)
556 else if (way == 'n' && orientation == VERT)
558 else if (way == 'p' && orientation == VERT)
563 next_output = get_output_next(direction, current_output, CLOSEST_OUTPUT);
566 DLOG("Next output is %s\n", next_output->name);
568 /* Find visible workspace on next output */
569 Con *workspace = NULL;
570 GREP_FIRST(workspace, output_get_content(next_output->con), workspace_is_visible(child));
572 /* Show next workspace and focus appropriate container if possible. */
576 workspace_show(workspace);
578 /* If a workspace has an active fullscreen container, one of its
579 * children should always be focused. The above workspace_show()
580 * should be adequate for that, so return. */
581 if (con_get_fullscreen_con(workspace, CF_OUTPUT))
584 Con *focus = con_descend_direction(workspace, direction);
587 x_set_warp_to(&(focus->rect));
592 Con *parent = con->parent;
594 if (con->type == CT_FLOATING_CON) {
595 /* left/right focuses the previous/next floating container */
596 if (orientation == HORIZ) {
599 next = TAILQ_NEXT(con, floating_windows);
601 next = TAILQ_PREV(con, floating_head, floating_windows);
603 /* If there is no next/previous container, wrap */
606 next = TAILQ_FIRST(&(parent->floating_head));
608 next = TAILQ_LAST(&(parent->floating_head), floating_head);
611 /* Still no next/previous container? bail out */
615 con_focus(con_descend_focused(next));
618 /* up/down cycles through the Z-index */
619 /* TODO: implement cycling through the z-index */
624 /* If the orientation does not match or there is no other con to focus, we
625 * need to go higher in the hierarchy */
626 if (con_orientation(parent) != orientation ||
627 con_num_children(parent) == 1)
628 return _tree_next(parent, way, orientation, wrap);
630 Con *current = TAILQ_FIRST(&(parent->focus_head));
631 /* TODO: when can the following happen (except for floating windows, which
632 * are handled above)? */
633 if (TAILQ_EMPTY(&(parent->nodes_head))) {
634 DLOG("nothing to focus\n");
640 next = TAILQ_NEXT(current, nodes);
642 next = TAILQ_PREV(current, nodes_head, nodes);
645 if (!config.force_focus_wrapping) {
646 /* If there is no next/previous container, we check if we can focus one
647 * when going higher (without wrapping, though). If so, we are done, if
649 if (_tree_next(parent, way, orientation, false))
657 next = TAILQ_FIRST(&(parent->nodes_head));
659 next = TAILQ_LAST(&(parent->nodes_head), nodes_head);
662 /* Don't violate fullscreen focus restrictions. */
663 if (!con_fullscreen_permits_focusing(next))
666 /* 3: focus choice comes in here. at the moment we will go down
667 * until we find a window */
668 /* TODO: check for window, atm we only go down as far as possible */
669 con_focus(con_descend_focused(next));
674 * Changes focus in the given way (next/previous) and given orientation
675 * (horizontal/vertical).
678 void tree_next(char way, orientation_t orientation) {
679 _tree_next(focused, way, orientation, true);
683 * tree_flatten() removes pairs of redundant split containers, e.g.:
684 * [workspace, horizontal]
688 * In this example, the v-split and h-split container are redundant.
689 * Such a situation can be created by moving containers in a direction which is
690 * not the orientation of their parent container. i3 needs to create a new
691 * split container then and if you move containers this way multiple times,
692 * redundant chains of split-containers can be the result.
695 void tree_flatten(Con *con) {
696 Con *current, *child, *parent = con->parent;
697 DLOG("Checking if I can flatten con = %p / %s\n", con, con->name);
699 /* We only consider normal containers without windows */
700 if (con->type != CT_CON ||
701 parent->layout == L_OUTPUT || /* con == "content" */
705 /* Ensure it got only one child */
706 child = TAILQ_FIRST(&(con->nodes_head));
707 if (child == NULL || TAILQ_NEXT(child, nodes) != NULL)
710 DLOG("child = %p, con = %p, parent = %p\n", child, con, parent);
712 /* The child must have a different orientation than the con but the same as
713 * the con’s parent to be redundant */
714 if (!con_is_split(con) ||
715 !con_is_split(child) ||
716 (con->layout != L_SPLITH && con->layout != L_SPLITV) ||
717 (child->layout != L_SPLITH && child->layout != L_SPLITV) ||
718 con_orientation(con) == con_orientation(child) ||
719 con_orientation(child) != con_orientation(parent))
722 DLOG("Alright, I have to flatten this situation now. Stay calm.\n");
724 Con *focus_next = TAILQ_FIRST(&(child->focus_head));
726 DLOG("detaching...\n");
727 /* 2: re-attach the children to the parent before con */
728 while (!TAILQ_EMPTY(&(child->nodes_head))) {
729 current = TAILQ_FIRST(&(child->nodes_head));
730 DLOG("detaching current=%p / %s\n", current, current->name);
732 DLOG("re-attaching\n");
733 /* We don’t use con_attach() here because for a CT_CON, the special
734 * case handling of con_attach() does not trigger. So all it would do
735 * is calling TAILQ_INSERT_AFTER, but with the wrong container. So we
736 * directly use the TAILQ macros. */
737 current->parent = parent;
738 TAILQ_INSERT_BEFORE(con, current, nodes);
739 DLOG("attaching to focus list\n");
740 TAILQ_INSERT_TAIL(&(parent->focus_head), current, focused);
741 current->percent = con->percent;
743 DLOG("re-attached all\n");
745 /* 3: restore focus, if con was focused */
746 if (focus_next != NULL &&
747 TAILQ_FIRST(&(parent->focus_head)) == con) {
748 DLOG("restoring focus to focus_next=%p\n", focus_next);
749 TAILQ_REMOVE(&(parent->focus_head), focus_next, focused);
750 TAILQ_INSERT_HEAD(&(parent->focus_head), focus_next, focused);
751 DLOG("restored focus.\n");
754 /* 4: close the redundant cons */
755 DLOG("closing redundant cons\n");
756 tree_close(con, DONT_KILL_WINDOW, true, false);
758 /* Well, we got to abort the recursion here because we destroyed the
759 * container. However, if tree_flatten() is called sufficiently often,
760 * there can’t be the situation of having two pairs of redundant containers
761 * at once. Therefore, we can safely abort the recursion on this level
762 * after flattening. */
766 /* We cannot use normal foreach here because tree_flatten might close the
767 * current container. */
768 current = TAILQ_FIRST(&(con->nodes_head));
769 while (current != NULL) {
770 Con *next = TAILQ_NEXT(current, nodes);
771 tree_flatten(current);
775 current = TAILQ_FIRST(&(con->floating_head));
776 while (current != NULL) {
777 Con *next = TAILQ_NEXT(current, floating_windows);
778 tree_flatten(current);