]> git.sur5r.net Git - i3/i3/blob - src/render.c
Fix fullscreen mode with dock clients
[i3/i3] / src / render.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  */
4
5 #include "all.h"
6
7 /* change this to 'true' if you want to have additional borders around every
8  * container (for debugging purposes) */
9 static bool show_debug_borders = false;
10
11 /*
12  * Renders a container with layout L_OUTPUT. In this layout, all CT_DOCKAREAs
13  * get the height of their content and the remaining CT_CON gets the rest.
14  *
15  */
16 static void render_l_output(Con *con) {
17     Con *child, *dockchild;
18
19     int x = con->rect.x;
20     int y = con->rect.y;
21     int height = con->rect.height;
22     DLOG("Available height: %d\n", height);
23
24     /* Find the content container and ensure that there is exactly one. Also
25      * check for any non-CT_DOCKAREA clients. */
26     Con *content = NULL;
27     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
28         if (child->type == CT_CON) {
29             if (content != NULL) {
30                 DLOG("More than one CT_CON on output container\n");
31                 assert(false);
32             }
33             content = child;
34         } else if (child->type != CT_DOCKAREA) {
35             DLOG("Child %p of type %d is inside the OUTPUT con\n", child, child->type);
36             assert(false);
37         }
38     }
39
40     assert(content != NULL);
41
42     /* We need to find out if there is a fullscreen con on the current workspace
43      * and take the short-cut to render it directly (the user does not want to
44      * see the dockareas in that case) */
45     Con *ws = con_get_fullscreen_con(content);
46     Con *fullscreen = con_get_fullscreen_con(ws);
47     if (fullscreen) {
48         DLOG("got fs node: %p\n", fullscreen);
49         fullscreen->rect = con->rect;
50         x_raise_con(fullscreen);
51         render_con(fullscreen, true);
52         return;
53     }
54
55     /* First pass: determine the height of all CT_DOCKAREAs (the sum of their
56      * children) and figure out how many pixels we have left for the rest */
57     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
58         if (child->type != CT_DOCKAREA)
59             continue;
60
61         child->rect.height = 0;
62         TAILQ_FOREACH(dockchild, &(child->nodes_head), nodes)
63             child->rect.height += dockchild->geometry.height;
64         DLOG("This dockarea's height: %d\n", child->rect.height);
65
66         height -= child->rect.height;
67     }
68
69     DLOG("Remaining: %d\n", height);
70
71     /* Second pass: Set the widths/heights */
72     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
73         if (child->type == CT_CON) {
74             child->rect.x = x;
75             child->rect.y = y;
76             child->rect.width = con->rect.width;
77             child->rect.height = height;
78         }
79
80         child->rect.x = x;
81         child->rect.y = y;
82         child->rect.width = con->rect.width;
83
84         child->deco_rect.x = 0;
85         child->deco_rect.y = 0;
86         child->deco_rect.width = 0;
87         child->deco_rect.height = 0;
88
89         y += child->rect.height;
90
91         DLOG("child at (%d, %d) with (%d x %d)\n",
92                 child->rect.x, child->rect.y, child->rect.width, child->rect.height);
93         DLOG("x now %d, y now %d\n", x, y);
94         x_raise_con(child);
95         render_con(child, false);
96     }
97 }
98
99 /*
100  * "Renders" the given container (and its children), meaning that all rects are
101  * updated correctly. Note that this function does not call any xcb_*
102  * functions, so the changes are completely done in memory only (and
103  * side-effect free). As soon as you call x_push_changes(), the changes will be
104  * updated in X11.
105  *
106  */
107 void render_con(Con *con, bool render_fullscreen) {
108     DLOG("currently rendering node %p / %s / layout %d\n",
109             con, con->name, con->layout);
110     int children = con_num_children(con);
111     DLOG("children: %d, orientation = %d\n", children, con->orientation);
112
113     /* Copy container rect, subtract container border */
114     /* This is the actually usable space inside this container for clients */
115     Rect rect = con->rect;
116
117     /* Display a border if this is a leaf node. For container nodes, we don’t
118      * draw borders (except when in debug mode) */
119     if (show_debug_borders) {
120         rect.x += 2;
121         rect.y += 2;
122         rect.width -= 2 * 2;
123         rect.height -= 2 * 2;
124     }
125
126     int x = rect.x;
127     int y = rect.y;
128
129     int i = 0;
130
131     con->mapped = true;
132
133     /* if this container contains a window, set the coordinates */
134     if (con->window) {
135         /* depending on the border style, the rect of the child window
136          * needs to be smaller */
137         Rect *inset = &(con->window_rect);
138         *inset = (Rect){0, 0, con->rect.width, con->rect.height};
139         if (!render_fullscreen)
140             *inset = rect_add(*inset, con_border_style_rect(con));
141
142         /* Obey x11 border */
143         inset->width -= (2 * con->border_width);
144         inset->height -= (2 * con->border_width);
145
146         /* Obey the aspect ratio, if any */
147         if (con->proportional_height != 0 &&
148             con->proportional_width != 0) {
149             DLOG("proportional height = %d, width = %d\n", con->proportional_height, con->proportional_width);
150             double new_height = inset->height + 1;
151             int new_width = inset->width;
152
153             while (new_height > inset->height) {
154                 new_height = ((double)con->proportional_height / con->proportional_width) * new_width;
155
156                 if (new_height > inset->height)
157                     new_width--;
158             }
159             /* Center the window */
160             inset->y += ceil(inset->height / 2) - floor(new_height / 2);
161             inset->x += ceil(inset->width / 2) - floor(new_width / 2);
162
163             inset->height = new_height;
164             inset->width = new_width;
165             DLOG("new_height = %f, new_width = %d\n", new_height, new_width);
166         }
167
168         if (con->height_increment > 1) {
169             int old_height = inset->height;
170             inset->height -= (inset->height - con->base_height) % con->height_increment;
171             DLOG("Lost %d pixel due to client's height_increment (%d px, base_height = %d)\n",
172                 old_height - inset->height, con->height_increment, con->base_height);
173         }
174
175         if (con->width_increment > 1) {
176             int old_width = inset->width;
177             inset->width -= (inset->width - con->base_width) % con->width_increment;
178             DLOG("Lost %d pixel due to client's width_increment (%d px, base_width = %d)\n",
179                 old_width - inset->width, con->width_increment, con->base_width);
180         }
181
182         DLOG("child will be at %dx%d with size %dx%d\n", inset->x, inset->y, inset->width, inset->height);
183     }
184
185     /* Check for fullscreen nodes */
186     Con *fullscreen = (con->type == CT_OUTPUT ? NULL : con_get_fullscreen_con(con));
187     if (fullscreen) {
188         DLOG("got fs node: %p\n", fullscreen);
189         fullscreen->rect = rect;
190         x_raise_con(fullscreen);
191         render_con(fullscreen, true);
192         return;
193     }
194
195     /* find the height for the decorations */
196     i3Font *font = load_font(conn, config.font);
197     int deco_height = font->height + 5;
198
199     /* precalculate the sizes to be able to correct rounding errors */
200     int sizes[children];
201     if (con->layout == L_DEFAULT && children > 0) {
202         Con *child;
203         int i = 0, assigned = 0;
204         int total = con->orientation == HORIZ ? rect.width : rect.height;
205         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
206             double percentage = child->percent > 0.0 ? child->percent : 1.0 / children;
207             assigned += sizes[i++] = percentage * total;
208         }
209         assert(assigned == total ||
210                 (assigned > total && assigned - total <= children * 2) ||
211                 (assigned < total && total - assigned <= children * 2));
212         int signal = assigned < total ? 1 : -1;
213         while (assigned != total) {
214             for (i = 0; i < children && assigned != total; ++i) {
215                 sizes[i] += signal;
216                 assigned += signal;
217             }
218         }
219     }
220
221     if (con->layout == L_OUTPUT) {
222         render_l_output(con);
223     } else {
224
225         /* FIXME: refactor this into separate functions: */
226     Con *child;
227     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
228
229         /* default layout */
230         if (con->layout == L_DEFAULT) {
231             if (con->orientation == HORIZ) {
232                 child->rect.x = x;
233                 child->rect.y = y;
234                 child->rect.width = sizes[i];
235                 child->rect.height = rect.height;
236                 x += child->rect.width;
237             } else {
238                 child->rect.x = x;
239                 child->rect.y = y;
240                 child->rect.width = rect.width;
241                 child->rect.height = sizes[i];
242                 y += child->rect.height;
243             }
244
245             /* first we have the decoration, if this is a leaf node */
246             if (con_is_leaf(child) && child->border_style == BS_NORMAL) {
247                 DLOG("that child is a leaf node, subtracting deco\n");
248                 /* TODO: make a function for relative coords? */
249                 child->deco_rect.x = child->rect.x - con->rect.x;
250                 child->deco_rect.y = child->rect.y - con->rect.y;
251
252                 child->rect.y += deco_height;
253                 child->rect.height -= deco_height;
254
255                 child->deco_rect.width = child->rect.width;
256                 child->deco_rect.height = deco_height;
257             }
258         }
259
260         /* stacked layout */
261         else if (con->layout == L_STACKED) {
262             DLOG("stacked con\n");
263             child->rect.x = x;
264             child->rect.y = y;
265             child->rect.width = rect.width;
266             child->rect.height = rect.height;
267
268             child->deco_rect.x = x - con->rect.x;
269             child->deco_rect.y = y - con->rect.y + (i * deco_height);
270             child->deco_rect.width = child->rect.width;
271             child->deco_rect.height = deco_height;
272
273             if (children > 1 || (child->border_style != BS_1PIXEL && child->border_style != BS_NONE)) {
274                 child->rect.y += (deco_height * children);
275                 child->rect.height -= (deco_height * children);
276             }
277         }
278
279         /* tabbed layout */
280         else if (con->layout == L_TABBED) {
281             DLOG("tabbed con\n");
282             child->rect.x = x;
283             child->rect.y = y;
284             child->rect.width = rect.width;
285             child->rect.height = rect.height;
286
287             child->deco_rect.width = child->rect.width / children;
288             child->deco_rect.height = deco_height;
289             child->deco_rect.x = x - con->rect.x + i * child->deco_rect.width;
290             child->deco_rect.y = y - con->rect.y;
291
292             if (children > 1 || (child->border_style != BS_1PIXEL && child->border_style != BS_NONE)) {
293                 child->rect.y += deco_height;
294                 child->rect.height -= deco_height;
295             }
296         }
297
298         /* dockarea layout */
299         else if (con->layout == L_DOCKAREA) {
300             DLOG("dockarea con\n");
301             child->rect.x = x;
302             child->rect.y = y;
303             child->rect.width = rect.width;
304             child->rect.height = child->geometry.height;
305
306             child->deco_rect.x = 0;
307             child->deco_rect.y = 0;
308             child->deco_rect.width = 0;
309             child->deco_rect.height = 0;
310             y += child->rect.height;
311         }
312
313         DLOG("child at (%d, %d) with (%d x %d)\n",
314                 child->rect.x, child->rect.y, child->rect.width, child->rect.height);
315         DLOG("x now %d, y now %d\n", x, y);
316         x_raise_con(child);
317         render_con(child, false);
318         i++;
319     }
320
321     /* in a stacking or tabbed container, we ensure the focused client is raised */
322     if (con->layout == L_STACKED || con->layout == L_TABBED) {
323         Con *foc = TAILQ_FIRST(&(con->focus_head));
324         if (foc != TAILQ_END(&(con->focus_head))) {
325             DLOG("con %p is stacking, raising %p\n", con, foc);
326             x_raise_con(foc);
327             /* by rendering the stacked container again, we handle the case
328              * that we have a non-leaf-container inside the stack. */
329             render_con(foc, false);
330         }
331     }
332     }
333
334     Con *child;
335     TAILQ_FOREACH(child, &(con->floating_head), floating_windows) {
336         DLOG("render floating:\n");
337         DLOG("floating child at (%d,%d) with %d x %d\n", child->rect.x, child->rect.y, child->rect.width, child->rect.height);
338         x_raise_con(child);
339         render_con(child, false);
340     }
341
342     DLOG("-- level up\n");
343 }