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