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