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