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