]> 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 *end;
53         long parsed_num = strtol(num, &end, 10);
54         if (parsed_num == LONG_MIN ||
55             parsed_num == LONG_MAX ||
56             parsed_num < 0 ||
57             (end && *end != '\0'))
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);
215             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
216             changed_num_workspaces = true;
217         }
218     }
219
220     con_focus(next);
221     workspace->fullscreen_mode = CF_OUTPUT;
222     LOG("focused now = %p / %s\n", focused, focused->name);
223
224     /* Update the EWMH hints */
225     if (changed_num_workspaces)
226         ewmh_update_workarea();
227     ewmh_update_current_desktop();
228
229     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
230 }
231
232 /*
233  * Focuses the next workspace.
234  *
235  */
236 void workspace_next() {
237     Con *ws = con_get_workspace(focused);
238     Con *next = TAILQ_NEXT(ws, nodes);
239     if (!next)
240         next = TAILQ_FIRST(&(ws->parent->nodes_head));
241
242     workspace_show(next->name);
243 }
244
245 /*
246  * Focuses the previous workspace.
247  *
248  */
249 void workspace_prev() {
250     Con *ws = con_get_workspace(focused);
251     Con *prev = TAILQ_PREV(ws, nodes_head, nodes);
252     if (!prev)
253         prev = TAILQ_LAST(&(ws->parent->nodes_head), nodes_head);
254
255     workspace_show(prev->name);
256 }
257
258 static bool get_urgency_flag(Con *con) {
259     Con *child;
260     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
261         if (child->urgent || get_urgency_flag(child))
262             return true;
263
264     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
265         if (child->urgent || get_urgency_flag(child))
266             return true;
267
268     return false;
269 }
270
271 /*
272  * Goes through all clients on the given workspace and updates the workspace’s
273  * urgent flag accordingly.
274  *
275  */
276 void workspace_update_urgent_flag(Con *ws) {
277     bool old_flag = ws->urgent;
278     ws->urgent = get_urgency_flag(ws);
279     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
280
281     if (old_flag != ws->urgent)
282         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
283 }
284
285 /*
286  * 'Forces' workspace orientation by moving all cons into a new split-con with
287  * the same orientation as the workspace and then changing the workspace
288  * orientation.
289  *
290  */
291 void ws_force_orientation(Con *ws, orientation_t orientation) {
292     /* 1: create a new split container */
293     Con *split = con_new(NULL, NULL);
294     split->parent = ws;
295
296     /* 2: copy layout and orientation from workspace */
297     split->layout = ws->layout;
298     split->orientation = ws->orientation;
299
300     Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
301
302     /* 3: move the existing cons of this workspace below the new con */
303     DLOG("Moving cons\n");
304     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
305         Con *child = TAILQ_FIRST(&(ws->nodes_head));
306         con_detach(child);
307         con_attach(child, split, true);
308     }
309
310     /* 4: switch workspace orientation */
311     ws->orientation = orientation;
312
313     /* 5: attach the new split container to the workspace */
314     DLOG("Attaching new split to ws\n");
315     con_attach(split, ws, false);
316
317     /* 6: fix the percentages */
318     con_fix_percent(ws);
319
320     if (old_focused)
321         con_focus(old_focused);
322 }
323
324 /*
325  * Called when a new con (with a window, not an empty or split con) should be
326  * attached to the workspace (for example when managing a new window or when
327  * moving an existing window to the workspace level).
328  *
329  * Depending on the workspace_layout setting, this function either returns the
330  * workspace itself (default layout) or creates a new stacked/tabbed con and
331  * returns that.
332  *
333  */
334 Con *workspace_attach_to(Con *ws) {
335     DLOG("Attaching a window to workspace %p / %s\n", ws, ws->name);
336
337     if (config.default_layout == L_DEFAULT) {
338         DLOG("Default layout, just attaching it to the workspace itself.\n");
339         return ws;
340     }
341
342     DLOG("Non-default layout, creating a new split container\n");
343     /* 1: create a new split container */
344     Con *new = con_new(NULL, NULL);
345     new->parent = ws;
346
347     /* 2: set the requested layout on the split con */
348     new->layout = config.default_layout;
349
350     /* 3: While the layout is irrelevant in stacked/tabbed mode, it needs
351      * to be set. Otherwise, this con will not be interpreted as a split
352      * container. */
353     if (config.default_orientation == NO_ORIENTATION) {
354         new->orientation = (ws->rect.height > ws->rect.width) ? VERT : HORIZ;
355     } else {
356         new->orientation = config.default_orientation;
357     }
358
359     /* 4: attach the new split container to the workspace */
360     DLOG("Attaching new split %p to workspace %p\n", new, ws);
361     con_attach(new, ws, false);
362
363     return new;
364 }