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