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