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