]> git.sur5r.net Git - i3/i3/blob - src/x.c
Merge pull request #2295 from Airblader/bug-2247-2
[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
331     /* Redraw the right border to cut off any text that went past it.
332      * This is necessary when the text was drawn using XCB since cutting text off
333      * automatically does not work there. For pango rendering, this isn't necessary. */
334     if (!font_is_pango()) {
335         /* We actually only redraw the far right two pixels as that is the
336          * distance we keep from the edge (not the entire border width).
337          * Redrawing the entire border would cause text to be cut off. */
338         draw_util_rectangle(conn, &(con->parent->frame_buffer), p->color->background,
339                             dr->x + dr->width - 2 * logical_px(1),
340                             dr->y,
341                             2 * logical_px(1),
342                             dr->height);
343     }
344
345     /* Draw a 1px separator line before and after every tab, so that tabs can
346      * be easily distinguished. */
347     if (con->parent->layout == L_TABBED) {
348         /* Left side */
349         draw_util_rectangle(conn, &(con->parent->frame_buffer), p->color->border,
350                             dr->x, dr->y, 1, dr->height);
351
352         /* Right side */
353         draw_util_rectangle(conn, &(con->parent->frame_buffer), p->color->border,
354                             dr->x + dr->width - 1, dr->y, 1, dr->height);
355     }
356
357     /* Redraw the border. */
358     x_draw_title_border(con, p);
359 }
360
361 /*
362  * Draws the decoration of the given container onto its parent.
363  *
364  */
365 void x_draw_decoration(Con *con) {
366     Con *parent = con->parent;
367     bool leaf = con_is_leaf(con);
368
369     /* This code needs to run for:
370      *  • leaf containers
371      *  • non-leaf containers which are in a stacked/tabbed container
372      *
373      * It does not need to run for:
374      *  • direct children of outputs or dockareas
375      *  • floating containers (they don’t have a decoration)
376      */
377     if ((!leaf &&
378          parent->layout != L_STACKED &&
379          parent->layout != L_TABBED) ||
380         parent->type == CT_OUTPUT ||
381         parent->type == CT_DOCKAREA ||
382         con->type == CT_FLOATING_CON)
383         return;
384
385     /* Skip containers whose height is 0 (for example empty dockareas) */
386     if (con->rect.height == 0)
387         return;
388
389     /* Skip containers whose pixmap has not yet been created (can happen when
390      * decoration rendering happens recursively for a window for which
391      * x_push_node() was not yet called) */
392     if (leaf && con->frame_buffer.id == XCB_NONE)
393         return;
394
395     /* 1: build deco_params and compare with cache */
396     struct deco_render_params *p = scalloc(1, sizeof(struct deco_render_params));
397
398     /* find out which colors to use */
399     if (con->urgent)
400         p->color = &config.client.urgent;
401     else if (con == focused || con_inside_focused(con))
402         p->color = &config.client.focused;
403     else if (con == TAILQ_FIRST(&(parent->focus_head)))
404         p->color = &config.client.focused_inactive;
405     else
406         p->color = &config.client.unfocused;
407
408     p->border_style = con_border_style(con);
409
410     Rect *r = &(con->rect);
411     Rect *w = &(con->window_rect);
412     p->con_rect = (struct width_height){r->width, r->height};
413     p->con_window_rect = (struct width_height){w->width, w->height};
414     p->con_deco_rect = con->deco_rect;
415     p->background = config.client.background;
416     p->con_is_leaf = con_is_leaf(con);
417     p->parent_layout = con->parent->layout;
418
419     if (con->deco_render_params != NULL &&
420         (con->window == NULL || !con->window->name_x_changed) &&
421         !parent->pixmap_recreated &&
422         !con->pixmap_recreated &&
423         !con->mark_changed &&
424         memcmp(p, con->deco_render_params, sizeof(struct deco_render_params)) == 0) {
425         free(p);
426         goto copy_pixmaps;
427     }
428
429     Con *next = con;
430     while ((next = TAILQ_NEXT(next, nodes))) {
431         FREE(next->deco_render_params);
432     }
433
434     FREE(con->deco_render_params);
435     con->deco_render_params = p;
436
437     if (con->window != NULL && con->window->name_x_changed)
438         con->window->name_x_changed = false;
439
440     parent->pixmap_recreated = false;
441     con->pixmap_recreated = false;
442     con->mark_changed = false;
443
444     /* 2: draw the client.background, but only for the parts around the window_rect */
445     if (con->window != NULL) {
446         /* top area */
447         draw_util_rectangle(conn, &(con->frame_buffer), config.client.background,
448                             0, 0, r->width, w->y);
449         /* bottom area */
450         draw_util_rectangle(conn, &(con->frame_buffer), config.client.background,
451                             0, w->y + w->height, r->width, r->height - (w->y + w->height));
452         /* left area */
453         draw_util_rectangle(conn, &(con->frame_buffer), config.client.background,
454                             0, 0, w->x, r->height);
455         /* right area */
456         draw_util_rectangle(conn, &(con->frame_buffer), config.client.background,
457                             w->x + w->width, 0, r->width - (w->x + w->width), r->height);
458     }
459
460     /* 3: draw a rectangle in border color around the client */
461     if (p->border_style != BS_NONE && p->con_is_leaf) {
462         /* We might hide some borders adjacent to the screen-edge */
463         adjacent_t borders_to_hide = ADJ_NONE;
464         borders_to_hide = con_adjacent_borders(con) & config.hide_edge_borders;
465
466         Rect br = con_border_style_rect(con);
467 #if 0
468         DLOG("con->rect spans %d x %d\n", con->rect.width, con->rect.height);
469         DLOG("border_rect spans (%d, %d) with %d x %d\n", br.x, br.y, br.width, br.height);
470         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);
471 #endif
472
473         /* These rectangles represent the border around the child window
474          * (left, bottom and right part). We don’t just fill the whole
475          * rectangle because some childs are not freely resizable and we want
476          * their background color to "shine through". */
477         if (!(borders_to_hide & ADJ_LEFT_SCREEN_EDGE)) {
478             draw_util_rectangle(conn, &(con->frame_buffer), p->color->child_border, 0, 0, br.x, r->height);
479         }
480         if (!(borders_to_hide & ADJ_RIGHT_SCREEN_EDGE)) {
481             draw_util_rectangle(conn, &(con->frame_buffer),
482                                 p->color->child_border, r->width + (br.width + br.x), 0,
483                                 -(br.width + br.x), r->height);
484         }
485         if (!(borders_to_hide & ADJ_LOWER_SCREEN_EDGE)) {
486             draw_util_rectangle(conn, &(con->frame_buffer),
487                                 p->color->child_border, br.x, r->height + (br.height + br.y),
488                                 r->width + br.width, -(br.height + br.y));
489         }
490         /* pixel border needs an additional line at the top */
491         if (p->border_style == BS_PIXEL && !(borders_to_hide & ADJ_UPPER_SCREEN_EDGE)) {
492             draw_util_rectangle(conn, &(con->frame_buffer),
493                                 p->color->child_border, br.x, 0, r->width + br.width, br.y);
494         }
495
496         /* Highlight the side of the border at which the next window will be
497          * opened if we are rendering a single window within a split container
498          * (which is undistinguishable from a single window outside a split
499          * container otherwise. */
500         if (TAILQ_NEXT(con, nodes) == NULL &&
501             TAILQ_PREV(con, nodes_head, nodes) == NULL &&
502             con->parent->type != CT_FLOATING_CON) {
503             if (p->parent_layout == L_SPLITH) {
504                 draw_util_rectangle(conn, &(con->frame_buffer), p->color->indicator,
505                                     r->width + (br.width + br.x), br.y, -(br.width + br.x), r->height + br.height);
506             } else if (p->parent_layout == L_SPLITV) {
507                 draw_util_rectangle(conn, &(con->frame_buffer), p->color->indicator,
508                                     br.x, r->height + (br.height + br.y), r->width + br.width, -(br.height + br.y));
509             }
510         }
511     }
512
513     /* if this is a borderless/1pixel window, we don’t need to render the
514      * decoration. */
515     if (p->border_style != BS_NORMAL)
516         goto copy_pixmaps;
517
518     /* If the parent hasn't been set up yet, skip the decoration rendering
519      * for now. */
520     if (parent->frame_buffer.id == XCB_NONE)
521         goto copy_pixmaps;
522
523     /* For the first child, we clear the parent pixmap to ensure there's no
524      * garbage left on there. This is important to avoid tearing when using
525      * transparency. */
526     if (con == TAILQ_FIRST(&(con->parent->nodes_head))) {
527         draw_util_clear_surface(conn, &(con->parent->frame_buffer), COLOR_TRANSPARENT);
528         FREE(con->parent->deco_render_params);
529     }
530
531     /* 4: paint the bar */
532     draw_util_rectangle(conn, &(parent->frame_buffer), p->color->background,
533                         con->deco_rect.x, con->deco_rect.y, con->deco_rect.width, con->deco_rect.height);
534
535     /* 5: draw two unconnected horizontal lines in border color */
536     x_draw_title_border(con, p);
537
538     /* 6: draw the title */
539     int text_offset_y = (con->deco_rect.height - config.font.height) / 2;
540
541     struct Window *win = con->window;
542     if (win == NULL) {
543         i3String *title;
544         if (con->title_format == NULL) {
545             char *_title;
546             char *tree = con_get_tree_representation(con);
547             sasprintf(&_title, "i3: %s", tree);
548             free(tree);
549
550             title = i3string_from_utf8(_title);
551             FREE(_title);
552         } else {
553             title = con_parse_title_format(con);
554         }
555
556         draw_util_text(title, &(parent->frame_buffer),
557                        p->color->text, p->color->background,
558                        con->deco_rect.x + logical_px(2),
559                        con->deco_rect.y + text_offset_y,
560                        con->deco_rect.width - 2 * logical_px(2));
561         I3STRING_FREE(title);
562
563         goto after_title;
564     }
565
566     if (win->name == NULL)
567         goto copy_pixmaps;
568
569     int indent_level = 0,
570         indent_mult = 0;
571     Con *il_parent = parent;
572     if (il_parent->layout != L_STACKED) {
573         while (1) {
574             //DLOG("il_parent = %p, layout = %d\n", il_parent, il_parent->layout);
575             if (il_parent->layout == L_STACKED)
576                 indent_level++;
577             if (il_parent->type == CT_WORKSPACE || il_parent->type == CT_DOCKAREA || il_parent->type == CT_OUTPUT)
578                 break;
579             il_parent = il_parent->parent;
580             indent_mult++;
581         }
582     }
583     //DLOG("indent_level = %d, indent_mult = %d\n", indent_level, indent_mult);
584     int indent_px = (indent_level * 5) * indent_mult;
585
586     int mark_width = 0;
587     if (config.show_marks && !TAILQ_EMPTY(&(con->marks_head))) {
588         char *formatted_mark = sstrdup("");
589         bool had_visible_mark = false;
590
591         mark_t *mark;
592         TAILQ_FOREACH(mark, &(con->marks_head), marks) {
593             if (mark->name[0] == '_')
594                 continue;
595             had_visible_mark = true;
596
597             char *buf;
598             sasprintf(&buf, "%s[%s]", formatted_mark, mark->name);
599             free(formatted_mark);
600             formatted_mark = buf;
601         }
602
603         if (had_visible_mark) {
604             i3String *mark = i3string_from_utf8(formatted_mark);
605             mark_width = predict_text_width(mark);
606
607             draw_util_text(mark, &(parent->frame_buffer),
608                            p->color->text, p->color->background,
609                            con->deco_rect.x + con->deco_rect.width - mark_width - logical_px(2),
610                            con->deco_rect.y + text_offset_y, mark_width);
611
612             I3STRING_FREE(mark);
613         }
614
615         FREE(formatted_mark);
616     }
617
618     i3String *title = con->title_format == NULL ? win->name : con_parse_title_format(con);
619     draw_util_text(title, &(parent->frame_buffer),
620                    p->color->text, p->color->background,
621                    con->deco_rect.x + logical_px(2) + indent_px,
622                    con->deco_rect.y + text_offset_y,
623                    con->deco_rect.width - indent_px - mark_width - 2 * logical_px(2));
624     if (con->title_format != NULL)
625         I3STRING_FREE(title);
626
627 after_title:
628     x_draw_decoration_after_title(con, p);
629 copy_pixmaps:
630     draw_util_copy_surface(conn, &(con->frame_buffer), &(con->frame), 0, 0, 0, 0, con->rect.width, con->rect.height);
631 }
632
633 /*
634  * Recursively calls x_draw_decoration. This cannot be done in x_push_node
635  * because x_push_node uses focus order to recurse (see the comment above)
636  * while drawing the decoration needs to happen in the actual order.
637  *
638  */
639 void x_deco_recurse(Con *con) {
640     Con *current;
641     bool leaf = TAILQ_EMPTY(&(con->nodes_head)) &&
642                 TAILQ_EMPTY(&(con->floating_head));
643     con_state *state = state_for_frame(con->frame.id);
644
645     if (!leaf) {
646         TAILQ_FOREACH(current, &(con->nodes_head), nodes)
647         x_deco_recurse(current);
648
649         TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
650         x_deco_recurse(current);
651
652         if (state->mapped) {
653             draw_util_copy_surface(conn, &(con->frame_buffer), &(con->frame), 0, 0, 0, 0, con->rect.width, con->rect.height);
654         }
655     }
656
657     if ((con->type != CT_ROOT && con->type != CT_OUTPUT) &&
658         (!leaf || con->mapped))
659         x_draw_decoration(con);
660 }
661
662 /*
663  * Sets or removes the _NET_WM_STATE_HIDDEN property on con if necessary.
664  *
665  */
666 static void set_hidden_state(Con *con) {
667     if (con->window == NULL) {
668         return;
669     }
670
671     con_state *state = state_for_frame(con->frame.id);
672     bool should_be_hidden = con_is_hidden(con);
673     if (should_be_hidden == state->is_hidden)
674         return;
675
676     if (should_be_hidden) {
677         DLOG("setting _NET_WM_STATE_HIDDEN for con = %p\n", con);
678         xcb_add_property_atom(conn, con->window->id, A__NET_WM_STATE, A__NET_WM_STATE_HIDDEN);
679     } else {
680         DLOG("removing _NET_WM_STATE_HIDDEN for con = %p\n", con);
681         xcb_remove_property_atom(conn, con->window->id, A__NET_WM_STATE, A__NET_WM_STATE_HIDDEN);
682     }
683
684     state->is_hidden = should_be_hidden;
685 }
686
687 /*
688  * This function pushes the properties of each node of the layout tree to
689  * X11 if they have changed (like the map state, position of the window, …).
690  * It recursively traverses all children of the given node.
691  *
692  */
693 void x_push_node(Con *con) {
694     Con *current;
695     con_state *state;
696     Rect rect = con->rect;
697
698     //DLOG("Pushing changes for node %p / %s\n", con, con->name);
699     state = state_for_frame(con->frame.id);
700
701     if (state->name != NULL) {
702         DLOG("pushing name %s for con %p\n", state->name, con);
703
704         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->frame.id,
705                             XCB_ATOM_WM_NAME, XCB_ATOM_STRING, 8, strlen(state->name), state->name);
706         FREE(state->name);
707     }
708
709     if (con->window == NULL) {
710         /* Calculate the height of all window decorations which will be drawn on to
711          * this frame. */
712         uint32_t max_y = 0, max_height = 0;
713         TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
714             Rect *dr = &(current->deco_rect);
715             if (dr->y >= max_y && dr->height >= max_height) {
716                 max_y = dr->y;
717                 max_height = dr->height;
718             }
719         }
720         rect.height = max_y + max_height;
721         if (rect.height == 0)
722             con->mapped = false;
723     }
724
725     /* reparent the child window (when the window was moved due to a sticky
726      * container) */
727     if (state->need_reparent && con->window != NULL) {
728         DLOG("Reparenting child window\n");
729
730         /* Temporarily set the event masks to XCB_NONE so that we won’t get
731          * UnmapNotify events (otherwise the handler would close the container).
732          * These events are generated automatically when reparenting. */
733         uint32_t values[] = {XCB_NONE};
734         xcb_change_window_attributes(conn, state->old_frame, XCB_CW_EVENT_MASK, values);
735         xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
736
737         xcb_reparent_window(conn, con->window->id, con->frame.id, 0, 0);
738
739         values[0] = FRAME_EVENT_MASK;
740         xcb_change_window_attributes(conn, state->old_frame, XCB_CW_EVENT_MASK, values);
741         values[0] = CHILD_EVENT_MASK;
742         xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
743
744         state->old_frame = XCB_NONE;
745         state->need_reparent = false;
746
747         con->ignore_unmap++;
748         DLOG("ignore_unmap for reparenting of con %p (win 0x%08x) is now %d\n",
749              con, con->window->id, con->ignore_unmap);
750     }
751
752     /* The pixmap of a borderless leaf container will not be used except
753      * for the titlebar in a stack or tabs (issue #1013). */
754     bool is_pixmap_needed = (con->border_style != BS_NONE ||
755                              !con_is_leaf(con) ||
756                              con->parent->layout == L_STACKED ||
757                              con->parent->layout == L_TABBED);
758
759     /* The root con and output cons will never require a pixmap. In particular for the
760      * __i3 output, this will likely not work anyway because it might be ridiculously
761      * large, causing an XCB_ALLOC error. */
762     if (con->type == CT_ROOT || con->type == CT_OUTPUT)
763         is_pixmap_needed = false;
764
765     bool fake_notify = false;
766     /* Set new position if rect changed (and if height > 0) or if the pixmap
767      * needs to be recreated */
768     if ((is_pixmap_needed && con->frame_buffer.id == XCB_NONE) || (memcmp(&(state->rect), &rect, sizeof(Rect)) != 0 &&
769                                                                    rect.height > 0)) {
770         /* We first create the new pixmap, then render to it, set it as the
771          * background and only afterwards change the window size. This reduces
772          * flickering. */
773
774         /* As the pixmap only depends on the size and not on the position, it
775          * is enough to check if width/height have changed. Also, we don’t
776          * create a pixmap at all when the window is actually not visible
777          * (height == 0) or when it is not needed. */
778         bool has_rect_changed = (state->rect.width != rect.width || state->rect.height != rect.height);
779
780         /* Check if the container has an unneeded pixmap left over from
781          * previously having a border or titlebar. */
782         if (!is_pixmap_needed && con->frame_buffer.id != XCB_NONE) {
783             draw_util_surface_free(conn, &(con->frame_buffer));
784             xcb_free_pixmap(conn, con->frame_buffer.id);
785             con->frame_buffer.id = XCB_NONE;
786         }
787
788         if (is_pixmap_needed && (has_rect_changed || con->frame_buffer.id == XCB_NONE)) {
789             if (con->frame_buffer.id == XCB_NONE) {
790                 con->frame_buffer.id = xcb_generate_id(conn);
791             } else {
792                 draw_util_surface_free(conn, &(con->frame_buffer));
793                 xcb_free_pixmap(conn, con->frame_buffer.id);
794             }
795
796             uint16_t win_depth = root_depth;
797             if (con->window)
798                 win_depth = con->window->depth;
799
800             /* Ensure we have valid dimensions for our surface. */
801             // TODO This is probably a bug in the condition above as we should never enter this path
802             //      for height == 0. Also, we should probably handle width == 0 the same way.
803             int width = MAX((int32_t)rect.width, 1);
804             int height = MAX((int32_t)rect.height, 1);
805
806             xcb_create_pixmap_checked(conn, win_depth, con->frame_buffer.id, con->frame.id, width, height);
807             draw_util_surface_init(conn, &(con->frame_buffer), con->frame_buffer.id,
808                                    get_visualtype_by_id(get_visualid_by_depth(win_depth)), width, height);
809
810             /* For the graphics context, we disable GraphicsExposure events.
811              * Those will be sent when a CopyArea request cannot be fulfilled
812              * properly due to parts of the source being unmapped or otherwise
813              * unavailable. Since we always copy from pixmaps to windows, this
814              * is not a concern for us. */
815             xcb_change_gc(conn, con->frame_buffer.gc, XCB_GC_GRAPHICS_EXPOSURES, (uint32_t[]){0});
816
817             draw_util_surface_set_size(&(con->frame), width, height);
818             con->pixmap_recreated = true;
819
820             /* Don’t render the decoration for windows inside a stack which are
821              * not visible right now */
822             // TODO Should this work the same way for L_TABBED?
823             if (!con->parent ||
824                 con->parent->layout != L_STACKED ||
825                 TAILQ_FIRST(&(con->parent->focus_head)) == con)
826                 /* Render the decoration now to make the correct decoration visible
827                  * from the very first moment. Later calls will be cached, so this
828                  * doesn’t hurt performance. */
829                 x_deco_recurse(con);
830         }
831
832         DLOG("setting rect (%d, %d, %d, %d)\n", rect.x, rect.y, rect.width, rect.height);
833         /* flush to ensure that the following commands are sent in a single
834          * buffer and will be processed directly afterwards (the contents of a
835          * window get lost when resizing it, therefore we want to provide it as
836          * fast as possible) */
837         xcb_flush(conn);
838         xcb_set_window_rect(conn, con->frame.id, rect);
839         if (con->frame_buffer.id != XCB_NONE) {
840             draw_util_copy_surface(conn, &(con->frame_buffer), &(con->frame), 0, 0, 0, 0, con->rect.width, con->rect.height);
841         }
842         xcb_flush(conn);
843
844         memcpy(&(state->rect), &rect, sizeof(Rect));
845         fake_notify = true;
846     }
847
848     /* dito, but for child windows */
849     if (con->window != NULL &&
850         memcmp(&(state->window_rect), &(con->window_rect), sizeof(Rect)) != 0) {
851         DLOG("setting window rect (%d, %d, %d, %d)\n",
852              con->window_rect.x, con->window_rect.y, con->window_rect.width, con->window_rect.height);
853         xcb_set_window_rect(conn, con->window->id, con->window_rect);
854         memcpy(&(state->window_rect), &(con->window_rect), sizeof(Rect));
855         fake_notify = true;
856     }
857
858     /* Map if map state changed, also ensure that the child window
859      * is changed if we are mapped and there is a new, unmapped child window.
860      * Unmaps are handled in x_push_node_unmaps(). */
861     if ((state->mapped != con->mapped || (con->window != NULL && !state->child_mapped)) &&
862         con->mapped) {
863         xcb_void_cookie_t cookie;
864
865         if (con->window != NULL) {
866             /* Set WM_STATE_NORMAL because GTK applications don’t want to
867              * drag & drop if we don’t. Also, xprop(1) needs it. */
868             long data[] = {XCB_ICCCM_WM_STATE_NORMAL, XCB_NONE};
869             xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
870                                 A_WM_STATE, A_WM_STATE, 32, 2, data);
871         }
872
873         uint32_t values[1];
874         if (!state->child_mapped && con->window != NULL) {
875             cookie = xcb_map_window(conn, con->window->id);
876
877             /* We are interested in EnterNotifys as soon as the window is
878              * mapped */
879             values[0] = CHILD_EVENT_MASK;
880             xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
881             DLOG("mapping child window (serial %d)\n", cookie.sequence);
882             state->child_mapped = true;
883         }
884
885         cookie = xcb_map_window(conn, con->frame.id);
886
887         values[0] = FRAME_EVENT_MASK;
888         xcb_change_window_attributes(conn, con->frame.id, XCB_CW_EVENT_MASK, values);
889
890         /* copy the pixmap contents to the frame window immediately after mapping */
891         if (con->frame_buffer.id != XCB_NONE) {
892             draw_util_copy_surface(conn, &(con->frame_buffer), &(con->frame), 0, 0, 0, 0, con->rect.width, con->rect.height);
893         }
894         xcb_flush(conn);
895
896         DLOG("mapping container %08x (serial %d)\n", con->frame.id, cookie.sequence);
897         state->mapped = con->mapped;
898     }
899
900     state->unmap_now = (state->mapped != con->mapped) && !con->mapped;
901
902     if (fake_notify) {
903         DLOG("Sending fake configure notify\n");
904         fake_absolute_configure_notify(con);
905     }
906
907     set_hidden_state(con);
908
909     /* Handle all children and floating windows of this node. We recurse
910      * in focus order to display the focused client in a stack first when
911      * switching workspaces (reduces flickering). */
912     TAILQ_FOREACH(current, &(con->focus_head), focused)
913     x_push_node(current);
914 }
915
916 /*
917  * Same idea as in x_push_node(), but this function only unmaps windows. It is
918  * necessary to split this up to handle new fullscreen clients properly: The
919  * new window needs to be mapped and focus needs to be set *before* the
920  * underlying windows are unmapped. Otherwise, focus will revert to the
921  * PointerRoot and will then be set to the new window, generating unnecessary
922  * FocusIn/FocusOut events.
923  *
924  */
925 static void x_push_node_unmaps(Con *con) {
926     Con *current;
927     con_state *state;
928
929     //DLOG("Pushing changes (with unmaps) for node %p / %s\n", con, con->name);
930     state = state_for_frame(con->frame.id);
931
932     /* map/unmap if map state changed, also ensure that the child window
933      * is changed if we are mapped *and* in initial state (meaning the
934      * container was empty before, but now got a child) */
935     if (state->unmap_now) {
936         xcb_void_cookie_t cookie;
937         if (con->window != NULL) {
938             /* Set WM_STATE_WITHDRAWN, it seems like Java apps need it */
939             long data[] = {XCB_ICCCM_WM_STATE_WITHDRAWN, XCB_NONE};
940             xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
941                                 A_WM_STATE, A_WM_STATE, 32, 2, data);
942         }
943
944         cookie = xcb_unmap_window(conn, con->frame.id);
945         DLOG("unmapping container %p / %s (serial %d)\n", con, con->name, cookie.sequence);
946         /* we need to increase ignore_unmap for this container (if it
947          * contains a window) and for every window "under" this one which
948          * contains a window */
949         if (con->window != NULL) {
950             con->ignore_unmap++;
951             DLOG("ignore_unmap for con %p (frame 0x%08x) now %d\n", con, con->frame.id, con->ignore_unmap);
952         }
953         state->mapped = con->mapped;
954     }
955
956     /* handle all children and floating windows of this node */
957     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
958     x_push_node_unmaps(current);
959
960     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
961     x_push_node_unmaps(current);
962 }
963
964 /*
965  * Returns true if the given container is currently attached to its parent.
966  *
967  * TODO: Remove once #1185 has been fixed
968  */
969 static bool is_con_attached(Con *con) {
970     if (con->parent == NULL)
971         return false;
972
973     Con *current;
974     TAILQ_FOREACH(current, &(con->parent->nodes_head), nodes) {
975         if (current == con)
976             return true;
977     }
978
979     return false;
980 }
981
982 /*
983  * Pushes all changes (state of each node, see x_push_node() and the window
984  * stack) to X11.
985  *
986  * NOTE: We need to push the stack first so that the windows have the correct
987  * stacking order. This is relevant for workspace switching where we map the
988  * windows because mapping may generate EnterNotify events. When they are
989  * generated in the wrong order, this will cause focus problems when switching
990  * workspaces.
991  *
992  */
993 void x_push_changes(Con *con) {
994     con_state *state;
995     xcb_query_pointer_cookie_t pointercookie;
996
997     /* If we need to warp later, we request the pointer position as soon as possible */
998     if (warp_to) {
999         pointercookie = xcb_query_pointer(conn, root);
1000     }
1001
1002     DLOG("-- PUSHING WINDOW STACK --\n");
1003     //DLOG("Disabling EnterNotify\n");
1004     /* We need to keep SubstructureRedirect around, otherwise clients can send
1005      * ConfigureWindow requests and get them applied directly instead of having
1006      * them become ConfigureRequests that i3 handles. */
1007     uint32_t values[1] = {XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT};
1008     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
1009         if (state->mapped)
1010             xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
1011     }
1012     //DLOG("Done, EnterNotify disabled\n");
1013     bool order_changed = false;
1014     bool stacking_changed = false;
1015
1016     /* count first, necessary to (re)allocate memory for the bottom-to-top
1017      * stack afterwards */
1018     int cnt = 0;
1019     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state)
1020     if (con_has_managed_window(state->con))
1021         cnt++;
1022
1023     /* The bottom-to-top window stack of all windows which are managed by i3.
1024      * Used for x_get_window_stack(). */
1025     static xcb_window_t *client_list_windows = NULL;
1026     static int client_list_count = 0;
1027
1028     if (cnt != client_list_count) {
1029         client_list_windows = srealloc(client_list_windows, sizeof(xcb_window_t) * cnt);
1030         client_list_count = cnt;
1031     }
1032
1033     xcb_window_t *walk = client_list_windows;
1034
1035     /* X11 correctly represents the stack if we push it from bottom to top */
1036     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
1037         if (con_has_managed_window(state->con))
1038             memcpy(walk++, &(state->con->window->id), sizeof(xcb_window_t));
1039
1040         //DLOG("stack: 0x%08x\n", state->id);
1041         con_state *prev = CIRCLEQ_PREV(state, state);
1042         con_state *old_prev = CIRCLEQ_PREV(state, old_state);
1043         if (prev != old_prev)
1044             order_changed = true;
1045         if ((state->initial || order_changed) && prev != CIRCLEQ_END(&state_head)) {
1046             stacking_changed = true;
1047             //DLOG("Stacking 0x%08x above 0x%08x\n", prev->id, state->id);
1048             uint32_t mask = 0;
1049             mask |= XCB_CONFIG_WINDOW_SIBLING;
1050             mask |= XCB_CONFIG_WINDOW_STACK_MODE;
1051             uint32_t values[] = {state->id, XCB_STACK_MODE_ABOVE};
1052
1053             xcb_configure_window(conn, prev->id, mask, values);
1054         }
1055         state->initial = false;
1056     }
1057
1058     /* If we re-stacked something (or a new window appeared), we need to update
1059      * the _NET_CLIENT_LIST and _NET_CLIENT_LIST_STACKING hints */
1060     if (stacking_changed) {
1061         DLOG("Client list changed (%i clients)\n", cnt);
1062         ewmh_update_client_list_stacking(client_list_windows, client_list_count);
1063
1064         walk = client_list_windows;
1065
1066         /* reorder by initial mapping */
1067         TAILQ_FOREACH(state, &initial_mapping_head, initial_mapping_order) {
1068             if (con_has_managed_window(state->con))
1069                 *walk++ = state->con->window->id;
1070         }
1071
1072         ewmh_update_client_list(client_list_windows, client_list_count);
1073     }
1074
1075     DLOG("PUSHING CHANGES\n");
1076     x_push_node(con);
1077
1078     if (warp_to) {
1079         xcb_query_pointer_reply_t *pointerreply = xcb_query_pointer_reply(conn, pointercookie, NULL);
1080         if (!pointerreply) {
1081             ELOG("Could not query pointer position, not warping pointer\n");
1082         } else {
1083             int mid_x = warp_to->x + (warp_to->width / 2);
1084             int mid_y = warp_to->y + (warp_to->height / 2);
1085
1086             Output *current = get_output_containing(pointerreply->root_x, pointerreply->root_y);
1087             Output *target = get_output_containing(mid_x, mid_y);
1088             if (current != target) {
1089                 /* Ignore MotionNotify events generated by warping */
1090                 xcb_change_window_attributes(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT});
1091                 xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0, mid_x, mid_y);
1092                 xcb_change_window_attributes(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){ROOT_EVENT_MASK});
1093             }
1094
1095             free(pointerreply);
1096         }
1097         warp_to = NULL;
1098     }
1099
1100     //DLOG("Re-enabling EnterNotify\n");
1101     values[0] = FRAME_EVENT_MASK;
1102     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
1103         if (state->mapped)
1104             xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
1105     }
1106     //DLOG("Done, EnterNotify re-enabled\n");
1107
1108     x_deco_recurse(con);
1109
1110     xcb_window_t to_focus = focused->frame.id;
1111     if (focused->window != NULL)
1112         to_focus = focused->window->id;
1113
1114     if (focused_id != to_focus) {
1115         if (!focused->mapped) {
1116             DLOG("Not updating focus (to %p / %s), focused window is not mapped.\n", focused, focused->name);
1117             /* Invalidate focused_id to correctly focus new windows with the same ID */
1118             focused_id = XCB_NONE;
1119         } else {
1120             if (focused->window != NULL &&
1121                 focused->window->needs_take_focus &&
1122                 focused->window->doesnt_accept_focus) {
1123                 DLOG("Updating focus by sending WM_TAKE_FOCUS to window 0x%08x (focused: %p / %s)\n",
1124                      to_focus, focused, focused->name);
1125                 send_take_focus(to_focus, last_timestamp);
1126
1127                 ewmh_update_active_window((con_has_managed_window(focused) ? focused->window->id : XCB_WINDOW_NONE));
1128
1129                 if (to_focus != last_focused && is_con_attached(focused))
1130                     ipc_send_window_event("focus", focused);
1131             } else {
1132                 DLOG("Updating focus (focused: %p / %s) to X11 window 0x%08x\n", focused, focused->name, to_focus);
1133                 /* We remove XCB_EVENT_MASK_FOCUS_CHANGE from the event mask to get
1134                  * no focus change events for our own focus changes. We only want
1135                  * these generated by the clients. */
1136                 if (focused->window != NULL) {
1137                     values[0] = CHILD_EVENT_MASK & ~(XCB_EVENT_MASK_FOCUS_CHANGE);
1138                     xcb_change_window_attributes(conn, focused->window->id, XCB_CW_EVENT_MASK, values);
1139                 }
1140                 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, to_focus, XCB_CURRENT_TIME);
1141                 if (focused->window != NULL) {
1142                     values[0] = CHILD_EVENT_MASK;
1143                     xcb_change_window_attributes(conn, focused->window->id, XCB_CW_EVENT_MASK, values);
1144                 }
1145
1146                 ewmh_update_active_window((con_has_managed_window(focused) ? focused->window->id : XCB_WINDOW_NONE));
1147
1148                 if (to_focus != XCB_NONE && to_focus != last_focused && focused->window != NULL && is_con_attached(focused))
1149                     ipc_send_window_event("focus", focused);
1150             }
1151
1152             focused_id = last_focused = to_focus;
1153         }
1154     }
1155
1156     if (focused_id == XCB_NONE) {
1157         /* If we still have no window to focus, we focus the EWMH window instead. We use this rather than the
1158          * root window in order to avoid an X11 fallback mechanism causing a ghosting effect (see #1378). */
1159         DLOG("Still no window focused, better set focus to the EWMH support window (%d)\n", ewmh_window);
1160         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, ewmh_window, XCB_CURRENT_TIME);
1161         ewmh_update_active_window(XCB_WINDOW_NONE);
1162         focused_id = ewmh_window;
1163     }
1164
1165     xcb_flush(conn);
1166     DLOG("ENDING CHANGES\n");
1167
1168     /* Disable EnterWindow events for windows which will be unmapped in
1169      * x_push_node_unmaps() now. Unmapping windows happens when switching
1170      * workspaces. We want to avoid getting EnterNotifies during that phase
1171      * because they would screw up our focus. One of these cases is having a
1172      * stack with two windows. If the first window is focused and gets
1173      * unmapped, the second one appears under the cursor and therefore gets an
1174      * EnterNotify event. */
1175     values[0] = FRAME_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
1176     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
1177         if (!state->unmap_now)
1178             continue;
1179         xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
1180     }
1181
1182     /* Push all pending unmaps */
1183     x_push_node_unmaps(con);
1184
1185     /* save the current stack as old stack */
1186     CIRCLEQ_FOREACH(state, &state_head, state) {
1187         CIRCLEQ_REMOVE(&old_state_head, state, old_state);
1188         CIRCLEQ_INSERT_TAIL(&old_state_head, state, old_state);
1189     }
1190     //CIRCLEQ_FOREACH(state, &old_state_head, old_state) {
1191     //    DLOG("old stack: 0x%08x\n", state->id);
1192     //}
1193
1194     xcb_flush(conn);
1195 }
1196
1197 /*
1198  * Raises the specified container in the internal stack of X windows. The
1199  * next call to x_push_changes() will make the change visible in X11.
1200  *
1201  */
1202 void x_raise_con(Con *con) {
1203     con_state *state;
1204     state = state_for_frame(con->frame.id);
1205     //DLOG("raising in new stack: %p / %s / %s / xid %08x\n", con, con->name, con->window ? con->window->name_json : "", state->id);
1206
1207     CIRCLEQ_REMOVE(&state_head, state, state);
1208     CIRCLEQ_INSERT_HEAD(&state_head, state, state);
1209 }
1210
1211 /*
1212  * Sets the WM_NAME property (so, no UTF8, but used only for debugging anyways)
1213  * of the given name. Used for properly tagging the windows for easily spotting
1214  * i3 windows in xwininfo -root -all.
1215  *
1216  */
1217 void x_set_name(Con *con, const char *name) {
1218     struct con_state *state;
1219
1220     if ((state = state_for_frame(con->frame.id)) == NULL) {
1221         ELOG("window state not found\n");
1222         return;
1223     }
1224
1225     FREE(state->name);
1226     state->name = sstrdup(name);
1227 }
1228
1229 /*
1230  * Set up the I3_SHMLOG_PATH atom.
1231  *
1232  */
1233 void update_shmlog_atom() {
1234     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
1235                         A_I3_SHMLOG_PATH, A_UTF8_STRING, 8,
1236                         strlen(shmlogname), shmlogname);
1237 }
1238
1239 /*
1240  * Sets up i3 specific atoms (I3_SOCKET_PATH and I3_CONFIG_PATH)
1241  *
1242  */
1243 void x_set_i3_atoms(void) {
1244     pid_t pid = getpid();
1245     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_SOCKET_PATH, A_UTF8_STRING, 8,
1246                         (current_socketpath == NULL ? 0 : strlen(current_socketpath)),
1247                         current_socketpath);
1248     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_PID, XCB_ATOM_CARDINAL, 32, 1, &pid);
1249     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_CONFIG_PATH, A_UTF8_STRING, 8,
1250                         strlen(current_configpath), current_configpath);
1251     update_shmlog_atom();
1252 }
1253
1254 /*
1255  * Set warp_to coordinates.  This will trigger on the next call to
1256  * x_push_changes().
1257  *
1258  */
1259 void x_set_warp_to(Rect *rect) {
1260     if (config.mouse_warping != POINTER_WARPING_NONE)
1261         warp_to = rect;
1262 }
1263
1264 /*
1265  * Applies the given mask to the event mask of every i3 window decoration X11
1266  * window. This is useful to disable EnterNotify while resizing so that focus
1267  * is untouched.
1268  *
1269  */
1270 void x_mask_event_mask(uint32_t mask) {
1271     uint32_t values[] = {FRAME_EVENT_MASK & mask};
1272
1273     con_state *state;
1274     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
1275         if (state->mapped)
1276             xcb_change_window_attributes(conn, state->id, XCB_CW_EVENT_MASK, values);
1277     }
1278 }