]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
Don’t set the _NET_WM_WORKAREA hint at all (Thanks cg)
[i3/i3] / src / workspace.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * workspace.c: Modifying workspaces, accessing them, moving containers to
8  *              workspaces.
9  *
10  */
11 #include "all.h"
12
13 /* Stores a copy of the name of the last used workspace for the workspace
14  * back-and-forth switching. */
15 static char *previous_workspace_name = NULL;
16
17 /*
18  * Returns a pointer to the workspace with the given number (starting at 0),
19  * creating the workspace if necessary (by allocating the necessary amount of
20  * memory and initializing the data structures correctly).
21  *
22  */
23 Con *workspace_get(const char *num, bool *created) {
24     Con *output, *workspace = NULL;
25
26     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
27         GREP_FIRST(workspace, output_get_content(output), !strcasecmp(child->name, num));
28
29     if (workspace == NULL) {
30         LOG("Creating new workspace \"%s\"\n", num);
31         /* unless an assignment is found, we will create this workspace on the current output */
32         output = con_get_output(focused);
33         /* look for assignments */
34         struct Workspace_Assignment *assignment;
35         TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
36             if (strcmp(assignment->name, num) != 0)
37                 continue;
38
39             LOG("Found workspace assignment to output \"%s\"\n", assignment->output);
40             GREP_FIRST(output, croot, !strcmp(child->name, assignment->output));
41             break;
42         }
43         Con *content = output_get_content(output);
44         LOG("got output %p with content %p\n", output, content);
45         /* We need to attach this container after setting its type. con_attach
46          * will handle CT_WORKSPACEs differently */
47         workspace = con_new(NULL, NULL);
48         char *name;
49         sasprintf(&name, "[i3 con] workspace %s", num);
50         x_set_name(workspace, name);
51         free(name);
52         workspace->type = CT_WORKSPACE;
53         FREE(workspace->name);
54         workspace->name = sstrdup(num);
55         /* We set ->num to the number if this workspace’s name consists only of
56          * a positive number. Otherwise it’s a named ws and num will be -1. */
57         char *endptr = NULL;
58         long parsed_num = strtol(num, &endptr, 10);
59         if (parsed_num == LONG_MIN ||
60             parsed_num == LONG_MAX ||
61             parsed_num < 0 ||
62             endptr == num)
63             workspace->num = -1;
64         else workspace->num = parsed_num;
65         LOG("num = %d\n", workspace->num);
66
67         /* If default_orientation is set to NO_ORIENTATION we
68          * determine workspace orientation from workspace size.
69          * Otherwise we just set the orientation to default_orientation. */
70         if (config.default_orientation == NO_ORIENTATION) {
71             workspace->orientation = (output->rect.height > output->rect.width) ? VERT : HORIZ;
72             DLOG("Auto orientation. Output resolution set to (%d,%d), setting orientation to %d.\n",
73                  workspace->rect.width, workspace->rect.height, workspace->orientation);
74         } else {
75             workspace->orientation = config.default_orientation;
76         }
77
78         con_attach(workspace, content, false);
79
80         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"init\"}");
81         if (created != NULL)
82             *created = true;
83     }
84     else if (created != NULL) {
85         *created = false;
86     }
87
88     return workspace;
89 }
90
91 /*
92  * Returns true if the workspace is currently visible. Especially important for
93  * multi-monitor environments, as they can have multiple currenlty active
94  * workspaces.
95  *
96  */
97 bool workspace_is_visible(Con *ws) {
98     Con *output = con_get_output(ws);
99     if (output == NULL)
100         return false;
101     Con *fs = con_get_fullscreen_con(output, CF_OUTPUT);
102     LOG("workspace visible? fs = %p, ws = %p\n", fs, ws);
103     return (fs == ws);
104 }
105
106 /*
107  * XXX: we need to clean up all this recursive walking code.
108  *
109  */
110 Con *_get_sticky(Con *con, const char *sticky_group, Con *exclude) {
111     Con *current;
112
113     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
114         if (current != exclude &&
115             current->sticky_group != NULL &&
116             current->window != NULL &&
117             strcmp(current->sticky_group, sticky_group) == 0)
118             return current;
119
120         Con *recurse = _get_sticky(current, sticky_group, exclude);
121         if (recurse != NULL)
122             return recurse;
123     }
124
125     TAILQ_FOREACH(current, &(con->floating_head), floating_windows) {
126         if (current != exclude &&
127             current->sticky_group != NULL &&
128             current->window != NULL &&
129             strcmp(current->sticky_group, sticky_group) == 0)
130             return current;
131
132         Con *recurse = _get_sticky(current, sticky_group, exclude);
133         if (recurse != NULL)
134             return recurse;
135     }
136
137     return NULL;
138 }
139
140 /*
141  * Reassigns all child windows in sticky containers. Called when the user
142  * changes workspaces.
143  *
144  * XXX: what about sticky containers which contain containers?
145  *
146  */
147 static void workspace_reassign_sticky(Con *con) {
148     Con *current;
149     /* 1: go through all containers */
150
151     /* handle all children and floating windows of this node */
152     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
153         if (current->sticky_group == NULL) {
154             workspace_reassign_sticky(current);
155             continue;
156         }
157
158         LOG("Ah, this one is sticky: %s / %p\n", current->name, current);
159         /* 2: find a window which we can re-assign */
160         Con *output = con_get_output(current);
161         Con *src = _get_sticky(output, current->sticky_group, current);
162
163         if (src == NULL) {
164             LOG("No window found for this sticky group\n");
165             workspace_reassign_sticky(current);
166             continue;
167         }
168
169         x_move_win(src, current);
170         current->window = src->window;
171         current->mapped = true;
172         src->window = NULL;
173         src->mapped = false;
174
175         x_reparent_child(current, src);
176
177         LOG("re-assigned window from src %p to dest %p\n", src, current);
178     }
179
180     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
181         workspace_reassign_sticky(current);
182 }
183
184
185 static void _workspace_show(Con *workspace, bool changed_num_workspaces) {
186     Con *current, *old = NULL;
187
188     /* disable fullscreen for the other workspaces and get the workspace we are
189      * currently on. */
190     TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes) {
191         if (current->fullscreen_mode == CF_OUTPUT)
192             old = current;
193         current->fullscreen_mode = CF_NONE;
194     }
195
196     /* enable fullscreen for the target workspace. If it happens to be the
197      * same one we are currently on anyways, we can stop here. */
198     workspace->fullscreen_mode = CF_OUTPUT;
199     current = con_get_workspace(focused);
200     if (workspace == current) {
201         DLOG("Not switching, already there.\n");
202         return;
203     }
204
205     /* Remember currently focused workspace for switching back to it later with
206      * the 'workspace back_and_forth' command.
207      * NOTE: We have to duplicate the name as the original will be freed when
208      * the corresponding workspace is cleaned up. */
209
210     FREE(previous_workspace_name);
211     if (current)
212         previous_workspace_name = sstrdup(current->name);
213
214     workspace_reassign_sticky(workspace);
215
216     LOG("switching to %p\n", workspace);
217     Con *next = con_descend_focused(workspace);
218
219     if (old && TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
220         /* check if this workspace is currently visible */
221         if (!workspace_is_visible(old)) {
222             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
223             tree_close(old, DONT_KILL_WINDOW, false, false);
224             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
225             changed_num_workspaces = true;
226         }
227     }
228
229     /* Memorize current output */
230     Con *old_output = con_get_output(focused);
231
232     con_focus(next);
233     workspace->fullscreen_mode = CF_OUTPUT;
234     LOG("focused now = %p / %s\n", focused, focused->name);
235
236     /* Set mouse pointer */
237     Con *new_output = con_get_output(focused);
238     if (old_output != new_output) {
239         x_set_warp_to(&next->rect);
240     }
241
242     /* Update the EWMH hints */
243     ewmh_update_current_desktop();
244
245     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
246 }
247
248 /*
249  * Switches to the given workspace
250  *
251  */
252 void workspace_show(Con *workspace) {
253     _workspace_show(workspace, false);
254 }
255
256 /*
257  * Looks up the workspace by name and switches to it.
258  *
259  */
260 void workspace_show_by_name(const char *num) {
261     Con *workspace;
262     bool changed_num_workspaces;
263     workspace = workspace_get(num, &changed_num_workspaces);
264     _workspace_show(workspace, changed_num_workspaces);
265 }
266
267 /*
268  * Focuses the next workspace.
269  *
270  */
271 Con* workspace_next() {
272     Con *current = con_get_workspace(focused);
273     Con *next = NULL;
274     Con *output;
275
276     if (current->num == -1) {
277         /* If currently a named workspace, find next named workspace. */
278         next = TAILQ_NEXT(current, nodes);
279     } else {
280         /* If currently a numbered workspace, find next numbered workspace. */
281         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
282             NODES_FOREACH(output_get_content(output)) {
283                 if (child->type != CT_WORKSPACE)
284                     continue;
285                 if (child->num == -1)
286                     break;
287                 /* Need to check child against current and next because we are
288                  * traversing multiple lists and thus are not guaranteed the
289                  * relative order between the list of workspaces. */
290                 if (current->num < child->num && (!next || child->num < next->num))
291                     next = child;
292             }
293     }
294
295     /* Find next named workspace. */
296     if (!next) {
297         bool found_current = false;
298         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
299             NODES_FOREACH(output_get_content(output)) {
300                 if (child->type != CT_WORKSPACE)
301                     continue;
302                 if (child == current) {
303                     found_current = 1;
304                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
305                     next = child;
306                     goto workspace_next_end;
307                 }
308             }
309     }
310
311     /* Find first workspace. */
312     if (!next) {
313         TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
314             NODES_FOREACH(output_get_content(output)) {
315                 if (child->type != CT_WORKSPACE)
316                     continue;
317                 if (!next || (child->num != -1 && child->num < next->num))
318                     next = child;
319             }
320     }
321 workspace_next_end:
322     return next;
323 }
324
325 /*
326  * Focuses the previous workspace.
327  *
328  */
329 Con* workspace_prev() {
330     Con *current = con_get_workspace(focused);
331     Con *prev = NULL;
332     Con *output;
333
334     if (current->num == -1) {
335         /* If named workspace, find previous named workspace. */
336         prev = TAILQ_PREV(current, nodes_head, nodes);
337         if (prev && prev->num != -1)
338             prev = NULL;
339     } else {
340         /* If numbered workspace, find previous numbered workspace. */
341         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes)
342             NODES_FOREACH_REVERSE(output_get_content(output)) {
343                 if (child->type != CT_WORKSPACE || child->num == -1)
344                     continue;
345                 /* Need to check child against current and previous because we
346                  * are traversing multiple lists and thus are not guaranteed
347                  * the relative order between the list of workspaces. */
348                 if (current->num > child->num && (!prev || child->num > prev->num))
349                     prev = child;
350             }
351     }
352
353     /* Find previous named workspace. */
354     if (!prev) {
355         bool found_current = false;
356         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes)
357             NODES_FOREACH_REVERSE(output_get_content(output)) {
358                 if (child->type != CT_WORKSPACE)
359                     continue;
360                 if (child == current) {
361                     found_current = true;
362                 } else if (child->num == -1 && (current->num != -1 || found_current)) {
363                     prev = child;
364                     goto workspace_prev_end;
365                 }
366             }
367     }
368
369     /* Find last workspace. */
370     if (!prev) {
371         TAILQ_FOREACH_REVERSE(output, &(croot->nodes_head), nodes_head, nodes)
372             NODES_FOREACH_REVERSE(output_get_content(output)) {
373                 if (child->type != CT_WORKSPACE)
374                     continue;
375                 if (!prev || child->num > prev->num)
376                     prev = child;
377             }
378     }
379
380 workspace_prev_end:
381     return prev;
382 }
383
384 /*
385  * Focuses the previously focused workspace.
386  *
387  */
388 void workspace_back_and_forth() {
389     if (!previous_workspace_name) {
390         DLOG("No previous workspace name set. Not switching.");
391         return;
392     }
393
394     workspace_show_by_name(previous_workspace_name);
395 }
396
397 static bool get_urgency_flag(Con *con) {
398     Con *child;
399     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
400         if (child->urgent || get_urgency_flag(child))
401             return true;
402
403     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
404         if (child->urgent || get_urgency_flag(child))
405             return true;
406
407     return false;
408 }
409
410 /*
411  * Goes through all clients on the given workspace and updates the workspace’s
412  * urgent flag accordingly.
413  *
414  */
415 void workspace_update_urgent_flag(Con *ws) {
416     bool old_flag = ws->urgent;
417     ws->urgent = get_urgency_flag(ws);
418     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
419
420     if (old_flag != ws->urgent)
421         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
422 }
423
424 /*
425  * 'Forces' workspace orientation by moving all cons into a new split-con with
426  * the same orientation as the workspace and then changing the workspace
427  * orientation.
428  *
429  */
430 void ws_force_orientation(Con *ws, orientation_t orientation) {
431     /* 1: create a new split container */
432     Con *split = con_new(NULL, NULL);
433     split->parent = ws;
434
435     /* 2: copy layout and orientation from workspace */
436     split->layout = ws->layout;
437     split->orientation = ws->orientation;
438
439     Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
440
441     /* 3: move the existing cons of this workspace below the new con */
442     DLOG("Moving cons\n");
443     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
444         Con *child = TAILQ_FIRST(&(ws->nodes_head));
445         con_detach(child);
446         con_attach(child, split, true);
447     }
448
449     /* 4: switch workspace orientation */
450     ws->orientation = orientation;
451
452     /* 5: attach the new split container to the workspace */
453     DLOG("Attaching new split to ws\n");
454     con_attach(split, ws, false);
455
456     /* 6: fix the percentages */
457     con_fix_percent(ws);
458
459     if (old_focused)
460         con_focus(old_focused);
461 }
462
463 /*
464  * Called when a new con (with a window, not an empty or split con) should be
465  * attached to the workspace (for example when managing a new window or when
466  * moving an existing window to the workspace level).
467  *
468  * Depending on the workspace_layout setting, this function either returns the
469  * workspace itself (default layout) or creates a new stacked/tabbed con and
470  * returns that.
471  *
472  */
473 Con *workspace_attach_to(Con *ws) {
474     DLOG("Attaching a window to workspace %p / %s\n", ws, ws->name);
475
476     if (config.default_layout == L_DEFAULT) {
477         DLOG("Default layout, just attaching it to the workspace itself.\n");
478         return ws;
479     }
480
481     DLOG("Non-default layout, creating a new split container\n");
482     /* 1: create a new split container */
483     Con *new = con_new(NULL, NULL);
484     new->parent = ws;
485
486     /* 2: set the requested layout on the split con */
487     new->layout = config.default_layout;
488
489     /* 3: While the layout is irrelevant in stacked/tabbed mode, it needs
490      * to be set. Otherwise, this con will not be interpreted as a split
491      * container. */
492     if (config.default_orientation == NO_ORIENTATION) {
493         new->orientation = (ws->rect.height > ws->rect.width) ? VERT : HORIZ;
494     } else {
495         new->orientation = config.default_orientation;
496     }
497
498     /* 4: attach the new split container to the workspace */
499     DLOG("Attaching new split %p to workspace %p\n", new, ws);
500     con_attach(new, ws, false);
501
502     return new;
503 }