]> git.sur5r.net Git - i3/i3/blob - src/con.c
Only re-focus the workspace when moving a con if the target ws is hidden.
[i3/i3] / src / con.c
1 #undef I3__FILE__
2 #define I3__FILE__ "con.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * con.c: Functions which deal with containers directly (creating containers,
10  *        searching containers, getting specific properties from containers,
11  *        …).
12  *
13  */
14 #include "all.h"
15
16 char *colors[] = {
17     "#ff0000",
18     "#00FF00",
19     "#0000FF",
20     "#ff00ff",
21     "#00ffff",
22     "#ffff00",
23     "#aa0000",
24     "#00aa00",
25     "#0000aa",
26     "#aa00aa"
27 };
28
29 static void con_on_remove_child(Con *con);
30
31 /*
32  * force parent split containers to be redrawn
33  *
34  */
35 static void con_force_split_parents_redraw(Con *con) {
36     Con *parent = con;
37
38     while (parent && parent->type != CT_WORKSPACE && parent->type != CT_DOCKAREA) {
39         if (parent->split)
40             FREE(parent->deco_render_params);
41         parent = parent->parent;
42     }
43 }
44
45 /*
46  * Create a new container (and attach it to the given parent, if not NULL).
47  * This function initializes the data structures and creates the appropriate
48  * X11 IDs using x_con_init().
49  *
50  */
51 Con *con_new(Con *parent, i3Window *window) {
52     Con *new = scalloc(sizeof(Con));
53     new->on_remove_child = con_on_remove_child;
54     TAILQ_INSERT_TAIL(&all_cons, new, all_cons);
55     new->type = CT_CON;
56     new->window = window;
57     new->border_style = config.default_border;
58     new->current_border_width = -1;
59     static int cnt = 0;
60     DLOG("opening window %d\n", cnt);
61
62     /* TODO: remove window coloring after test-phase */
63     DLOG("color %s\n", colors[cnt]);
64     new->name = strdup(colors[cnt]);
65     //uint32_t cp = get_colorpixel(colors[cnt]);
66     cnt++;
67     if ((cnt % (sizeof(colors) / sizeof(char*))) == 0)
68         cnt = 0;
69     if (window)
70         x_con_init(new, window->depth);
71     else
72         x_con_init(new, XCB_COPY_FROM_PARENT);
73
74     TAILQ_INIT(&(new->floating_head));
75     TAILQ_INIT(&(new->nodes_head));
76     TAILQ_INIT(&(new->focus_head));
77     TAILQ_INIT(&(new->swallow_head));
78
79     if (parent != NULL)
80         con_attach(new, parent, false);
81
82     return new;
83 }
84
85 /*
86  * Attaches the given container to the given parent. This happens when moving
87  * a container or when inserting a new container at a specific place in the
88  * tree.
89  *
90  * ignore_focus is to just insert the Con at the end (useful when creating a
91  * new split container *around* some containers, that is, detaching and
92  * attaching them in order without wanting to mess with the focus in between).
93  *
94  */
95 void con_attach(Con *con, Con *parent, bool ignore_focus) {
96     con->parent = parent;
97     Con *loop;
98     Con *current = NULL;
99     struct nodes_head *nodes_head = &(parent->nodes_head);
100     struct focus_head *focus_head = &(parent->focus_head);
101
102     /* Workspaces are handled differently: they need to be inserted at the
103      * right position. */
104     if (con->type == CT_WORKSPACE) {
105         DLOG("it's a workspace. num = %d\n", con->num);
106         if (con->num == -1 || TAILQ_EMPTY(nodes_head)) {
107             TAILQ_INSERT_TAIL(nodes_head, con, nodes);
108         } else {
109             current = TAILQ_FIRST(nodes_head);
110             if (con->num < current->num) {
111                 /* we need to insert the container at the beginning */
112                 TAILQ_INSERT_HEAD(nodes_head, con, nodes);
113             } else {
114                 while (current->num != -1 && con->num > current->num) {
115                     current = TAILQ_NEXT(current, nodes);
116                     if (current == TAILQ_END(nodes_head)) {
117                         current = NULL;
118                         break;
119                     }
120                 }
121                 /* we need to insert con after current, if current is not NULL */
122                 if (current)
123                     TAILQ_INSERT_BEFORE(current, con, nodes);
124                 else TAILQ_INSERT_TAIL(nodes_head, con, nodes);
125             }
126         }
127         goto add_to_focus_head;
128     }
129
130     if (con->type == CT_FLOATING_CON) {
131         DLOG("Inserting into floating containers\n");
132         TAILQ_INSERT_TAIL(&(parent->floating_head), con, floating_windows);
133     } else {
134         if (!ignore_focus) {
135             /* Get the first tiling container in focus stack */
136             TAILQ_FOREACH(loop, &(parent->focus_head), focused) {
137                 if (loop->type == CT_FLOATING_CON)
138                     continue;
139                 current = loop;
140                 break;
141             }
142         }
143
144         /* When the container is not a split container (but contains a window)
145          * and is attached to a workspace, we check if the user configured a
146          * workspace_layout. This is done in workspace_attach_to, which will
147          * provide us with the container to which we should attach (either the
148          * workspace or a new split container with the configured
149          * workspace_layout).
150          */
151         if (con->window != NULL &&
152             parent->type == CT_WORKSPACE &&
153             parent->workspace_layout != L_DEFAULT) {
154             DLOG("Parent is a workspace. Applying default layout...\n");
155             Con *target = workspace_attach_to(parent);
156
157             /* Attach the original con to this new split con instead */
158             nodes_head = &(target->nodes_head);
159             focus_head = &(target->focus_head);
160             con->parent = target;
161             current = NULL;
162
163             DLOG("done\n");
164         }
165
166         /* Insert the container after the tiling container, if found.
167          * When adding to a CT_OUTPUT, just append one after another. */
168         if (current && parent->type != CT_OUTPUT) {
169             DLOG("Inserting con = %p after last focused tiling con %p\n",
170                  con, current);
171             TAILQ_INSERT_AFTER(nodes_head, current, con, nodes);
172         } else TAILQ_INSERT_TAIL(nodes_head, con, nodes);
173     }
174
175 add_to_focus_head:
176     /* We insert to the TAIL because con_focus() will correct this.
177      * This way, we have the option to insert Cons without having
178      * to focus them. */
179     TAILQ_INSERT_TAIL(focus_head, con, focused);
180     con_force_split_parents_redraw(con);
181 }
182
183 /*
184  * Detaches the given container from its current parent
185  *
186  */
187 void con_detach(Con *con) {
188     con_force_split_parents_redraw(con);
189     if (con->type == CT_FLOATING_CON) {
190         TAILQ_REMOVE(&(con->parent->floating_head), con, floating_windows);
191         TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
192     } else {
193         TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
194         TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
195     }
196 }
197
198 /*
199  * Sets input focus to the given container. Will be updated in X11 in the next
200  * run of x_push_changes().
201  *
202  */
203 void con_focus(Con *con) {
204     assert(con != NULL);
205     DLOG("con_focus = %p\n", con);
206
207     /* 1: set focused-pointer to the new con */
208     /* 2: exchange the position of the container in focus stack of the parent all the way up */
209     TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
210     TAILQ_INSERT_HEAD(&(con->parent->focus_head), con, focused);
211     if (con->parent->parent != NULL)
212         con_focus(con->parent);
213
214     focused = con;
215     /* We can't blindly reset non-leaf containers since they might have
216      * other urgent children. Therefore we only reset leafs and propagate
217      * the changes upwards via con_update_parents_urgency() which does proper
218      * checks before resetting the urgency.
219      */
220     if (con->urgent && con_is_leaf(con)) {
221         con->urgent = false;
222         con_update_parents_urgency(con);
223         workspace_update_urgent_flag(con_get_workspace(con));
224     }
225 }
226
227 /*
228  * Returns true when this node is a leaf node (has no children)
229  *
230  */
231 bool con_is_leaf(Con *con) {
232     return TAILQ_EMPTY(&(con->nodes_head));
233 }
234
235 /*
236  * Returns true if this node accepts a window (if the node swallows windows,
237  * it might already have swallowed enough and cannot hold any more).
238  *
239  */
240 bool con_accepts_window(Con *con) {
241     /* 1: workspaces never accept direct windows */
242     if (con->type == CT_WORKSPACE)
243         return false;
244
245     if (con->split) {
246         DLOG("container %p does not accept windows, it is a split container.\n", con);
247         return false;
248     }
249
250     /* TODO: if this is a swallowing container, we need to check its max_clients */
251     return (con->window == NULL);
252 }
253
254 /*
255  * Gets the output container (first container with CT_OUTPUT in hierarchy) this
256  * node is on.
257  *
258  */
259 Con *con_get_output(Con *con) {
260     Con *result = con;
261     while (result != NULL && result->type != CT_OUTPUT)
262         result = result->parent;
263     /* We must be able to get an output because focus can never be set higher
264      * in the tree (root node cannot be focused). */
265     assert(result != NULL);
266     return result;
267 }
268
269 /*
270  * Gets the workspace container this node is on.
271  *
272  */
273 Con *con_get_workspace(Con *con) {
274     Con *result = con;
275     while (result != NULL && result->type != CT_WORKSPACE)
276         result = result->parent;
277     return result;
278 }
279
280 /*
281  * Searches parenst of the given 'con' until it reaches one with the specified
282  * 'orientation'. Aborts when it comes across a floating_con.
283  *
284  */
285 Con *con_parent_with_orientation(Con *con, orientation_t orientation) {
286     DLOG("Searching for parent of Con %p with orientation %d\n", con, orientation);
287     Con *parent = con->parent;
288     if (parent->type == CT_FLOATING_CON)
289         return NULL;
290     while (con_orientation(parent) != orientation) {
291         DLOG("Need to go one level further up\n");
292         parent = parent->parent;
293         /* Abort when we reach a floating con, or an output con */
294         if (parent &&
295             (parent->type == CT_FLOATING_CON ||
296              parent->type == CT_OUTPUT ||
297              (parent->parent && parent->parent->type == CT_OUTPUT)))
298             parent = NULL;
299         if (parent == NULL)
300             break;
301     }
302     DLOG("Result: %p\n", parent);
303     return parent;
304 }
305
306 /*
307  * helper data structure for the breadth-first-search in
308  * con_get_fullscreen_con()
309  *
310  */
311 struct bfs_entry {
312     Con *con;
313
314     TAILQ_ENTRY(bfs_entry) entries;
315 };
316
317 /*
318  * Returns the first fullscreen node below this node.
319  *
320  */
321 Con *con_get_fullscreen_con(Con *con, int fullscreen_mode) {
322     Con *current, *child;
323
324     /* TODO: is breadth-first-search really appropriate? (check as soon as
325      * fullscreen levels and fullscreen for containers is implemented) */
326     TAILQ_HEAD(bfs_head, bfs_entry) bfs_head = TAILQ_HEAD_INITIALIZER(bfs_head);
327     struct bfs_entry *entry = smalloc(sizeof(struct bfs_entry));
328     entry->con = con;
329     TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
330
331     while (!TAILQ_EMPTY(&bfs_head)) {
332         entry = TAILQ_FIRST(&bfs_head);
333         current = entry->con;
334         if (current != con && current->fullscreen_mode == fullscreen_mode) {
335             /* empty the queue */
336             while (!TAILQ_EMPTY(&bfs_head)) {
337                 entry = TAILQ_FIRST(&bfs_head);
338                 TAILQ_REMOVE(&bfs_head, entry, entries);
339                 free(entry);
340             }
341             return current;
342         }
343
344         TAILQ_REMOVE(&bfs_head, entry, entries);
345         free(entry);
346
347         TAILQ_FOREACH(child, &(current->nodes_head), nodes) {
348             entry = smalloc(sizeof(struct bfs_entry));
349             entry->con = child;
350             TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
351         }
352
353         TAILQ_FOREACH(child, &(current->floating_head), floating_windows) {
354             entry = smalloc(sizeof(struct bfs_entry));
355             entry->con = child;
356             TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
357         }
358     }
359
360     return NULL;
361 }
362
363 /**
364  * Returns true if the container is internal, such as __i3_scratch
365  *
366  */
367 bool con_is_internal(Con *con) {
368     return (con->name[0] == '_' && con->name[1] == '_');
369 }
370
371 /*
372  * Returns true if the node is floating.
373  *
374  */
375 bool con_is_floating(Con *con) {
376     assert(con != NULL);
377     DLOG("checking if con %p is floating\n", con);
378     return (con->floating >= FLOATING_AUTO_ON);
379 }
380
381 /*
382  * Checks if the given container is either floating or inside some floating
383  * container. It returns the FLOATING_CON container.
384  *
385  */
386 Con *con_inside_floating(Con *con) {
387     assert(con != NULL);
388     if (con->type == CT_FLOATING_CON)
389         return con;
390
391     if (con->floating >= FLOATING_AUTO_ON)
392         return con->parent;
393
394     if (con->type == CT_WORKSPACE || con->type == CT_OUTPUT)
395         return NULL;
396
397     return con_inside_floating(con->parent);
398 }
399
400 /*
401  * Checks if the given container is inside a focused container.
402  *
403  */
404 bool con_inside_focused(Con *con) {
405     if (con == focused)
406         return true;
407     if (!con->parent)
408         return false;
409     return con_inside_focused(con->parent);
410 }
411
412 /*
413  * Returns the container with the given client window ID or NULL if no such
414  * container exists.
415  *
416  */
417 Con *con_by_window_id(xcb_window_t window) {
418     Con *con;
419     TAILQ_FOREACH(con, &all_cons, all_cons)
420         if (con->window != NULL && con->window->id == window)
421             return con;
422     return NULL;
423 }
424
425 /*
426  * Returns the container with the given frame ID or NULL if no such container
427  * exists.
428  *
429  */
430 Con *con_by_frame_id(xcb_window_t frame) {
431     Con *con;
432     TAILQ_FOREACH(con, &all_cons, all_cons)
433         if (con->frame == frame)
434             return con;
435     return NULL;
436 }
437
438 /*
439  * Returns the first container below 'con' which wants to swallow this window
440  * TODO: priority
441  *
442  */
443 Con *con_for_window(Con *con, i3Window *window, Match **store_match) {
444     Con *child;
445     Match *match;
446     //DLOG("searching con for window %p starting at con %p\n", window, con);
447     //DLOG("class == %s\n", window->class_class);
448
449     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
450         TAILQ_FOREACH(match, &(child->swallow_head), matches) {
451             if (!match_matches_window(match, window))
452                 continue;
453             if (store_match != NULL)
454                 *store_match = match;
455             return child;
456         }
457         Con *result = con_for_window(child, window, store_match);
458         if (result != NULL)
459             return result;
460     }
461
462     TAILQ_FOREACH(child, &(con->floating_head), floating_windows) {
463         TAILQ_FOREACH(match, &(child->swallow_head), matches) {
464             if (!match_matches_window(match, window))
465                 continue;
466             if (store_match != NULL)
467                 *store_match = match;
468             return child;
469         }
470         Con *result = con_for_window(child, window, store_match);
471         if (result != NULL)
472             return result;
473     }
474
475     return NULL;
476 }
477
478 /*
479  * Returns the number of children of this container.
480  *
481  */
482 int con_num_children(Con *con) {
483     Con *child;
484     int children = 0;
485
486     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
487         children++;
488
489     return children;
490 }
491
492 /*
493  * Updates the percent attribute of the children of the given container. This
494  * function needs to be called when a window is added or removed from a
495  * container.
496  *
497  */
498 void con_fix_percent(Con *con) {
499     Con *child;
500     int children = con_num_children(con);
501
502     // calculate how much we have distributed and how many containers
503     // with a percentage set we have
504     double total = 0.0;
505     int children_with_percent = 0;
506     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
507         if (child->percent > 0.0) {
508             total += child->percent;
509             ++children_with_percent;
510         }
511     }
512
513     // if there were children without a percentage set, set to a value that
514     // will make those children proportional to all others
515     if (children_with_percent != children) {
516         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
517             if (child->percent <= 0.0) {
518                 if (children_with_percent == 0)
519                     total += (child->percent = 1.0);
520                 else total += (child->percent = total / children_with_percent);
521             }
522         }
523     }
524
525     // if we got a zero, just distribute the space equally, otherwise
526     // distribute according to the proportions we got
527     if (total == 0.0) {
528         TAILQ_FOREACH(child, &(con->nodes_head), nodes)
529             child->percent = 1.0 / children;
530     } else if (total != 1.0) {
531         TAILQ_FOREACH(child, &(con->nodes_head), nodes)
532             child->percent /= total;
533     }
534 }
535
536 /*
537  * Toggles fullscreen mode for the given container. Fullscreen mode will not be
538  * entered when there already is a fullscreen container on this workspace.
539  *
540  */
541 void con_toggle_fullscreen(Con *con, int fullscreen_mode) {
542     Con *workspace, *fullscreen;
543
544     if (con->type == CT_WORKSPACE) {
545         DLOG("You cannot make a workspace fullscreen.\n");
546         return;
547     }
548
549     DLOG("toggling fullscreen for %p / %s\n", con, con->name);
550     if (con->fullscreen_mode == CF_NONE) {
551         /* 1: check if there already is a fullscreen con */
552         if (fullscreen_mode == CF_GLOBAL)
553             fullscreen = con_get_fullscreen_con(croot, CF_GLOBAL);
554         else {
555             workspace = con_get_workspace(con);
556             fullscreen = con_get_fullscreen_con(workspace, CF_OUTPUT);
557         }
558         if (fullscreen != NULL) {
559             /* Disable fullscreen for the currently fullscreened
560              * container and enable it for the one the user wants
561              * to have in fullscreen mode. */
562             LOG("Disabling fullscreen for (%p/%s) upon user request\n",
563                 fullscreen, fullscreen->name);
564             fullscreen->fullscreen_mode = CF_NONE;
565         }
566
567         /* 2: enable fullscreen */
568         con->fullscreen_mode = fullscreen_mode;
569     } else {
570         /* 1: disable fullscreen */
571         con->fullscreen_mode = CF_NONE;
572     }
573
574     DLOG("mode now: %d\n", con->fullscreen_mode);
575
576     /* update _NET_WM_STATE if this container has a window */
577     /* TODO: when a window is assigned to a container which is already
578      * fullscreened, this state needs to be pushed to the client, too */
579     if (con->window == NULL)
580         return;
581
582     uint32_t values[1];
583     unsigned int num = 0;
584
585     if (con->fullscreen_mode != CF_NONE)
586         values[num++] = A__NET_WM_STATE_FULLSCREEN;
587
588     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
589                         A__NET_WM_STATE, XCB_ATOM_ATOM, 32, num, values);
590 }
591
592 /*
593  * Moves the given container to the currently focused container on the given
594  * workspace.
595  *
596  * The fix_coordinates flag will translate the current coordinates (offset from
597  * the monitor position basically) to appropriate coordinates on the
598  * destination workspace.
599  * Not enabling this behaviour comes in handy when this function gets called by
600  * floating_maybe_reassign_ws, which will only "move" a floating window when it
601  * *already* changed its coordinates to a different output.
602  *
603  * The dont_warp flag disables pointer warping and will be set when this
604  * function is called while dragging a floating window.
605  *
606  * TODO: is there a better place for this function?
607  *
608  */
609 void con_move_to_workspace(Con *con, Con *workspace, bool fix_coordinates, bool dont_warp) {
610     /* Prevent moving if this would violate the fullscreen focus restrictions. */
611     if (!con_fullscreen_permits_focusing(workspace)) {
612         LOG("Cannot move out of a fullscreen container");
613         return;
614     }
615
616     if (con_is_floating(con)) {
617         DLOG("Using FLOATINGCON instead\n");
618         con = con->parent;
619     }
620
621     Con *source_ws = con_get_workspace(con);
622     if (workspace == source_ws) {
623         DLOG("Not moving, already there\n");
624         return;
625     }
626
627     if (con->type == CT_WORKSPACE) {
628         con = workspace_encapsulate(con);
629         if (con == NULL) {
630             ELOG("Workspace failed to move its contents into a container!\n");
631             return;
632         }
633
634         /* Re-parent all of the old workspace's floating windows. */
635         Con *child;
636         while (!TAILQ_EMPTY(&(source_ws->floating_head))) {
637             child = TAILQ_FIRST(&(source_ws->floating_head));
638             con_move_to_workspace(child, workspace, true, true);
639         }
640     }
641
642     /* Save the current workspace. So we can call workspace_show() by the end
643      * of this function. */
644     Con *current_ws = con_get_workspace(focused);
645
646     Con *source_output = con_get_output(con),
647         *dest_output = con_get_output(workspace);
648
649     /* 1: save the container which is going to be focused after the current
650      * container is moved away */
651     Con *focus_next = con_next_focused(con);
652
653     /* 2: get the focused container of this workspace */
654     Con *next = con_descend_focused(workspace);
655
656     /* 3: we go up one level, but only when next is a normal container */
657     if (next->type != CT_WORKSPACE) {
658         DLOG("next originally = %p / %s / type %d\n", next, next->name, next->type);
659         next = next->parent;
660     }
661
662     /* 4: if the target container is floating, we get the workspace instead.
663      * Only tiling windows need to get inserted next to the current container.
664      * */
665     Con *floatingcon = con_inside_floating(next);
666     if (floatingcon != NULL) {
667         DLOG("floatingcon, going up even further\n");
668         next = floatingcon->parent;
669     }
670
671     if (con->type == CT_FLOATING_CON) {
672         Con *ws = con_get_workspace(next);
673         DLOG("This is a floating window, using workspace %p / %s\n", ws, ws->name);
674         next = ws;
675     }
676
677     if (source_output != dest_output) {
678         /* Take the relative coordinates of the current output, then add them
679          * to the coordinate space of the correct output */
680         if (fix_coordinates && con->type == CT_FLOATING_CON) {
681             floating_fix_coordinates(con, &(source_output->rect), &(dest_output->rect));
682         } else DLOG("Not fixing coordinates, fix_coordinates flag = %d\n", fix_coordinates);
683
684         /* If moving to a visible workspace, call show so it can be considered
685          * focused. Must do before attaching because workspace_show checks to see
686          * if focused container is in its area. */
687         if (workspace_is_visible(workspace)) {
688             workspace_show(workspace);
689
690             /* Don’t warp if told so (when dragging floating windows with the
691              * mouse for example) */
692             if (dont_warp)
693                 x_set_warp_to(NULL);
694             else
695                 x_set_warp_to(&(con->rect));
696         }
697     }
698
699     DLOG("Re-attaching container to %p / %s\n", next, next->name);
700     /* 5: re-attach the con to the parent of this focused container */
701     Con *parent = con->parent;
702     con_detach(con);
703     con_attach(con, next, false);
704
705     /* 6: fix the percentages */
706     con_fix_percent(parent);
707     con->percent = 0.0;
708     con_fix_percent(next);
709
710     /* 7: focus the con on the target workspace, but only within that
711      * workspace, that is, don’t move focus away if the target workspace is
712      * invisible.
713      * We don’t focus the con for i3 pseudo workspaces like __i3_scratch and
714      * we don’t focus when there is a fullscreen con on that workspace. */
715     if (!con_is_internal(workspace) &&
716         con_get_fullscreen_con(workspace, CF_OUTPUT) == NULL) {
717         /* We need to save the focused workspace on the output in case the
718          * new workspace is hidden and it's necessary to immediately switch
719          * back to the originally-focused workspace. */
720         Con *old_focus = TAILQ_FIRST(&(output_get_content(dest_output)->focus_head));
721         con_focus(con_descend_focused(con));
722
723         /* Restore focus if the output's focused workspace has changed. */
724         if (con_get_workspace(focused) != old_focus)
725             con_focus(old_focus);
726     }
727
728     /* 8: when moving to a visible workspace on a different output, we keep the
729      * con focused. Otherwise, we leave the focus on the current workspace as we
730      * don’t want to focus invisible workspaces */
731     if (source_output != dest_output &&
732         workspace_is_visible(workspace) &&
733         !con_is_internal(workspace)) {
734         DLOG("Moved to a different output, focusing target\n");
735     } else {
736         /* Descend focus stack in case focus_next is a workspace which can
737          * occur if we move to the same workspace.  Also show current workspace
738          * to ensure it is focused. */
739         workspace_show(current_ws);
740
741         /* Set focus only if con was on current workspace before moving.
742          * Otherwise we would give focus to some window on different workspace. */
743         if (source_ws == current_ws)
744             con_focus(con_descend_focused(focus_next));
745     }
746
747     CALL(parent, on_remove_child);
748 }
749
750 /*
751  * Returns the orientation of the given container (for stacked containers,
752  * vertical orientation is used regardless of the actual orientation of the
753  * container).
754  *
755  */
756 int con_orientation(Con *con) {
757     switch (con->layout) {
758         case L_SPLITV:
759         /* stacking containers behave like they are in vertical orientation */
760         case L_STACKED:
761             return VERT;
762
763         case L_SPLITH:
764         /* tabbed containers behave like they are in vertical orientation */
765         case L_TABBED:
766             return HORIZ;
767
768         case L_DEFAULT:
769             DLOG("Someone called con_orientation() on a con with L_DEFAULT, this is a bug in the code.\n");
770             assert(false);
771             return HORIZ;
772
773         case L_DOCKAREA:
774         case L_OUTPUT:
775             DLOG("con_orientation() called on dockarea/output (%d) container %p\n", con->layout, con);
776             assert(false);
777             return HORIZ;
778
779         default:
780             DLOG("con_orientation() ran into default\n");
781             assert(false);
782     }
783 }
784
785 /*
786  * Returns the container which will be focused next when the given container
787  * is not available anymore. Called in tree_close and con_move_to_workspace
788  * to properly restore focus.
789  *
790  */
791 Con *con_next_focused(Con *con) {
792     Con *next;
793     /* floating containers are attached to a workspace, so we focus either the
794      * next floating container (if any) or the workspace itself. */
795     if (con->type == CT_FLOATING_CON) {
796         DLOG("selecting next for CT_FLOATING_CON\n");
797         next = TAILQ_NEXT(con, floating_windows);
798         DLOG("next = %p\n", next);
799         if (!next) {
800             next = TAILQ_PREV(con, floating_head, floating_windows);
801             DLOG("using prev, next = %p\n", next);
802         }
803         if (!next) {
804             Con *ws = con_get_workspace(con);
805             next = ws;
806             DLOG("no more floating containers for next = %p, restoring workspace focus\n", next);
807             while (next != TAILQ_END(&(ws->focus_head)) && !TAILQ_EMPTY(&(next->focus_head))) {
808                 next = TAILQ_FIRST(&(next->focus_head));
809                 if (next == con) {
810                     DLOG("skipping container itself, we want the next client\n");
811                     next = TAILQ_NEXT(next, focused);
812                 }
813             }
814             if (next == TAILQ_END(&(ws->focus_head))) {
815                 DLOG("Focus list empty, returning ws\n");
816                 next = ws;
817             }
818         } else {
819             /* Instead of returning the next CT_FLOATING_CON, we descend it to
820              * get an actual window to focus. */
821             next = con_descend_focused(next);
822         }
823         return next;
824     }
825
826     /* dock clients cannot be focused, so we focus the workspace instead */
827     if (con->parent->type == CT_DOCKAREA) {
828         DLOG("selecting workspace for dock client\n");
829         return con_descend_focused(output_get_content(con->parent->parent));
830     }
831
832     /* if 'con' is not the first entry in the focus stack, use the first one as
833      * it’s currently focused already */
834     Con *first = TAILQ_FIRST(&(con->parent->focus_head));
835     if (first != con) {
836         DLOG("Using first entry %p\n", first);
837         next = first;
838     } else {
839         /* try to focus the next container on the same level as this one or fall
840          * back to its parent */
841         if (!(next = TAILQ_NEXT(con, focused)))
842             next = con->parent;
843     }
844
845     /* now go down the focus stack as far as
846      * possible, excluding the current container */
847     while (!TAILQ_EMPTY(&(next->focus_head)) &&
848            TAILQ_FIRST(&(next->focus_head)) != con)
849         next = TAILQ_FIRST(&(next->focus_head));
850
851     return next;
852 }
853
854 /*
855  * Get the next/previous container in the specified orientation. This may
856  * travel up until it finds a container with suitable orientation.
857  *
858  */
859 Con *con_get_next(Con *con, char way, orientation_t orientation) {
860     DLOG("con_get_next(way=%c, orientation=%d)\n", way, orientation);
861     /* 1: get the first parent with the same orientation */
862     Con *cur = con;
863     while (con_orientation(cur->parent) != orientation) {
864         DLOG("need to go one level further up\n");
865         if (cur->parent->type == CT_WORKSPACE) {
866             LOG("that's a workspace, we can't go further up\n");
867             return NULL;
868         }
869         cur = cur->parent;
870     }
871
872     /* 2: chose next (or previous) */
873     Con *next;
874     if (way == 'n') {
875         next = TAILQ_NEXT(cur, nodes);
876         /* if we are at the end of the list, we need to wrap */
877         if (next == TAILQ_END(&(parent->nodes_head)))
878             return NULL;
879     } else {
880         next = TAILQ_PREV(cur, nodes_head, nodes);
881         /* if we are at the end of the list, we need to wrap */
882         if (next == TAILQ_END(&(cur->nodes_head)))
883             return NULL;
884     }
885     DLOG("next = %p\n", next);
886
887     return next;
888 }
889
890 /*
891  * Returns the focused con inside this client, descending the tree as far as
892  * possible. This comes in handy when attaching a con to a workspace at the
893  * currently focused position, for example.
894  *
895  */
896 Con *con_descend_focused(Con *con) {
897     Con *next = con;
898     while (next != focused && !TAILQ_EMPTY(&(next->focus_head)))
899         next = TAILQ_FIRST(&(next->focus_head));
900     return next;
901 }
902
903 /*
904  * Returns the focused con inside this client, descending the tree as far as
905  * possible. This comes in handy when attaching a con to a workspace at the
906  * currently focused position, for example.
907  *
908  * Works like con_descend_focused but considers only tiling cons.
909  *
910  */
911 Con *con_descend_tiling_focused(Con *con) {
912     Con *next = con;
913     Con *before;
914     Con *child;
915     if (next == focused)
916         return next;
917     do {
918         before = next;
919         TAILQ_FOREACH(child, &(next->focus_head), focused) {
920             if (child->type == CT_FLOATING_CON)
921                 continue;
922
923             next = child;
924             break;
925         }
926     } while (before != next && next != focused);
927     return next;
928 }
929
930 /*
931  * Returns the leftmost, rightmost, etc. container in sub-tree. For example, if
932  * direction is D_LEFT, then we return the rightmost container and if direction
933  * is D_RIGHT, we return the leftmost container.  This is because if we are
934  * moving D_LEFT, and thus want the rightmost container.
935  *
936  */
937 Con *con_descend_direction(Con *con, direction_t direction) {
938     Con *most = NULL;
939     int orientation = con_orientation(con);
940     DLOG("con_descend_direction(%p, orientation %d, direction %d)\n", con, orientation, direction);
941     if (direction == D_LEFT || direction == D_RIGHT) {
942         if (orientation == HORIZ) {
943             /* If the direction is horizontal, we can use either the first
944              * (D_RIGHT) or the last con (D_LEFT) */
945             if (direction == D_RIGHT)
946                 most = TAILQ_FIRST(&(con->nodes_head));
947             else most = TAILQ_LAST(&(con->nodes_head), nodes_head);
948         } else if (orientation == VERT) {
949             /* Wrong orientation. We use the last focused con. Within that con,
950              * we recurse to chose the left/right con or at least the last
951              * focused one. */
952             most = TAILQ_FIRST(&(con->focus_head));
953         } else {
954             /* If the con has no orientation set, it’s not a split container
955              * but a container with a client window, so stop recursing */
956             return con;
957         }
958     }
959
960     if (direction == D_UP || direction == D_DOWN) {
961         if (orientation == VERT) {
962             /* If the direction is vertical, we can use either the first
963              * (D_DOWN) or the last con (D_UP) */
964             if (direction == D_UP)
965                 most = TAILQ_LAST(&(con->nodes_head), nodes_head);
966             else most = TAILQ_FIRST(&(con->nodes_head));
967         } else if (orientation == HORIZ) {
968             /* Wrong orientation. We use the last focused con. Within that con,
969              * we recurse to chose the top/bottom con or at least the last
970              * focused one. */
971             most = TAILQ_FIRST(&(con->focus_head));
972         } else {
973             /* If the con has no orientation set, it’s not a split container
974              * but a container with a client window, so stop recursing */
975             return con;
976         }
977     }
978
979     if (!most)
980         return con;
981     return con_descend_direction(most, direction);
982 }
983
984 /*
985  * Returns a "relative" Rect which contains the amount of pixels that need to
986  * be added to the original Rect to get the final position (obviously the
987  * amount of pixels for normal, 1pixel and borderless are different).
988  *
989  */
990 Rect con_border_style_rect(Con *con) {
991     adjacent_t borders_to_hide = ADJ_NONE;
992     int border_width = con->current_border_width;
993     DLOG("The border width for con is set to: %d\n", con->current_border_width);
994     Rect result;
995     if (con->current_border_width < 0)
996         border_width = config.default_border_width;
997     DLOG("Effective border width is set to: %d\n", border_width);
998     /* Shortcut to avoid calling con_adjacent_borders() on dock containers. */
999     int border_style = con_border_style(con);
1000     if (border_style == BS_NONE)
1001         return (Rect){ 0, 0, 0, 0 };
1002     borders_to_hide = con_adjacent_borders(con) & config.hide_edge_borders;
1003     if (border_style == BS_NORMAL) {
1004         result = (Rect){border_width, 0 , -(2 * border_width), -(border_width)};
1005     } else {
1006         result = (Rect){border_width, border_width, -(2 * border_width), -(2 * border_width)};
1007     }
1008     if (borders_to_hide & ADJ_LEFT_SCREEN_EDGE) {
1009         result.x -= border_width;
1010         result.width += border_width;
1011     }
1012     if (borders_to_hide & ADJ_RIGHT_SCREEN_EDGE) {
1013         result.width += border_width;
1014     }
1015     if (borders_to_hide & ADJ_UPPER_SCREEN_EDGE && (border_style != BS_NORMAL)) {
1016         result.y -= border_width;
1017         result.height += border_width;
1018     }
1019     if (borders_to_hide & ADJ_LOWER_SCREEN_EDGE) {
1020         result.height += border_width;
1021     }
1022     return result;
1023
1024 }
1025
1026 /*
1027  * Returns adjacent borders of the window. We need this if hide_edge_borders is
1028  * enabled.
1029  */
1030 adjacent_t con_adjacent_borders(Con *con) {
1031     adjacent_t result = ADJ_NONE;
1032     Con *workspace = con_get_workspace(con);
1033     if (con->rect.x == workspace->rect.x)
1034         result |= ADJ_LEFT_SCREEN_EDGE;
1035     if (con->rect.x + con->rect.width == workspace->rect.x + workspace->rect.width)
1036         result |= ADJ_RIGHT_SCREEN_EDGE;
1037     if (con->rect.y == workspace->rect.y)
1038         result |= ADJ_UPPER_SCREEN_EDGE;
1039     if (con->rect.y + con->rect.height == workspace->rect.y + workspace->rect.height)
1040         result |= ADJ_LOWER_SCREEN_EDGE;
1041     return result;
1042 }
1043
1044 /*
1045  * Use this function to get a container’s border style. This is important
1046  * because when inside a stack, the border style is always BS_NORMAL.
1047  * For tabbed mode, the same applies, with one exception: when the container is
1048  * borderless and the only element in the tabbed container, the border is not
1049  * rendered.
1050  *
1051  * For children of a CT_DOCKAREA, the border style is always none.
1052  *
1053  */
1054 int con_border_style(Con *con) {
1055     Con *fs = con_get_fullscreen_con(con->parent, CF_OUTPUT);
1056     if (fs == con) {
1057         DLOG("this one is fullscreen! overriding BS_NONE\n");
1058         return BS_NONE;
1059     }
1060
1061     if (con->parent->layout == L_STACKED)
1062         return (con_num_children(con->parent) == 1 ? con->border_style : BS_NORMAL);
1063
1064     if (con->parent->layout == L_TABBED && con->border_style != BS_NORMAL)
1065         return (con_num_children(con->parent) == 1 ? con->border_style : BS_NORMAL);
1066
1067     if (con->parent->type == CT_DOCKAREA)
1068         return BS_NONE;
1069
1070     return con->border_style;
1071 }
1072
1073 /*
1074  * Sets the given border style on con, correctly keeping the position/size of a
1075  * floating window.
1076  *
1077  */
1078 void con_set_border_style(Con *con, int border_style, int border_width) {
1079     /* Handle the simple case: non-floating containerns */
1080     if (!con_is_floating(con)) {
1081         con->border_style = border_style;
1082         con->current_border_width = border_width;
1083         return;
1084     }
1085
1086     /* For floating containers, we want to keep the position/size of the
1087      * *window* itself. We first add the border pixels to con->rect to make
1088      * con->rect represent the absolute position of the window. Then, we change
1089      * the border and subtract the new border pixels. Afterwards, we update
1090      * parent->rect to contain con. */
1091     DLOG("This is a floating container\n");
1092
1093     Rect bsr = con_border_style_rect(con);
1094     con->rect.x += bsr.x;
1095     con->rect.y += bsr.y;
1096     con->rect.width += bsr.width;
1097     con->rect.height += bsr.height;
1098
1099     /* Change the border style, get new border/decoration values. */
1100     con->border_style = border_style;
1101     con->current_border_width = border_width;
1102     bsr = con_border_style_rect(con);
1103     int deco_height =
1104         (con->border_style == BS_NORMAL ? config.font.height + 5 : 0);
1105
1106     con->rect.x -= bsr.x;
1107     con->rect.y -= bsr.y;
1108     con->rect.width -= bsr.width;
1109     con->rect.height -= bsr.height;
1110
1111     Con *parent = con->parent;
1112     parent->rect.x = con->rect.x;
1113     parent->rect.y = con->rect.y - deco_height;
1114     parent->rect.width = con->rect.width;
1115     parent->rect.height = con->rect.height + deco_height;
1116 }
1117
1118 /*
1119  * This function changes the layout of a given container. Use it to handle
1120  * special cases like changing a whole workspace to stacked/tabbed (creates a
1121  * new split container before).
1122  *
1123  */
1124 void con_set_layout(Con *con, int layout) {
1125     DLOG("con_set_layout(%p, %d), con->type = %d\n",
1126          con, layout, con->type);
1127
1128     /* Users can focus workspaces, but not any higher in the hierarchy.
1129      * Focus on the workspace is a special case, since in every other case, the
1130      * user means "change the layout of the parent split container". */
1131     if (con->type != CT_WORKSPACE)
1132         con = con->parent;
1133
1134     /* We fill in last_split_layout when switching to a different layout
1135      * since there are many places in the code that don’t use
1136      * con_set_layout(). */
1137     if (con->layout == L_SPLITH || con->layout == L_SPLITV)
1138         con->last_split_layout = con->layout;
1139
1140     /* When the container type is CT_WORKSPACE, the user wants to change the
1141      * whole workspace into stacked/tabbed mode. To do this and still allow
1142      * intuitive operations (like level-up and then opening a new window), we
1143      * need to create a new split container. */
1144     if (con->type == CT_WORKSPACE &&
1145         (layout == L_STACKED || layout == L_TABBED)) {
1146         if (con_num_children(con) == 0) {
1147             DLOG("Setting workspace_layout to %d\n", layout);
1148             con->workspace_layout = layout;
1149         } else {
1150             DLOG("Creating new split container\n");
1151             /* 1: create a new split container */
1152             Con *new = con_new(NULL, NULL);
1153             new->parent = con;
1154
1155             /* 2: Set the requested layout on the split container and mark it as
1156              * split. */
1157             new->layout = layout;
1158             new->last_split_layout = con->last_split_layout;
1159             new->split = true;
1160
1161             Con *old_focused = TAILQ_FIRST(&(con->focus_head));
1162             if (old_focused == TAILQ_END(&(con->focus_head)))
1163                 old_focused = NULL;
1164
1165             /* 3: move the existing cons of this workspace below the new con */
1166             DLOG("Moving cons\n");
1167             Con *child;
1168             while (!TAILQ_EMPTY(&(con->nodes_head))) {
1169                 child = TAILQ_FIRST(&(con->nodes_head));
1170                 con_detach(child);
1171                 con_attach(child, new, true);
1172             }
1173
1174             /* 4: attach the new split container to the workspace */
1175             DLOG("Attaching new split to ws\n");
1176             con_attach(new, con, false);
1177
1178             if (old_focused)
1179                 con_focus(old_focused);
1180
1181             tree_flatten(croot);
1182         }
1183         con_force_split_parents_redraw(con);
1184         return;
1185     }
1186
1187     if (layout == L_DEFAULT) {
1188         /* Special case: the layout formerly known as "default" (in combination
1189          * with an orientation). Since we switched to splith/splitv layouts,
1190          * using the "default" layout (which "only" should happen when using
1191          * legacy configs) is using the last split layout (either splith or
1192          * splitv) in order to still do the same thing.
1193          *
1194          * Starting from v4.6 though, we will nag users about using "layout
1195          * default", and in v4.9 we will remove it entirely (with an
1196          * appropriate i3-migrate-config mechanism). */
1197         con->layout = con->last_split_layout;
1198         /* In case last_split_layout was not initialized… */
1199         if (con->layout == L_DEFAULT)
1200             con->layout = L_SPLITH;
1201     } else {
1202         con->layout = layout;
1203     }
1204     con_force_split_parents_redraw(con);
1205 }
1206
1207 /*
1208  * This function toggles the layout of a given container. toggle_mode can be
1209  * either 'default' (toggle only between stacked/tabbed/last_split_layout),
1210  * 'split' (toggle only between splitv/splith) or 'all' (toggle between all
1211  * layouts).
1212  *
1213  */
1214 void con_toggle_layout(Con *con, const char *toggle_mode) {
1215     Con *parent = con;
1216     /* Users can focus workspaces, but not any higher in the hierarchy.
1217      * Focus on the workspace is a special case, since in every other case, the
1218      * user means "change the layout of the parent split container". */
1219     if (con->type != CT_WORKSPACE)
1220         parent = con->parent;
1221     DLOG("con_toggle_layout(%p, %s), parent = %p\n", con, toggle_mode, parent);
1222
1223     if (strcmp(toggle_mode, "split") == 0) {
1224         /* Toggle between splits. When the current layout is not a split
1225          * layout, we just switch back to last_split_layout. Otherwise, we
1226          * change to the opposite split layout. */
1227         if (parent->layout != L_SPLITH && parent->layout != L_SPLITV)
1228             con_set_layout(con, parent->last_split_layout);
1229         else {
1230             if (parent->layout == L_SPLITH)
1231                 con_set_layout(con, L_SPLITV);
1232             else con_set_layout(con, L_SPLITH);
1233         }
1234     } else {
1235         if (parent->layout == L_STACKED)
1236             con_set_layout(con, L_TABBED);
1237         else if (parent->layout == L_TABBED) {
1238             if (strcmp(toggle_mode, "all") == 0)
1239                 con_set_layout(con, L_SPLITH);
1240             else con_set_layout(con, parent->last_split_layout);
1241         } else if (parent->layout == L_SPLITH || parent->layout == L_SPLITV) {
1242             if (strcmp(toggle_mode, "all") == 0) {
1243                 /* When toggling through all modes, we toggle between
1244                  * splith/splitv, whereas normally we just directly jump to
1245                  * stacked. */
1246                 if (parent->layout == L_SPLITH)
1247                     con_set_layout(con, L_SPLITV);
1248                 else con_set_layout(con, L_STACKED);
1249             } else {
1250                 con_set_layout(con, L_STACKED);
1251             }
1252         }
1253     }
1254 }
1255
1256 /*
1257  * Callback which will be called when removing a child from the given con.
1258  * Kills the container if it is empty and replaces it with the child if there
1259  * is exactly one child.
1260  *
1261  */
1262 static void con_on_remove_child(Con *con) {
1263     DLOG("on_remove_child\n");
1264
1265     /* Every container 'above' (in the hierarchy) the workspace content should
1266      * not be closed when the last child was removed */
1267     if (con->type == CT_OUTPUT ||
1268         con->type == CT_ROOT ||
1269         con->type == CT_DOCKAREA) {
1270         DLOG("not handling, type = %d\n", con->type);
1271         return;
1272     }
1273
1274     /* For workspaces, close them only if they're not visible anymore */
1275     if (con->type == CT_WORKSPACE) {
1276         if (TAILQ_EMPTY(&(con->focus_head)) && !workspace_is_visible(con)) {
1277             LOG("Closing old workspace (%p / %s), it is empty\n", con, con->name);
1278             tree_close(con, DONT_KILL_WINDOW, false, false);
1279             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
1280         }
1281         return;
1282     }
1283
1284     con_force_split_parents_redraw(con);
1285
1286     /* TODO: check if this container would swallow any other client and
1287      * don’t close it automatically. */
1288     int children = con_num_children(con);
1289     if (children == 0) {
1290         DLOG("Container empty, closing\n");
1291         tree_close(con, DONT_KILL_WINDOW, false, false);
1292         return;
1293     }
1294 }
1295
1296 /*
1297  * Determines the minimum size of the given con by looking at its children (for
1298  * split/stacked/tabbed cons). Will be called when resizing floating cons
1299  *
1300  */
1301 Rect con_minimum_size(Con *con) {
1302     DLOG("Determining minimum size for con %p\n", con);
1303
1304     if (con_is_leaf(con)) {
1305         DLOG("leaf node, returning 75x50\n");
1306         return (Rect){ 0, 0, 75, 50 };
1307     }
1308
1309     if (con->type == CT_FLOATING_CON) {
1310         DLOG("floating con\n");
1311         Con *child = TAILQ_FIRST(&(con->nodes_head));
1312         return con_minimum_size(child);
1313     }
1314
1315     if (con->layout == L_STACKED || con->layout == L_TABBED) {
1316         uint32_t max_width = 0, max_height = 0, deco_height = 0;
1317         Con *child;
1318         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1319             Rect min = con_minimum_size(child);
1320             deco_height += child->deco_rect.height;
1321             max_width = max(max_width, min.width);
1322             max_height = max(max_height, min.height);
1323         }
1324         DLOG("stacked/tabbed now, returning %d x %d + deco_rect = %d\n",
1325              max_width, max_height, deco_height);
1326         return (Rect){ 0, 0, max_width, max_height + deco_height };
1327     }
1328
1329     /* For horizontal/vertical split containers we sum up the width (h-split)
1330      * or height (v-split) and use the maximum of the height (h-split) or width
1331      * (v-split) as minimum size. */
1332     if (con->split) {
1333         uint32_t width = 0, height = 0;
1334         Con *child;
1335         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1336             Rect min = con_minimum_size(child);
1337             if (con->layout == L_SPLITH) {
1338                 width += min.width;
1339                 height = max(height, min.height);
1340             } else {
1341                 height += min.height;
1342                 width = max(width, min.width);
1343             }
1344         }
1345         DLOG("split container, returning width = %d x height = %d\n", width, height);
1346         return (Rect){ 0, 0, width, height };
1347     }
1348
1349     ELOG("Unhandled case, type = %d, layout = %d, split = %d\n",
1350          con->type, con->layout, con->split);
1351     assert(false);
1352 }
1353
1354 /*
1355  * Returns true if changing the focus to con would be allowed considering
1356  * the fullscreen focus constraints. Specifically, if a fullscreen container or
1357  * any of its descendants is focused, this function returns true if and only if
1358  * focusing con would mean that focus would still be visible on screen, i.e.,
1359  * the newly focused container would not be obscured by a fullscreen container.
1360  *
1361  * In the simplest case, if a fullscreen container or any of its descendants is
1362  * fullscreen, this functions returns true if con is the fullscreen container
1363  * itself or any of its descendants, as this means focus wouldn't escape the
1364  * boundaries of the fullscreen container.
1365  *
1366  * In case the fullscreen container is of type CF_OUTPUT, this function returns
1367  * true if con is on a different workspace, as focus wouldn't be obscured by
1368  * the fullscreen container that is constrained to a different workspace.
1369  *
1370  * Note that this same logic can be applied to moving containers. If a
1371  * container can be focused under the fullscreen focus constraints, it can also
1372  * become a parent or sibling to the currently focused container.
1373  *
1374  */
1375 bool con_fullscreen_permits_focusing(Con *con) {
1376     /* No focus, no problem. */
1377     if (!focused)
1378         return true;
1379
1380     /* Find the first fullscreen ascendent. */
1381     Con *fs = focused;
1382     while (fs && fs->fullscreen_mode == CF_NONE)
1383         fs = fs->parent;
1384
1385     /* fs must be non-NULL since the workspace con doesn’t have CF_NONE and
1386      * there always has to be a workspace con in the hierarchy. */
1387     assert(fs != NULL);
1388     /* The most common case is we hit the workspace level. In this
1389      * situation, changing focus is also harmless. */
1390     assert(fs->fullscreen_mode != CF_NONE);
1391     if (fs->type == CT_WORKSPACE)
1392         return true;
1393
1394     /* Allow it if the container itself is the fullscreen container. */
1395     if (con == fs)
1396         return true;
1397
1398     /* If fullscreen is per-output, the focus being in a different workspace is
1399      * sufficient to guarantee that change won't leave fullscreen in bad shape. */
1400     if (fs->fullscreen_mode == CF_OUTPUT &&
1401         con_get_workspace(con) != con_get_workspace(fs)) {
1402             return true;
1403     }
1404
1405     /* Allow it only if the container to be focused is contained within the
1406      * current fullscreen container. */
1407     do {
1408         if (con->parent == fs)
1409             return true;
1410         con = con->parent;
1411     } while (con);
1412
1413     /* Focusing con would hide it behind a fullscreen window, disallow it. */
1414     return false;
1415 }
1416
1417 /*
1418  *
1419  * Checks if the given container has an urgent child.
1420  *
1421  */
1422 bool con_has_urgent_child(Con *con) {
1423     Con *child;
1424
1425     if (con_is_leaf(con))
1426         return con->urgent;
1427
1428     /* We are not interested in floating windows since they can only be
1429      * attached to a workspace → nodes_head instead of focus_head */
1430     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1431         if (con_has_urgent_child(child))
1432             return true;
1433     }
1434
1435     return false;
1436 }
1437
1438 /*
1439  * Make all parent containers urgent if con is urgent or clear the urgent flag
1440  * of all parent containers if there are no more urgent children left.
1441  *
1442  */
1443 void con_update_parents_urgency(Con *con) {
1444     Con *parent = con->parent;
1445
1446     bool new_urgency_value = con->urgent;
1447     while (parent && parent->type != CT_WORKSPACE && parent->type != CT_DOCKAREA) {
1448         if (new_urgency_value) {
1449             parent->urgent = true;
1450         } else {
1451             /* We can only reset the urgency when the parent
1452              * has no other urgent children */
1453             if (!con_has_urgent_child(parent))
1454                 parent->urgent = false;
1455         }
1456         parent = parent->parent;
1457     }
1458 }
1459
1460 /*
1461  * Create a string representing the subtree under con.
1462  *
1463  */
1464 char *con_get_tree_representation(Con *con) {
1465     /* this code works as follows:
1466      *  1) create a string with the layout type (D/V/H/T/S) and an opening bracket
1467      *  2) append the tree representation of the children to the string
1468      *  3) add closing bracket
1469      *
1470      * The recursion ends when we hit a leaf, in which case we return the
1471      * class_instance of the contained window.
1472      */
1473
1474     /* end of recursion */
1475     if (con_is_leaf(con)) {
1476         if (!con->window)
1477             return sstrdup("nowin");
1478
1479         if (!con->window->class_instance)
1480             return sstrdup("noinstance");
1481
1482         return sstrdup(con->window->class_instance);
1483     }
1484
1485     char *buf;
1486     /* 1) add the Layout type to buf */
1487     if (con->layout == L_DEFAULT)
1488         buf = sstrdup("D[");
1489     else if (con->layout == L_SPLITV)
1490         buf = sstrdup("V[");
1491     else if (con->layout == L_SPLITH)
1492         buf = sstrdup("H[");
1493     else if (con->layout == L_TABBED)
1494         buf = sstrdup("T[");
1495     else if (con->layout == L_STACKED)
1496         buf = sstrdup("S[");
1497
1498     /* 2) append representation of children */
1499     Con *child;
1500     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1501         char *child_txt = con_get_tree_representation(child);
1502
1503         char *tmp_buf;
1504         sasprintf(&tmp_buf, "%s%s%s", buf,
1505                 (TAILQ_FIRST(&(con->nodes_head)) == child ? "" : " "), child_txt);
1506         free(buf);
1507         buf = tmp_buf;
1508     }
1509
1510     /* 3) close the brackets */
1511     char *complete_buf;
1512     sasprintf(&complete_buf, "%s]", buf);
1513     free(buf);
1514
1515     return complete_buf;
1516 }