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