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