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