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