]> git.sur5r.net Git - i3/i3/blob - src/con.c
1adfcf358397a0e7ca0a6379179636a1890841be
[i3/i3] / src / con.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * con.c contains all functions which deal with containers directly (creating
8  * containers, searching containers, getting specific properties from
9  * containers, …).
10  *
11  */
12 #include "all.h"
13
14 char *colors[] = {
15     "#ff0000",
16     "#00FF00",
17     "#0000FF",
18     "#ff00ff",
19     "#00ffff",
20     "#ffff00",
21     "#aa0000",
22     "#00aa00",
23     "#0000aa",
24     "#aa00aa"
25 };
26
27 static void con_on_remove_child(Con *con);
28
29 /*
30  * Create a new container (and attach it to the given parent, if not NULL).
31  * This function initializes the data structures and creates the appropriate
32  * X11 IDs using x_con_init().
33  *
34  */
35 Con *con_new(Con *parent) {
36     Con *new = scalloc(sizeof(Con));
37     new->on_remove_child = con_on_remove_child;
38     TAILQ_INSERT_TAIL(&all_cons, new, all_cons);
39     new->type = CT_CON;
40     new->border_style = config.default_border;
41     static int cnt = 0;
42     DLOG("opening window %d\n", cnt);
43
44     /* TODO: remove window coloring after test-phase */
45     DLOG("color %s\n", colors[cnt]);
46     new->name = strdup(colors[cnt]);
47     //uint32_t cp = get_colorpixel(colors[cnt]);
48     cnt++;
49     if ((cnt % (sizeof(colors) / sizeof(char*))) == 0)
50         cnt = 0;
51
52     x_con_init(new);
53
54     // TODO: this needs to be integrated into src/x.c and updated on config file reloads
55     xcb_change_window_attributes(conn, new->frame, XCB_CW_BACK_PIXEL, &config.client.background);
56
57     TAILQ_INIT(&(new->floating_head));
58     TAILQ_INIT(&(new->nodes_head));
59     TAILQ_INIT(&(new->focus_head));
60     TAILQ_INIT(&(new->swallow_head));
61
62     if (parent != NULL) {
63         /* Set layout of ws if this is the first child of the ws and the user
64          * wanted something different than the default layout. */
65         if (parent->type == CT_WORKSPACE &&
66             con_is_leaf(parent) &&
67             config.default_layout != L_DEFAULT) {
68             con_set_layout(new, config.default_layout);
69             con_attach(new, parent, false);
70             con_set_layout(parent, config.default_layout);
71         } else {
72             con_attach(new, parent, false);
73         }
74     }
75
76     return new;
77 }
78
79 /*
80  * Attaches the given container to the given parent. This happens when moving
81  * a container or when inserting a new container at a specific place in the
82  * tree.
83  *
84  * ignore_focus is to just insert the Con at the end (useful when creating a
85  * new split container *around* some containers, that is, detaching and
86  * attaching them in order without wanting to mess with the focus in between).
87  *
88  */
89 void con_attach(Con *con, Con *parent, bool ignore_focus) {
90     con->parent = parent;
91     Con *loop;
92     Con *current = NULL;
93     struct nodes_head *nodes_head = &(parent->nodes_head);
94
95     /* Workspaces are handled differently: they need to be inserted at the
96      * right position. */
97     if (con->type == CT_WORKSPACE) {
98         DLOG("it's a workspace. num = %d\n", con->num);
99         if (con->num == -1 || TAILQ_EMPTY(nodes_head)) {
100             TAILQ_INSERT_TAIL(nodes_head, con, nodes);
101         } else {
102             current = TAILQ_FIRST(nodes_head);
103             if (con->num < current->num) {
104                 /* we need to insert the container at the beginning */
105                 TAILQ_INSERT_HEAD(nodes_head, con, nodes);
106             } else {
107                 while (current->num != -1 && con->num > current->num) {
108                     current = TAILQ_NEXT(current, nodes);
109                     if (current == TAILQ_END(nodes_head)) {
110                         current = NULL;
111                         break;
112                     }
113                 }
114                 /* we need to insert con after current, if current is not NULL */
115                 if (current)
116                     TAILQ_INSERT_BEFORE(current, con, nodes);
117                 else TAILQ_INSERT_TAIL(nodes_head, con, nodes);
118             }
119         }
120         goto add_to_focus_head;
121     }
122
123     if (con->type == CT_FLOATING_CON) {
124         DLOG("Inserting into floating containers\n");
125         TAILQ_INSERT_TAIL(&(parent->floating_head), con, floating_windows);
126     } else {
127         if (!ignore_focus) {
128             /* Get the first tiling container in focus stack */
129             TAILQ_FOREACH(loop, &(parent->focus_head), focused) {
130                 if (loop->type == CT_FLOATING_CON)
131                     continue;
132                 current = loop;
133                 break;
134             }
135         }
136
137         /* Insert the container after the tiling container, if found.
138          * When adding to a CT_OUTPUT, just append one after another. */
139         if (current && parent->type != CT_OUTPUT) {
140             DLOG("Inserting con = %p after last focused tiling con %p\n",
141                  con, current);
142             TAILQ_INSERT_AFTER(nodes_head, current, con, nodes);
143         } else TAILQ_INSERT_TAIL(nodes_head, con, nodes);
144     }
145
146 add_to_focus_head:
147     /* We insert to the TAIL because con_focus() will correct this.
148      * This way, we have the option to insert Cons without having
149      * to focus them. */
150     TAILQ_INSERT_TAIL(&(parent->focus_head), con, focused);
151 }
152
153 /*
154  * Detaches the given container from its current parent
155  *
156  */
157 void con_detach(Con *con) {
158     if (con->type == CT_FLOATING_CON) {
159         TAILQ_REMOVE(&(con->parent->floating_head), con, floating_windows);
160         TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
161     } else {
162         TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
163         TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
164     }
165 }
166
167 /*
168  * Sets input focus to the given container. Will be updated in X11 in the next
169  * run of x_push_changes().
170  *
171  */
172 void con_focus(Con *con) {
173     assert(con != NULL);
174     DLOG("con_focus = %p\n", con);
175
176     /* 1: set focused-pointer to the new con */
177     /* 2: exchange the position of the container in focus stack of the parent all the way up */
178     TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
179     TAILQ_INSERT_HEAD(&(con->parent->focus_head), con, focused);
180     if (con->parent->parent != NULL)
181         con_focus(con->parent);
182
183     focused = con;
184     if (con->urgent) {
185         con->urgent = false;
186         workspace_update_urgent_flag(con_get_workspace(con));
187     }
188     DLOG("con_focus done = %p\n", con);
189 }
190
191 /*
192  * Returns true when this node is a leaf node (has no children)
193  *
194  */
195 bool con_is_leaf(Con *con) {
196     return TAILQ_EMPTY(&(con->nodes_head));
197 }
198
199 /*
200  * Returns true if this node accepts a window (if the node swallows windows,
201  * it might already have swallowed enough and cannot hold any more).
202  *
203  */
204 bool con_accepts_window(Con *con) {
205     /* 1: workspaces never accept direct windows */
206     if (con->type == CT_WORKSPACE)
207         return false;
208
209     if (con->orientation != NO_ORIENTATION) {
210         DLOG("container %p does not accepts windows, orientation != NO_ORIENTATION\n", con);
211         return false;
212     }
213
214     /* TODO: if this is a swallowing container, we need to check its max_clients */
215     return (con->window == NULL);
216 }
217
218 /*
219  * Gets the output container (first container with CT_OUTPUT in hierarchy) this
220  * node is on.
221  *
222  */
223 Con *con_get_output(Con *con) {
224     Con *result = con;
225     while (result != NULL && result->type != CT_OUTPUT)
226         result = result->parent;
227     /* We must be able to get an output because focus can never be set higher
228      * in the tree (root node cannot be focused). */
229     assert(result != NULL);
230     return result;
231 }
232
233 /*
234  * Gets the workspace container this node is on.
235  *
236  */
237 Con *con_get_workspace(Con *con) {
238     Con *result = con;
239     while (result != NULL && result->type != CT_WORKSPACE)
240         result = result->parent;
241     return result;
242 }
243
244 /*
245  * Searches parenst of the given 'con' until it reaches one with the specified
246  * 'orientation'. Aborts when it comes across a floating_con.
247  *
248  */
249 Con *con_parent_with_orientation(Con *con, orientation_t orientation) {
250     DLOG("Searching for parent of Con %p with orientation %d\n", con, orientation);
251     Con *parent = con->parent;
252     if (parent->type == CT_FLOATING_CON)
253         return NULL;
254     while (con_orientation(parent) != orientation) {
255         DLOG("Need to go one level further up\n");
256         parent = parent->parent;
257         /* Abort when we reach a floating con */
258         if (parent && parent->type == CT_FLOATING_CON)
259             parent = NULL;
260         if (parent == NULL)
261             break;
262     }
263     DLOG("Result: %p\n", parent);
264     return parent;
265 }
266
267 /*
268  * helper data structure for the breadth-first-search in
269  * con_get_fullscreen_con()
270  *
271  */
272 struct bfs_entry {
273     Con *con;
274
275     TAILQ_ENTRY(bfs_entry) entries;
276 };
277
278 /*
279  * Returns the first fullscreen node below this node.
280  *
281  */
282 Con *con_get_fullscreen_con(Con *con) {
283     Con *current, *child;
284
285     /* TODO: is breadth-first-search really appropriate? (check as soon as
286      * fullscreen levels and fullscreen for containers is implemented) */
287     TAILQ_HEAD(bfs_head, bfs_entry) bfs_head = TAILQ_HEAD_INITIALIZER(bfs_head);
288     struct bfs_entry *entry = smalloc(sizeof(struct bfs_entry));
289     entry->con = con;
290     TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
291
292     while (!TAILQ_EMPTY(&bfs_head)) {
293         entry = TAILQ_FIRST(&bfs_head);
294         current = entry->con;
295         if (current != con && current->fullscreen_mode != CF_NONE) {
296             /* empty the queue */
297             while (!TAILQ_EMPTY(&bfs_head)) {
298                 entry = TAILQ_FIRST(&bfs_head);
299                 TAILQ_REMOVE(&bfs_head, entry, entries);
300                 free(entry);
301             }
302             return current;
303         }
304
305         TAILQ_REMOVE(&bfs_head, entry, entries);
306         free(entry);
307
308         TAILQ_FOREACH(child, &(current->nodes_head), nodes) {
309             entry = smalloc(sizeof(struct bfs_entry));
310             entry->con = child;
311             TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
312         }
313
314         TAILQ_FOREACH(child, &(current->floating_head), floating_windows) {
315             entry = smalloc(sizeof(struct bfs_entry));
316             entry->con = child;
317             TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
318         }
319     }
320
321     return NULL;
322 }
323
324 /*
325  * Returns true if the node is floating.
326  *
327  */
328 bool con_is_floating(Con *con) {
329     assert(con != NULL);
330     DLOG("checking if con %p is floating\n", con);
331     return (con->floating >= FLOATING_AUTO_ON);
332 }
333
334 /*
335  * Checks if the given container is either floating or inside some floating
336  * container. It returns the FLOATING_CON container.
337  *
338  */
339 Con *con_inside_floating(Con *con) {
340     assert(con != NULL);
341     if (con->type == CT_FLOATING_CON)
342         return con;
343
344     if (con->floating >= FLOATING_AUTO_ON)
345         return con->parent;
346
347     if (con->type == CT_WORKSPACE || con->type == CT_OUTPUT)
348         return NULL;
349
350     return con_inside_floating(con->parent);
351 }
352
353 /*
354  * Returns the container with the given client window ID or NULL if no such
355  * container exists.
356  *
357  */
358 Con *con_by_window_id(xcb_window_t window) {
359     Con *con;
360     TAILQ_FOREACH(con, &all_cons, all_cons)
361         if (con->window != NULL && con->window->id == window)
362             return con;
363     return NULL;
364 }
365
366 /*
367  * Returns the container with the given frame ID or NULL if no such container
368  * exists.
369  *
370  */
371 Con *con_by_frame_id(xcb_window_t frame) {
372     Con *con;
373     TAILQ_FOREACH(con, &all_cons, all_cons)
374         if (con->frame == frame)
375             return con;
376     return NULL;
377 }
378
379 /*
380  * Returns the first container below 'con' which wants to swallow this window
381  * TODO: priority
382  *
383  */
384 Con *con_for_window(Con *con, i3Window *window, Match **store_match) {
385     Con *child;
386     Match *match;
387     DLOG("searching con for window %p starting at con %p\n", window, con);
388     DLOG("class == %s\n", window->class_class);
389
390     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
391         TAILQ_FOREACH(match, &(child->swallow_head), matches) {
392             if (!match_matches_window(match, window))
393                 continue;
394             if (store_match != NULL)
395                 *store_match = match;
396             return child;
397         }
398         Con *result = con_for_window(child, window, store_match);
399         if (result != NULL)
400             return result;
401     }
402
403     TAILQ_FOREACH(child, &(con->floating_head), floating_windows) {
404         TAILQ_FOREACH(match, &(child->swallow_head), matches) {
405             if (!match_matches_window(match, window))
406                 continue;
407             if (store_match != NULL)
408                 *store_match = match;
409             return child;
410         }
411         Con *result = con_for_window(child, window, store_match);
412         if (result != NULL)
413             return result;
414     }
415
416     return NULL;
417 }
418
419 /*
420  * Returns the number of children of this container.
421  *
422  */
423 int con_num_children(Con *con) {
424     Con *child;
425     int children = 0;
426
427     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
428         children++;
429
430     return children;
431 }
432
433 /*
434  * Updates the percent attribute of the children of the given container. This
435  * function needs to be called when a window is added or removed from a
436  * container.
437  *
438  */
439 void con_fix_percent(Con *con) {
440     Con *child;
441     int children = con_num_children(con);
442
443     // calculate how much we have distributed and how many containers
444     // with a percentage set we have
445     double total = 0.0;
446     int children_with_percent = 0;
447     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
448         if (child->percent > 0.0) {
449             total += child->percent;
450             ++children_with_percent;
451         }
452     }
453
454     // if there were children without a percentage set, set to a value that
455     // will make those children proportional to all others
456     if (children_with_percent != children) {
457         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
458             if (child->percent <= 0.0) {
459                 if (children_with_percent == 0)
460                     total += (child->percent = 1.0);
461                 else total += (child->percent = total / children_with_percent);
462             }
463         }
464     }
465
466     // if we got a zero, just distribute the space equally, otherwise
467     // distribute according to the proportions we got
468     if (total == 0.0) {
469         TAILQ_FOREACH(child, &(con->nodes_head), nodes)
470             child->percent = 1.0 / children;
471     } else if (total != 1.0) {
472         TAILQ_FOREACH(child, &(con->nodes_head), nodes)
473             child->percent /= total;
474     }
475 }
476
477 /*
478  * Toggles fullscreen mode for the given container. Fullscreen mode will not be
479  * entered when there already is a fullscreen container on this workspace.
480  *
481  */
482 void con_toggle_fullscreen(Con *con) {
483     Con *workspace, *fullscreen;
484
485     if (con->type == CT_WORKSPACE) {
486         DLOG("You cannot make a workspace fullscreen.\n");
487         return;
488     }
489
490     DLOG("toggling fullscreen for %p / %s\n", con, con->name);
491     if (con->fullscreen_mode == CF_NONE) {
492         /* 1: check if there already is a fullscreen con */
493         workspace = con_get_workspace(con);
494         if ((fullscreen = con_get_fullscreen_con(workspace)) != NULL) {
495             LOG("Not entering fullscreen mode, container (%p/%s) "
496                 "already is in fullscreen mode\n",
497                 fullscreen, fullscreen->name);
498         } else {
499             /* 2: enable fullscreen */
500             con->fullscreen_mode = CF_OUTPUT;
501         }
502     } else {
503         /* 1: disable fullscreen */
504         con->fullscreen_mode = CF_NONE;
505     }
506     DLOG("mode now: %d\n", con->fullscreen_mode);
507
508     /* update _NET_WM_STATE if this container has a window */
509     /* TODO: when a window is assigned to a container which is already
510      * fullscreened, this state needs to be pushed to the client, too */
511     if (con->window == NULL)
512         return;
513
514     uint32_t values[1];
515     unsigned int num = 0;
516
517     if (con->fullscreen_mode != CF_NONE)
518         values[num++] = A__NET_WM_STATE_FULLSCREEN;
519
520     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
521                         A__NET_WM_STATE, A_ATOM, 32, num, values);
522 }
523
524 /*
525  * Moves the given container to the currently focused container on the given
526  * workspace.
527  * TODO: is there a better place for this function?
528  *
529  */
530 void con_move_to_workspace(Con *con, Con *workspace) {
531     if (con->type == CT_WORKSPACE) {
532         DLOG("Moving workspaces is not yet implemented.\n");
533         return;
534     }
535
536     if (con_is_floating(con)) {
537         DLOG("Using FLOATINGCON instead\n");
538         con = con->parent;
539     }
540
541     Con *source_output = con_get_output(con),
542         *dest_output = con_get_output(workspace);
543
544     /* 1: save the container which is going to be focused after the current
545      * container is moved away */
546     Con *focus_next = con_next_focused(con);
547
548     /* 2: get the focused container of this workspace */
549     Con *next = con_descend_focused(workspace);
550
551     /* 3: we go up one level, but only when next is a normal container */
552     if (next->type != CT_WORKSPACE) {
553         DLOG("next originally = %p / %s / type %d\n", next, next->name, next->type);
554         next = next->parent;
555     }
556
557     /* 4: if the target container is floating, we get the workspace instead.
558      * Only tiling windows need to get inserted next to the current container.
559      * */
560     Con *floatingcon = con_inside_floating(next);
561     if (floatingcon != NULL) {
562         DLOG("floatingcon, going up even further\n");
563         next = floatingcon->parent;
564     }
565
566     if (con->type == CT_FLOATING_CON) {
567         Con *ws = con_get_workspace(next);
568         DLOG("This is a floating window, using workspace %p / %s\n", ws, ws->name);
569         next = ws;
570     }
571
572     DLOG("Re-attaching container to %p / %s\n", next, next->name);
573     /* 5: re-attach the con to the parent of this focused container */
574     Con *parent = con->parent;
575     con_detach(con);
576     con_attach(con, next, false);
577
578     /* 6: fix the percentages */
579     con_fix_percent(parent);
580     con->percent = 0.0;
581     con_fix_percent(next);
582
583     /* 7: focus the con on the target workspace (the X focus is only updated by
584      * calling tree_render(), so for the "real" focus this is a no-op) */
585     con_focus(con);
586
587     /* 8: when moving to a visible workspace on a different output, we keep the
588      * con focused. Otherwise, we leave the focus on the current workspace as we
589      * don’t want to focus invisible workspaces */
590     if (source_output != dest_output &&
591         workspace_is_visible(workspace)) {
592         DLOG("Moved to a different output, focusing target\n");
593     } else {
594         con_focus(focus_next);
595     }
596
597     CALL(parent, on_remove_child);
598 }
599
600 /*
601  * Returns the orientation of the given container (for stacked containers,
602  * vertical orientation is used regardless of the actual orientation of the
603  * container).
604  *
605  */
606 int con_orientation(Con *con) {
607     /* stacking containers behave like they are in vertical orientation */
608     if (con->layout == L_STACKED)
609         return VERT;
610
611     if (con->layout == L_TABBED)
612         return HORIZ;
613
614     return con->orientation;
615 }
616
617 /*
618  * Returns the container which will be focused next when the given container
619  * is not available anymore. Called in tree_close and con_move_to_workspace
620  * to properly restore focus.
621  *
622  */
623 Con *con_next_focused(Con *con) {
624     Con *next;
625     /* floating containers are attached to a workspace, so we focus either the
626      * next floating container (if any) or the workspace itself. */
627     if (con->type == CT_FLOATING_CON) {
628         DLOG("selecting next for CT_FLOATING_CON\n");
629         next = TAILQ_NEXT(con, floating_windows);
630         if (next == TAILQ_END(&(parent->floating_head))) {
631             Con *ws = con_get_workspace(con);
632             next = ws;
633             DLOG("no more floating containers for next = %p, restoring workspace focus\n", next);
634             while (next != TAILQ_END(&(ws->focus_head)) && !TAILQ_EMPTY(&(next->focus_head))) {
635                 next = TAILQ_FIRST(&(next->focus_head));
636                 if (next == con) {
637                     DLOG("skipping container itself, we want the next client\n");
638                     next = TAILQ_NEXT(next, focused);
639                 }
640             }
641             if (next == TAILQ_END(&(ws->focus_head))) {
642                 DLOG("Focus list empty, returning ws\n");
643                 next = ws;
644             }
645         }
646         return next;
647     }
648
649     /* dock clients cannot be focused, so we focus the workspace instead */
650     if (con->parent->type == CT_DOCKAREA) {
651         DLOG("selecting workspace for dock client\n");
652         return con_descend_focused(output_get_content(con->parent->parent));
653     }
654
655     /* if 'con' is not the first entry in the focus stack, use the first one as
656      * it’s currently focused already */
657     Con *first = TAILQ_FIRST(&(con->parent->focus_head));
658     if (first != con) {
659         DLOG("Using first entry %p\n", first);
660         next = first;
661     } else {
662         /* try to focus the next container on the same level as this one or fall
663          * back to its parent */
664         if (!(next = TAILQ_NEXT(con, focused)))
665             next = con->parent;
666     }
667
668     /* now go down the focus stack as far as
669      * possible, excluding the current container */
670     while (!TAILQ_EMPTY(&(next->focus_head)) &&
671            TAILQ_FIRST(&(next->focus_head)) != con)
672         next = TAILQ_FIRST(&(next->focus_head));
673
674     return next;
675 }
676
677 /*
678  * Get the next/previous container in the specified orientation. This may
679  * travel up until it finds a container with suitable orientation.
680  *
681  */
682 Con *con_get_next(Con *con, char way, orientation_t orientation) {
683     DLOG("con_get_next(way=%c, orientation=%d)\n", way, orientation);
684     /* 1: get the first parent with the same orientation */
685     Con *cur = con;
686     while (con_orientation(cur->parent) != orientation) {
687         DLOG("need to go one level further up\n");
688         if (cur->parent->type == CT_WORKSPACE) {
689             LOG("that's a workspace, we can't go further up\n");
690             return NULL;
691         }
692         cur = cur->parent;
693     }
694
695     /* 2: chose next (or previous) */
696     Con *next;
697     if (way == 'n') {
698         next = TAILQ_NEXT(cur, nodes);
699         /* if we are at the end of the list, we need to wrap */
700         if (next == TAILQ_END(&(parent->nodes_head)))
701             return NULL;
702     } else {
703         next = TAILQ_PREV(cur, nodes_head, nodes);
704         /* if we are at the end of the list, we need to wrap */
705         if (next == TAILQ_END(&(cur->nodes_head)))
706             return NULL;
707     }
708     DLOG("next = %p\n", next);
709
710     return next;
711 }
712
713 /*
714  * Returns the focused con inside this client, descending the tree as far as
715  * possible. This comes in handy when attaching a con to a workspace at the
716  * currently focused position, for example.
717  *
718  */
719 Con *con_descend_focused(Con *con) {
720     Con *next = con;
721     while (!TAILQ_EMPTY(&(next->focus_head)))
722         next = TAILQ_FIRST(&(next->focus_head));
723     return next;
724 }
725
726 /*
727  * Returns the focused con inside this client, descending the tree as far as
728  * possible. This comes in handy when attaching a con to a workspace at the
729  * currently focused position, for example.
730  *
731  * Works like con_descend_focused but considers only tiling cons.
732  *
733  */
734 Con *con_descend_tiling_focused(Con *con) {
735     Con *next = con;
736     Con *before;
737     Con *child;
738     do {
739         before = next;
740         TAILQ_FOREACH(child, &(next->focus_head), focused) {
741             if (child->type == CT_FLOATING_CON)
742                 continue;
743
744             next = child;
745             break;
746         }
747     } while (before != next);
748     return next;
749 }
750
751
752 /*
753  * Returns a "relative" Rect which contains the amount of pixels that need to
754  * be added to the original Rect to get the final position (obviously the
755  * amount of pixels for normal, 1pixel and borderless are different).
756  *
757  */
758 Rect con_border_style_rect(Con *con) {
759     switch (con_border_style(con)) {
760     case BS_NORMAL:
761         return (Rect){2, 0, -(2 * 2), -2};
762
763     case BS_1PIXEL:
764         return (Rect){1, 1, -2, -2};
765
766     case BS_NONE:
767         return (Rect){0, 0, 0, 0};
768
769     default:
770         assert(false);
771     }
772 }
773
774 /*
775  * Use this function to get a container’s border style. This is important
776  * because when inside a stack, the border style is always BS_NORMAL.
777  * For tabbed mode, the same applies, with one exception: when the container is
778  * borderless and the only element in the tabbed container, the border is not
779  * rendered.
780  *
781  * For children of a CT_DOCKAREA, the border style is always none.
782  *
783  */
784 int con_border_style(Con *con) {
785     Con *fs = con_get_fullscreen_con(con->parent);
786     if (fs == con) {
787         DLOG("this one is fullscreen! overriding BS_NONE\n");
788         return BS_NONE;
789     }
790
791     if (con->parent->layout == L_STACKED)
792         return (con_num_children(con->parent) == 1 ? con->border_style : BS_NORMAL);
793
794     if (con->parent->layout == L_TABBED && con->border_style != BS_NORMAL)
795         return (con_num_children(con->parent) == 1 ? con->border_style : BS_NORMAL);
796
797     if (con->parent->type == CT_DOCKAREA)
798         return BS_NONE;
799
800     return con->border_style;
801 }
802
803 /*
804  * This function changes the layout of a given container. Use it to handle
805  * special cases like changing a whole workspace to stacked/tabbed (creates a
806  * new split container before).
807  *
808  */
809 void con_set_layout(Con *con, int layout) {
810     /* When the container type is CT_WORKSPACE, the user wants to change the
811      * whole workspace into stacked/tabbed mode. To do this and still allow
812      * intuitive operations (like level-up and then opening a new window), we
813      * need to create a new split container. */
814     if (con->type == CT_WORKSPACE) {
815         DLOG("Creating new split container\n");
816         /* 1: create a new split container */
817         Con *new = con_new(NULL);
818         new->parent = con;
819
820         /* 2: set the requested layout on the split con */
821         new->layout = layout;
822
823         /* 3: While the layout is irrelevant in stacked/tabbed mode, it needs
824          * to be set. Otherwise, this con will not be interpreted as a split
825          * container. */
826         if (config.default_orientation == NO_ORIENTATION) {
827             new->orientation = (con->rect.height > con->rect.width) ? VERT : HORIZ;
828         } else {
829             new->orientation = config.default_orientation;
830         }
831
832         Con *old_focused = TAILQ_FIRST(&(con->focus_head));
833         if (old_focused == TAILQ_END(&(con->focus_head)))
834             old_focused = NULL;
835
836         /* 4: move the existing cons of this workspace below the new con */
837         DLOG("Moving cons\n");
838         Con *child;
839         while (!TAILQ_EMPTY(&(con->nodes_head))) {
840             child = TAILQ_FIRST(&(con->nodes_head));
841             con_detach(child);
842             con_attach(child, new, true);
843         }
844
845         /* 4: attach the new split container to the workspace */
846         DLOG("Attaching new split to ws\n");
847         con_attach(new, con, false);
848
849         if (old_focused)
850             con_focus(old_focused);
851
852         tree_flatten(croot);
853
854         return;
855     }
856
857     con->layout = layout;
858 }
859
860 /*
861  * Callback which will be called when removing a child from the given con.
862  * Kills the container if it is empty and replaces it with the child if there
863  * is exactly one child.
864  *
865  */
866 static void con_on_remove_child(Con *con) {
867     DLOG("on_remove_child\n");
868
869     /* Every container 'above' (in the hierarchy) the workspace content should
870      * not be closed when the last child was removed */
871     if (con->type == CT_WORKSPACE ||
872         con->type == CT_OUTPUT ||
873         con->type == CT_ROOT ||
874         con->type == CT_DOCKAREA) {
875         DLOG("not handling, type = %d\n", con->type);
876         return;
877     }
878
879     /* TODO: check if this container would swallow any other client and
880      * don’t close it automatically. */
881     int children = con_num_children(con);
882     if (children == 0) {
883         DLOG("Container empty, closing\n");
884         tree_close(con, false, false);
885         return;
886     }
887 }
888
889 /*
890  * Determines the minimum size of the given con by looking at its children (for
891  * split/stacked/tabbed cons). Will be called when resizing floating cons
892  *
893  */
894 Rect con_minimum_size(Con *con) {
895     DLOG("Determining minimum size for con %p\n", con);
896
897     if (con_is_leaf(con)) {
898         DLOG("leaf node, returning 75x50\n");
899         return (Rect){ 0, 0, 75, 50 };
900     }
901
902     if (con->type == CT_FLOATING_CON) {
903         DLOG("floating con\n");
904         Con *child = TAILQ_FIRST(&(con->nodes_head));
905         return con_minimum_size(child);
906     }
907
908     if (con->layout == L_STACKED || con->layout == L_TABBED) {
909         uint32_t max_width = 0, max_height = 0, deco_height = 0;
910         Con *child;
911         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
912             Rect min = con_minimum_size(child);
913             deco_height += child->deco_rect.height;
914             max_width = max(max_width, min.width);
915             max_height = max(max_height, min.height);
916         }
917         DLOG("stacked/tabbed now, returning %d x %d + deco_rect = %d\n",
918              max_width, max_height, deco_height);
919         return (Rect){ 0, 0, max_width, max_height + deco_height };
920     }
921
922     /* For horizontal/vertical split containers we sum up the width (h-split)
923      * or height (v-split) and use the maximum of the height (h-split) or width
924      * (v-split) as minimum size. */
925     if (con->orientation == HORIZ || con->orientation == VERT) {
926         uint32_t width = 0, height = 0;
927         Con *child;
928         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
929             Rect min = con_minimum_size(child);
930             if (con->orientation == HORIZ) {
931                 width += min.width;
932                 height = max(height, min.height);
933             } else {
934                 height += min.height;
935                 width = max(width, min.width);
936             }
937         }
938         DLOG("split container, returning width = %d x height = %d\n", width, height);
939         return (Rect){ 0, 0, width, height };
940     }
941
942     ELOG("Unhandled case, type = %d, layout = %d, orientation = %d\n",
943          con->type, con->layout, con->orientation);
944     assert(false);
945 }