]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
Bugfix: Don’t use the workspace where focus is for deleting workspaces when switching...
[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 <limits.h>
11
12 #include "all.h"
13
14 /*
15  * Returns a pointer to the workspace with the given number (starting at 0),
16  * creating the workspace if necessary (by allocating the necessary amount of
17  * memory and initializing the data structures correctly).
18  *
19  */
20 Con *workspace_get(const char *num, bool *created) {
21     Con *output, *workspace = NULL, *child;
22
23     /* TODO: could that look like this in the future?
24     GET_MATCHING_NODE(workspace, croot, strcasecmp(current->name, num) != 0);
25     */
26     TAILQ_FOREACH(output, &(croot->nodes_head), nodes)
27         TAILQ_FOREACH(child, &(output_get_content(output)->nodes_head), nodes) {
28             if (strcasecmp(child->name, num) != 0)
29                 continue;
30
31             workspace = child;
32             break;
33         }
34
35     LOG("getting ws %s\n", num);
36     if (workspace == NULL) {
37         LOG("need to create this one\n");
38         output = con_get_output(focused);
39         Con *content = output_get_content(output);
40         LOG("got output %p with content %p\n", output, content);
41         /* We need to attach this container after setting its type. con_attach
42          * will handle CT_WORKSPACEs differently */
43         workspace = con_new(NULL);
44         char *name;
45         asprintf(&name, "[i3 con] workspace %s", num);
46         x_set_name(workspace, name);
47         free(name);
48         workspace->type = CT_WORKSPACE;
49         FREE(workspace->name);
50         workspace->name = sstrdup(num);
51         /* We set ->num to the number if this workspace’s name consists only of
52          * a positive number. Otherwise it’s a named ws and num will be -1. */
53         char *end;
54         long parsed_num = strtol(num, &end, 10);
55         if (parsed_num == LONG_MIN ||
56             parsed_num == LONG_MAX ||
57             parsed_num < 0 ||
58             (end && *end != '\0'))
59             workspace->num = -1;
60         else workspace->num = parsed_num;
61         LOG("num = %d\n", workspace->num);
62
63         /* If default_orientation is set to NO_ORIENTATION we
64          * determine workspace orientation from workspace size.
65          * Otherwise we just set the orientation to default_orientation. */
66         if (config.default_orientation == NO_ORIENTATION) {
67             workspace->orientation = (output->rect.height > output->rect.width) ? VERT : HORIZ;
68             DLOG("Auto orientation. Output resolution set to (%d,%d), setting orientation to %d.\n",
69                  workspace->rect.width, workspace->rect.height, workspace->orientation);
70         } else {
71             workspace->orientation = config.default_orientation;
72         }
73
74         con_attach(workspace, content, false);
75
76         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"init\"}");
77         if (created != NULL)
78             *created = true;
79     }
80     else if (created != NULL) {
81         *created = false;
82     }
83
84     return workspace;
85 }
86
87 #if 0
88
89 /*
90  * Sets the name (or just its number) for the given workspace. This has to
91  * be called for every workspace as the rendering function
92  * (render_internal_bar) relies on workspace->name and workspace->name_len
93  * being ready-to-use.
94  *
95  */
96 void workspace_set_name(Workspace *ws, const char *name) {
97         char *label;
98         int ret;
99
100         if (name != NULL)
101                 ret = asprintf(&label, "%d: %s", ws->num + 1, name);
102         else ret = asprintf(&label, "%d", ws->num + 1);
103
104         if (ret == -1)
105                 errx(1, "asprintf() failed");
106
107         FREE(ws->name);
108         FREE(ws->utf8_name);
109
110         ws->name = convert_utf8_to_ucs2(label, &(ws->name_len));
111         if (config.font != NULL)
112                 ws->text_width = predict_text_width(global_conn, config.font, ws->name, ws->name_len);
113         else ws->text_width = 0;
114         ws->utf8_name = label;
115 }
116 #endif
117
118 /*
119  * Returns true if the workspace is currently visible. Especially important for
120  * multi-monitor environments, as they can have multiple currenlty active
121  * workspaces.
122  *
123  */
124 bool workspace_is_visible(Con *ws) {
125     Con *output = con_get_output(ws);
126     if (output == NULL)
127         return false;
128     Con *fs = con_get_fullscreen_con(output);
129     LOG("workspace visible? fs = %p, ws = %p\n", fs, ws);
130     return (fs == ws);
131 }
132
133 /*
134  * XXX: we need to clean up all this recursive walking code.
135  *
136  */
137 Con *_get_sticky(Con *con, const char *sticky_group, Con *exclude) {
138     Con *current;
139
140     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
141         if (current != exclude &&
142             current->sticky_group != NULL &&
143             current->window != NULL &&
144             strcmp(current->sticky_group, sticky_group) == 0)
145             return current;
146
147         Con *recurse = _get_sticky(current, sticky_group, exclude);
148         if (recurse != NULL)
149             return recurse;
150     }
151
152     TAILQ_FOREACH(current, &(con->floating_head), floating_windows) {
153         if (current != exclude &&
154             current->sticky_group != NULL &&
155             current->window != NULL &&
156             strcmp(current->sticky_group, sticky_group) == 0)
157             return current;
158
159         Con *recurse = _get_sticky(current, sticky_group, exclude);
160         if (recurse != NULL)
161             return recurse;
162     }
163
164     return NULL;
165 }
166
167 /*
168  * Reassigns all child windows in sticky containers. Called when the user
169  * changes workspaces.
170  *
171  * XXX: what about sticky containers which contain containers?
172  *
173  */
174 static void workspace_reassign_sticky(Con *con) {
175     Con *current;
176     /* 1: go through all containers */
177
178     /* handle all children and floating windows of this node */
179     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
180         if (current->sticky_group == NULL) {
181             workspace_reassign_sticky(current);
182             continue;
183         }
184
185         LOG("Ah, this one is sticky: %s / %p\n", current->name, current);
186         /* 2: find a window which we can re-assign */
187         Con *output = con_get_output(current);
188         Con *src = _get_sticky(output, current->sticky_group, current);
189
190         if (src == NULL) {
191             LOG("No window found for this sticky group\n");
192             workspace_reassign_sticky(current);
193             continue;
194         }
195
196         x_move_win(src, current);
197         current->window = src->window;
198         current->mapped = true;
199         src->window = NULL;
200         src->mapped = false;
201
202         x_reparent_child(current, src);
203
204         LOG("re-assigned window from src %p to dest %p\n", src, current);
205     }
206
207     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
208         workspace_reassign_sticky(current);
209 }
210
211 /*
212  * Switches to the given workspace
213  *
214  */
215 void workspace_show(const char *num) {
216     Con *workspace, *current, *old = NULL;
217
218     bool changed_num_workspaces;
219     workspace = workspace_get(num, &changed_num_workspaces);
220
221     /* disable fullscreen for the other workspaces and get the workspace we are
222      * currently on. */
223     TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes) {
224         if (current->fullscreen_mode == CF_OUTPUT)
225             old = current;
226         current->fullscreen_mode = CF_NONE;
227     }
228     assert(old != NULL);
229
230     /* enable fullscreen for the target workspace. If it happens to be the
231      * same one we are currently on anyways, we can stop here. */
232     workspace->fullscreen_mode = CF_OUTPUT;
233     if (workspace == old)
234         return;
235
236     workspace_reassign_sticky(workspace);
237
238     LOG("switching to %p\n", workspace);
239     Con *next = con_descend_focused(workspace);
240
241     if (old && TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
242         /* check if this workspace is currently visible */
243         if (!workspace_is_visible(old)) {
244             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
245             tree_close(old, false, false);
246             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
247             changed_num_workspaces = true;
248         }
249     }
250
251     con_focus(next);
252     workspace->fullscreen_mode = CF_OUTPUT;
253     LOG("focused now = %p / %s\n", focused, focused->name);
254
255     /* Update the EWMH hints */
256     if (changed_num_workspaces)
257         ewmh_update_workarea();
258     ewmh_update_current_desktop();
259
260     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
261 #if 0
262
263         /* Check if the workspace has not been used yet */
264         workspace_initialize(t_ws, c_ws->output, false);
265
266         if (c_ws->output != t_ws->output) {
267                 /* We need to switch to the other output first */
268                 DLOG("moving over to other output.\n");
269
270                 /* Store the old client */
271                 Client *old_client = CUR_CELL->currently_focused;
272
273                 c_ws = t_ws->output->current_workspace;
274                 current_col = c_ws->current_col;
275                 current_row = c_ws->current_row;
276                 if (CUR_CELL->currently_focused != NULL)
277                         need_warp = true;
278                 else {
279                         Rect *dims = &(c_ws->output->rect);
280                         xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
281                                          dims->x + (dims->width / 2), dims->y + (dims->height / 2));
282                 }
283
284                 /* Re-decorate the old client, it’s not focused anymore */
285                 if ((old_client != NULL) && !old_client->dock)
286                         redecorate_window(conn, old_client);
287                 else xcb_flush(conn);
288
289                 /* We need to check if a global fullscreen-client is blocking
290                  * the t_ws and if necessary switch that to local fullscreen */
291                 Client* client = c_ws->fullscreen_client;
292                 if (client != NULL && client->workspace != c_ws) {
293                         if (c_ws->fullscreen_client->workspace != c_ws)
294                                 c_ws->fullscreen_client = NULL;
295                         client_enter_fullscreen(conn, client, false);
296                 }
297         }
298
299         /* Check if we need to change something or if we’re already there */
300         if (c_ws->output->current_workspace->num == (workspace-1)) {
301                 Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
302                 if (last_focused != SLIST_END(&(c_ws->focus_stack)))
303                         set_focus(conn, last_focused, true);
304                 if (need_warp) {
305                         client_warp_pointer_into(conn, last_focused);
306                         xcb_flush(conn);
307                 }
308
309                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
310
311                 return;
312         }
313
314         Workspace *old_workspace = c_ws;
315         c_ws = t_ws->output->current_workspace = workspace_get(workspace-1);
316
317         /* Unmap all clients of the old workspace */
318         workspace_unmap_clients(conn, old_workspace);
319
320         current_row = c_ws->current_row;
321         current_col = c_ws->current_col;
322         DLOG("new current row = %d, current col = %d\n", current_row, current_col);
323
324         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
325
326         workspace_map_clients(conn, c_ws);
327
328         /* POTENTIAL TO IMPROVE HERE: due to the call to _map_clients first and
329          * render_layout afterwards, there is a short flickering on the source
330          * workspace (assign ws 3 to output 0, ws 4 to output 1, create single
331          * client on ws 4, move it to ws 3, switch to ws 3, you’ll see the
332          * flickering). */
333
334         /* Restore focus on the new workspace */
335         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
336         if (last_focused != SLIST_END(&(c_ws->focus_stack)))
337                 set_focus(conn, last_focused, true);
338         else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
339
340         render_layout(conn);
341
342         /* We can warp the pointer only after the window has been
343          * reconfigured in render_layout, otherwise the pointer will
344          * be warped to the old position, which will not work when we
345          * moved it to another output. */
346         if (last_focused != SLIST_END(&(c_ws->focus_stack)) && need_warp) {
347                 client_warp_pointer_into(conn, last_focused);
348                 xcb_flush(conn);
349         }
350 #endif
351 }
352
353 #if 0
354 /*
355  * Assigns the given workspace to the given output by correctly updating its
356  * state and reconfiguring all the clients on this workspace.
357  *
358  * This is called when initializing a output and when re-assigning it to a
359  * different output which just got available (if you configured it to be on
360  * output 1 and you just plugged in output 1).
361  *
362  */
363 void workspace_assign_to(Workspace *ws, Output *output, bool hide_it) {
364         Client *client;
365         bool empty = true;
366         bool visible = workspace_is_visible(ws);
367
368         ws->output = output;
369
370         /* Copy the dimensions from the virtual output */
371         memcpy(&(ws->rect), &(ws->output->rect), sizeof(Rect));
372
373         ewmh_update_workarea();
374
375         /* Force reconfiguration for each client on that workspace */
376         SLIST_FOREACH(client, &(ws->focus_stack), focus_clients) {
377                 client->force_reconfigure = true;
378                 empty = false;
379         }
380
381         if (empty)
382                 return;
383
384         /* Render the workspace to reconfigure the clients. However, they will be visible now, so… */
385         render_workspace(global_conn, output, ws);
386
387         /* …unless we want to see them at the moment, we should hide that workspace */
388         if (visible && !hide_it)
389                 return;
390
391         /* however, if this is the current workspace, we only need to adjust
392          * the output’s current_workspace pointer (and must not unmap the
393          * windows) */
394         if (c_ws == ws) {
395                 DLOG("Need to adjust output->current_workspace...\n");
396                 output->current_workspace = c_ws;
397                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
398                 return;
399         }
400
401         workspace_unmap_clients(global_conn, ws);
402 }
403
404 /*
405  * Initializes the given workspace if it is not already initialized. The given
406  * screen is to be understood as a fallback, if the workspace itself either
407  * was not assigned to a particular screen or cannot be placed there because
408  * the screen is not attached at the moment.
409  *
410  */
411 void workspace_initialize(Workspace *ws, Output *output, bool recheck) {
412         Output *old_output;
413
414         if (ws->output != NULL && !recheck) {
415                 DLOG("Workspace already initialized\n");
416                 return;
417         }
418
419         old_output = ws->output;
420
421         /* If this workspace has no preferred output or if the output it wants
422          * to be on is not available at the moment, we initialize it with
423          * the output which was given */
424         if (ws->preferred_output == NULL ||
425             (ws->output = get_output_by_name(ws->preferred_output)) == NULL)
426                 ws->output = output;
427
428         DLOG("old_output = %p, ws->output = %p\n", old_output, ws->output);
429         /* If the assignment did not change, we do not need to update anything */
430         if (old_output != NULL && ws->output == old_output)
431                 return;
432
433         workspace_assign_to(ws, ws->output, false);
434 }
435
436 /*
437  * Gets the first unused workspace for the given screen, taking into account
438  * the preferred_output setting of every workspace (workspace assignments).
439  *
440  */
441 Workspace *get_first_workspace_for_output(Output *output) {
442         Workspace *result = NULL;
443
444         Workspace *ws;
445         TAILQ_FOREACH(ws, workspaces, workspaces) {
446                 if (ws->preferred_output == NULL ||
447                     get_output_by_name(ws->preferred_output) != output)
448                         continue;
449
450                 result = ws;
451                 break;
452         }
453
454         if (result == NULL) {
455                 /* No assignment found, returning first unused workspace */
456                 TAILQ_FOREACH(ws, workspaces, workspaces) {
457                         if (ws->output != NULL)
458                                 continue;
459
460                         result = ws;
461                         break;
462                 }
463         }
464
465         if (result == NULL) {
466                 DLOG("No existing free workspace found to assign, creating a new one\n");
467
468                 int last_ws = 0;
469                 TAILQ_FOREACH(ws, workspaces, workspaces)
470                         last_ws = ws->num;
471                 result = workspace_get(last_ws + 1, NULL);
472         }
473
474         workspace_initialize(result, output, false);
475         return result;
476 }
477
478 #endif
479
480 static bool get_urgency_flag(Con *con) {
481     Con *child;
482     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
483         if (child->urgent || get_urgency_flag(child))
484             return true;
485
486     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
487         if (child->urgent || get_urgency_flag(child))
488             return true;
489
490     return false;
491 }
492
493 /*
494  * Goes through all clients on the given workspace and updates the workspace’s
495  * urgent flag accordingly.
496  *
497  */
498 void workspace_update_urgent_flag(Con *ws) {
499     bool old_flag = ws->urgent;
500     ws->urgent = get_urgency_flag(ws);
501     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
502
503     if (old_flag != ws->urgent)
504         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
505 }
506
507 /*
508  * 'Forces' workspace orientation by moving all cons into a new split-con with
509  * the same orientation as the workspace and then changing the workspace
510  * orientation.
511  *
512  */
513 void ws_force_orientation(Con *ws, orientation_t orientation) {
514     /* 1: create a new split container */
515     Con *split = con_new(NULL);
516     split->parent = ws;
517
518     /* 2: copy layout and orientation from workspace */
519     split->layout = ws->layout;
520     split->orientation = ws->orientation;
521
522     Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
523
524     /* 3: move the existing cons of this workspace below the new con */
525     DLOG("Moving cons\n");
526     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
527         Con *child = TAILQ_FIRST(&(ws->nodes_head));
528         con_detach(child);
529         con_attach(child, split, true);
530     }
531
532     /* 4: switch workspace orientation */
533     ws->orientation = orientation;
534
535     /* 5: attach the new split container to the workspace */
536     DLOG("Attaching new split to ws\n");
537     con_attach(split, ws, false);
538
539     /* 6: fix the percentages */
540     con_fix_percent(ws);
541
542     if (old_focused)
543         con_focus(old_focused);
544 }