]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
c327f977e26511bba1ec23745818bd049fe76485
[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 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 #include "yajl_utils.h"
15
16 /* Stores a copy of the name of the last used workspace for the workspace
17  * back-and-forth switching. */
18 static char *previous_workspace_name = NULL;
19
20 /*
21  * Sets ws->layout to splith/splitv if default_orientation was specified in the
22  * configfile. Otherwise, it uses splith/splitv depending on whether the output
23  * is higher than wide.
24  *
25  */
26 static void _workspace_apply_default_orientation(Con *ws) {
27     /* If default_orientation is set to NO_ORIENTATION we determine
28      * orientation depending on output resolution. */
29     if (config.default_orientation == NO_ORIENTATION) {
30         Con *output = con_get_output(ws);
31         ws->layout = (output->rect.height > output->rect.width) ? L_SPLITV : L_SPLITH;
32         ws->rect = output->rect;
33         DLOG("Auto orientation. Workspace size set to (%d,%d), setting layout to %d.\n",
34              output->rect.width, output->rect.height, ws->layout);
35     } else {
36         ws->layout = (config.default_orientation == HORIZ) ? L_SPLITH : L_SPLITV;
37     }
38 }
39
40 /*
41  * Returns a pointer to the workspace with the given number (starting at 0),
42  * creating the workspace if necessary (by allocating the necessary amount of
43  * memory and initializing the data structures correctly).
44  *
45  */
46 Con *workspace_get(const char *num, bool *created) {
47     Con *output, *workspace = NULL;
48
49     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
50     GREP_FIRST(workspace, output_get_content(output), !strcasecmp(child->name, num));
51
52     if (workspace == NULL) {
53         LOG("Creating new workspace \"%s\"\n", num);
54         /* unless an assignment is found, we will create this workspace on the current output */
55         output = con_get_output(focused);
56         /* look for assignments */
57         struct Workspace_Assignment *assignment;
58
59         /* We set workspace->num to the number if this workspace’s name begins
60          * with a positive number. Otherwise it’s a named ws and num will be
61          * -1. */
62         long parsed_num = ws_name_to_number(num);
63
64         TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
65             if (strcmp(assignment->name, num) == 0) {
66                 DLOG("Found workspace name assignment to output \"%s\"\n", assignment->output);
67                 GREP_FIRST(output, croot, !strcmp(child->name, assignment->output));
68                 break;
69             } else if (parsed_num != -1 && name_is_digits(assignment->name) && ws_name_to_number(assignment->name) == parsed_num) {
70                 DLOG("Found workspace number assignment to output \"%s\"\n", assignment->output);
71                 GREP_FIRST(output, croot, !strcmp(child->name, assignment->output));
72             }
73         }
74
75         Con *content = output_get_content(output);
76         LOG("got output %p with content %p\n", output, content);
77         /* We need to attach this container after setting its type. con_attach
78          * will handle CT_WORKSPACEs differently */
79         workspace = con_new(NULL, NULL);
80         char *name;
81         sasprintf(&name, "[i3 con] workspace %s", num);
82         x_set_name(workspace, name);
83         free(name);
84         workspace->type = CT_WORKSPACE;
85         FREE(workspace->name);
86         workspace->name = sstrdup(num);
87         workspace->workspace_layout = config.default_layout;
88         workspace->num = parsed_num;
89         LOG("num = %d\n", workspace->num);
90
91         workspace->parent = content;
92         _workspace_apply_default_orientation(workspace);
93
94         con_attach(workspace, content, false);
95
96         ipc_send_workspace_event("init", workspace, NULL);
97         ewmh_update_number_of_desktops();
98         ewmh_update_desktop_names();
99         ewmh_update_desktop_viewport();
100         if (created != NULL)
101             *created = true;
102     } else if (created != NULL) {
103         *created = false;
104     }
105
106     return workspace;
107 }
108
109 /*
110  * Returns a pointer to a new workspace in the given output. The workspace
111  * is created attached to the tree hierarchy through the given content
112  * container.
113  *
114  */
115 Con *create_workspace_on_output(Output *output, Con *content) {
116     /* add a workspace to this output */
117     Con *out, *current;
118     char *name;
119     bool exists = true;
120     Con *ws = con_new(NULL, NULL);
121     ws->type = CT_WORKSPACE;
122
123     /* try the configured workspace bindings first to find a free name */
124     Binding *bind;
125     TAILQ_FOREACH(bind, bindings, bindings) {
126         DLOG("binding with command %s\n", bind->command);
127         if (strlen(bind->command) < strlen("workspace ") ||
128             strncasecmp(bind->command, "workspace", strlen("workspace")) != 0)
129             continue;
130         DLOG("relevant command = %s\n", bind->command);
131         const char *target = bind->command + strlen("workspace ");
132         while (*target == ' ' || *target == '\t')
133             target++;
134         /* We check if this is the workspace
135          * next/prev/next_on_output/prev_on_output/back_and_forth/number command.
136          * Beware: The workspace names "next", "prev", "next_on_output",
137          * "prev_on_output", "number", "back_and_forth" and "current" are OK,
138          * so we check before stripping the double quotes */
139         if (strncasecmp(target, "next", strlen("next")) == 0 ||
140             strncasecmp(target, "prev", strlen("prev")) == 0 ||
141             strncasecmp(target, "next_on_output", strlen("next_on_output")) == 0 ||
142             strncasecmp(target, "prev_on_output", strlen("prev_on_output")) == 0 ||
143             strncasecmp(target, "number", strlen("number")) == 0 ||
144             strncasecmp(target, "back_and_forth", strlen("back_and_forth")) == 0 ||
145             strncasecmp(target, "current", strlen("current")) == 0)
146             continue;
147         char *target_name = parse_string(&target, false);
148         if (target_name == NULL)
149             continue;
150         if (strncasecmp(target_name, "__", strlen("__")) == 0) {
151             LOG("Cannot create workspace \"%s\". Names starting with __ are i3-internal.\n", target);
152             free(target_name);
153             continue;
154         }
155         FREE(ws->name);
156         ws->name = target_name;
157         DLOG("trying name *%s*\n", ws->name);
158
159         /* Ensure that this workspace is not assigned to a different output —
160          * otherwise we would create it, then move it over to its output, then
161          * find a new workspace, etc… */
162         bool assigned = false;
163         struct Workspace_Assignment *assignment;
164         TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
165             if (strcmp(assignment->name, ws->name) != 0 ||
166                 strcmp(assignment->output, output->name) == 0)
167                 continue;
168
169             assigned = true;
170             break;
171         }
172
173         if (assigned)
174             continue;
175
176         current = NULL;
177         TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
178         GREP_FIRST(current, output_get_content(out), !strcasecmp(child->name, ws->name));
179
180         exists = (current != NULL);
181         if (!exists) {
182             /* Set ->num to the number of the workspace, if the name actually
183              * is a number or starts with a number */
184             ws->num = ws_name_to_number(ws->name);
185             LOG("Used number %d for workspace with name %s\n", ws->num, ws->name);
186
187             break;
188         }
189     }
190
191     if (exists) {
192         /* get the next unused workspace number */
193         DLOG("Getting next unused workspace by number\n");
194         int c = 0;
195         while (exists) {
196             c++;
197
198             ws->num = c;
199
200             current = NULL;
201             TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
202             GREP_FIRST(current, output_get_content(out), child->num == ws->num);
203             exists = (current != NULL);
204
205             DLOG("result for ws %d: exists = %d\n", c, exists);
206         }
207         sasprintf(&(ws->name), "%d", c);
208     }
209     con_attach(ws, content, false);
210
211     sasprintf(&name, "[i3 con] workspace %s", ws->name);
212     x_set_name(ws, name);
213     free(name);
214
215     ws->fullscreen_mode = CF_OUTPUT;
216
217     ws->workspace_layout = config.default_layout;
218     _workspace_apply_default_orientation(ws);
219
220     return ws;
221 }
222
223 /*
224  * Returns true if the workspace is currently visible. Especially important for
225  * multi-monitor environments, as they can have multiple currenlty active
226  * workspaces.
227  *
228  */
229 bool workspace_is_visible(Con *ws) {
230     Con *output = con_get_output(ws);
231     if (output == NULL)
232         return false;
233     Con *fs = con_get_fullscreen_con(output, CF_OUTPUT);
234     LOG("workspace visible? fs = %p, ws = %p\n", fs, ws);
235     return (fs == ws);
236 }
237
238 /*
239  * XXX: we need to clean up all this recursive walking code.
240  *
241  */
242 Con *_get_sticky(Con *con, const char *sticky_group, Con *exclude) {
243     Con *current;
244
245     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
246         if (current != exclude &&
247             current->sticky_group != NULL &&
248             current->window != NULL &&
249             strcmp(current->sticky_group, sticky_group) == 0)
250             return current;
251
252         Con *recurse = _get_sticky(current, sticky_group, exclude);
253         if (recurse != NULL)
254             return recurse;
255     }
256
257     TAILQ_FOREACH(current, &(con->floating_head), floating_windows) {
258         if (current != exclude &&
259             current->sticky_group != NULL &&
260             current->window != NULL &&
261             strcmp(current->sticky_group, sticky_group) == 0)
262             return current;
263
264         Con *recurse = _get_sticky(current, sticky_group, exclude);
265         if (recurse != NULL)
266             return recurse;
267     }
268
269     return NULL;
270 }
271
272 /*
273  * Reassigns all child windows in sticky containers. Called when the user
274  * changes workspaces.
275  *
276  * XXX: what about sticky containers which contain containers?
277  *
278  */
279 static void workspace_reassign_sticky(Con *con) {
280     Con *current;
281     /* 1: go through all containers */
282
283     /* handle all children and floating windows of this node */
284     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
285         if (current->sticky_group == NULL) {
286             workspace_reassign_sticky(current);
287             continue;
288         }
289
290         LOG("Ah, this one is sticky: %s / %p\n", current->name, current);
291         /* 2: find a window which we can re-assign */
292         Con *output = con_get_output(current);
293         Con *src = _get_sticky(output, current->sticky_group, current);
294
295         if (src == NULL) {
296             LOG("No window found for this sticky group\n");
297             workspace_reassign_sticky(current);
298             continue;
299         }
300
301         x_move_win(src, current);
302         current->window = src->window;
303         current->mapped = true;
304         src->window = NULL;
305         src->mapped = false;
306
307         x_reparent_child(current, src);
308
309         LOG("re-assigned window from src %p to dest %p\n", src, current);
310     }
311
312     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
313     workspace_reassign_sticky(current);
314 }
315
316 /*
317  * Callback to reset the urgent flag of the given con to false. May be started by
318  * _workspace_show to avoid urgency hints being lost by switching to a workspace
319  * focusing the con.
320  *
321  */
322 static void workspace_defer_update_urgent_hint_cb(EV_P_ ev_timer *w, int revents) {
323     Con *con = w->data;
324
325     if (con->urgent) {
326         DLOG("Resetting urgency flag of con %p by timer\n", con);
327         con->urgent = false;
328         con_update_parents_urgency(con);
329         workspace_update_urgent_flag(con_get_workspace(con));
330         ipc_send_window_event("urgent", con);
331         tree_render();
332     }
333
334     ev_timer_stop(main_loop, con->urgency_timer);
335     FREE(con->urgency_timer);
336 }
337
338 static void _workspace_show(Con *workspace) {
339     Con *current, *old = NULL;
340
341     /* safe-guard against showing i3-internal workspaces like __i3_scratch */
342     if (con_is_internal(workspace))
343         return;
344
345     /* disable fullscreen for the other workspaces and get the workspace we are
346      * currently on. */
347     TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes) {
348         if (current->fullscreen_mode == CF_OUTPUT)
349             old = current;
350         current->fullscreen_mode = CF_NONE;
351     }
352
353     /* enable fullscreen for the target workspace. If it happens to be the
354      * same one we are currently on anyways, we can stop here. */
355     workspace->fullscreen_mode = CF_OUTPUT;
356     current = con_get_workspace(focused);
357     if (workspace == current) {
358         DLOG("Not switching, already there.\n");
359         return;
360     }
361
362     /* Remember currently focused workspace for switching back to it later with
363      * the 'workspace back_and_forth' command.
364      * NOTE: We have to duplicate the name as the original will be freed when
365      * the corresponding workspace is cleaned up.
366      * NOTE: Internal cons such as __i3_scratch (when a scratchpad window is
367      * focused) are skipped, see bug #868. */
368     if (current && !con_is_internal(current)) {
369         FREE(previous_workspace_name);
370         if (current) {
371             previous_workspace_name = sstrdup(current->name);
372             DLOG("Setting previous_workspace_name = %s\n", previous_workspace_name);
373         }
374     }
375
376     workspace_reassign_sticky(workspace);
377
378     DLOG("switching to %p / %s\n", workspace, workspace->name);
379     Con *next = con_descend_focused(workspace);
380
381     /* Memorize current output */
382     Con *old_output = con_get_output(focused);
383
384     /* Display urgency hint for a while if the newly visible workspace would
385      * focus and thereby immediately destroy it */
386     if (next->urgent && (int)(config.workspace_urgency_timer * 1000) > 0) {
387         /* focus for now… */
388         next->urgent = false;
389         con_focus(next);
390
391         /* … but immediately reset urgency flags; they will be set to false by
392          * the timer callback in case the container is focused at the time of
393          * its expiration */
394         focused->urgent = true;
395         workspace->urgent = true;
396
397         if (focused->urgency_timer == NULL) {
398             DLOG("Deferring reset of urgency flag of con %p on newly shown workspace %p\n",
399                  focused, workspace);
400             focused->urgency_timer = scalloc(sizeof(struct ev_timer));
401             /* use a repeating timer to allow for easy resets */
402             ev_timer_init(focused->urgency_timer, workspace_defer_update_urgent_hint_cb,
403                           config.workspace_urgency_timer, config.workspace_urgency_timer);
404             focused->urgency_timer->data = focused;
405             ev_timer_start(main_loop, focused->urgency_timer);
406         } else {
407             DLOG("Resetting urgency timer of con %p on workspace %p\n",
408                  focused, workspace);
409             ev_timer_again(main_loop, focused->urgency_timer);
410         }
411     } else
412         con_focus(next);
413
414     ipc_send_workspace_event("focus", workspace, current);
415
416     DLOG("old = %p / %s\n", old, (old ? old->name : "(null)"));
417     /* Close old workspace if necessary. This must be done *after* doing
418      * urgency handling, because tree_close() will do a con_focus() on the next
419      * client, which will clear the urgency flag too early. Also, there is no
420      * way for con_focus() to know about when to clear urgency immediately and
421      * when to defer it. */
422     if (old && TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
423         /* check if this workspace is currently visible */
424         if (!workspace_is_visible(old)) {
425             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
426             yajl_gen gen = ipc_marshal_workspace_event("empty", old, NULL);
427             tree_close(old, DONT_KILL_WINDOW, false, false);
428
429             const unsigned char *payload;
430             ylength length;
431             y(get_buf, &payload, &length);
432             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, (const char *)payload);
433
434             y(free);
435
436             ewmh_update_number_of_desktops();
437             ewmh_update_desktop_names();
438             ewmh_update_desktop_viewport();
439         }
440     }
441
442     workspace->fullscreen_mode = CF_OUTPUT;
443     LOG("focused now = %p / %s\n", focused, focused->name);
444
445     /* Set mouse pointer */
446     Con *new_output = con_get_output(focused);
447     if (old_output != new_output) {
448         x_set_warp_to(&next->rect);
449     }
450
451     /* Update the EWMH hints */
452     ewmh_update_current_desktop();
453 }
454
455 /*
456  * Switches to the given workspace
457  *
458  */
459 void workspace_show(Con *workspace) {
460     _workspace_show(workspace);
461 }
462
463 /*
464  * Looks up the workspace by name and switches to it.
465  *
466  */
467 void workspace_show_by_name(const char *num) {
468     Con *workspace;
469     workspace = workspace_get(num, NULL);
470     _workspace_show(workspace);
471 }
472
473 /*
474  * Focuses the next workspace.
475  *
476  */
477 Con *workspace_next(void) {
478     Con *current = con_get_workspace(focused);
479     Con *next = NULL;
480     Con *output;
481
482     if (current->num == -1) {
483         /* If currently a named workspace, find next named workspace. */
484         next = TAILQ_NEXT(current, nodes);
485     } else {
486         /* If currently a numbered workspace, find next numbered workspace. */
487         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
488             /* Skip outputs starting with __, they are internal. */
489             if (con_is_internal(output))
490                 continue;
491             NODES_FOREACH(output_get_content(output)) {
492                 if (child->type != CT_WORKSPACE)
493                     continue;
494                 if (child->num == -1)
495                     break;
496                 /* Need to check child against current and next because we are
497                  * traversing multiple lists and thus are not guaranteed the
498                  * relative order between the list of workspaces. */
499                 if (current->num < child->num && (!next || child->num < next->num))
500                     next = child;
501             }
502         }
503     }
504
505     /* Find next named workspace. */
506     if (!next) {
507         bool found_current = false;
508         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
509             /* Skip outputs starting with __, they are internal. */
510             if (con_is_internal(output))
511                 continue;
512             NODES_FOREACH(output_get_content(output)) {
513                 if (child->type != CT_WORKSPACE)
514                     continue;
515                 if (child == current) {
516                     found_current = 1;
517                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
518                     next = child;
519                     goto workspace_next_end;
520                 }
521             }
522         }
523     }
524
525     /* Find first workspace. */
526     if (!next) {
527         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
528             /* Skip outputs starting with __, they are internal. */
529             if (con_is_internal(output))
530                 continue;
531             NODES_FOREACH(output_get_content(output)) {
532                 if (child->type != CT_WORKSPACE)
533                     continue;
534                 if (!next || (child->num != -1 && child->num < next->num))
535                     next = child;
536             }
537         }
538     }
539 workspace_next_end:
540     return next;
541 }
542
543 /*
544  * Focuses the previous workspace.
545  *
546  */
547 Con *workspace_prev(void) {
548     Con *current = con_get_workspace(focused);
549     Con *prev = NULL;
550     Con *output;
551
552     if (current->num == -1) {
553         /* If named workspace, find previous named workspace. */
554         prev = TAILQ_PREV(current, nodes_head, nodes);
555         if (prev && prev->num != -1)
556             prev = NULL;
557     } else {
558         /* If numbered workspace, find previous numbered workspace. */
559         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
560             /* Skip outputs starting with __, they are internal. */
561             if (con_is_internal(output))
562                 continue;
563             NODES_FOREACH_REVERSE(output_get_content(output)) {
564                 if (child->type != CT_WORKSPACE || child->num == -1)
565                     continue;
566                 /* Need to check child against current and previous because we
567                  * are traversing multiple lists and thus are not guaranteed
568                  * the relative order between the list of workspaces. */
569                 if (current->num > child->num && (!prev || child->num > prev->num))
570                     prev = child;
571             }
572         }
573     }
574
575     /* Find previous named workspace. */
576     if (!prev) {
577         bool found_current = false;
578         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
579             /* Skip outputs starting with __, they are internal. */
580             if (con_is_internal(output))
581                 continue;
582             NODES_FOREACH_REVERSE(output_get_content(output)) {
583                 if (child->type != CT_WORKSPACE)
584                     continue;
585                 if (child == current) {
586                     found_current = true;
587                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
588                     prev = child;
589                     goto workspace_prev_end;
590                 }
591             }
592         }
593     }
594
595     /* Find last workspace. */
596     if (!prev) {
597         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes) {
598             /* Skip outputs starting with __, they are internal. */
599             if (con_is_internal(output))
600                 continue;
601             NODES_FOREACH_REVERSE(output_get_content(output)) {
602                 if (child->type != CT_WORKSPACE)
603                     continue;
604                 if (!prev || child->num > prev->num)
605                     prev = child;
606             }
607         }
608     }
609
610 workspace_prev_end:
611     return prev;
612 }
613
614 /*
615  * Focuses the next workspace on the same output.
616  *
617  */
618 Con *workspace_next_on_output(void) {
619     Con *current = con_get_workspace(focused);
620     Con *next = NULL;
621     Con *output = con_get_output(focused);
622
623     if (current->num == -1) {
624         /* If currently a named workspace, find next named workspace. */
625         next = TAILQ_NEXT(current, nodes);
626     } else {
627         /* If currently a numbered workspace, find next numbered workspace. */
628         NODES_FOREACH(output_get_content(output)) {
629             if (child->type != CT_WORKSPACE)
630                 continue;
631             if (child->num == -1)
632                 break;
633             /* Need to check child against current and next because we are
634              * traversing multiple lists and thus are not guaranteed the
635              * relative order between the list of workspaces. */
636             if (current->num < child->num && (!next || child->num < next->num))
637                 next = child;
638         }
639     }
640
641     /* Find next named workspace. */
642     if (!next) {
643         bool found_current = false;
644         NODES_FOREACH(output_get_content(output)) {
645             if (child->type != CT_WORKSPACE)
646                 continue;
647             if (child == current) {
648                 found_current = 1;
649             } else if (child->num == -1 && (current->num != -1 || found_current)) {
650                 next = child;
651                 goto workspace_next_on_output_end;
652             }
653         }
654     }
655
656     /* Find first workspace. */
657     if (!next) {
658         NODES_FOREACH(output_get_content(output)) {
659             if (child->type != CT_WORKSPACE)
660                 continue;
661             if (!next || (child->num != -1 && child->num < next->num))
662                 next = child;
663         }
664     }
665 workspace_next_on_output_end:
666     return next;
667 }
668
669 /*
670  * Focuses the previous workspace on same output.
671  *
672  */
673 Con *workspace_prev_on_output(void) {
674     Con *current = con_get_workspace(focused);
675     Con *prev = NULL;
676     Con *output = con_get_output(focused);
677     DLOG("output = %s\n", output->name);
678
679     if (current->num == -1) {
680         /* If named workspace, find previous named workspace. */
681         prev = TAILQ_PREV(current, nodes_head, nodes);
682         if (prev && prev->num != -1)
683             prev = NULL;
684     } else {
685         /* If numbered workspace, find previous numbered workspace. */
686         NODES_FOREACH_REVERSE(output_get_content(output)) {
687             if (child->type != CT_WORKSPACE || child->num == -1)
688                 continue;
689             /* Need to check child against current and previous because we
690              * are traversing multiple lists and thus are not guaranteed
691              * the relative order between the list of workspaces. */
692             if (current->num > child->num && (!prev || child->num > prev->num))
693                 prev = child;
694         }
695     }
696
697     /* Find previous named workspace. */
698     if (!prev) {
699         bool found_current = false;
700         NODES_FOREACH_REVERSE(output_get_content(output)) {
701             if (child->type != CT_WORKSPACE)
702                 continue;
703             if (child == current) {
704                 found_current = true;
705             } else if (child->num == -1 && (current->num != -1 || found_current)) {
706                 prev = child;
707                 goto workspace_prev_on_output_end;
708             }
709         }
710     }
711
712     /* Find last workspace. */
713     if (!prev) {
714         NODES_FOREACH_REVERSE(output_get_content(output)) {
715             if (child->type != CT_WORKSPACE)
716                 continue;
717             if (!prev || child->num > prev->num)
718                 prev = child;
719         }
720     }
721
722 workspace_prev_on_output_end:
723     return prev;
724 }
725
726 /*
727  * Focuses the previously focused workspace.
728  *
729  */
730 void workspace_back_and_forth(void) {
731     if (!previous_workspace_name) {
732         DLOG("No previous workspace name set. Not switching.");
733         return;
734     }
735
736     workspace_show_by_name(previous_workspace_name);
737 }
738
739 /*
740  * Returns the previously focused workspace con, or NULL if unavailable.
741  *
742  */
743 Con *workspace_back_and_forth_get(void) {
744     if (!previous_workspace_name) {
745         DLOG("no previous workspace name set.");
746         return NULL;
747     }
748
749     Con *workspace;
750     workspace = workspace_get(previous_workspace_name, NULL);
751
752     return workspace;
753 }
754
755 static bool get_urgency_flag(Con *con) {
756     Con *child;
757     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
758     if (child->urgent || get_urgency_flag(child))
759         return true;
760
761     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
762     if (child->urgent || get_urgency_flag(child))
763         return true;
764
765     return false;
766 }
767
768 /*
769  * Goes through all clients on the given workspace and updates the workspace’s
770  * urgent flag accordingly.
771  *
772  */
773 void workspace_update_urgent_flag(Con *ws) {
774     bool old_flag = ws->urgent;
775     ws->urgent = get_urgency_flag(ws);
776     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
777
778     if (old_flag != ws->urgent)
779         ipc_send_workspace_event("urgent", ws, NULL);
780 }
781
782 /*
783  * 'Forces' workspace orientation by moving all cons into a new split-con with
784  * the same layout as the workspace and then changing the workspace layout.
785  *
786  */
787 void ws_force_orientation(Con *ws, orientation_t orientation) {
788     /* 1: create a new split container */
789     Con *split = con_new(NULL, NULL);
790     split->parent = ws;
791
792     /* 2: copy layout from workspace */
793     split->layout = ws->layout;
794
795     Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
796
797     /* 3: move the existing cons of this workspace below the new con */
798     DLOG("Moving cons\n");
799     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
800         Con *child = TAILQ_FIRST(&(ws->nodes_head));
801         con_detach(child);
802         con_attach(child, split, true);
803     }
804
805     /* 4: switch workspace layout */
806     ws->layout = (orientation == HORIZ) ? L_SPLITH : L_SPLITV;
807     DLOG("split->layout = %d, ws->layout = %d\n", split->layout, ws->layout);
808
809     /* 5: attach the new split container to the workspace */
810     DLOG("Attaching new split (%p) to ws (%p)\n", split, ws);
811     con_attach(split, ws, false);
812
813     /* 6: fix the percentages */
814     con_fix_percent(ws);
815
816     if (old_focused)
817         con_focus(old_focused);
818 }
819
820 /*
821  * Called when a new con (with a window, not an empty or split con) should be
822  * attached to the workspace (for example when managing a new window or when
823  * moving an existing window to the workspace level).
824  *
825  * Depending on the workspace_layout setting, this function either returns the
826  * workspace itself (default layout) or creates a new stacked/tabbed con and
827  * returns that.
828  *
829  */
830 Con *workspace_attach_to(Con *ws) {
831     DLOG("Attaching a window to workspace %p / %s\n", ws, ws->name);
832
833     if (ws->workspace_layout == L_DEFAULT) {
834         DLOG("Default layout, just attaching it to the workspace itself.\n");
835         return ws;
836     }
837
838     DLOG("Non-default layout, creating a new split container\n");
839     /* 1: create a new split container */
840     Con *new = con_new(NULL, NULL);
841     new->parent = ws;
842
843     /* 2: set the requested layout on the split con */
844     new->layout = ws->workspace_layout;
845
846     /* 4: attach the new split container to the workspace */
847     DLOG("Attaching new split %p to workspace %p\n", new, ws);
848     con_attach(new, ws, false);
849
850     /* 5: fix the percentages */
851     con_fix_percent(ws);
852
853     return new;
854 }
855
856 /**
857  * Creates a new container and re-parents all of children from the given
858  * workspace into it.
859  *
860  * The container inherits the layout from the workspace.
861  */
862 Con *workspace_encapsulate(Con *ws) {
863     if (TAILQ_EMPTY(&(ws->nodes_head))) {
864         ELOG("Workspace %p / %s has no children to encapsulate\n", ws, ws->name);
865         return NULL;
866     }
867
868     Con *new = con_new(NULL, NULL);
869     new->parent = ws;
870     new->layout = ws->layout;
871
872     DLOG("Moving children of workspace %p / %s into container %p\n",
873          ws, ws->name, new);
874
875     Con *child;
876     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
877         child = TAILQ_FIRST(&(ws->nodes_head));
878         con_detach(child);
879         con_attach(child, new, true);
880     }
881
882     con_attach(new, ws, true);
883
884     return new;
885 }
886
887 /**
888  * Move the given workspace to the specified output.
889  * This returns true if and only if moving the workspace was successful.
890  */
891 bool workspace_move_to_output(Con *ws, char *name) {
892     LOG("Trying to move workspace %p / %s to output \"%s\".\n", ws, ws->name, name);
893
894     Con *current_output_con = con_get_output(ws);
895     if (!current_output_con) {
896         ELOG("Could not get the output container for workspace %p / %s.\n", ws, ws->name);
897         return false;
898     }
899
900     Output *current_output = get_output_by_name(current_output_con->name);
901     if (!current_output) {
902         ELOG("Cannot get current output. This is a bug in i3.\n");
903         return false;
904     }
905     Output *output = get_output_from_string(current_output, name);
906     if (!output) {
907         ELOG("Could not get output from string \"%s\"\n", name);
908         return false;
909     }
910
911     Con *content = output_get_content(output->con);
912     LOG("got output %p with content %p\n", output, content);
913
914     Con *previously_visible_ws = TAILQ_FIRST(&(content->nodes_head));
915     LOG("Previously visible workspace = %p / %s\n", previously_visible_ws, previously_visible_ws->name);
916
917     bool workspace_was_visible = workspace_is_visible(ws);
918     if (con_num_children(ws->parent) == 1) {
919         LOG("Creating a new workspace to replace \"%s\" (last on its output).\n", ws->name);
920
921         /* check if we can find a workspace assigned to this output */
922         bool used_assignment = false;
923         struct Workspace_Assignment *assignment;
924         TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
925             if (assignment->output == NULL || strcmp(assignment->output, current_output->name) != 0)
926                 continue;
927
928             /* check if this workspace is already attached to the tree */
929             Con *workspace = NULL, *out;
930             TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
931             GREP_FIRST(workspace, output_get_content(out),
932                        !strcasecmp(child->name, assignment->name));
933             if (workspace != NULL)
934                 continue;
935
936             /* so create the workspace referenced to by this assignment */
937             LOG("Creating workspace from assignment %s.\n", assignment->name);
938             workspace_get(assignment->name, NULL);
939             used_assignment = true;
940             break;
941         }
942
943         /* if we couldn't create the workspace using an assignment, create
944          * it on the output */
945         if (!used_assignment)
946             create_workspace_on_output(current_output, ws->parent);
947
948         /* notify the IPC listeners */
949         ipc_send_workspace_event("init", ws, NULL);
950     }
951     DLOG("Detaching\n");
952
953     /* detach from the old output and attach to the new output */
954     Con *old_content = ws->parent;
955     con_detach(ws);
956     if (workspace_was_visible) {
957         /* The workspace which we just detached was visible, so focus
958          * the next one in the focus-stack. */
959         Con *focus_ws = TAILQ_FIRST(&(old_content->focus_head));
960         LOG("workspace was visible, focusing %p / %s now\n", focus_ws, focus_ws->name);
961         workspace_show(focus_ws);
962     }
963     con_attach(ws, content, false);
964
965     /* fix the coordinates of the floating containers */
966     Con *floating_con;
967     TAILQ_FOREACH(floating_con, &(ws->floating_head), floating_windows)
968     floating_fix_coordinates(floating_con, &(old_content->rect), &(content->rect));
969
970     ipc_send_workspace_event("move", ws, NULL);
971     if (workspace_was_visible) {
972         /* Focus the moved workspace on the destination output. */
973         workspace_show(ws);
974     }
975
976     /* NB: We cannot simply work with previously_visible_ws since it might
977      * have been cleaned up by workspace_show() already, depending on the
978      * focus order/number of other workspaces on the output.
979      * Instead, we loop through the available workspaces and only work with
980      * previously_visible_ws if we still find it. */
981     TAILQ_FOREACH(ws, &(content->nodes_head), nodes) {
982         if (ws != previously_visible_ws)
983             continue;
984
985         /* Call the on_remove_child callback of the workspace which previously
986          * was visible on the destination output. Since it is no longer
987          * visible, it might need to get cleaned up. */
988         CALL(previously_visible_ws, on_remove_child);
989         break;
990     }
991
992     return true;
993 }