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