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