]> git.sur5r.net Git - i3/i3/blob - src/layout.c
Bugfix: In stacked/tabbed mode we need the regular border color (Thanks badboy)
[i3/i3] / src / layout.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * layout.c: Functions handling layout/drawing of window decorations
11  *
12  */
13 #include <stdio.h>
14 #include <string.h>
15 #include <stdlib.h>
16 #include <xcb/xcb.h>
17 #include <assert.h>
18 #include <math.h>
19
20 #include "config.h"
21 #include "i3.h"
22 #include "xcb.h"
23 #include "table.h"
24 #include "util.h"
25 #include "xinerama.h"
26 #include "layout.h"
27 #include "client.h"
28 #include "floating.h"
29 #include "handlers.h"
30
31 /*
32  * Updates *destination with new_value and returns true if it was changed or false
33  * if it was the same
34  *
35  */
36 static bool update_if_necessary(uint32_t *destination, const uint32_t new_value) {
37         uint32_t old_value = *destination;
38
39         return ((*destination = new_value) != old_value);
40 }
41
42 /*
43  * Gets the unoccupied space (= space which is available for windows which were resized by the user)
44  * for the given row. This is necessary to render both, customly resized windows and never touched
45  * windows correctly, meaning that the aspect ratio will be maintained when opening new windows.
46  *
47  */
48 int get_unoccupied_x(Workspace *workspace) {
49         int unoccupied = workspace->rect.width;
50         float default_factor = ((float)workspace->rect.width / workspace->cols) / workspace->rect.width;
51
52         LOG("get_unoccupied_x(), starting with %d, default_factor = %f\n", unoccupied, default_factor);
53
54         for (int cols = 0; cols < workspace->cols; cols++) {
55                 LOG("width_factor[%d] = %f\n", cols, workspace->width_factor[cols]);
56
57                 if (workspace->width_factor[cols] == 0)
58                         unoccupied -= workspace->rect.width * default_factor;
59         }
60
61         LOG("unoccupied space: %d\n", unoccupied);
62         return unoccupied;
63 }
64
65 /* See get_unoccupied_x() */
66 int get_unoccupied_y(Workspace *workspace, int col) {
67         int unoccupied = workspace->rect.height;
68         float default_factor = ((float)workspace->rect.height / workspace->rows) / workspace->rect.height;
69
70         LOG("get_unoccupied_y(), starting with %d, default_factor = %f\n", unoccupied, default_factor);
71
72         for (int rows = 0; rows < workspace->rows; rows++) {
73                 LOG("height_factor[%d] = %f\n", rows, workspace->height_factor[rows]);
74                 if (workspace->height_factor[rows] == 0)
75                         unoccupied -= workspace->rect.height * default_factor;
76         }
77
78         LOG("unoccupied space: %d\n", unoccupied);
79         return unoccupied;
80 }
81
82 /*
83  * Redecorates the given client correctly by checking if it’s in a stacking container and
84  * re-rendering the stack window or just calling decorate_window if it’s not in a stacking
85  * container.
86  *
87  */
88 void redecorate_window(xcb_connection_t *conn, Client *client) {
89         if (client->container != NULL &&
90             (client->container->mode == MODE_STACK ||
91              client->container->mode == MODE_TABBED)) {
92                 render_container(conn, client->container);
93                 /* We clear the frame to generate exposure events, because the color used
94                    in drawing may be different */
95                 xcb_clear_area(conn, true, client->frame, 0, 0, client->rect.width, client->rect.height);
96         } else decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
97         xcb_flush(conn);
98 }
99
100 /*
101  * (Re-)draws window decorations for a given Client onto the given drawable/graphic context.
102  * When in stacking mode, the window decorations are drawn onto an own window.
103  *
104  */
105 void decorate_window(xcb_connection_t *conn, Client *client, xcb_drawable_t drawable,
106                      xcb_gcontext_t gc, int offset_x, int offset_y) {
107         i3Font *font = load_font(conn, config.font);
108         int decoration_height = font->height + 2 + 2;
109         struct Colortriple *color;
110         Client *last_focused;
111
112         /* Clients without a container (docks) won’t get decorated */
113         if (client->dock)
114                 return;
115
116         last_focused = SLIST_FIRST(&(client->workspace->focus_stack));
117         if (client_is_floating(client)) {
118                 if (last_focused == client)
119                         color = &(config.client.focused);
120                 else color = &(config.client.unfocused);
121         } else {
122                 if (client->container->currently_focused == client) {
123                         /* Distinguish if the window is currently focused… */
124                         if (last_focused == client && c_ws == client->workspace)
125                                 color = &(config.client.focused);
126                         /* …or if it is the focused window in a not focused container */
127                         else color = &(config.client.focused_inactive);
128                 } else color = &(config.client.unfocused);
129         }
130
131         /* Our plan is the following:
132            - Draw a rect around the whole client in color->background
133            - Draw two lines in a lighter color
134            - Draw the window’s title
135          */
136
137         /* Draw a rectangle in background color around the window */
138         if (client->borderless && (client->container == NULL ||
139             (client->container->mode != MODE_STACK &&
140              client->container->mode != MODE_TABBED)))
141                 xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
142         else xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, color->background);
143
144         /* In stacking mode, we only render the rect for this specific decoration */
145         if (client->container != NULL && (client->container->mode == MODE_STACK || client->container->mode == MODE_TABBED)) {
146                 /* We need to use the container’s width because it is the more recent value - when
147                    in stacking mode, clients get reconfigured only on demand (the not active client
148                    is not reconfigured), so the client’s rect.width would be wrong */
149                 xcb_rectangle_t rect = {offset_x, offset_y,
150                                         offset_x + client->container->width,
151                                         offset_y + decoration_height };
152                 xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
153         } else {
154                 xcb_rectangle_t rect = {0, 0, client->rect.width, client->rect.height};
155                 xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
156
157                 /* Draw the inner background to have a black frame around clients (such as mplayer)
158                    which cannot be resized exactly in our frames and therefore are centered */
159                 xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
160                 xcb_rectangle_t crect = {2, decoration_height,
161                                          client->rect.width - (2 + 2), client->rect.height - 2 - decoration_height};
162                 xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
163         }
164
165         if (client->titlebar_position != TITLEBAR_OFF) {
166                 /* Draw the lines */
167                 xcb_draw_line(conn, drawable, gc, color->border, offset_x, offset_y, offset_x + client->rect.width, offset_y);
168                 if ((client->container == NULL ||
169                     (client->container->mode != MODE_STACK &&
170                      client->container->mode != MODE_TABBED) ||
171                     CIRCLEQ_NEXT_OR_NULL(&(client->container->clients), client, clients) == NULL))
172                         xcb_draw_line(conn, drawable, gc, color->border,
173                                       offset_x + 2, /* x */
174                                       offset_y + font->height + 3, /* y */
175                                       offset_x + client->rect.width - 3, /* to_x */
176                                       offset_y + font->height + 3 /* to_y */);
177         }
178
179         /* If the client has a title, we draw it */
180         if (client->name != NULL) {
181                 /* Draw the font */
182                 uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
183                 uint32_t values[] = { color->text, color->background, font->id };
184                 xcb_change_gc(conn, gc, mask, values);
185
186                 /* name_len == -1 means this is a legacy application which does not specify _NET_WM_NAME,
187                    and we don’t handle the old window name (COMPOUND_TEXT) but only _NET_WM_NAME, which
188                    is UTF-8 */
189                 if (client->name_len == -1)
190                         xcb_image_text_8(conn, strlen(client->name), drawable, gc, offset_x + 3 /* X */,
191                                          offset_y + font->height /* Y = baseline of font */, client->name);
192                 else
193                         xcb_image_text_16(conn, client->name_len, drawable, gc, offset_x + 3 /* X */,
194                                           offset_y + font->height /* Y = baseline of font */, (xcb_char2b_t*)client->name);
195         }
196 }
197
198 /*
199  * Pushes the client’s x and y coordinates to X11
200  *
201  */
202 void reposition_client(xcb_connection_t *conn, Client *client) {
203         i3Screen *screen;
204
205         LOG("frame 0x%08x needs to be pushed to %dx%d\n", client->frame, client->rect.x, client->rect.y);
206         /* Note: We can use a pointer to client->x like an array of uint32_ts
207            because it is followed by client->y by definition */
208         xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y, &(client->rect.x));
209
210         if (!client_is_floating(client))
211                 return;
212
213         /* If the client is floating, we need to check if we moved it to a different workspace */
214         if (client->workspace->screen == (screen = get_screen_containing(client->rect.x, client->rect.y)))
215                 return;
216
217         if (screen == NULL) {
218                 LOG("Boundary checking disabled, no screen found for (%d, %d)\n", client->rect.x, client->rect.y);
219                 return;
220         }
221
222         LOG("Client is on workspace %p with screen %p\n", client->workspace, client->workspace->screen);
223         LOG("but screen at %d, %d is %p\n", client->rect.x, client->rect.y, screen);
224         floating_assign_to_workspace(client, &workspaces[screen->current_workspace]);
225 }
226
227 /*
228  * Pushes the client’s width/height to X11 and resizes the child window. This
229  * function also updates the client’s position, so if you work on tiling clients
230  * only, you can use this function instead of separate calls to reposition_client
231  * and resize_client to reduce flickering.
232  *
233  */
234 void resize_client(xcb_connection_t *conn, Client *client) {
235         i3Font *font = load_font(conn, config.font);
236
237         LOG("frame 0x%08x needs to be pushed to %dx%d\n", client->frame, client->rect.x, client->rect.y);
238         LOG("resizing client 0x%08x to %d x %d\n", client->frame, client->rect.width, client->rect.height);
239         xcb_configure_window(conn, client->frame,
240                         XCB_CONFIG_WINDOW_X |
241                         XCB_CONFIG_WINDOW_Y |
242                         XCB_CONFIG_WINDOW_WIDTH |
243                         XCB_CONFIG_WINDOW_HEIGHT,
244                         &(client->rect.x));
245
246         /* Adjust the position of the child inside its frame.
247          * The coordinates of the child are relative to its frame, we
248          * add a border of 2 pixel to each value */
249         uint32_t mask = XCB_CONFIG_WINDOW_X |
250                         XCB_CONFIG_WINDOW_Y |
251                         XCB_CONFIG_WINDOW_WIDTH |
252                         XCB_CONFIG_WINDOW_HEIGHT;
253         Rect *rect = &(client->child_rect);
254         switch ((client->container != NULL ? client->container->mode : MODE_DEFAULT)) {
255                 case MODE_STACK:
256                 case MODE_TABBED:
257                         rect->x = 2;
258                         rect->y = 0;
259                         rect->width = client->rect.width - (2 + 2);
260                         rect->height = client->rect.height - 2;
261                         break;
262                 default:
263                         if (client->titlebar_position == TITLEBAR_OFF && client->borderless) {
264                                 rect->x = 0;
265                                 rect->y = 0;
266                                 rect->width = client->rect.width;
267                                 rect->height = client->rect.height;
268                         } else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
269                                 rect->x = 1;
270                                 rect->y = 1;
271                                 rect->width = client->rect.width - 1 - 1;
272                                 rect->height = client->rect.height - 1 - 1;
273                         } else {
274                                 rect->x = 2;
275                                 rect->y = font->height + 2 + 2;
276                                 rect->width = client->rect.width - (2 + 2);
277                                 rect->height = client->rect.height - ((font->height + 2 + 2) + 2);
278                         }
279                         break;
280         }
281
282         /* Obey the ratio, if any */
283         if (client->proportional_height != 0 &&
284             client->proportional_width != 0) {
285                 LOG("proportional height = %d, width = %d\n", client->proportional_height, client->proportional_width);
286                 double new_height = rect->height + 1;
287                 int new_width = rect->width;
288
289                 while (new_height > rect->height) {
290                         new_height = ((double)client->proportional_height / client->proportional_width) * new_width;
291
292                         if (new_height > rect->height)
293                                 new_width--;
294                 }
295                 /* Center the window */
296                 rect->y += ceil(rect->height / 2) - floor(new_height / 2);
297                 rect->x += ceil(rect->width / 2) - floor(new_width / 2);
298
299                 rect->height = new_height;
300                 rect->width = new_width;
301                 LOG("new_height = %f, new_width = %d\n", new_height, new_width);
302         }
303
304         if (client->height_increment > 1) {
305                 int old_height = rect->height;
306                 rect->height -= (rect->height - client->base_height) % client->height_increment;
307                 LOG("Lost %d pixel due to client's height_increment (%d px)\n",
308                     old_height - rect->height, client->height_increment);
309         }
310
311         if (client->width_increment > 1) {
312                 int old_width = rect->width;
313                 rect->width -= (rect->width - client->base_width) % client->width_increment;
314                 LOG("Lost %d pixel due to client's width_increment (%d px)\n",
315                     old_width - rect->width, client->width_increment);
316         }
317
318         LOG("child will be at %dx%d with size %dx%d\n", rect->x, rect->y, rect->width, rect->height);
319
320         xcb_configure_window(conn, client->child, mask, &(rect->x));
321
322         /* After configuring a child window we need to fake a configure_notify_event (see ICCCM 4.2.3).
323          * This is necessary to inform the client of its position relative to the root window,
324          * not relative to its frame (as done in the configure_notify_event by the x server). */
325         fake_absolute_configure_notify(conn, client);
326
327         /* Force redrawing after resizing the window because any now lost
328          * pixels could contain old garbage. */
329         xcb_expose_event_t generated;
330         generated.window = client->frame;
331         generated.count = 0;
332         handle_expose_event(NULL, conn, &generated);
333 }
334
335 /*
336  * Renders the given container. Is called by render_layout() or individually (for example
337  * when focus changes in a stacking container)
338  *
339  */
340 void render_container(xcb_connection_t *conn, Container *container) {
341         Client *client;
342         int num_clients = 0, current_client = 0;
343
344         CIRCLEQ_FOREACH(client, &(container->clients), clients)
345                 num_clients++;
346
347         if (container->mode == MODE_DEFAULT) {
348                 CIRCLEQ_FOREACH(client, &(container->clients), clients) {
349                         /* If the client is in fullscreen mode, it does not get reconfigured */
350                         if (container->workspace->fullscreen_client == client) {
351                                 current_client++;
352                                 continue;
353                         }
354
355                         /* Check if we changed client->x or client->y by updating it.
356                          * Note the bitwise OR instead of logical OR to force evaluation of both statements */
357                         if (client->force_reconfigure |
358                             update_if_necessary(&(client->rect.x), container->x) |
359                             update_if_necessary(&(client->rect.y), container->y +
360                                         (container->height / num_clients) * current_client) |
361                             update_if_necessary(&(client->rect.width), container->width) |
362                             update_if_necessary(&(client->rect.height), container->height / num_clients))
363                                 resize_client(conn, client);
364
365                         /* TODO: vertical default layout */
366
367                         client->force_reconfigure = false;
368
369                         current_client++;
370                 }
371         } else {
372                 i3Font *font = load_font(conn, config.font);
373                 int decoration_height = (font->height + 2 + 2);
374                 struct Stack_Window *stack_win = &(container->stack_win);
375                 /* The size for each tab (width), necessary as a separate variable
376                  * because num_clients gets fixed to 1 in tabbed mode. */
377                 int size_each = (num_clients == 0 ? container->width : container->width / num_clients);
378
379                 /* Check if we need to remap our stack title window, it gets unmapped when the container
380                    is empty in src/handlers.c:unmap_notify() */
381                 if (stack_win->rect.height == 0 && num_clients > 0) {
382                         LOG("remapping stack win\n");
383                         xcb_map_window(conn, stack_win->window);
384                 } else LOG("not remapping stackwin, height = %d, num_clients = %d\n",
385                                 stack_win->rect.height, num_clients);
386
387                 if (container->mode == MODE_TABBED) {
388                         /* By setting num_clients to 1 we force that the stack window will be only one line
389                          * high. The rest of the code is useful in both cases. */
390                         LOG("tabbed mode, setting num_clients = 1\n");
391                         if (num_clients > 1)
392                                 num_clients = 1;
393                 }
394
395                 /* Check if we need to reconfigure our stack title window */
396                 if (update_if_necessary(&(stack_win->rect.x), container->x) |
397                     update_if_necessary(&(stack_win->rect.y), container->y) |
398                     update_if_necessary(&(stack_win->rect.width), container->width) |
399                     update_if_necessary(&(stack_win->rect.height), decoration_height * num_clients)) {
400
401                         /* Configuration can happen in two slightly different ways:
402
403                            If there is no client in fullscreen mode, 5 parameters are passed
404                            (x, y, width, height, stack mode is set to above which means top-most position).
405
406                            If there is a fullscreen client, the fourth parameter is set to to the
407                            fullscreen window as sibling and the stack mode is set to below, which means
408                            that the stack_window will be placed just below the sibling, that is, under
409                            the fullscreen window.
410                          */
411                         uint32_t values[] = { stack_win->rect.x, stack_win->rect.y,
412                                               stack_win->rect.width, stack_win->rect.height,
413                                               XCB_STACK_MODE_ABOVE, XCB_STACK_MODE_BELOW };
414                         uint32_t mask = XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
415                                         XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT |
416                                         XCB_CONFIG_WINDOW_STACK_MODE;
417
418                         /* Raise the stack window, but keep it below the first floating client
419                          * and below the fullscreen client (if any) */
420                         Client *first_floating = TAILQ_FIRST(&(container->workspace->floating_clients));
421                         if (first_floating != TAILQ_END(&(container->workspace->floating_clients))) {
422                                 mask |= XCB_CONFIG_WINDOW_SIBLING;
423                                 values[4] = first_floating->frame;
424                         } else if (container->workspace->fullscreen_client != NULL) {
425                                 mask |= XCB_CONFIG_WINDOW_SIBLING;
426                                 values[4] = container->workspace->fullscreen_client->frame;
427                         }
428
429                         xcb_configure_window(conn, stack_win->window, mask, values);
430                 }
431
432                 /* Prepare the pixmap for usage */
433                 cached_pixmap_prepare(conn, &(stack_win->pixmap));
434
435                 /* Render the decorations of all clients */
436                 CIRCLEQ_FOREACH(client, &(container->clients), clients) {
437                         /* If the client is in fullscreen mode, it does not get reconfigured */
438                         if (container->workspace->fullscreen_client == client) {
439                                 current_client++;
440                                 continue;
441                         }
442
443                         /* Check if we changed client->x or client->y by updating it.
444                          * Note the bitwise OR instead of logical OR to force evaluation of all statements */
445                         if (client->force_reconfigure |
446                             update_if_necessary(&(client->rect.x), container->x) |
447                             update_if_necessary(&(client->rect.y), container->y + (decoration_height * num_clients)) |
448                             update_if_necessary(&(client->rect.width), container->width) |
449                             update_if_necessary(&(client->rect.height), container->height - (decoration_height * num_clients)))
450                                 resize_client(conn, client);
451
452                         client->force_reconfigure = false;
453
454                         int offset_x = 0;
455                         int offset_y = 0;
456                         if (container->mode == MODE_STACK)
457                                 offset_y = current_client++ * decoration_height;
458                         else if (container->mode == MODE_TABBED)
459                                 offset_x = current_client++ * size_each;
460                         decorate_window(conn, client, stack_win->pixmap.id, stack_win->pixmap.gc,
461                                         offset_x, offset_y);
462                 }
463
464                 xcb_copy_area(conn, stack_win->pixmap.id, stack_win->window, stack_win->pixmap.gc,
465                               0, 0, 0, 0, stack_win->rect.width, stack_win->rect.height);
466         }
467 }
468
469 static void render_bars(xcb_connection_t *conn, Workspace *r_ws, int width, int *height) {
470         Client *client;
471         SLIST_FOREACH(client, &(r_ws->screen->dock_clients), dock_clients) {
472                 LOG("client is at %d, should be at %d\n", client->rect.y, *height);
473                 if (client->force_reconfigure |
474                     update_if_necessary(&(client->rect.x), r_ws->rect.x) |
475                     update_if_necessary(&(client->rect.y), *height))
476                         reposition_client(conn, client);
477
478                 if (client->force_reconfigure |
479                     update_if_necessary(&(client->rect.width), width) |
480                     update_if_necessary(&(client->rect.height), client->desired_height))
481                         resize_client(conn, client);
482
483                 client->force_reconfigure = false;
484                 LOG("desired_height = %d\n", client->desired_height);
485                 *height += client->desired_height;
486         }
487 }
488
489 static void render_internal_bar(xcb_connection_t *conn, Workspace *r_ws, int width, int height) {
490         i3Font *font = load_font(conn, config.font);
491         i3Screen *screen = r_ws->screen;
492         enum { SET_NORMAL = 0, SET_FOCUSED = 1 };
493
494         /* Fill the whole bar in black */
495         xcb_change_gc_single(conn, screen->bargc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
496         xcb_rectangle_t rect = {0, 0, width, height};
497         xcb_poly_fill_rectangle(conn, screen->bar, screen->bargc, 1, &rect);
498
499         /* Set font */
500         xcb_change_gc_single(conn, screen->bargc, XCB_GC_FONT, font->id);
501
502         int drawn = 0;
503         for (int c = 0; c < 10; c++) {
504                 if (workspaces[c].screen != screen)
505                         continue;
506
507                 struct Colortriple *color = (screen->current_workspace == c ? &(config.bar.focused) :
508                                              &(config.bar.unfocused));
509                 Workspace *ws = &workspaces[c];
510
511                 /* Draw the outer rect */
512                 xcb_draw_rect(conn, screen->bar, screen->bargc, color->border,
513                               drawn,              /* x */
514                               1,                  /* y */
515                               ws->text_width + 5 + 5, /* width = text width + 5 px left + 5px right */
516                               height - 2          /* height = max. height - 1 px upper and 1 px bottom border */);
517
518                 /* Draw the background of this rect */
519                 xcb_draw_rect(conn, screen->bar, screen->bargc, color->background,
520                               drawn + 1,
521                               2,
522                               ws->text_width + 4 + 4,
523                               height - 4);
524
525                 xcb_change_gc_single(conn, screen->bargc, XCB_GC_FOREGROUND, color->text);
526                 xcb_change_gc_single(conn, screen->bargc, XCB_GC_BACKGROUND, color->background);
527                 xcb_image_text_16(conn, ws->name_len, screen->bar, screen->bargc, drawn + 5 /* X */,
528                                   font->height + 1 /* Y = baseline of font */,
529                                   (xcb_char2b_t*)ws->name);
530                 drawn += ws->text_width + 12;
531         }
532 }
533
534 /*
535  * Modifies the event mask of all clients on the given workspace to either ignore or to handle
536  * enter notifies. It is handy to ignore notifies because they will be sent when a window is mapped
537  * under the cursor, thus when the user didn’t enter the window actively at all.
538  *
539  */
540 void ignore_enter_notify_forall(xcb_connection_t *conn, Workspace *workspace, bool ignore_enter_notify) {
541         Client *client;
542         uint32_t values[1];
543
544         FOR_TABLE(workspace)
545                 CIRCLEQ_FOREACH(client, &(workspace->table[cols][rows]->clients), clients) {
546                         /* Change event mask for the decorations */
547                         values[0] = FRAME_EVENT_MASK;
548                         if (ignore_enter_notify)
549                                 values[0] &= ~(XCB_EVENT_MASK_ENTER_WINDOW);
550                         xcb_change_window_attributes(conn, client->frame, XCB_CW_EVENT_MASK, values);
551
552                         /* Change event mask for the child itself */
553                         values[0] = CHILD_EVENT_MASK;
554                         if (ignore_enter_notify)
555                                 values[0] &= ~(XCB_EVENT_MASK_ENTER_WINDOW);
556                         xcb_change_window_attributes(conn, client->child, XCB_CW_EVENT_MASK, values);
557                 }
558 }
559
560 /*
561  * Renders the given workspace on the given screen
562  *
563  */
564 void render_workspace(xcb_connection_t *conn, i3Screen *screen, Workspace *r_ws) {
565         i3Font *font = load_font(conn, config.font);
566         int width = r_ws->rect.width;
567         int height = r_ws->rect.height;
568
569         /* Reserve space for dock clients */
570         Client *client;
571         SLIST_FOREACH(client, &(screen->dock_clients), dock_clients)
572                 height -= client->desired_height;
573
574         /* Space for the internal bar */
575         height -= (font->height + 6);
576
577         int xoffset[r_ws->rows];
578         int yoffset[r_ws->cols];
579         /* Initialize offsets */
580         for (int cols = 0; cols < r_ws->cols; cols++)
581                 yoffset[cols] = r_ws->rect.y;
582         for (int rows = 0; rows < r_ws->rows; rows++)
583                 xoffset[rows] = r_ws->rect.x;
584
585         ignore_enter_notify_forall(conn, r_ws, true);
586
587         /* Go through the whole table and render what’s necessary */
588         FOR_TABLE(r_ws) {
589                 Container *container = r_ws->table[cols][rows];
590                 int single_width = -1, single_height;
591                 /* Update position of the container */
592                 container->row = rows;
593                 container->col = cols;
594                 container->x = xoffset[rows];
595                 container->y = yoffset[cols];
596                 container->width = 0;
597
598                 for (int c = 0; c < container->colspan; c++) {
599                         if (r_ws->width_factor[cols+c] == 0)
600                                 container->width += (width / r_ws->cols);
601                         else container->width += get_unoccupied_x(r_ws) * r_ws->width_factor[cols+c];
602
603                         if (single_width == -1)
604                                 single_width = container->width;
605                 }
606
607                 //if (container->height_factor == 0)
608                         container->height = (height / r_ws->rows);
609                 //else container->height = get_unoccupied_y(r_ws, cols) * container->height_factor;
610                 single_height = container->height;
611                 container->height *= container->rowspan;
612
613                 /* Render the container if it is not empty */
614                 render_container(conn, container);
615
616                 xoffset[rows] += single_width;
617                 yoffset[cols] += single_height;
618         }
619
620         ignore_enter_notify_forall(conn, r_ws, false);
621
622         render_bars(conn, r_ws, width, &height);
623         render_internal_bar(conn, r_ws, width, font->height + 6);
624 }
625
626 /*
627  * Renders the whole layout, that is: Go through each screen, each workspace, each container
628  * and render each client. This also renders the bars.
629  *
630  * If you don’t need to render *everything*, you should call render_container on the container
631  * you want to refresh.
632  *
633  */
634 void render_layout(xcb_connection_t *conn) {
635         i3Screen *screen;
636
637         TAILQ_FOREACH(screen, virtual_screens, screens)
638                 render_workspace(conn, screen, &(workspaces[screen->current_workspace]));
639
640         xcb_flush(conn);
641 }