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