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