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