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