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