]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
Merge branch 'fix-baf-after-scratchpad'
[i3/i3] / src / workspace.c
1 #undef I3__FILE__
2 #define I3__FILE__ "workspace.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  * workspace.c: Modifying workspaces, accessing them, moving containers to
10  *              workspaces.
11  *
12  */
13 #include "all.h"
14
15 /* Stores a copy of the name of the last used workspace for the workspace
16  * back-and-forth switching. */
17 static char *previous_workspace_name = NULL;
18
19 /*
20  * Sets ws->layout to splith/splitv if default_orientation was specified in the
21  * configfile. Otherwise, it uses splith/splitv depending on whether the output
22  * is higher than wide.
23  *
24  */
25 static void _workspace_apply_default_orientation(Con *ws) {
26     /* If default_orientation is set to NO_ORIENTATION we determine
27      * orientation depending on output resolution. */
28     if (config.default_orientation == NO_ORIENTATION) {
29         Con *output = con_get_output(ws);
30         ws->layout = (output->rect.height > output->rect.width) ? L_SPLITV : L_SPLITH;
31         DLOG("Auto orientation. Workspace size set to (%d,%d), setting layout to %d.\n",
32              output->rect.width, output->rect.height, ws->layout);
33     } else {
34         ws->layout = (config.default_orientation == HORIZ) ? L_SPLITH : L_SPLITV;
35     }
36 }
37
38 /*
39  * Returns a pointer to the workspace with the given number (starting at 0),
40  * creating the workspace if necessary (by allocating the necessary amount of
41  * memory and initializing the data structures correctly).
42  *
43  */
44 Con *workspace_get(const char *num, bool *created) {
45     Con *output, *workspace = NULL;
46
47     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
48         GREP_FIRST(workspace, output_get_content(output), !strcasecmp(child->name, num));
49
50     if (workspace == NULL) {
51         LOG("Creating new workspace \"%s\"\n", num);
52         /* unless an assignment is found, we will create this workspace on the current output */
53         output = con_get_output(focused);
54         /* look for assignments */
55         struct Workspace_Assignment *assignment;
56         TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
57             if (strcmp(assignment->name, num) != 0)
58                 continue;
59
60             LOG("Found workspace assignment to output \"%s\"\n", assignment->output);
61             GREP_FIRST(output, croot, !strcmp(child->name, assignment->output));
62             break;
63         }
64         Con *content = output_get_content(output);
65         LOG("got output %p with content %p\n", output, content);
66         /* We need to attach this container after setting its type. con_attach
67          * will handle CT_WORKSPACEs differently */
68         workspace = con_new(NULL, NULL);
69         char *name;
70         sasprintf(&name, "[i3 con] workspace %s", num);
71         x_set_name(workspace, name);
72         free(name);
73         workspace->type = CT_WORKSPACE;
74         FREE(workspace->name);
75         workspace->name = sstrdup(num);
76         workspace->workspace_layout = config.default_layout;
77         /* We set ->num to the number if this workspace’s name begins with a
78          * positive number. Otherwise it’s a named ws and num will be -1. */
79         char *endptr = NULL;
80         long parsed_num = strtol(num, &endptr, 10);
81         if (parsed_num == LONG_MIN ||
82             parsed_num == LONG_MAX ||
83             parsed_num < 0 ||
84             endptr == num)
85             workspace->num = -1;
86         else workspace->num = parsed_num;
87         LOG("num = %d\n", workspace->num);
88
89         workspace->parent = content;
90         _workspace_apply_default_orientation(workspace);
91
92         con_attach(workspace, content, false);
93
94         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"init\"}");
95         if (created != NULL)
96             *created = true;
97     }
98     else if (created != NULL) {
99         *created = false;
100     }
101
102     return workspace;
103 }
104
105 /*
106  * Returns a pointer to a new workspace in the given output. The workspace
107  * is created attached to the tree hierarchy through the given content
108  * container.
109  *
110  */
111 Con *create_workspace_on_output(Output *output, Con *content) {
112     /* add a workspace to this output */
113     Con *out, *current;
114     char *name;
115     bool exists = true;
116     Con *ws = con_new(NULL, NULL);
117     ws->type = CT_WORKSPACE;
118
119     /* try the configured workspace bindings first to find a free name */
120     Binding *bind;
121     TAILQ_FOREACH(bind, bindings, bindings) {
122         DLOG("binding with command %s\n", bind->command);
123         if (strlen(bind->command) < strlen("workspace ") ||
124             strncasecmp(bind->command, "workspace", strlen("workspace")) != 0)
125             continue;
126         DLOG("relevant command = %s\n", bind->command);
127         char *target = bind->command + strlen("workspace ");
128         /* We check if this is the workspace
129          * next/prev/next_on_output/prev_on_output/back_and_forth/number command.
130          * Beware: The workspace names "next", "prev", "next_on_output",
131          * "prev_on_output", "number", "back_and_forth" and "current" are OK,
132          * so we check before stripping the double quotes */
133         if (strncasecmp(target, "next", strlen("next")) == 0 ||
134             strncasecmp(target, "prev", strlen("prev")) == 0 ||
135             strncasecmp(target, "next_on_output", strlen("next_on_output")) == 0 ||
136             strncasecmp(target, "prev_on_output", strlen("prev_on_output")) == 0 ||
137             strncasecmp(target, "number", strlen("number")) == 0 ||
138             strncasecmp(target, "back_and_forth", strlen("back_and_forth")) == 0 ||
139             strncasecmp(target, "current", strlen("current")) == 0)
140             continue;
141         if (*target == '"')
142             target++;
143         FREE(ws->name);
144         ws->name = strdup(target);
145         if (ws->name[strlen(ws->name)-1] == '"')
146             ws->name[strlen(ws->name)-1] = '\0';
147         DLOG("trying name *%s*\n", ws->name);
148
149         /* Ensure that this workspace is not assigned to a different output —
150          * otherwise we would create it, then move it over to its output, then
151          * find a new workspace, etc… */
152         bool assigned = false;
153         struct Workspace_Assignment *assignment;
154         TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
155             if (strcmp(assignment->name, ws->name) != 0 ||
156                 strcmp(assignment->output, output->name) == 0)
157                 continue;
158
159             assigned = true;
160             break;
161         }
162
163         if (assigned)
164             continue;
165
166         current = NULL;
167         TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
168             GREP_FIRST(current, output_get_content(out), !strcasecmp(child->name, ws->name));
169
170         exists = (current != NULL);
171         if (!exists) {
172             /* Set ->num to the number of the workspace, if the name actually
173              * is a number or starts with a number */
174             char *endptr = NULL;
175             long parsed_num = strtol(ws->name, &endptr, 10);
176             if (parsed_num == LONG_MIN ||
177                 parsed_num == LONG_MAX ||
178                 parsed_num < 0 ||
179                 endptr == ws->name)
180                 ws->num = -1;
181             else ws->num = parsed_num;
182             LOG("Used number %d for workspace with name %s\n", ws->num, ws->name);
183
184             break;
185         }
186     }
187
188     if (exists) {
189         /* get the next unused workspace number */
190         DLOG("Getting next unused workspace by number\n");
191         int c = 0;
192         while (exists) {
193             c++;
194
195             FREE(ws->name);
196             sasprintf(&(ws->name), "%d", c);
197
198             current = NULL;
199             TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
200                 GREP_FIRST(current, output_get_content(out), !strcasecmp(child->name, ws->name));
201             exists = (current != NULL);
202
203             DLOG("result for ws %s / %d: exists = %d\n", ws->name, c, exists);
204         }
205         ws->num = c;
206     }
207     con_attach(ws, content, false);
208
209     sasprintf(&name, "[i3 con] workspace %s", ws->name);
210     x_set_name(ws, name);
211     free(name);
212
213     ws->fullscreen_mode = CF_OUTPUT;
214
215     ws->workspace_layout = config.default_layout;
216     _workspace_apply_default_orientation(ws);
217
218     return ws;
219 }
220
221
222 /*
223  * Returns true if the workspace is currently visible. Especially important for
224  * multi-monitor environments, as they can have multiple currenlty active
225  * workspaces.
226  *
227  */
228 bool workspace_is_visible(Con *ws) {
229     Con *output = con_get_output(ws);
230     if (output == NULL)
231         return false;
232     Con *fs = con_get_fullscreen_con(output, CF_OUTPUT);
233     LOG("workspace visible? fs = %p, ws = %p\n", fs, ws);
234     return (fs == ws);
235 }
236
237 /*
238  * XXX: we need to clean up all this recursive walking code.
239  *
240  */
241 Con *_get_sticky(Con *con, const char *sticky_group, Con *exclude) {
242     Con *current;
243
244     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
245         if (current != exclude &&
246             current->sticky_group != NULL &&
247             current->window != NULL &&
248             strcmp(current->sticky_group, sticky_group) == 0)
249             return current;
250
251         Con *recurse = _get_sticky(current, sticky_group, exclude);
252         if (recurse != NULL)
253             return recurse;
254     }
255
256     TAILQ_FOREACH(current, &(con->floating_head), floating_windows) {
257         if (current != exclude &&
258             current->sticky_group != NULL &&
259             current->window != NULL &&
260             strcmp(current->sticky_group, sticky_group) == 0)
261             return current;
262
263         Con *recurse = _get_sticky(current, sticky_group, exclude);
264         if (recurse != NULL)
265             return recurse;
266     }
267
268     return NULL;
269 }
270
271 /*
272  * Reassigns all child windows in sticky containers. Called when the user
273  * changes workspaces.
274  *
275  * XXX: what about sticky containers which contain containers?
276  *
277  */
278 static void workspace_reassign_sticky(Con *con) {
279     Con *current;
280     /* 1: go through all containers */
281
282     /* handle all children and floating windows of this node */
283     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
284         if (current->sticky_group == NULL) {
285             workspace_reassign_sticky(current);
286             continue;
287         }
288
289         LOG("Ah, this one is sticky: %s / %p\n", current->name, current);
290         /* 2: find a window which we can re-assign */
291         Con *output = con_get_output(current);
292         Con *src = _get_sticky(output, current->sticky_group, current);
293
294         if (src == NULL) {
295             LOG("No window found for this sticky group\n");
296             workspace_reassign_sticky(current);
297             continue;
298         }
299
300         x_move_win(src, current);
301         current->window = src->window;
302         current->mapped = true;
303         src->window = NULL;
304         src->mapped = false;
305
306         x_reparent_child(current, src);
307
308         LOG("re-assigned window from src %p to dest %p\n", src, current);
309     }
310
311     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
312         workspace_reassign_sticky(current);
313 }
314
315
316 static void _workspace_show(Con *workspace) {
317     Con *current, *old = NULL;
318
319     /* safe-guard against showing i3-internal workspaces like __i3_scratch */
320     if (workspace->name[0] == '_' && workspace->name[1] == '_')
321         return;
322
323     /* disable fullscreen for the other workspaces and get the workspace we are
324      * currently on. */
325     TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes) {
326         if (current->fullscreen_mode == CF_OUTPUT)
327             old = current;
328         current->fullscreen_mode = CF_NONE;
329     }
330
331     /* enable fullscreen for the target workspace. If it happens to be the
332      * same one we are currently on anyways, we can stop here. */
333     workspace->fullscreen_mode = CF_OUTPUT;
334     current = con_get_workspace(focused);
335     if (workspace == current) {
336         DLOG("Not switching, already there.\n");
337         return;
338     }
339
340     /* Remember currently focused workspace for switching back to it later with
341      * the 'workspace back_and_forth' command.
342      * NOTE: We have to duplicate the name as the original will be freed when
343      * the corresponding workspace is cleaned up.
344      * NOTE: Internal cons such as __i3_scratch (when a scratchpad window is
345      * focused) are skipped, see bug #868. */
346     if (current && !con_is_internal(current)) {
347         FREE(previous_workspace_name);
348         if (current) {
349             previous_workspace_name = sstrdup(current->name);
350             DLOG("Setting previous_workspace_name = %s\n", previous_workspace_name);
351         }
352     }
353
354     workspace_reassign_sticky(workspace);
355
356     LOG("switching to %p\n", workspace);
357     Con *next = con_descend_focused(workspace);
358
359     if (old && TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
360         /* check if this workspace is currently visible */
361         if (!workspace_is_visible(old)) {
362             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
363             tree_close(old, DONT_KILL_WINDOW, false, false);
364             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
365         }
366     }
367
368     /* Memorize current output */
369     Con *old_output = con_get_output(focused);
370
371     con_focus(next);
372     workspace->fullscreen_mode = CF_OUTPUT;
373     LOG("focused now = %p / %s\n", focused, focused->name);
374
375     /* Set mouse pointer */
376     Con *new_output = con_get_output(focused);
377     if (old_output != new_output) {
378         x_set_warp_to(&next->rect);
379     }
380
381     /* Update the EWMH hints */
382     ewmh_update_current_desktop();
383
384     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
385 }
386
387 /*
388  * Switches to the given workspace
389  *
390  */
391 void workspace_show(Con *workspace) {
392     _workspace_show(workspace);
393 }
394
395 /*
396  * Looks up the workspace by name and switches to it.
397  *
398  */
399 void workspace_show_by_name(const char *num) {
400     Con *workspace;
401     bool changed_num_workspaces;
402     workspace = workspace_get(num, &changed_num_workspaces);
403     _workspace_show(workspace);
404 }
405
406 /*
407  * Focuses the next workspace.
408  *
409  */
410 Con* workspace_next(void) {
411     Con *current = con_get_workspace(focused);
412     Con *next = NULL;
413     Con *output;
414
415     if (current->num == -1) {
416         /* If currently a named workspace, find next named workspace. */
417         next = TAILQ_NEXT(current, nodes);
418     } else {
419         /* If currently a numbered workspace, find next numbered workspace. */
420         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
421             /* Skip outputs starting with __, they are internal. */
422             if (output->name[0] == '_' && output->name[1] == '_')
423                 continue;
424             NODES_FOREACH(output_get_content(output)) {
425                 if (child->type != CT_WORKSPACE)
426                     continue;
427                 if (child->num == -1)
428                     break;
429                 /* Need to check child against current and next because we are
430                  * traversing multiple lists and thus are not guaranteed the
431                  * relative order between the list of workspaces. */
432                 if (current->num < child->num && (!next || child->num < next->num))
433                     next = child;
434             }
435         }
436     }
437
438     /* Find next named workspace. */
439     if (!next) {
440         bool found_current = false;
441         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
442             /* Skip outputs starting with __, they are internal. */
443             if (output->name[0] == '_' && output->name[1] == '_')
444                 continue;
445             NODES_FOREACH(output_get_content(output)) {
446                 if (child->type != CT_WORKSPACE)
447                     continue;
448                 if (child == current) {
449                     found_current = 1;
450                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
451                     next = child;
452                     goto workspace_next_end;
453                 }
454             }
455         }
456     }
457
458     /* Find first workspace. */
459     if (!next) {
460         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
461             /* Skip outputs starting with __, they are internal. */
462             if (output->name[0] == '_' && output->name[1] == '_')
463                 continue;
464             NODES_FOREACH(output_get_content(output)) {
465                 if (child->type != CT_WORKSPACE)
466                     continue;
467                 if (!next || (child->num != -1 && child->num < next->num))
468                     next = child;
469             }
470         }
471     }
472 workspace_next_end:
473     return next;
474 }
475
476 /*
477  * Focuses the previous workspace.
478  *
479  */
480 Con* workspace_prev(void) {
481     Con *current = con_get_workspace(focused);
482     Con *prev = NULL;
483     Con *output;
484
485     if (current->num == -1) {
486         /* If named workspace, find previous named workspace. */
487         prev = TAILQ_PREV(current, nodes_head, nodes);
488         if (prev && prev->num != -1)
489             prev = NULL;
490     } else {
491         /* If numbered workspace, find previous numbered workspace. */
492         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
493             /* Skip outputs starting with __, they are internal. */
494             if (output->name[0] == '_' && output->name[1] == '_')
495                 continue;
496             NODES_FOREACH_REVERSE(output_get_content(output)) {
497                 if (child->type != CT_WORKSPACE || child->num == -1)
498                     continue;
499                 /* Need to check child against current and previous because we
500                  * are traversing multiple lists and thus are not guaranteed
501                  * the relative order between the list of workspaces. */
502                 if (current->num > child->num && (!prev || child->num > prev->num))
503                     prev = child;
504             }
505         }
506     }
507
508     /* Find previous named workspace. */
509     if (!prev) {
510         bool found_current = false;
511         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
512             /* Skip outputs starting with __, they are internal. */
513             if (output->name[0] == '_' && output->name[1] == '_')
514                 continue;
515             NODES_FOREACH_REVERSE(output_get_content(output)) {
516                 if (child->type != CT_WORKSPACE)
517                     continue;
518                 if (child == current) {
519                     found_current = true;
520                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
521                     prev = child;
522                     goto workspace_prev_end;
523                 }
524             }
525         }
526     }
527
528     /* Find last workspace. */
529     if (!prev) {
530         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
531             /* Skip outputs starting with __, they are internal. */
532             if (output->name[0] == '_' && output->name[1] == '_')
533                 continue;
534             NODES_FOREACH_REVERSE(output_get_content(output)) {
535                 if (child->type != CT_WORKSPACE)
536                     continue;
537                 if (!prev || child->num > prev->num)
538                     prev = child;
539             }
540         }
541     }
542
543 workspace_prev_end:
544     return prev;
545 }
546
547
548 /*
549  * Focuses the next workspace on the same output.
550  *
551  */
552 Con* workspace_next_on_output(void) {
553     Con *current = con_get_workspace(focused);
554     Con *next = NULL;
555     Con *output  = con_get_output(focused);
556
557     if (current->num == -1) {
558         /* If currently a named workspace, find next named workspace. */
559         next = TAILQ_NEXT(current, nodes);
560     } else {
561         /* If currently a numbered workspace, find next numbered workspace. */
562         NODES_FOREACH(output_get_content(output)) {
563             if (child->type != CT_WORKSPACE)
564                 continue;
565             if (child->num == -1)
566                 break;
567             /* Need to check child against current and next because we are
568              * traversing multiple lists and thus are not guaranteed the
569              * relative order between the list of workspaces. */
570             if (current->num < child->num && (!next || child->num < next->num))
571                 next = child;
572             }
573         }
574
575     /* Find next named workspace. */
576     if (!next) {
577         bool found_current = false;
578         NODES_FOREACH(output_get_content(output)) {
579             if (child->type != CT_WORKSPACE)
580                 continue;
581             if (child == current) {
582                 found_current = 1;
583             } else if (child->num == -1 && (current->num != -1 || found_current)) {
584                 next = child;
585                 goto workspace_next_on_output_end;
586             }
587         }
588     }
589
590     /* Find first workspace. */
591     if (!next) {
592         NODES_FOREACH(output_get_content(output)) {
593             if (child->type != CT_WORKSPACE)
594                 continue;
595             if (!next || (child->num != -1 && child->num < next->num))
596                 next = child;
597         }
598     }
599 workspace_next_on_output_end:
600     return next;
601 }
602
603 /*
604  * Focuses the previous workspace on same output.
605  *
606  */
607 Con* workspace_prev_on_output(void) {
608     Con *current = con_get_workspace(focused);
609     Con *prev = NULL;
610     Con *output  = con_get_output(focused);
611     DLOG("output = %s\n", output->name);
612
613     if (current->num == -1) {
614         /* If named workspace, find previous named workspace. */
615         prev = TAILQ_PREV(current, nodes_head, nodes);
616         if (prev && prev->num != -1)
617             prev = NULL;
618     } else {
619         /* If numbered workspace, find previous numbered workspace. */
620         NODES_FOREACH_REVERSE(output_get_content(output)) {
621             if (child->type != CT_WORKSPACE || child->num == -1)
622                 continue;
623              /* Need to check child against current and previous because we
624              * are traversing multiple lists and thus are not guaranteed
625              * the relative order between the list of workspaces. */
626             if (current->num > child->num && (!prev || child->num > prev->num))
627                 prev = child;
628         }
629     }
630
631     /* Find previous named workspace. */
632     if (!prev) {
633         bool found_current = false;
634         NODES_FOREACH_REVERSE(output_get_content(output)) {
635             if (child->type != CT_WORKSPACE)
636                 continue;
637             if (child == current) {
638                 found_current = true;
639             } else if (child->num == -1 && (current->num != -1 || found_current)) {
640                 prev = child;
641                 goto workspace_prev_on_output_end;
642             }
643         }
644     }
645
646     /* Find last workspace. */
647     if (!prev) {
648         NODES_FOREACH_REVERSE(output_get_content(output)) {
649             if (child->type != CT_WORKSPACE)
650                 continue;
651             if (!prev || child->num > prev->num)
652                 prev = child;
653         }
654     }
655
656 workspace_prev_on_output_end:
657     return prev;
658 }
659
660 /*
661  * Focuses the previously focused workspace.
662  *
663  */
664 void workspace_back_and_forth(void) {
665     if (!previous_workspace_name) {
666         DLOG("No previous workspace name set. Not switching.");
667         return;
668     }
669
670     workspace_show_by_name(previous_workspace_name);
671 }
672
673 static bool get_urgency_flag(Con *con) {
674     Con *child;
675     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
676         if (child->urgent || get_urgency_flag(child))
677             return true;
678
679     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
680         if (child->urgent || get_urgency_flag(child))
681             return true;
682
683     return false;
684 }
685
686 /*
687  * Goes through all clients on the given workspace and updates the workspace’s
688  * urgent flag accordingly.
689  *
690  */
691 void workspace_update_urgent_flag(Con *ws) {
692     bool old_flag = ws->urgent;
693     ws->urgent = get_urgency_flag(ws);
694     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
695
696     if (old_flag != ws->urgent)
697         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
698 }
699
700 /*
701  * 'Forces' workspace orientation by moving all cons into a new split-con with
702  * the same layout as the workspace and then changing the workspace layout.
703  *
704  */
705 void ws_force_orientation(Con *ws, orientation_t orientation) {
706     /* 1: create a new split container */
707     Con *split = con_new(NULL, NULL);
708     split->parent = ws;
709     split->split = true;
710
711     /* 2: copy layout from workspace */
712     split->layout = ws->layout;
713
714     Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
715
716     /* 3: move the existing cons of this workspace below the new con */
717     DLOG("Moving cons\n");
718     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
719         Con *child = TAILQ_FIRST(&(ws->nodes_head));
720         con_detach(child);
721         con_attach(child, split, true);
722     }
723
724     /* 4: switch workspace layout */
725     ws->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
726     DLOG("split->layout = %d, ws->layout = %d\n", split->layout, ws->layout);
727
728     /* 5: attach the new split container to the workspace */
729     DLOG("Attaching new split (%p) to ws (%p)\n", split, ws);
730     con_attach(split, ws, false);
731
732     /* 6: fix the percentages */
733     con_fix_percent(ws);
734
735     if (old_focused)
736         con_focus(old_focused);
737 }
738
739 /*
740  * Called when a new con (with a window, not an empty or split con) should be
741  * attached to the workspace (for example when managing a new window or when
742  * moving an existing window to the workspace level).
743  *
744  * Depending on the workspace_layout setting, this function either returns the
745  * workspace itself (default layout) or creates a new stacked/tabbed con and
746  * returns that.
747  *
748  */
749 Con *workspace_attach_to(Con *ws) {
750     DLOG("Attaching a window to workspace %p / %s\n", ws, ws->name);
751
752     if (ws->workspace_layout == L_DEFAULT) {
753         DLOG("Default layout, just attaching it to the workspace itself.\n");
754         return ws;
755     }
756
757     DLOG("Non-default layout, creating a new split container\n");
758     /* 1: create a new split container */
759     Con *new = con_new(NULL, NULL);
760     new->parent = ws;
761     new->split = true;
762
763     /* 2: set the requested layout on the split con */
764     new->layout = ws->workspace_layout;
765
766     /* 4: attach the new split container to the workspace */
767     DLOG("Attaching new split %p to workspace %p\n", new, ws);
768     con_attach(new, ws, false);
769
770     return new;
771 }