]> git.sur5r.net Git - i3/i3/blob - src/x.c
d35c8c6a4d35859ee20e7cae9b3d9ced9269c4f4
[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 static 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     con->gc = xcb_generate_id(conn);
88     xcb_create_gc(conn, con->gc, con->frame, 0, 0);
89
90     struct con_state *state = scalloc(sizeof(struct con_state));
91     state->id = con->frame;
92     state->mapped = false;
93     state->initial = true;
94     CIRCLEQ_INSERT_HEAD(&state_head, state, state);
95     CIRCLEQ_INSERT_HEAD(&old_state_head, state, old_state);
96     DLOG("adding new state for window id 0x%08x\n", state->id);
97 }
98
99 /*
100  * Re-initializes the associated X window state for this container. You have
101  * to call this when you assign a client to an empty container to ensure that
102  * its state gets updated correctly.
103  *
104  */
105 void x_reinit(Con *con) {
106     struct con_state *state;
107
108     if ((state = state_for_frame(con->frame)) == NULL) {
109         ELOG("window state not found\n");
110         return;
111     }
112
113     DLOG("resetting state %p to initial\n", state);
114     state->initial = true;
115     state->child_mapped = false;
116     memset(&(state->window_rect), 0, sizeof(Rect));
117 }
118
119 /*
120  * Reparents the child window of the given container (necessary for sticky
121  * containers). The reparenting happens in the next call of x_push_changes().
122  *
123  */
124 void x_reparent_child(Con *con, Con *old) {
125     struct con_state *state;
126     if ((state = state_for_frame(con->frame)) == NULL) {
127         ELOG("window state for con not found\n");
128         return;
129     }
130
131     state->need_reparent = true;
132     state->old_frame = old->frame;
133 }
134
135 /*
136  * Moves a child window from Container src to Container dest.
137  *
138  */
139 void x_move_win(Con *src, Con *dest) {
140     struct con_state *state_src, *state_dest;
141
142     if ((state_src = state_for_frame(src->frame)) == NULL) {
143         ELOG("window state for src not found\n");
144         return;
145     }
146
147     if ((state_dest = state_for_frame(dest->frame)) == NULL) {
148         ELOG("window state for dest not found\n");
149         return;
150     }
151
152     Rect zero;
153     memset(&zero, 0, sizeof(Rect));
154     if (memcmp(&(state_dest->window_rect), &(zero), sizeof(Rect)) == 0) {
155         memcpy(&(state_dest->window_rect), &(state_src->window_rect), sizeof(Rect));
156         DLOG("COPYING RECT\n");
157     }
158 }
159
160 /*
161  * Kills the window decoration associated with the given container.
162  *
163  */
164 void x_con_kill(Con *con) {
165     con_state *state;
166
167     xcb_destroy_window(conn, con->frame);
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 static bool window_supports_protocol(xcb_window_t window, xcb_atom_t atom) {
183     xcb_get_property_cookie_t cookie;
184     xcb_get_wm_protocols_reply_t protocols;
185     bool result = false;
186
187     cookie = xcb_get_wm_protocols_unchecked(conn, window, atoms[WM_PROTOCOLS]);
188     if (xcb_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_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) {
206     /* if this window does not support WM_DELETE_WINDOW, we kill it the hard way */
207     if (!window_supports_protocol(window, atoms[WM_DELETE_WINDOW])) {
208         LOG("Killing window the hard way\n");
209         xcb_kill_client(conn, window);
210         return;
211     }
212
213     xcb_client_message_event_t ev;
214
215     memset(&ev, 0, sizeof(xcb_client_message_event_t));
216
217     ev.response_type = XCB_CLIENT_MESSAGE;
218     ev.window = window;
219     ev.type = atoms[WM_PROTOCOLS];
220     ev.format = 32;
221     ev.data.data32[0] = atoms[WM_DELETE_WINDOW];
222     ev.data.data32[1] = XCB_CURRENT_TIME;
223
224     LOG("Sending WM_DELETE to the client\n");
225     xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)&ev);
226     xcb_flush(conn);
227 }
228
229 /*
230  * Draws the decoration of the given container onto its parent.
231  *
232  */
233 void x_draw_decoration(Con *con) {
234     /* This code needs to run for:
235      *  • leaf containers
236      *  • non-leaf containers which are in a stacked/tabbed container
237      *
238      * It does not need to run for:
239      *  • floating containers (they don’t have a decoration)
240      */
241     if ((!con_is_leaf(con) &&
242          con->parent->layout != L_STACKED &&
243          con->parent->layout != L_TABBED) ||
244         con->type == CT_FLOATING_CON)
245         return;
246     DLOG("decoration should be rendered for con %p\n", con);
247
248     /* 1: find out which colors to use */
249     struct Colortriple *color;
250     if (con->urgent)
251         color = &config.client.urgent;
252     else if (con == focused)
253         color = &config.client.focused;
254     else if (con == TAILQ_FIRST(&(con->parent->focus_head)))
255         color = &config.client.focused_inactive;
256     else
257         color = &config.client.unfocused;
258
259     Con *parent = con->parent;
260     int border_style = con_border_style(con);
261
262     /* 2: draw a rectangle in border color around the client */
263     if (border_style != BS_NONE && con_is_leaf(con)) {
264         Rect br = con_border_style_rect(con);
265         Rect *r = &(con->rect);
266 #if 0
267         DLOG("con->rect spans %d x %d\n", con->rect.width, con->rect.height);
268         DLOG("border_rect spans (%d, %d) with %d x %d\n", border_rect.x, border_rect.y, border_rect.width, border_rect.height);
269         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);
270 #endif
271
272         /* These rectangles represents the border around the child window
273          * (left, bottom and right part). We don’t just fill the whole
274          * rectangle because some childs are not freely resizable and we want
275          * their background color to "shine through". */
276         xcb_change_gc_single(conn, con->gc, XCB_GC_FOREGROUND, color->background);
277         xcb_rectangle_t borders[] = {
278             { 0, 0, br.x, r->height },
279             { 0, r->height + br.height + br.y, r->width, r->height },
280             { r->width + br.width + br.x, 0, r->width, r->height }
281         };
282         xcb_poly_fill_rectangle(conn, con->frame, con->gc, 3, borders);
283         /* 1pixel border needs an additional line at the top */
284         if (border_style == BS_1PIXEL) {
285             xcb_rectangle_t topline = { br.x, 0, con->rect.width + br.width + br.x, br.y };
286             xcb_poly_fill_rectangle(conn, con->frame, con->gc, 1, &topline);
287         }
288     }
289
290     /* if this is a borderless/1pixel window, we don’t * need to render the
291      * decoration. */
292     if (border_style != BS_NORMAL) {
293         DLOG("border style not BS_NORMAL, aborting rendering of decoration\n");
294         return;
295     }
296
297     /* 3: paint the bar */
298     xcb_change_gc_single(conn, parent->gc, XCB_GC_FOREGROUND, color->background);
299     xcb_rectangle_t drect = { con->deco_rect.x, con->deco_rect.y, con->deco_rect.width, con->deco_rect.height };
300     xcb_poly_fill_rectangle(conn, parent->frame, parent->gc, 1, &drect);
301
302     /* 4: draw the two lines in border color */
303     xcb_draw_line(conn, parent->frame, parent->gc, color->border,
304             con->deco_rect.x, /* x */
305             con->deco_rect.y, /* y */
306             con->deco_rect.x + con->deco_rect.width, /* to_x */
307             con->deco_rect.y); /* to_y */
308     xcb_draw_line(conn, parent->frame, parent->gc, color->border,
309             con->deco_rect.x, /* x */
310             con->deco_rect.y + con->deco_rect.height - 1, /* y */
311             con->deco_rect.x + con->deco_rect.width, /* to_x */
312             con->deco_rect.y + con->deco_rect.height - 1); /* to_y */
313
314     /* 5: draw the title */
315     i3Font *font = load_font(conn, config.font);
316     uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
317     uint32_t values[] = { color->text, color->background, font->id };
318     xcb_change_gc(conn, parent->gc, mask, values);
319     int text_offset_y = font->height + (con->deco_rect.height - font->height) / 2 - 1;
320
321     struct Window *win = con->window;
322     if (win == NULL || win->name_x == NULL) {
323         /* this is a non-leaf container, we need to make up a good description */
324         // TODO: use a good description instead of just "another container"
325         xcb_image_text_8(
326             conn,
327             strlen("another container"),
328             parent->frame,
329             parent->gc,
330             con->deco_rect.x + 2,
331             con->deco_rect.y + text_offset_y,
332             "another container"
333         );
334         return;
335     }
336
337     int indent_level = 0,
338         indent_mult = 0;
339     Con *il_parent = con->parent;
340     if (il_parent->layout != L_STACKED) {
341         while (1) {
342             DLOG("il_parent = %p, layout = %d\n", il_parent, il_parent->layout);
343             if (il_parent->layout == L_STACKED)
344                 indent_level++;
345             if (il_parent->type == CT_WORKSPACE)
346                 break;
347             il_parent = il_parent->parent;
348             indent_mult++;
349         }
350     }
351     DLOG("indent_level = %d, indent_mult = %d\n", indent_level, indent_mult);
352     int indent_px = (indent_level * 5) * indent_mult;
353
354     if (win->uses_net_wm_name)
355         xcb_image_text_16(
356             conn,
357             win->name_len,
358             parent->frame,
359             parent->gc,
360             con->deco_rect.x + 2 + indent_px,
361             con->deco_rect.y + text_offset_y,
362             (xcb_char2b_t*)win->name_x
363         );
364     else
365         xcb_image_text_8(
366             conn,
367             win->name_len,
368             parent->frame,
369             parent->gc,
370             con->deco_rect.x + 2 + indent_px,
371             con->deco_rect.y + text_offset_y,
372             win->name_x
373         );
374 }
375
376 /*
377  * This function pushes the properties of each node of the layout tree to
378  * X11 if they have changed (like the map state, position of the window, …).
379  * It recursively traverses all children of the given node.
380  *
381  */
382 static void x_push_node(Con *con) {
383     Con *current;
384     con_state *state;
385     Rect rect = con->rect;
386
387     DLOG("Pushing changes for node %p / %s\n", con, con->name);
388     state = state_for_frame(con->frame);
389
390     if (state->name != NULL) {
391         DLOG("pushing name %s for con %p\n", state->name, con);
392
393         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->frame,
394                             WM_NAME, STRING, 8, strlen(state->name), state->name);
395         FREE(state->name);
396     }
397
398     if (con->window == NULL) {
399         /* Calculate the height of all window decorations which will be drawn on to
400          * this frame. */
401         uint32_t max_y = 0, max_height = 0;
402         TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
403             Rect *dr = &(current->deco_rect);
404             if (dr->y >= max_y && dr->height >= max_height) {
405                 max_y = dr->y;
406                 max_height = dr->height;
407             }
408         }
409         rect.height = max_y + max_height;
410         if (rect.height == 0) {
411             DLOG("Unmapping container because it does not contain anything atm.\n");
412             con->mapped = false;
413         }
414     }
415
416     /* reparent the child window (when the window was moved due to a sticky
417      * container) */
418     if (state->need_reparent && con->window != NULL) {
419         DLOG("Reparenting child window\n");
420
421         /* Temporarily set the event masks to XCB_NONE so that we won’t get
422          * UnmapNotify events (otherwise the handler would close the container).
423          * These events are generated automatically when reparenting. */
424         uint32_t values[] = { XCB_NONE };
425         xcb_change_window_attributes(conn, state->old_frame, XCB_CW_EVENT_MASK, values);
426         xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
427
428         xcb_reparent_window(conn, con->window->id, con->frame, 0, 0);
429
430         values[0] = FRAME_EVENT_MASK;
431         xcb_change_window_attributes(conn, state->old_frame, XCB_CW_EVENT_MASK, values);
432         values[0] = CHILD_EVENT_MASK;
433         xcb_change_window_attributes(conn, con->window->id, XCB_CW_EVENT_MASK, values);
434
435         state->old_frame = XCB_NONE;
436         state->need_reparent = false;
437
438         con->ignore_unmap++;
439         DLOG("ignore_unmap for reparenting of con %p (win 0x%08x) is now %d\n",
440                 con, con->window->id, con->ignore_unmap);
441     }
442
443     bool fake_notify = false;
444     /* set new position if rect changed */
445     if (memcmp(&(state->rect), &rect, sizeof(Rect)) != 0) {
446         DLOG("setting rect (%d, %d, %d, %d)\n", rect.x, rect.y, rect.width, rect.height);
447         xcb_set_window_rect(conn, con->frame, rect);
448         memcpy(&(state->rect), &rect, sizeof(Rect));
449         fake_notify = true;
450     }
451
452     /* dito, but for child windows */
453     if (con->window != NULL &&
454         memcmp(&(state->window_rect), &(con->window_rect), sizeof(Rect)) != 0) {
455         DLOG("setting window rect (%d, %d, %d, %d)\n",
456             con->window_rect.x, con->window_rect.y, con->window_rect.width, con->window_rect.height);
457         xcb_set_window_rect(conn, con->window->id, con->window_rect);
458         memcpy(&(state->window_rect), &(con->window_rect), sizeof(Rect));
459         fake_notify = true;
460     }
461
462     /* Map if map state changed, also ensure that the child window
463      * is changed if we are mapped *and* in initial state (meaning the
464      * container was empty before, but now got a child). Unmaps are handled in
465      * x_push_node_unmaps(). */
466     if ((state->mapped != con->mapped || (con->mapped && state->initial)) &&
467         con->mapped) {
468         xcb_void_cookie_t cookie;
469
470         if (con->window != NULL) {
471             /* Set WM_STATE_NORMAL because GTK applications don’t want to
472              * drag & drop if we don’t. Also, xprop(1) needs it. */
473             long data[] = { XCB_WM_STATE_NORMAL, XCB_NONE };
474             xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
475                                 atoms[WM_STATE], atoms[WM_STATE], 32, 2, data);
476         }
477
478         if (!state->child_mapped && con->window != NULL) {
479             cookie = xcb_map_window(conn, con->window->id);
480             DLOG("mapping child window (serial %d)\n", cookie.sequence);
481             /* Ignore enter_notifies which are generated when mapping */
482             add_ignore_event(cookie.sequence);
483             state->child_mapped = true;
484         }
485
486         cookie = xcb_map_window(conn, con->frame);
487         DLOG("mapping container (serial %d)\n", cookie.sequence);
488         /* Ignore enter_notifies which are generated when mapping */
489         add_ignore_event(cookie.sequence);
490         state->mapped = con->mapped;
491     }
492
493     if (fake_notify) {
494         DLOG("Sending fake configure notify\n");
495         fake_absolute_configure_notify(con);
496     }
497
498     /* handle all children and floating windows of this node */
499     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
500         x_push_node(current);
501
502     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
503         x_push_node(current);
504
505     if (con->type != CT_ROOT && con->type != CT_OUTPUT)
506         x_draw_decoration(con);
507 }
508
509 /*
510  * Same idea as in x_push_node(), but this function only unmaps windows. It is
511  * necessary to split this up to handle new fullscreen clients properly: The
512  * new window needs to be mapped and focus needs to be set *before* the
513  * underlying windows are unmapped. Otherwise, focus will revert to the
514  * PointerRoot and will then be set to the new window, generating unnecessary
515  * FocusIn/FocusOut events.
516  *
517  */
518 static void x_push_node_unmaps(Con *con) {
519     Con *current;
520     con_state *state;
521
522     DLOG("Pushing changes (with unmaps) for node %p / %s\n", con, con->name);
523     state = state_for_frame(con->frame);
524
525     /* map/unmap if map state changed, also ensure that the child window
526      * is changed if we are mapped *and* in initial state (meaning the
527      * container was empty before, but now got a child) */
528     if ((state->mapped != con->mapped || (con->mapped && state->initial)) &&
529         !con->mapped) {
530         xcb_void_cookie_t cookie;
531         if (con->window != NULL) {
532             /* Set WM_STATE_WITHDRAWN, it seems like Java apps need it */
533             long data[] = { XCB_WM_STATE_WITHDRAWN, XCB_NONE };
534             xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
535                                 atoms[WM_STATE], atoms[WM_STATE], 32, 2, data);
536         }
537
538         cookie = xcb_unmap_window(conn, con->frame);
539         DLOG("unmapping container (serial %d)\n", cookie.sequence);
540         /* we need to increase ignore_unmap for this container (if it
541          * contains a window) and for every window "under" this one which
542          * contains a window */
543         if (con->window != NULL) {
544             con->ignore_unmap++;
545             DLOG("ignore_unmap for con %p (frame 0x%08x) now %d\n", con, con->frame, con->ignore_unmap);
546         }
547         /* Ignore enter_notifies which are generated when unmapping */
548         add_ignore_event(cookie.sequence);
549         state->mapped = con->mapped;
550     }
551
552     /* handle all children and floating windows of this node */
553     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
554         x_push_node_unmaps(current);
555
556     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
557         x_push_node_unmaps(current);
558 }
559
560 /*
561  * Pushes all changes (state of each node, see x_push_node() and the window
562  * stack) to X11.
563  *
564  * NOTE: We need to push the stack first so that the windows have the correct
565  * stacking order. This is relevant for workspace switching where we map the
566  * windows because mapping may generate EnterNotify events. When they are
567  * generated in the wrong order, this will cause focus problems when switching
568  * workspaces.
569  *
570  */
571 void x_push_changes(Con *con) {
572     con_state *state;
573
574     DLOG("-- PUSHING WINDOW STACK --\n");
575     bool order_changed = false;
576     /* X11 correctly represents the stack if we push it from bottom to top */
577     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
578         DLOG("stack: 0x%08x\n", state->id);
579         con_state *prev = CIRCLEQ_PREV(state, state);
580         con_state *old_prev = CIRCLEQ_PREV(state, old_state);
581         if (prev != old_prev)
582             order_changed = true;
583         if ((state->initial || order_changed) && prev != CIRCLEQ_END(&state_head)) {
584             DLOG("Stacking 0x%08x above 0x%08x\n", prev->id, state->id);
585             uint32_t mask = 0;
586             mask |= XCB_CONFIG_WINDOW_SIBLING;
587             mask |= XCB_CONFIG_WINDOW_STACK_MODE;
588             uint32_t values[] = {state->id, XCB_STACK_MODE_ABOVE};
589
590             xcb_configure_window(conn, prev->id, mask, values);
591         }
592         state->initial = false;
593     }
594
595     DLOG("\n\n PUSHING CHANGES\n\n");
596     x_push_node(con);
597
598     xcb_window_t to_focus = focused->frame;
599     if (focused->window != NULL)
600         to_focus = focused->window->id;
601
602     DLOG("focused_id = 0x%08x, to_focus = 0x%08x\n", focused_id, to_focus);
603     if (focused_id != to_focus) {
604         if (!focused->mapped) {
605             DLOG("Not updating focus (to %p / %s), focused window is not mapped.\n", focused, focused->name);
606         } else {
607             DLOG("Updating focus (focused: %p / %s)\n", focused, focused->name);
608             xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, to_focus, XCB_CURRENT_TIME);
609             focused_id = to_focus;
610         }
611     }
612
613     xcb_flush(conn);
614     DLOG("\n\n ENDING CHANGES\n\n");
615
616     x_push_node_unmaps(con);
617
618     /* save the current stack as old stack */
619     CIRCLEQ_FOREACH(state, &state_head, state) {
620         CIRCLEQ_REMOVE(&old_state_head, state, old_state);
621         CIRCLEQ_INSERT_TAIL(&old_state_head, state, old_state);
622     }
623     CIRCLEQ_FOREACH(state, &old_state_head, old_state) {
624         DLOG("old stack: 0x%08x\n", state->id);
625     }
626 }
627
628 /*
629  * Raises the specified container in the internal stack of X windows. The
630  * next call to x_push_changes() will make the change visible in X11.
631  *
632  */
633 void x_raise_con(Con *con) {
634     con_state *state;
635     DLOG("raising in new stack: %p / %s\n", con, con->name);
636     state = state_for_frame(con->frame);
637
638     CIRCLEQ_REMOVE(&state_head, state, state);
639     CIRCLEQ_INSERT_HEAD(&state_head, state, state);
640 }
641
642 /*
643  * Sets the WM_NAME property (so, no UTF8, but used only for debugging anyways)
644  * of the given name. Used for properly tagging the windows for easily spotting
645  * i3 windows in xwininfo -root -all.
646  *
647  */
648 void x_set_name(Con *con, const char *name) {
649     struct con_state *state;
650
651     if ((state = state_for_frame(con->frame)) == NULL) {
652         ELOG("window state not found\n");
653         return;
654     }
655
656     FREE(state->name);
657     state->name = sstrdup(name);
658 }