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