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