]> git.sur5r.net Git - i3/i3/blob - src/x.c
Do not create container pixmap when not needed
[i3/i3] / src / x.c
1 #undef I3__FILE__
2 #define I3__FILE__ "x.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * x.c: Interface to X11, transfers our in-memory state to X11 (see also
10  *      render.c). Basically a big state machine.
11  *
12  */
13 #include "all.h"
14
15 /* Stores the X11 window ID of the currently focused window */
16 xcb_window_t focused_id = XCB_NONE;
17
18 /* The bottom-to-top window stack of all windows which are managed by i3.
19  * Used for x_get_window_stack(). */
20 static xcb_window_t *btt_stack;
21 static int btt_stack_num;
22
23 /* Stores coordinates to warp mouse pointer to if set */
24 static Rect *warp_to;
25
26 /*
27  * Describes the X11 state we may modify (map state, position, window stack).
28  * There is one entry per container. The state represents the current situation
29  * as X11 sees it (with the exception of the order in the state_head CIRCLEQ,
30  * which represents the order that will be pushed to X11, while old_state_head
31  * represents the current order). It will be updated in x_push_changes().
32  *
33  */
34 typedef struct con_state {
35     xcb_window_t id;
36     bool mapped;
37     bool unmap_now;
38     bool child_mapped;
39
40     /** The con for which this state is. */
41     Con *con;
42
43     /* For reparenting, we have a flag (need_reparent) and the X ID of the old
44      * frame this window was in. The latter is necessary because we need to
45      * ignore UnmapNotify events (by changing the window event mask). */
46     bool need_reparent;
47     xcb_window_t old_frame;
48
49     Rect rect;
50     Rect window_rect;
51
52     bool initial;
53
54     char *name;
55
56     CIRCLEQ_ENTRY(con_state) state;
57     CIRCLEQ_ENTRY(con_state) old_state;
58 } con_state;
59
60 CIRCLEQ_HEAD(state_head, con_state) state_head =
61     CIRCLEQ_HEAD_INITIALIZER(state_head);
62
63 CIRCLEQ_HEAD(old_state_head, con_state) old_state_head =
64     CIRCLEQ_HEAD_INITIALIZER(old_state_head);
65
66 /*
67  * Returns the container state for the given frame. This function always
68  * returns a container state (otherwise, there is a bug in the code and the
69  * container state of a container for which x_con_init() was not called was
70  * requested).
71  *
72  */
73 static con_state *state_for_frame(xcb_window_t window) {
74     con_state *state;
75     CIRCLEQ_FOREACH(state, &state_head, state)
76         if (state->id == window)
77             return state;
78
79     /* TODO: better error handling? */
80     ELOG("No state found\n");
81     assert(false);
82     return NULL;
83 }
84
85 /*
86  * Initializes the X11 part for the given container. Called exactly once for
87  * every container from con_new().
88  *
89  */
90 void x_con_init(Con *con, uint16_t depth) {
91     /* TODO: maybe create the window when rendering first? we could then even
92      * get the initial geometry right */
93
94     uint32_t mask = 0;
95     uint32_t values[5];
96
97     xcb_visualid_t visual = XCB_COPY_FROM_PARENT;
98     xcb_colormap_t win_colormap = XCB_NONE;
99     if (depth != root_depth && depth != XCB_COPY_FROM_PARENT) {
100         /* For custom visuals, we need to create a colormap before creating
101          * this window. It will be freed directly after creating the window. */
102         visual = get_visualid_by_depth(depth);
103         win_colormap = xcb_generate_id(conn);
104         xcb_create_colormap_checked(conn, XCB_COLORMAP_ALLOC_NONE, win_colormap, root, visual);
105
106         /* We explicitly set a background color and border color (even though we
107          * don’t even have a border) because the X11 server requires us to when
108          * using 32 bit color depths, see
109          * http://stackoverflow.com/questions/3645632 */
110         mask |= XCB_CW_BACK_PIXEL;
111         values[0] = root_screen->black_pixel;
112
113         mask |= XCB_CW_BORDER_PIXEL;
114         values[1] = root_screen->black_pixel;
115
116         /* our own frames should not be managed */
117         mask |= XCB_CW_OVERRIDE_REDIRECT;
118         values[2] = 1;
119
120         /* see include/xcb.h for the FRAME_EVENT_MASK */
121         mask |= XCB_CW_EVENT_MASK;
122         values[3] = FRAME_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
123
124         mask |= XCB_CW_COLORMAP;
125         values[4] = win_colormap;
126     } else {
127         /* our own frames should not be managed */
128         mask = XCB_CW_OVERRIDE_REDIRECT;
129         values[0] = 1;
130
131         /* see include/xcb.h for the FRAME_EVENT_MASK */
132         mask |= XCB_CW_EVENT_MASK;
133         values[1] = FRAME_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
134
135         mask |= XCB_CW_COLORMAP;
136         values[2] = colormap;
137     }
138
139     Rect dims = { -15, -15, 10, 10 };
140     con->frame = create_window(conn, dims, depth, visual, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCURSOR_CURSOR_POINTER, false, mask, values);
141
142     if (win_colormap != XCB_NONE)
143         xcb_free_colormap(conn, win_colormap);
144
145     struct con_state *state = scalloc(sizeof(struct con_state));
146     state->id = con->frame;
147     state->mapped = false;
148     state->initial = true;
149     CIRCLEQ_INSERT_HEAD(&state_head, state, state);
150     CIRCLEQ_INSERT_HEAD(&old_state_head, state, old_state);
151     DLOG("adding new state for window id 0x%08x\n", state->id);
152 }
153
154 /*
155  * Re-initializes the associated X window state for this container. You have
156  * to call this when you assign a client to an empty container to ensure that
157  * its state gets updated correctly.
158  *
159  */
160 void x_reinit(Con *con) {
161     struct con_state *state;
162
163     if ((state = state_for_frame(con->frame)) == NULL) {
164         ELOG("window state not found\n");
165         return;
166     }
167
168     DLOG("resetting state %p to initial\n", state);
169     state->initial = true;
170     state->child_mapped = false;
171     state->con = con;
172     memset(&(state->window_rect), 0, sizeof(Rect));
173 }
174
175 /*
176  * Reparents the child window of the given container (necessary for sticky
177  * containers). The reparenting happens in the next call of x_push_changes().
178  *
179  */
180 void x_reparent_child(Con *con, Con *old) {
181     struct con_state *state;
182     if ((state = state_for_frame(con->frame)) == NULL) {
183         ELOG("window state for con not found\n");
184         return;
185     }
186
187     state->need_reparent = true;
188     state->old_frame = old->frame;
189 }
190
191 /*
192  * Moves a child window from Container src to Container dest.
193  *
194  */
195 void x_move_win(Con *src, Con *dest) {
196     struct con_state *state_src, *state_dest;
197
198     if ((state_src = state_for_frame(src->frame)) == NULL) {
199         ELOG("window state for src not found\n");
200         return;
201     }
202
203     if ((state_dest = state_for_frame(dest->frame)) == NULL) {
204         ELOG("window state for dest not found\n");
205         return;
206     }
207
208     state_dest->con = state_src->con;
209     state_src->con = NULL;
210
211     Rect zero = { 0, 0, 0, 0 };
212     if (memcmp(&(state_dest->window_rect), &(zero), sizeof(Rect)) == 0) {
213         memcpy(&(state_dest->window_rect), &(state_src->window_rect), sizeof(Rect));
214         DLOG("COPYING RECT\n");
215     }
216 }
217
218 /*
219  * Kills the window decoration associated with the given container.
220  *
221  */
222 void x_con_kill(Con *con) {
223     con_state *state;
224
225     xcb_destroy_window(conn, con->frame);
226     xcb_free_pixmap(conn, con->pixmap);
227     xcb_free_gc(conn, con->pm_gc);
228     state = state_for_frame(con->frame);
229     CIRCLEQ_REMOVE(&state_head, state, state);
230     CIRCLEQ_REMOVE(&old_state_head, state, old_state);
231     FREE(state->name);
232     free(state);
233
234     /* Invalidate focused_id to correctly focus new windows with the same ID */
235     focused_id = XCB_NONE;
236 }
237
238 /*
239  * Returns true if the client supports the given protocol atom (like WM_DELETE_WINDOW)
240  *
241  */
242 bool window_supports_protocol(xcb_window_t window, xcb_atom_t atom) {
243     xcb_get_property_cookie_t cookie;
244     xcb_icccm_get_wm_protocols_reply_t protocols;
245     bool result = false;
246
247     cookie = xcb_icccm_get_wm_protocols(conn, window, A_WM_PROTOCOLS);
248     if (xcb_icccm_get_wm_protocols_reply(conn, cookie, &protocols, NULL) != 1)
249         return false;
250
251     /* Check if the client’s protocols have the requested atom set */
252     for (uint32_t i = 0; i < protocols.atoms_len; i++)
253         if (protocols.atoms[i] == atom)
254             result = true;
255
256     xcb_icccm_get_wm_protocols_reply_wipe(&protocols);
257
258     return result;
259 }
260
261 /*
262  * Kills the given X11 window using WM_DELETE_WINDOW (if supported).
263  *
264  */
265 void x_window_kill(xcb_window_t window, kill_window_t kill_window) {
266     /* if this window does not support WM_DELETE_WINDOW, we kill it the hard way */
267     if (!window_supports_protocol(window, A_WM_DELETE_WINDOW)) {
268         if (kill_window == KILL_WINDOW) {
269             LOG("Killing specific window 0x%08x\n", window);
270             xcb_destroy_window(conn, window);
271         } else {
272             LOG("Killing the X11 client which owns window 0x%08x\n", window);
273             xcb_kill_client(conn, window);
274         }
275         return;
276     }
277
278     /* Every X11 event is 32 bytes long. Therefore, XCB will copy 32 bytes.
279      * In order to properly initialize these bytes, we allocate 32 bytes even
280      * though we only need less for an xcb_configure_notify_event_t */
281     void *event = scalloc(32);
282     xcb_client_message_event_t *ev = event;
283
284     ev->response_type = XCB_CLIENT_MESSAGE;
285     ev->window = window;
286     ev->type = A_WM_PROTOCOLS;
287     ev->format = 32;
288     ev->data.data32[0] = A_WM_DELETE_WINDOW;
289     ev->data.data32[1] = XCB_CURRENT_TIME;
290
291     LOG("Sending WM_DELETE to the client\n");
292     xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)ev);
293     xcb_flush(conn);
294     free(event);
295 }
296
297 /*
298  * Draws the decoration of the given container onto its parent.
299  *
300  */
301 void x_draw_decoration(Con *con) {
302     Con *parent = con->parent;
303     bool leaf = con_is_leaf(con);
304
305     /* This code needs to run for:
306      *  • leaf containers
307      *  • non-leaf containers which are in a stacked/tabbed container
308      *
309      * It does not need to run for:
310      *  • direct children of outputs or dockareas
311      *  • floating containers (they don’t have a decoration)
312      */
313     if ((!leaf &&
314          parent->layout != L_STACKED &&
315          parent->layout != L_TABBED) ||
316         parent->type == CT_OUTPUT ||
317         parent->type == CT_DOCKAREA ||
318         con->type == CT_FLOATING_CON)
319         return;
320
321     /* Skip containers whose height is 0 (for example empty dockareas) */
322     if (con->rect.height == 0)
323         return;
324
325     /* Skip containers whose pixmap has not yet been created (can happen when
326      * decoration rendering happens recursively for a window for which
327      * x_push_node() was not yet called) */
328     if (leaf && con->pixmap == XCB_NONE)
329         return;
330
331     /* 1: build deco_params and compare with cache */
332     struct deco_render_params *p = scalloc(sizeof(struct deco_render_params));
333
334     /* find out which colors to use */
335     if (con->urgent)
336         p->color = &config.client.urgent;
337     else if (con == focused || con_inside_focused(con))
338         p->color = &config.client.focused;
339     else if (con == TAILQ_FIRST(&(parent->focus_head)))
340         p->color = &config.client.focused_inactive;
341     else
342         p->color = &config.client.unfocused;
343
344     p->border_style = con_border_style(con);
345
346     Rect *r = &(con->rect);
347     Rect *w = &(con->window_rect);
348     p->con_rect = (struct width_height){ r->width, r->height };
349     p->con_window_rect = (struct width_height){ w->width, w->height };
350     p->con_deco_rect = con->deco_rect;
351     p->background = config.client.background;
352     p->con_is_leaf = con_is_leaf(con);
353     p->parent_layout = con->parent->layout;
354
355     if (con->deco_render_params != NULL &&
356         (con->window == NULL || !con->window->name_x_changed) &&
357         !parent->pixmap_recreated &&
358         !con->pixmap_recreated &&
359         memcmp(p, con->deco_render_params, sizeof(struct deco_render_params)) == 0) {
360         free(p);
361         goto copy_pixmaps;
362     }
363
364     Con *next = con;
365     while ((next = TAILQ_NEXT(next, nodes))) {
366         FREE(next->deco_render_params);
367     }
368
369     FREE(con->deco_render_params);
370     con->deco_render_params = p;
371
372     if (con->window != NULL && con->window->name_x_changed)
373         con->window->name_x_changed = false;
374
375     parent->pixmap_recreated = false;
376     con->pixmap_recreated = false;
377
378     /* 2: draw the client.background, but only for the parts around the client_rect */
379     if (con->window != NULL) {
380         xcb_rectangle_t background[] = {
381             /* top area */
382             { 0, 0, r->width, w->y },
383             /* bottom area */
384             { 0, (w->y + w->height), r->width, r->height - (w->y + w->height) },
385             /* left area */
386             { 0, 0, w->x, r->height },
387             /* right area */
388             { w->x + w->width, 0, r->width - (w->x + w->width), r->height }
389         };
390 #if 0
391         for (int i = 0; i < 4; i++)
392             DLOG("rect is (%d, %d) with %d x %d\n",
393                     background[i].x,
394                     background[i].y,
395                     background[i].width,
396                     background[i].height
397                 );
398 #endif
399
400         xcb_change_gc(conn, con->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]) { config.client.background });
401         xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, sizeof(background) / sizeof(xcb_rectangle_t), background);
402     }
403
404     /* 3: draw a rectangle in border color around the client */
405     if (p->border_style != BS_NONE && p->con_is_leaf) {
406         /* We might hide some borders adjacent to the screen-edge */
407         adjacent_t borders_to_hide = ADJ_NONE;
408         borders_to_hide = con_adjacent_borders(con) & config.hide_edge_borders;
409
410         Rect br = con_border_style_rect(con);
411 #if 0
412         DLOG("con->rect spans %d x %d\n", con->rect.width, con->rect.height);
413         DLOG("border_rect spans (%d, %d) with %d x %d\n", br.x, br.y, br.width, br.height);
414         DLOG("window_rect spans (%d, %d) with %d x %d\n", con->window_rect.x, con->window_rect.y, con->window_rect.width, con->window_rect.height);
415 #endif
416
417         /* These rectangles represents the border around the child window
418          * (left, bottom and right part). We don’t just fill the whole
419          * rectangle because some childs are not freely resizable and we want
420          * their background color to "shine through". */
421         xcb_change_gc(conn, con->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->background });
422         if (!(borders_to_hide & ADJ_LEFT_SCREEN_EDGE)) {
423             xcb_rectangle_t leftline = { 0, 0, br.x, r->height };
424             xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, 1, &leftline);
425         }
426         if (!(borders_to_hide & ADJ_RIGHT_SCREEN_EDGE)) {
427             xcb_rectangle_t rightline = { r->width + br.width + br.x, 0, r->width, r->height };
428             xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, 1, &rightline);
429         }
430         if (!(borders_to_hide & ADJ_LOWER_SCREEN_EDGE)) {
431             xcb_rectangle_t bottomline = { 0, r->height + br.height + br.y, r->width, r->height };
432             xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, 1, &bottomline);
433         }
434         /* 1pixel border needs an additional line at the top */
435         if (p->border_style == BS_PIXEL && !(borders_to_hide & ADJ_UPPER_SCREEN_EDGE)) {
436             xcb_rectangle_t topline = { br.x, 0, con->rect.width + br.width + br.x, br.y };
437             xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, 1, &topline);
438         }
439
440         /* Highlight the side of the border at which the next window will be
441          * opened if we are rendering a single window within a split container
442          * (which is undistinguishable from a single window outside a split
443          * container otherwise. */
444         if (TAILQ_NEXT(con, nodes) == NULL &&
445             TAILQ_PREV(con, nodes_head, nodes) == NULL &&
446             con->parent->type != CT_FLOATING_CON) {
447             xcb_change_gc(conn, con->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->indicator });
448             if (p->parent_layout == L_SPLITH)
449                 xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, 1, (xcb_rectangle_t[]){
450                         { r->width + br.width + br.x, br.y, r->width, r->height + br.height } });
451             else if (p->parent_layout == L_SPLITV)
452                 xcb_poly_fill_rectangle(conn, con->pixmap, con->pm_gc, 1, (xcb_rectangle_t[]){
453                         { br.x, r->height + br.height + br.y, r->width - (2 * br.x), r->height } });
454         }
455
456     }
457
458     /* if this is a borderless/1pixel window, we don’t need to render the
459      * decoration. */
460     if (p->border_style != BS_NORMAL)
461         goto copy_pixmaps;
462
463     /* 4: paint the bar */
464     xcb_change_gc(conn, parent->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->background });
465     xcb_rectangle_t drect = { con->deco_rect.x, con->deco_rect.y, con->deco_rect.width, con->deco_rect.height };
466     xcb_poly_fill_rectangle(conn, parent->pixmap, parent->pm_gc, 1, &drect);
467
468     /* 5: draw two unconnected horizontal lines in border color */
469     xcb_change_gc(conn, parent->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->border });
470     Rect *dr = &(con->deco_rect);
471     int deco_diff_l = 2;
472     int deco_diff_r = 2;
473     if (parent->layout == L_TABBED) {
474         if (TAILQ_PREV(con, nodes_head, nodes) != NULL)
475             deco_diff_l = 0;
476         if (TAILQ_NEXT(con, nodes) != NULL)
477             deco_diff_r = 0;
478     }
479     xcb_segment_t segments[] = {
480         { dr->x,                 dr->y,
481           dr->x + dr->width - 1, dr->y },
482
483         { dr->x + deco_diff_l,                 dr->y + dr->height - 1,
484           dr->x - deco_diff_r + dr->width - 1, dr->y + dr->height - 1 }
485     };
486     xcb_poly_segment(conn, parent->pixmap, parent->pm_gc, 2, segments);
487
488     /* 6: draw the title */
489     set_font_colors(parent->pm_gc, p->color->text, p->color->background);
490     int text_offset_y = (con->deco_rect.height - config.font.height) / 2;
491
492     struct Window *win = con->window;
493     if (win == NULL) {
494         /* we have a split container which gets a representation
495          * of its children as title
496          */
497         char *title;
498         char *tree = con_get_tree_representation(con);
499         sasprintf(&title, "i3: %s", tree);
500         free(tree);
501
502         draw_text_ascii(title,
503                 parent->pixmap, parent->pm_gc,
504                 con->deco_rect.x + 2, con->deco_rect.y + text_offset_y,
505                 con->deco_rect.width - 2);
506         free(title);
507
508         goto after_title;
509     }
510
511     if (win->name == NULL)
512         goto copy_pixmaps;
513
514     int indent_level = 0,
515         indent_mult = 0;
516     Con *il_parent = parent;
517     if (il_parent->layout != L_STACKED) {
518         while (1) {
519             //DLOG("il_parent = %p, layout = %d\n", il_parent, il_parent->layout);
520             if (il_parent->layout == L_STACKED)
521                 indent_level++;
522             if (il_parent->type == CT_WORKSPACE || il_parent->type == CT_DOCKAREA || il_parent->type == CT_OUTPUT)
523                 break;
524             il_parent = il_parent->parent;
525             indent_mult++;
526         }
527     }
528     //DLOG("indent_level = %d, indent_mult = %d\n", indent_level, indent_mult);
529     int indent_px = (indent_level * 5) * indent_mult;
530
531     draw_text(win->name,
532             parent->pixmap, parent->pm_gc,
533             con->deco_rect.x + 2 + indent_px, con->deco_rect.y + text_offset_y,
534             con->deco_rect.width - 2 - indent_px);
535
536 after_title:
537     /* Since we don’t clip the text at all, it might in some cases be painted
538      * on the border pixels on the right side of a window. Therefore, we draw
539      * the right border again after rendering the text (and the unconnected
540      * lines in border color). */
541
542     /* Draw a 1px separator line before and after every tab, so that tabs can
543      * be easily distinguished. */
544     if (parent->layout == L_TABBED) {
545         xcb_change_gc(conn, parent->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->border });
546     } else {
547         xcb_change_gc(conn, parent->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->background });
548     }
549     xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, parent->pixmap, parent->pm_gc, 6,
550                   (xcb_point_t[]){
551                       { dr->x + dr->width, dr->y },
552                       { dr->x + dr->width, dr->y + dr->height },
553                       { dr->x + dr->width - 1, dr->y },
554                       { dr->x + dr->width - 1, dr->y + dr->height },
555                       { dr->x, dr->y + dr->height },
556                       { dr->x, dr->y },
557                   });
558
559     xcb_change_gc(conn, parent->pm_gc, XCB_GC_FOREGROUND, (uint32_t[]){ p->color->border });
560     xcb_poly_segment(conn, parent->pixmap, parent->pm_gc, 2, segments);
561
562 copy_pixmaps:
563     xcb_copy_area(conn, con->pixmap, con->frame, con->pm_gc, 0, 0, 0, 0, con->rect.width, con->rect.height);
564 }
565
566 /*
567  * Recursively calls x_draw_decoration. This cannot be done in x_push_node
568  * because x_push_node uses focus order to recurse (see the comment above)
569  * while drawing the decoration needs to happen in the actual order.
570  *
571  */
572 void x_deco_recurse(Con *con) {
573     Con *current;
574     bool leaf = TAILQ_EMPTY(&(con->nodes_head)) &&
575                 TAILQ_EMPTY(&(con->floating_head));
576     con_state *state = state_for_frame(con->frame);
577
578     if (!leaf) {
579         TAILQ_FOREACH(current, &(con->nodes_head), nodes)
580             x_deco_recurse(current);
581
582         TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
583             x_deco_recurse(current);
584
585         if (state->mapped)
586             xcb_copy_area(conn, con->pixmap, con->frame, con->pm_gc, 0, 0, 0, 0, con->rect.width, con->rect.height);
587     }
588
589     if ((con->type != CT_ROOT && con->type != CT_OUTPUT) &&
590         (!leaf || con->mapped))
591         x_draw_decoration(con);
592 }
593
594 /*
595  * This function pushes the properties of each node of the layout tree to
596  * X11 if they have changed (like the map state, position of the window, …).
597  * It recursively traverses all children of the given node.
598  *
599  */
600 void x_push_node(Con *con) {
601     Con *current;
602     con_state *state;
603     Rect rect = con->rect;
604
605     //DLOG("Pushing changes for node %p / %s\n", con, con->name);
606     state = state_for_frame(con->frame);
607
608     if (state->name != NULL) {
609         DLOG("pushing name %s for con %p\n", state->name, con);
610
611         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->frame,
612                             XCB_ATOM_WM_NAME, XCB_ATOM_STRING, 8, strlen(state->name), state->name);
613         FREE(state->name);
614     }
615
616     if (con->window == NULL) {
617         /* Calculate the height of all window decorations which will be drawn on to
618          * this frame. */
619         uint32_t max_y = 0, max_height = 0;
620         TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
621             Rect *dr = &(current->deco_rect);
622             if (dr->y >= max_y && dr->height >= max_height) {
623                 max_y = dr->y;
624                 max_height = dr->height;
625             }
626         }
627         rect.height = max_y + max_height;
628         if (rect.height == 0)
629             con->mapped = false;
630     }
631
632     /* reparent the child window (when the window was moved due to a sticky
633      * container) */
634     if (state->need_reparent && con->window != NULL) {
635         DLOG("Reparenting child window\n");
636
637         /* Temporarily set the event masks to XCB_NONE so that we won’t get
638          * UnmapNotify events (otherwise the handler would close the container).
639          * These events are generated automatically when reparenting. */
640         uint32_t values[] = { XCB_NONE };
641         xcb_change_window_attributes(conn, state->old_frame, XCB_CW_EVENT_MASK, values);
642         xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
643
644         xcb_reparent_window(conn, con->window->id, con->frame, 0, 0);
645
646         values[0] = FRAME_EVENT_MASK;
647         xcb_change_window_attributes(conn, state->old_frame, XCB_CW_EVENT_MASK, values);
648         values[0] = CHILD_EVENT_MASK;
649         xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
650
651         state->old_frame = XCB_NONE;
652         state->need_reparent = false;
653
654         con->ignore_unmap++;
655         DLOG("ignore_unmap for reparenting of con %p (win 0x%08x) is now %d\n",
656                 con, con->window->id, con->ignore_unmap);
657     }
658
659     bool fake_notify = false;
660     /* Set new position if rect changed (and if height > 0) */
661     if (memcmp(&(state->rect), &rect, sizeof(Rect)) != 0 &&
662         rect.height > 0) {
663         /* We first create the new pixmap, then render to it, set it as the
664          * background and only afterwards change the window size. This reduces
665          * flickering. */
666
667         /* As the pixmap only depends on the size and not on the position, it
668          * is enough to check if width/height have changed. Also, we don’t
669          * create a pixmap at all when the window is actually not visible
670          * (height == 0) or when it is not needed. */
671         bool has_rect_changed = (state->rect.width != rect.width || state->rect.height != rect.height);
672
673         /* The pixmap of a borderless container will not be used (except for
674          * the titlebar in a stack or tabs). It can only get in the way. (bug
675          * #1013). */
676         bool is_pixmap_needed = (con->border_style != BS_NONE ||
677                 con->parent->layout == L_STACKED ||
678                 con->parent->layout == L_TABBED);
679
680         /* Check if the container has an unneeded pixmap left over from
681          * previously having a border or titlebar. */
682         if (!is_pixmap_needed && con->pixmap != XCB_NONE) {
683             xcb_free_pixmap(conn, con->pixmap);
684             con->pixmap = XCB_NONE;
685         }
686
687         if (has_rect_changed && is_pixmap_needed) {
688             if (con->pixmap == 0) {
689                 con->pixmap = xcb_generate_id(conn);
690                 con->pm_gc = xcb_generate_id(conn);
691             } else {
692                 xcb_free_pixmap(conn, con->pixmap);
693                 xcb_free_gc(conn, con->pm_gc);
694             }
695
696             uint16_t win_depth = root_depth;
697             if (con->window)
698                 win_depth = con->window->depth;
699
700             xcb_create_pixmap(conn, win_depth, con->pixmap, con->frame, rect.width, rect.height);
701
702             /* For the graphics context, we disable GraphicsExposure events.
703              * Those will be sent when a CopyArea request cannot be fulfilled
704              * properly due to parts of the source being unmapped or otherwise
705              * unavailable. Since we always copy from pixmaps to windows, this
706              * is not a concern for us. */
707             uint32_t values[] = { 0 };
708             xcb_create_gc(conn, con->pm_gc, con->pixmap, XCB_GC_GRAPHICS_EXPOSURES, values);
709
710             con->pixmap_recreated = true;
711
712             /* Don’t render the decoration for windows inside a stack which are
713              * not visible right now */
714             if (!con->parent ||
715                 con->parent->layout != L_STACKED ||
716                 TAILQ_FIRST(&(con->parent->focus_head)) == con)
717                 /* Render the decoration now to make the correct decoration visible
718                  * from the very first moment. Later calls will be cached, so this
719                  * doesn’t hurt performance. */
720                 x_deco_recurse(con);
721         }
722
723         DLOG("setting rect (%d, %d, %d, %d)\n", rect.x, rect.y, rect.width, rect.height);
724         /* flush to ensure that the following commands are sent in a single
725          * buffer and will be processed directly afterwards (the contents of a
726          * window get lost when resizing it, therefore we want to provide it as
727          * fast as possible) */
728         xcb_flush(conn);
729         xcb_set_window_rect(conn, con->frame, rect);
730         if (con->pixmap != XCB_NONE)
731             xcb_copy_area(conn, con->pixmap, con->frame, con->pm_gc, 0, 0, 0, 0, con->rect.width, con->rect.height);
732         xcb_flush(conn);
733
734         memcpy(&(state->rect), &rect, sizeof(Rect));
735         fake_notify = true;
736     }
737
738     /* dito, but for child windows */
739     if (con->window != NULL &&
740         memcmp(&(state->window_rect), &(con->window_rect), sizeof(Rect)) != 0) {
741         DLOG("setting window rect (%d, %d, %d, %d)\n",
742             con->window_rect.x, con->window_rect.y, con->window_rect.width, con->window_rect.height);
743         xcb_set_window_rect(conn, con->window->id, con->window_rect);
744         memcpy(&(state->window_rect), &(con->window_rect), sizeof(Rect));
745         fake_notify = true;
746     }
747
748     /* Map if map state changed, also ensure that the child window
749      * is changed if we are mapped and there is a new, unmapped child window.
750      * Unmaps are handled in x_push_node_unmaps(). */
751     if ((state->mapped != con->mapped || (con->window != NULL && !state->child_mapped)) &&
752         con->mapped) {
753         xcb_void_cookie_t cookie;
754
755         if (con->window != NULL) {
756             /* Set WM_STATE_NORMAL because GTK applications don’t want to
757              * drag & drop if we don’t. Also, xprop(1) needs it. */
758             long data[] = { XCB_ICCCM_WM_STATE_NORMAL, XCB_NONE };
759             xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
760                                 A_WM_STATE, A_WM_STATE, 32, 2, data);
761         }
762
763         uint32_t values[1];
764         if (!state->child_mapped && con->window != NULL) {
765             cookie = xcb_map_window(conn, con->window->id);
766
767             /* We are interested in EnterNotifys as soon as the window is
768              * mapped */
769             values[0] = CHILD_EVENT_MASK;
770             xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
771             DLOG("mapping child window (serial %d)\n", cookie.sequence);
772             state->child_mapped = true;
773         }
774
775         cookie = xcb_map_window(conn, con->frame);
776
777         values[0] = FRAME_EVENT_MASK;
778         xcb_change_window_attributes(conn, con->frame, XCB_CW_EVENT_MASK, values);
779
780         /* copy the pixmap contents to the frame window immediately after mapping */
781         if (con->pixmap != XCB_NONE)
782             xcb_copy_area(conn, con->pixmap, con->frame, con->pm_gc, 0, 0, 0, 0, con->rect.width, con->rect.height);
783         xcb_flush(conn);
784
785         DLOG("mapping container %08x (serial %d)\n", con->frame, cookie.sequence);
786         state->mapped = con->mapped;
787     }
788
789     state->unmap_now = (state->mapped != con->mapped) && !con->mapped;
790
791     if (fake_notify) {
792         DLOG("Sending fake configure notify\n");
793         fake_absolute_configure_notify(con);
794     }
795
796     /* Handle all children and floating windows of this node. We recurse
797      * in focus order to display the focused client in a stack first when
798      * switching workspaces (reduces flickering). */
799     TAILQ_FOREACH(current, &(con->focus_head), focused)
800         x_push_node(current);
801 }
802
803 /*
804  * Same idea as in x_push_node(), but this function only unmaps windows. It is
805  * necessary to split this up to handle new fullscreen clients properly: The
806  * new window needs to be mapped and focus needs to be set *before* the
807  * underlying windows are unmapped. Otherwise, focus will revert to the
808  * PointerRoot and will then be set to the new window, generating unnecessary
809  * FocusIn/FocusOut events.
810  *
811  */
812 static void x_push_node_unmaps(Con *con) {
813     Con *current;
814     con_state *state;
815
816     //DLOG("Pushing changes (with unmaps) for node %p / %s\n", con, con->name);
817     state = state_for_frame(con->frame);
818
819     /* map/unmap if map state changed, also ensure that the child window
820      * is changed if we are mapped *and* in initial state (meaning the
821      * container was empty before, but now got a child) */
822     if (state->unmap_now) {
823         xcb_void_cookie_t cookie;
824         if (con->window != NULL) {
825             /* Set WM_STATE_WITHDRAWN, it seems like Java apps need it */
826             long data[] = { XCB_ICCCM_WM_STATE_WITHDRAWN, XCB_NONE };
827             xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
828                                 A_WM_STATE, A_WM_STATE, 32, 2, data);
829         }
830
831         cookie = xcb_unmap_window(conn, con->frame);
832         DLOG("unmapping container %p / %s (serial %d)\n", con, con->name, cookie.sequence);
833         /* we need to increase ignore_unmap for this container (if it
834          * contains a window) and for every window "under" this one which
835          * contains a window */
836         if (con->window != NULL) {
837             con->ignore_unmap++;
838             DLOG("ignore_unmap for con %p (frame 0x%08x) now %d\n", con, con->frame, con->ignore_unmap);
839         }
840         state->mapped = con->mapped;
841     }
842
843     /* handle all children and floating windows of this node */
844     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
845         x_push_node_unmaps(current);
846
847     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
848         x_push_node_unmaps(current);
849 }
850
851 /*
852  * Pushes all changes (state of each node, see x_push_node() and the window
853  * stack) to X11.
854  *
855  * NOTE: We need to push the stack first so that the windows have the correct
856  * stacking order. This is relevant for workspace switching where we map the
857  * windows because mapping may generate EnterNotify events. When they are
858  * generated in the wrong order, this will cause focus problems when switching
859  * workspaces.
860  *
861  */
862 void x_push_changes(Con *con) {
863     con_state *state;
864     xcb_query_pointer_cookie_t pointercookie;
865
866     /* If we need to warp later, we request the pointer position as soon as possible */
867     if (warp_to) {
868         pointercookie = xcb_query_pointer(conn, root);
869     }
870
871     DLOG("-- PUSHING WINDOW STACK --\n");
872     //DLOG("Disabling EnterNotify\n");
873     uint32_t values[1] = { XCB_NONE };
874     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
875         if (state->mapped)
876             xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
877     }
878     //DLOG("Done, EnterNotify disabled\n");
879     bool order_changed = false;
880     bool stacking_changed = false;
881
882     /* count first, necessary to (re)allocate memory for the bottom-to-top
883      * stack afterwards */
884     int cnt = 0;
885     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state)
886         if (state->con && state->con->window)
887             cnt++;
888
889     if (cnt != btt_stack_num) {
890         btt_stack = srealloc(btt_stack, sizeof(xcb_window_t) * cnt);
891         btt_stack_num = cnt;
892     }
893
894     xcb_window_t *walk = btt_stack;
895
896     /* X11 correctly represents the stack if we push it from bottom to top */
897     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
898         if (state->con && state->con->window)
899             memcpy(walk++, &(state->con->window->id), sizeof(xcb_window_t));
900
901         //DLOG("stack: 0x%08x\n", state->id);
902         con_state *prev = CIRCLEQ_PREV(state, state);
903         con_state *old_prev = CIRCLEQ_PREV(state, old_state);
904         if (prev != old_prev)
905             order_changed = true;
906         if ((state->initial || order_changed) && prev != CIRCLEQ_END(&state_head)) {
907             stacking_changed = true;
908             //DLOG("Stacking 0x%08x above 0x%08x\n", prev->id, state->id);
909             uint32_t mask = 0;
910             mask |= XCB_CONFIG_WINDOW_SIBLING;
911             mask |= XCB_CONFIG_WINDOW_STACK_MODE;
912             uint32_t values[] = {state->id, XCB_STACK_MODE_ABOVE};
913
914             xcb_configure_window(conn, prev->id, mask, values);
915         }
916         state->initial = false;
917     }
918
919     /* If we re-stacked something (or a new window appeared), we need to update
920      * the _NET_CLIENT_LIST_STACKING hint */
921     if (stacking_changed)
922         ewmh_update_client_list_stacking(btt_stack, btt_stack_num);
923
924     DLOG("PUSHING CHANGES\n");
925     x_push_node(con);
926
927     if (warp_to) {
928         xcb_query_pointer_reply_t *pointerreply = xcb_query_pointer_reply(conn, pointercookie, NULL);
929         if (!pointerreply) {
930             ELOG("Could not query pointer position, not warping pointer\n");
931         } else {
932             int mid_x = warp_to->x + (warp_to->width / 2);
933             int mid_y = warp_to->y + (warp_to->height / 2);
934
935             Output *current = get_output_containing(pointerreply->root_x, pointerreply->root_y);
936             Output *target = get_output_containing(mid_x, mid_y);
937             if (current != target) {
938                 /* Ignore MotionNotify events generated by warping */
939                 xcb_change_window_attributes(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){ XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT });
940                 xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0, mid_x, mid_y);
941                 xcb_change_window_attributes(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){ ROOT_EVENT_MASK });
942             }
943         }
944         warp_to = NULL;
945     }
946
947     //DLOG("Re-enabling EnterNotify\n");
948     values[0] = FRAME_EVENT_MASK;
949     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
950         if (state->mapped)
951             xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
952     }
953     //DLOG("Done, EnterNotify re-enabled\n");
954
955     x_deco_recurse(con);
956
957     xcb_window_t to_focus = focused->frame;
958     if (focused->window != NULL)
959         to_focus = focused->window->id;
960
961     if (focused_id != to_focus) {
962         if (!focused->mapped) {
963             DLOG("Not updating focus (to %p / %s), focused window is not mapped.\n", focused, focused->name);
964             /* Invalidate focused_id to correctly focus new windows with the same ID */
965             focused_id = XCB_NONE;
966         } else {
967             bool set_focus = true;
968             if (focused->window != NULL &&
969                 focused->window->needs_take_focus) {
970                 DLOG("Updating focus by sending WM_TAKE_FOCUS to window 0x%08x (focused: %p / %s)\n",
971                      to_focus, focused, focused->name);
972                 send_take_focus(to_focus);
973                 set_focus = !focused->window->doesnt_accept_focus;
974                 DLOG("set_focus = %d\n", set_focus);
975             }
976
977             if (set_focus) {
978                 DLOG("Updating focus (focused: %p / %s) to X11 window 0x%08x\n", focused, focused->name, to_focus);
979                 /* We remove XCB_EVENT_MASK_FOCUS_CHANGE from the event mask to get
980                  * no focus change events for our own focus changes. We only want
981                  * these generated by the clients. */
982                 if (focused->window != NULL) {
983                     values[0] = CHILD_EVENT_MASK & ~(XCB_EVENT_MASK_FOCUS_CHANGE);
984                     xcb_change_window_attributes(conn, focused->window->id, XCB_CW_EVENT_MASK, values);
985                 }
986                 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, to_focus, XCB_CURRENT_TIME);
987                 if (focused->window != NULL) {
988                     values[0] = CHILD_EVENT_MASK;
989                     xcb_change_window_attributes(conn, focused->window->id, XCB_CW_EVENT_MASK, values);
990                 }
991
992                 ewmh_update_active_window(to_focus);
993             }
994
995             focused_id = to_focus;
996         }
997     }
998
999     if (focused_id == XCB_NONE) {
1000         DLOG("Still no window focused, better set focus to the root window\n");
1001         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
1002         focused_id = root;
1003     }
1004
1005     xcb_flush(conn);
1006     DLOG("ENDING CHANGES\n");
1007
1008     /* Disable EnterWindow events for windows which will be unmapped in
1009      * x_push_node_unmaps() now. Unmapping windows happens when switching
1010      * workspaces. We want to avoid getting EnterNotifies during that phase
1011      * because they would screw up our focus. One of these cases is having a
1012      * stack with two windows. If the first window is focused and gets
1013      * unmapped, the second one appears under the cursor and therefore gets an
1014      * EnterNotify event. */
1015     values[0] = FRAME_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
1016     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
1017         if (!state->unmap_now)
1018             continue;
1019         xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
1020     }
1021
1022     /* Push all pending unmaps */
1023     x_push_node_unmaps(con);
1024
1025     /* save the current stack as old stack */
1026     CIRCLEQ_FOREACH(state, &state_head, state) {
1027         CIRCLEQ_REMOVE(&old_state_head, state, old_state);
1028         CIRCLEQ_INSERT_TAIL(&old_state_head, state, old_state);
1029     }
1030     //CIRCLEQ_FOREACH(state, &old_state_head, old_state) {
1031     //    DLOG("old stack: 0x%08x\n", state->id);
1032     //}
1033
1034     xcb_flush(conn);
1035 }
1036
1037 /*
1038  * Raises the specified container in the internal stack of X windows. The
1039  * next call to x_push_changes() will make the change visible in X11.
1040  *
1041  */
1042 void x_raise_con(Con *con) {
1043     con_state *state;
1044     state = state_for_frame(con->frame);
1045     //DLOG("raising in new stack: %p / %s / %s / xid %08x\n", con, con->name, con->window ? con->window->name_json : "", state->id);
1046
1047     CIRCLEQ_REMOVE(&state_head, state, state);
1048     CIRCLEQ_INSERT_HEAD(&state_head, state, state);
1049 }
1050
1051 /*
1052  * Sets the WM_NAME property (so, no UTF8, but used only for debugging anyways)
1053  * of the given name. Used for properly tagging the windows for easily spotting
1054  * i3 windows in xwininfo -root -all.
1055  *
1056  */
1057 void x_set_name(Con *con, const char *name) {
1058     struct con_state *state;
1059
1060     if ((state = state_for_frame(con->frame)) == NULL) {
1061         ELOG("window state not found\n");
1062         return;
1063     }
1064
1065     FREE(state->name);
1066     state->name = sstrdup(name);
1067 }
1068
1069 /*
1070  * Set up the I3_SHMLOG_PATH atom.
1071  *
1072  */
1073 void update_shmlog_atom() {
1074     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
1075             A_I3_SHMLOG_PATH, A_UTF8_STRING, 8,
1076             strlen(shmlogname), shmlogname);
1077 }
1078
1079 /*
1080  * Sets up i3 specific atoms (I3_SOCKET_PATH and I3_CONFIG_PATH)
1081  *
1082  */
1083 void x_set_i3_atoms(void) {
1084     pid_t pid = getpid();
1085     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_SOCKET_PATH, A_UTF8_STRING, 8,
1086                         (current_socketpath == NULL ? 0 : strlen(current_socketpath)),
1087                         current_socketpath);
1088     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_PID, XCB_ATOM_CARDINAL, 32, 1, &pid);
1089     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_CONFIG_PATH, A_UTF8_STRING, 8,
1090                         strlen(current_configpath), current_configpath);
1091     update_shmlog_atom();
1092 }
1093
1094 /*
1095  * Set warp_to coordinates.  This will trigger on the next call to
1096  * x_push_changes().
1097  *
1098  */
1099 void x_set_warp_to(Rect *rect)
1100 {
1101     if (!config.disable_focus_follows_mouse)
1102         warp_to = rect;
1103 }
1104
1105 /*
1106  * Applies the given mask to the event mask of every i3 window decoration X11
1107  * window. This is useful to disable EnterNotify while resizing so that focus
1108  * is untouched.
1109  *
1110  */
1111 void x_mask_event_mask(uint32_t mask) {
1112     uint32_t values[] = { FRAME_EVENT_MASK & mask };
1113
1114     con_state *state;
1115     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
1116         if (state->mapped)
1117             xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
1118     }
1119 }