]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
Merge branch 'master' into next
[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  * Callback to reset the urgent flag of the given con to false. May be started by
317  * _workspace_show to avoid urgency hints being lost by switching to a workspace
318  * focusing the con.
319  *
320  */
321 static void workspace_defer_update_urgent_hint_cb(EV_P_ ev_timer *w, int revents) {
322     Con *con = w->data;
323
324     DLOG("Resetting urgency flag of con %p by timer\n", con);
325     con->urgent = false;
326     con_update_parents_urgency(con);
327     workspace_update_urgent_flag(con_get_workspace(con));
328     tree_render();
329
330     ev_timer_stop(main_loop, con->urgency_timer);
331     FREE(con->urgency_timer);
332 }
333
334 static void _workspace_show(Con *workspace) {
335     Con *current, *old = NULL;
336
337     /* safe-guard against showing i3-internal workspaces like __i3_scratch */
338     if (con_is_internal(workspace))
339         return;
340
341     /* disable fullscreen for the other workspaces and get the workspace we are
342      * currently on. */
343     TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes) {
344         if (current->fullscreen_mode == CF_OUTPUT)
345             old = current;
346         current->fullscreen_mode = CF_NONE;
347     }
348
349     /* enable fullscreen for the target workspace. If it happens to be the
350      * same one we are currently on anyways, we can stop here. */
351     workspace->fullscreen_mode = CF_OUTPUT;
352     current = con_get_workspace(focused);
353     if (workspace == current) {
354         DLOG("Not switching, already there.\n");
355         return;
356     }
357
358     /* Remember currently focused workspace for switching back to it later with
359      * the 'workspace back_and_forth' command.
360      * NOTE: We have to duplicate the name as the original will be freed when
361      * the corresponding workspace is cleaned up.
362      * NOTE: Internal cons such as __i3_scratch (when a scratchpad window is
363      * focused) are skipped, see bug #868. */
364     if (current && !con_is_internal(current)) {
365         FREE(previous_workspace_name);
366         if (current) {
367             previous_workspace_name = sstrdup(current->name);
368             DLOG("Setting previous_workspace_name = %s\n", previous_workspace_name);
369         }
370     }
371
372     workspace_reassign_sticky(workspace);
373
374     DLOG("switching to %p / %s\n", workspace, workspace->name);
375     Con *next = con_descend_focused(workspace);
376
377     /* Memorize current output */
378     Con *old_output = con_get_output(focused);
379
380     /* Display urgency hint for a while if the newly visible workspace would
381      * focus and thereby immediately destroy it */
382     if (next->urgent && (int)(config.workspace_urgency_timer * 1000) > 0) {
383         /* focus for now… */
384         con_focus(next);
385
386         /* … but immediately reset urgency flags; they will be set to false by
387          * the timer callback in case the container is focused at the time of
388          * its expiration */
389         focused->urgent = true;
390         workspace->urgent = true;
391
392         if (focused->urgency_timer == NULL) {
393             DLOG("Deferring reset of urgency flag of con %p on newly shown workspace %p\n",
394                     focused, workspace);
395             focused->urgency_timer = scalloc(sizeof(struct ev_timer));
396             /* use a repeating timer to allow for easy resets */
397             ev_timer_init(focused->urgency_timer, workspace_defer_update_urgent_hint_cb,
398                     config.workspace_urgency_timer, config.workspace_urgency_timer);
399             focused->urgency_timer->data = focused;
400             ev_timer_start(main_loop, focused->urgency_timer);
401         } else {
402             DLOG("Resetting urgency timer of con %p on workspace %p\n",
403                     focused, workspace);
404             ev_timer_again(main_loop, focused->urgency_timer);
405         }
406     } else
407         con_focus(next);
408
409     DLOG("old = %p / %s\n", old, (old ? old->name : "(null)"));
410     /* Close old workspace if necessary. This must be done *after* doing
411      * urgency handling, because tree_close() will do a con_focus() on the next
412      * client, which will clear the urgency flag too early. Also, there is no
413      * way for con_focus() to know about when to clear urgency immediately and
414      * when to defer it. */
415     if (old && TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
416         /* check if this workspace is currently visible */
417         if (!workspace_is_visible(old)) {
418             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
419             tree_close(old, DONT_KILL_WINDOW, false, false);
420             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
421         }
422     }
423
424     workspace->fullscreen_mode = CF_OUTPUT;
425     LOG("focused now = %p / %s\n", focused, focused->name);
426
427     /* Set mouse pointer */
428     Con *new_output = con_get_output(focused);
429     if (old_output != new_output) {
430         x_set_warp_to(&next->rect);
431     }
432
433     /* Update the EWMH hints */
434     ewmh_update_current_desktop();
435
436     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
437 }
438
439 /*
440  * Switches to the given workspace
441  *
442  */
443 void workspace_show(Con *workspace) {
444     _workspace_show(workspace);
445 }
446
447 /*
448  * Looks up the workspace by name and switches to it.
449  *
450  */
451 void workspace_show_by_name(const char *num) {
452     Con *workspace;
453     workspace = workspace_get(num, NULL);
454     _workspace_show(workspace);
455 }
456
457 /*
458  * Focuses the next workspace.
459  *
460  */
461 Con* workspace_next(void) {
462     Con *current = con_get_workspace(focused);
463     Con *next = NULL;
464     Con *output;
465
466     if (current->num == -1) {
467         /* If currently a named workspace, find next named workspace. */
468         next = TAILQ_NEXT(current, nodes);
469     } else {
470         /* If currently a numbered workspace, find next numbered workspace. */
471         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
472             /* Skip outputs starting with __, they are internal. */
473             if (con_is_internal(output))
474                 continue;
475             NODES_FOREACH(output_get_content(output)) {
476                 if (child->type != CT_WORKSPACE)
477                     continue;
478                 if (child->num == -1)
479                     break;
480                 /* Need to check child against current and next because we are
481                  * traversing multiple lists and thus are not guaranteed the
482                  * relative order between the list of workspaces. */
483                 if (current->num < child->num && (!next || child->num < next->num))
484                     next = child;
485             }
486         }
487     }
488
489     /* Find next named workspace. */
490     if (!next) {
491         bool found_current = false;
492         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
493             /* Skip outputs starting with __, they are internal. */
494             if (con_is_internal(output))
495                 continue;
496             NODES_FOREACH(output_get_content(output)) {
497                 if (child->type != CT_WORKSPACE)
498                     continue;
499                 if (child == current) {
500                     found_current = 1;
501                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
502                     next = child;
503                     goto workspace_next_end;
504                 }
505             }
506         }
507     }
508
509     /* Find first workspace. */
510     if (!next) {
511         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
512             /* Skip outputs starting with __, they are internal. */
513             if (con_is_internal(output))
514                 continue;
515             NODES_FOREACH(output_get_content(output)) {
516                 if (child->type != CT_WORKSPACE)
517                     continue;
518                 if (!next || (child->num != -1 && child->num < next->num))
519                     next = child;
520             }
521         }
522     }
523 workspace_next_end:
524     return next;
525 }
526
527 /*
528  * Focuses the previous workspace.
529  *
530  */
531 Con* workspace_prev(void) {
532     Con *current = con_get_workspace(focused);
533     Con *prev = NULL;
534     Con *output;
535
536     if (current->num == -1) {
537         /* If named workspace, find previous named workspace. */
538         prev = TAILQ_PREV(current, nodes_head, nodes);
539         if (prev && prev->num != -1)
540             prev = NULL;
541     } else {
542         /* If numbered workspace, find previous numbered workspace. */
543         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
544             /* Skip outputs starting with __, they are internal. */
545             if (con_is_internal(output))
546                 continue;
547             NODES_FOREACH_REVERSE(output_get_content(output)) {
548                 if (child->type != CT_WORKSPACE || child->num == -1)
549                     continue;
550                 /* Need to check child against current and previous because we
551                  * are traversing multiple lists and thus are not guaranteed
552                  * the relative order between the list of workspaces. */
553                 if (current->num > child->num && (!prev || child->num > prev->num))
554                     prev = child;
555             }
556         }
557     }
558
559     /* Find previous named workspace. */
560     if (!prev) {
561         bool found_current = false;
562         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
563             /* Skip outputs starting with __, they are internal. */
564             if (con_is_internal(output))
565                 continue;
566             NODES_FOREACH_REVERSE(output_get_content(output)) {
567                 if (child->type != CT_WORKSPACE)
568                     continue;
569                 if (child == current) {
570                     found_current = true;
571                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
572                     prev = child;
573                     goto workspace_prev_end;
574                 }
575             }
576         }
577     }
578
579     /* Find last workspace. */
580     if (!prev) {
581         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
582             /* Skip outputs starting with __, they are internal. */
583             if (con_is_internal(output))
584                 continue;
585             NODES_FOREACH_REVERSE(output_get_content(output)) {
586                 if (child->type != CT_WORKSPACE)
587                     continue;
588                 if (!prev || child->num > prev->num)
589                     prev = child;
590             }
591         }
592     }
593
594 workspace_prev_end:
595     return prev;
596 }
597
598
599 /*
600  * Focuses the next workspace on the same output.
601  *
602  */
603 Con* workspace_next_on_output(void) {
604     Con *current = con_get_workspace(focused);
605     Con *next = NULL;
606     Con *output  = con_get_output(focused);
607
608     if (current->num == -1) {
609         /* If currently a named workspace, find next named workspace. */
610         next = TAILQ_NEXT(current, nodes);
611     } else {
612         /* If currently a numbered workspace, find next numbered workspace. */
613         NODES_FOREACH(output_get_content(output)) {
614             if (child->type != CT_WORKSPACE)
615                 continue;
616             if (child->num == -1)
617                 break;
618             /* Need to check child against current and next because we are
619              * traversing multiple lists and thus are not guaranteed the
620              * relative order between the list of workspaces. */
621             if (current->num < child->num && (!next || child->num < next->num))
622                 next = child;
623             }
624         }
625
626     /* Find next named workspace. */
627     if (!next) {
628         bool found_current = false;
629         NODES_FOREACH(output_get_content(output)) {
630             if (child->type != CT_WORKSPACE)
631                 continue;
632             if (child == current) {
633                 found_current = 1;
634             } else if (child->num == -1 && (current->num != -1 || found_current)) {
635                 next = child;
636                 goto workspace_next_on_output_end;
637             }
638         }
639     }
640
641     /* Find first workspace. */
642     if (!next) {
643         NODES_FOREACH(output_get_content(output)) {
644             if (child->type != CT_WORKSPACE)
645                 continue;
646             if (!next || (child->num != -1 && child->num < next->num))
647                 next = child;
648         }
649     }
650 workspace_next_on_output_end:
651     return next;
652 }
653
654 /*
655  * Focuses the previous workspace on same output.
656  *
657  */
658 Con* workspace_prev_on_output(void) {
659     Con *current = con_get_workspace(focused);
660     Con *prev = NULL;
661     Con *output  = con_get_output(focused);
662     DLOG("output = %s\n", output->name);
663
664     if (current->num == -1) {
665         /* If named workspace, find previous named workspace. */
666         prev = TAILQ_PREV(current, nodes_head, nodes);
667         if (prev && prev->num != -1)
668             prev = NULL;
669     } else {
670         /* If numbered workspace, find previous numbered workspace. */
671         NODES_FOREACH_REVERSE(output_get_content(output)) {
672             if (child->type != CT_WORKSPACE || child->num == -1)
673                 continue;
674              /* Need to check child against current and previous because we
675              * are traversing multiple lists and thus are not guaranteed
676              * the relative order between the list of workspaces. */
677             if (current->num > child->num && (!prev || child->num > prev->num))
678                 prev = child;
679         }
680     }
681
682     /* Find previous named workspace. */
683     if (!prev) {
684         bool found_current = false;
685         NODES_FOREACH_REVERSE(output_get_content(output)) {
686             if (child->type != CT_WORKSPACE)
687                 continue;
688             if (child == current) {
689                 found_current = true;
690             } else if (child->num == -1 && (current->num != -1 || found_current)) {
691                 prev = child;
692                 goto workspace_prev_on_output_end;
693             }
694         }
695     }
696
697     /* Find last workspace. */
698     if (!prev) {
699         NODES_FOREACH_REVERSE(output_get_content(output)) {
700             if (child->type != CT_WORKSPACE)
701                 continue;
702             if (!prev || child->num > prev->num)
703                 prev = child;
704         }
705     }
706
707 workspace_prev_on_output_end:
708     return prev;
709 }
710
711 /*
712  * Focuses the previously focused workspace.
713  *
714  */
715 void workspace_back_and_forth(void) {
716     if (!previous_workspace_name) {
717         DLOG("No previous workspace name set. Not switching.");
718         return;
719     }
720
721     workspace_show_by_name(previous_workspace_name);
722 }
723
724 /*
725  * Returns the previously focused workspace con, or NULL if unavailable.
726  *
727  */
728 Con *workspace_back_and_forth_get(void) {
729     if (!previous_workspace_name) {
730         DLOG("no previous workspace name set.");
731         return NULL;
732     }
733
734     Con *workspace;
735     workspace = workspace_get(previous_workspace_name, NULL);
736
737     return workspace;
738 }
739
740 static bool get_urgency_flag(Con *con) {
741     Con *child;
742     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
743         if (child->urgent || get_urgency_flag(child))
744             return true;
745
746     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
747         if (child->urgent || get_urgency_flag(child))
748             return true;
749
750     return false;
751 }
752
753 /*
754  * Goes through all clients on the given workspace and updates the workspace’s
755  * urgent flag accordingly.
756  *
757  */
758 void workspace_update_urgent_flag(Con *ws) {
759     bool old_flag = ws->urgent;
760     ws->urgent = get_urgency_flag(ws);
761     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
762
763     if (old_flag != ws->urgent)
764         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
765 }
766
767 /*
768  * 'Forces' workspace orientation by moving all cons into a new split-con with
769  * the same layout as the workspace and then changing the workspace layout.
770  *
771  */
772 void ws_force_orientation(Con *ws, orientation_t orientation) {
773     /* 1: create a new split container */
774     Con *split = con_new(NULL, NULL);
775     split->parent = ws;
776
777     /* 2: copy layout from workspace */
778     split->layout = ws->layout;
779
780     Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
781
782     /* 3: move the existing cons of this workspace below the new con */
783     DLOG("Moving cons\n");
784     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
785         Con *child = TAILQ_FIRST(&(ws->nodes_head));
786         con_detach(child);
787         con_attach(child, split, true);
788     }
789
790     /* 4: switch workspace layout */
791     ws->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
792     DLOG("split->layout = %d, ws->layout = %d\n", split->layout, ws->layout);
793
794     /* 5: attach the new split container to the workspace */
795     DLOG("Attaching new split (%p) to ws (%p)\n", split, ws);
796     con_attach(split, ws, false);
797
798     /* 6: fix the percentages */
799     con_fix_percent(ws);
800
801     if (old_focused)
802         con_focus(old_focused);
803 }
804
805 /*
806  * Called when a new con (with a window, not an empty or split con) should be
807  * attached to the workspace (for example when managing a new window or when
808  * moving an existing window to the workspace level).
809  *
810  * Depending on the workspace_layout setting, this function either returns the
811  * workspace itself (default layout) or creates a new stacked/tabbed con and
812  * returns that.
813  *
814  */
815 Con *workspace_attach_to(Con *ws) {
816     DLOG("Attaching a window to workspace %p / %s\n", ws, ws->name);
817
818     if (ws->workspace_layout == L_DEFAULT) {
819         DLOG("Default layout, just attaching it to the workspace itself.\n");
820         return ws;
821     }
822
823     DLOG("Non-default layout, creating a new split container\n");
824     /* 1: create a new split container */
825     Con *new = con_new(NULL, NULL);
826     new->parent = ws;
827
828     /* 2: set the requested layout on the split con */
829     new->layout = ws->workspace_layout;
830
831     /* 4: attach the new split container to the workspace */
832     DLOG("Attaching new split %p to workspace %p\n", new, ws);
833     con_attach(new, ws, false);
834
835     return new;
836 }
837
838 /**
839  * Creates a new container and re-parents all of children from the given
840  * workspace into it.
841  *
842  * The container inherits the layout from the workspace.
843  */
844 Con *workspace_encapsulate(Con *ws) {
845     if (TAILQ_EMPTY(&(ws->nodes_head))) {
846         ELOG("Workspace %p / %s has no children to encapsulate\n", ws, ws->name);
847         return NULL;
848     }
849
850     Con *new = con_new(NULL, NULL);
851     new->parent = ws;
852     new->layout = ws->layout;
853
854     DLOG("Moving children of workspace %p / %s into container %p\n",
855         ws, ws->name, new);
856
857     Con *child;
858     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
859         child = TAILQ_FIRST(&(ws->nodes_head));
860         con_detach(child);
861         con_attach(child, new, true);
862     }
863
864     con_attach(new, ws, true);
865
866     return new;
867 }