]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
first step of the big refactoring ("tree" branch).
[i3/i3] / src / workspace.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2010 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * workspace.c: Functions for modifying workspaces
11  *
12  */
13 #include <limits.h>
14
15 #include "all.h"
16
17 extern Con *focused;
18
19 /*
20  * Returns a pointer to the workspace with the given number (starting at 0),
21  * creating the workspace if necessary (by allocating the necessary amount of
22  * memory and initializing the data structures correctly).
23  *
24  */
25 Con *workspace_get(const char *num) {
26         Con *output, *workspace = NULL, *current;
27
28         /* TODO: could that look like this in the future?
29         GET_MATCHING_NODE(workspace, croot, strcasecmp(current->name, num) != 0);
30         */
31         TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
32                 TAILQ_FOREACH(current, &(output->nodes_head), nodes) {
33                         if (strcasecmp(current->name, num) != 0)
34                                 continue;
35
36                         workspace = current;
37                         break;
38                 }
39         }
40
41         LOG("should switch to ws %s\n", num);
42         if (workspace == NULL) {
43                 LOG("need to create this one\n");
44                 output = con_get_output(focused);
45                 LOG("got output %p\n", output);
46                 workspace = con_new(output);
47                 workspace->name = strdup(num);
48
49                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"init\"}");
50         }
51
52         //ewmh_update_workarea();
53
54         return workspace;
55 }
56
57 #if 0
58
59 /*
60  * Sets the name (or just its number) for the given workspace. This has to
61  * be called for every workspace as the rendering function
62  * (render_internal_bar) relies on workspace->name and workspace->name_len
63  * being ready-to-use.
64  *
65  */
66 void workspace_set_name(Workspace *ws, const char *name) {
67         char *label;
68         int ret;
69
70         if (name != NULL)
71                 ret = asprintf(&label, "%d: %s", ws->num + 1, name);
72         else ret = asprintf(&label, "%d", ws->num + 1);
73
74         if (ret == -1)
75                 errx(1, "asprintf() failed");
76
77         FREE(ws->name);
78         FREE(ws->utf8_name);
79
80         ws->name = convert_utf8_to_ucs2(label, &(ws->name_len));
81         if (config.font != NULL)
82                 ws->text_width = predict_text_width(global_conn, config.font, ws->name, ws->name_len);
83         else ws->text_width = 0;
84         ws->utf8_name = label;
85 }
86
87 /*
88  * Returns true if the workspace is currently visible. Especially important for
89  * multi-monitor environments, as they can have multiple currenlty active
90  * workspaces.
91  *
92  */
93 bool workspace_is_visible(Workspace *ws) {
94         return (ws->output != NULL && ws->output->current_workspace == ws);
95 }
96 #endif
97
98
99 /*
100  * Switches to the given workspace
101  *
102  */
103 void workspace_show(const char *num) {
104         Con *workspace, *current;
105
106         workspace = workspace_get(num);
107         workspace->fullscreen_mode = CF_OUTPUT;
108         /* disable fullscreen */
109         TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes)
110                 current->fullscreen_mode = CF_NONE;
111
112         LOG("switching to %p\n", workspace);
113         con_focus(workspace);
114         workspace->fullscreen_mode = CF_OUTPUT;
115         LOG("focused now = %p / %s\n", focused, focused->name);
116 #if 0
117
118         /* Check if the workspace has not been used yet */
119         workspace_initialize(t_ws, c_ws->output, false);
120
121         if (c_ws->output != t_ws->output) {
122                 /* We need to switch to the other output first */
123                 DLOG("moving over to other output.\n");
124
125                 /* Store the old client */
126                 Client *old_client = CUR_CELL->currently_focused;
127
128                 c_ws = t_ws->output->current_workspace;
129                 current_col = c_ws->current_col;
130                 current_row = c_ws->current_row;
131                 if (CUR_CELL->currently_focused != NULL)
132                         need_warp = true;
133                 else {
134                         Rect *dims = &(c_ws->output->rect);
135                         xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
136                                          dims->x + (dims->width / 2), dims->y + (dims->height / 2));
137                 }
138
139                 /* Re-decorate the old client, it’s not focused anymore */
140                 if ((old_client != NULL) && !old_client->dock)
141                         redecorate_window(conn, old_client);
142                 else xcb_flush(conn);
143
144                 /* We need to check if a global fullscreen-client is blocking
145                  * the t_ws and if necessary switch that to local fullscreen */
146                 Client* client = c_ws->fullscreen_client;
147                 if (client != NULL && client->workspace != c_ws) {
148                         if (c_ws->fullscreen_client->workspace != c_ws)
149                                 c_ws->fullscreen_client = NULL;
150                         client_enter_fullscreen(conn, client, false);
151                 }
152         }
153
154         /* Check if we need to change something or if we’re already there */
155         if (c_ws->output->current_workspace->num == (workspace-1)) {
156                 Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
157                 if (last_focused != SLIST_END(&(c_ws->focus_stack)))
158                         set_focus(conn, last_focused, true);
159                 if (need_warp) {
160                         client_warp_pointer_into(conn, last_focused);
161                         xcb_flush(conn);
162                 }
163
164                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
165
166                 return;
167         }
168
169         Workspace *old_workspace = c_ws;
170         c_ws = t_ws->output->current_workspace = workspace_get(workspace-1);
171
172         /* Unmap all clients of the old workspace */
173         workspace_unmap_clients(conn, old_workspace);
174
175         current_row = c_ws->current_row;
176         current_col = c_ws->current_col;
177         DLOG("new current row = %d, current col = %d\n", current_row, current_col);
178
179         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
180
181         workspace_map_clients(conn, c_ws);
182
183         /* POTENTIAL TO IMPROVE HERE: due to the call to _map_clients first and
184          * render_layout afterwards, there is a short flickering on the source
185          * workspace (assign ws 3 to output 0, ws 4 to output 1, create single
186          * client on ws 4, move it to ws 3, switch to ws 3, you’ll see the
187          * flickering). */
188
189         /* Restore focus on the new workspace */
190         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
191         if (last_focused != SLIST_END(&(c_ws->focus_stack)))
192                 set_focus(conn, last_focused, true);
193         else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
194
195         render_layout(conn);
196
197         /* We can warp the pointer only after the window has been
198          * reconfigured in render_layout, otherwise the pointer will
199          * be warped to the old position, which will not work when we
200          * moved it to another output. */
201         if (last_focused != SLIST_END(&(c_ws->focus_stack)) && need_warp) {
202                 client_warp_pointer_into(conn, last_focused);
203                 xcb_flush(conn);
204         }
205 #endif
206 }
207
208 #if 0
209 /*
210  * Assigns the given workspace to the given output by correctly updating its
211  * state and reconfiguring all the clients on this workspace.
212  *
213  * This is called when initializing a output and when re-assigning it to a
214  * different output which just got available (if you configured it to be on
215  * output 1 and you just plugged in output 1).
216  *
217  */
218 void workspace_assign_to(Workspace *ws, Output *output, bool hide_it) {
219         Client *client;
220         bool empty = true;
221         bool visible = workspace_is_visible(ws);
222
223         ws->output = output;
224
225         /* Copy the dimensions from the virtual output */
226         memcpy(&(ws->rect), &(ws->output->rect), sizeof(Rect));
227
228         ewmh_update_workarea();
229
230         /* Force reconfiguration for each client on that workspace */
231         SLIST_FOREACH(client, &(ws->focus_stack), focus_clients) {
232                 client->force_reconfigure = true;
233                 empty = false;
234         }
235
236         if (empty)
237                 return;
238
239         /* Render the workspace to reconfigure the clients. However, they will be visible now, so… */
240         render_workspace(global_conn, output, ws);
241
242         /* …unless we want to see them at the moment, we should hide that workspace */
243         if (visible && !hide_it)
244                 return;
245
246         /* however, if this is the current workspace, we only need to adjust
247          * the output’s current_workspace pointer (and must not unmap the
248          * windows) */
249         if (c_ws == ws) {
250                 DLOG("Need to adjust output->current_workspace...\n");
251                 output->current_workspace = c_ws;
252                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
253                 return;
254         }
255
256         workspace_unmap_clients(global_conn, ws);
257 }
258
259 /*
260  * Initializes the given workspace if it is not already initialized. The given
261  * screen is to be understood as a fallback, if the workspace itself either
262  * was not assigned to a particular screen or cannot be placed there because
263  * the screen is not attached at the moment.
264  *
265  */
266 void workspace_initialize(Workspace *ws, Output *output, bool recheck) {
267         Output *old_output;
268
269         if (ws->output != NULL && !recheck) {
270                 DLOG("Workspace already initialized\n");
271                 return;
272         }
273
274         old_output = ws->output;
275
276         /* If this workspace has no preferred output or if the output it wants
277          * to be on is not available at the moment, we initialize it with
278          * the output which was given */
279         if (ws->preferred_output == NULL ||
280             (ws->output = get_output_by_name(ws->preferred_output)) == NULL)
281                 ws->output = output;
282
283         DLOG("old_output = %p, ws->output = %p\n", old_output, ws->output);
284         /* If the assignment did not change, we do not need to update anything */
285         if (old_output != NULL && ws->output == old_output)
286                 return;
287
288         workspace_assign_to(ws, ws->output, false);
289 }
290
291 /*
292  * Gets the first unused workspace for the given screen, taking into account
293  * the preferred_output setting of every workspace (workspace assignments).
294  *
295  */
296 Workspace *get_first_workspace_for_output(Output *output) {
297         Workspace *result = NULL;
298
299         Workspace *ws;
300         TAILQ_FOREACH(ws, workspaces, workspaces) {
301                 if (ws->preferred_output == NULL ||
302                     get_output_by_name(ws->preferred_output) != output)
303                         continue;
304
305                 result = ws;
306                 break;
307         }
308
309         if (result == NULL) {
310                 /* No assignment found, returning first unused workspace */
311                 TAILQ_FOREACH(ws, workspaces, workspaces) {
312                         if (ws->output != NULL)
313                                 continue;
314
315                         result = ws;
316                         break;
317                 }
318         }
319
320         if (result == NULL) {
321                 DLOG("No existing free workspace found to assign, creating a new one\n");
322
323                 int last_ws = 0;
324                 TAILQ_FOREACH(ws, workspaces, workspaces)
325                         last_ws = ws->num;
326                 result = workspace_get(last_ws + 1);
327         }
328
329         workspace_initialize(result, output, false);
330         return result;
331 }
332
333 /*
334  * Maps all clients (and stack windows) of the given workspace.
335  *
336  */
337 void workspace_map_clients(xcb_connection_t *conn, Workspace *ws) {
338         Client *client;
339
340         ignore_enter_notify_forall(conn, ws, true);
341
342         /* Map all clients on the new workspace */
343         FOR_TABLE(ws)
344                 CIRCLEQ_FOREACH(client, &(ws->table[cols][rows]->clients), clients)
345                         client_map(conn, client);
346
347         /* Map all floating clients */
348         if (!ws->floating_hidden)
349                 TAILQ_FOREACH(client, &(ws->floating_clients), floating_clients)
350                         client_map(conn, client);
351
352         /* Map all stack windows, if any */
353         struct Stack_Window *stack_win;
354         SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
355                 if (stack_win->container->workspace == ws && stack_win->rect.height > 0)
356                         xcb_map_window(conn, stack_win->window);
357
358         ignore_enter_notify_forall(conn, ws, false);
359 }
360
361 /*
362  * Unmaps all clients (and stack windows) of the given workspace.
363  *
364  * This needs to be called separately when temporarily rendering
365  * a workspace which is not the active workspace to force
366  * reconfiguration of all clients, like in src/xinerama.c when
367  * re-assigning a workspace to another screen.
368  *
369  */
370 void workspace_unmap_clients(xcb_connection_t *conn, Workspace *u_ws) {
371         Client *client;
372         struct Stack_Window *stack_win;
373
374         /* Ignore notify events because they would cause focus to be changed */
375         ignore_enter_notify_forall(conn, u_ws, true);
376
377         /* Unmap all clients of the given workspace */
378         int unmapped_clients = 0;
379         FOR_TABLE(u_ws)
380                 CIRCLEQ_FOREACH(client, &(u_ws->table[cols][rows]->clients), clients) {
381                         DLOG("unmapping normal client %p / %p / %p\n", client, client->frame, client->child);
382                         client_unmap(conn, client);
383                         unmapped_clients++;
384                 }
385
386         /* To find floating clients, we traverse the focus stack */
387         SLIST_FOREACH(client, &(u_ws->focus_stack), focus_clients) {
388                 if (!client_is_floating(client))
389                         continue;
390
391                 DLOG("unmapping floating client %p / %p / %p\n", client, client->frame, client->child);
392
393                 client_unmap(conn, client);
394                 unmapped_clients++;
395         }
396
397         /* If we did not unmap any clients, the workspace is empty and we can destroy it, at least
398          * if it is not the current workspace. */
399         if (unmapped_clients == 0 && u_ws != c_ws) {
400                 /* Re-assign the workspace of all dock clients which use this workspace */
401                 Client *dock;
402                 DLOG("workspace %p is empty\n", u_ws);
403                 SLIST_FOREACH(dock, &(u_ws->output->dock_clients), dock_clients) {
404                         if (dock->workspace != u_ws)
405                                 continue;
406
407                         DLOG("Re-assigning dock client to c_ws (%p)\n", c_ws);
408                         dock->workspace = c_ws;
409                 }
410                 u_ws->output = NULL;
411         }
412
413         /* Unmap the stack windows on the given workspace, if any */
414         SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
415                 if (stack_win->container->workspace == u_ws)
416                         xcb_unmap_window(conn, stack_win->window);
417
418         ignore_enter_notify_forall(conn, u_ws, false);
419 }
420
421 /*
422  * Goes through all clients on the given workspace and updates the workspace’s
423  * urgent flag accordingly.
424  *
425  */
426 void workspace_update_urgent_flag(Workspace *ws) {
427         Client *current;
428         bool old_flag = ws->urgent;
429         bool urgent = false;
430
431         SLIST_FOREACH(current, &(ws->focus_stack), focus_clients) {
432                 if (!current->urgent)
433                         continue;
434
435                 urgent = true;
436                 break;
437         }
438
439         ws->urgent = urgent;
440
441         if (old_flag != urgent)
442                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
443 }
444
445 /*
446  * Returns the width of the workspace.
447  *
448  */
449 int workspace_width(Workspace *ws) {
450         return ws->rect.width;
451 }
452
453 /*
454  * Returns the effective height of the workspace (without the internal bar and
455  * without dock clients).
456  *
457  */
458 int workspace_height(Workspace *ws) {
459         int height = ws->rect.height;
460         i3Font *font = load_font(global_conn, config.font);
461
462         /* Reserve space for dock clients */
463         Client *client;
464         SLIST_FOREACH(client, &(ws->output->dock_clients), dock_clients)
465                 height -= client->desired_height;
466
467         /* Space for the internal bar */
468         if (!config.disable_workspace_bar)
469                 height -= (font->height + 6);
470
471         return height;
472 }
473 #endif