]> git.sur5r.net Git - i3/i3/blob - src/x.c
When assigning children to containers, reset their x window state
[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     Rect rect;
22     Rect window_rect;
23
24     bool initial;
25
26     CIRCLEQ_ENTRY(con_state) state;
27     CIRCLEQ_ENTRY(con_state) old_state;
28 } con_state;
29
30 CIRCLEQ_HEAD(state_head, con_state) state_head =
31     CIRCLEQ_HEAD_INITIALIZER(state_head);
32
33 CIRCLEQ_HEAD(old_state_head, con_state) old_state_head =
34     CIRCLEQ_HEAD_INITIALIZER(old_state_head);
35
36 /*
37  * Returns the container state for the given frame. This function always
38  * returns a container state (otherwise, there is a bug in the code and the
39  * container state of a container for which x_con_init() was not called was
40  * requested).
41  *
42  */
43 static con_state *state_for_frame(xcb_window_t window) {
44     con_state *state;
45     CIRCLEQ_FOREACH(state, &state_head, state)
46         if (state->id == window)
47             return state;
48
49     /* TODO: better error handling? */
50     ELOG("No state found\n");
51     assert(true);
52     return NULL;
53 }
54
55 /*
56  * Initializes the X11 part for the given container. Called exactly once for
57  * every container from con_new().
58  *
59  */
60 void x_con_init(Con *con) {
61     /* TODO: maybe create the window when rendering first? we could then even
62      * get the initial geometry right */
63
64     uint32_t mask = 0;
65     uint32_t values[2];
66
67     /* our own frames should not be managed */
68     mask |= XCB_CW_OVERRIDE_REDIRECT;
69     values[0] = 1;
70
71     /* We want to know when… */
72     mask |= XCB_CW_EVENT_MASK;
73     values[1] = FRAME_EVENT_MASK;
74
75     Rect dims = { -15, -15, 10, 10 };
76     con->frame = create_window(conn, dims, XCB_WINDOW_CLASS_INPUT_OUTPUT, -1, false, mask, values);
77     con->gc = xcb_generate_id(conn);
78     xcb_create_gc(conn, con->gc, con->frame, 0, 0);
79
80     struct con_state *state = scalloc(sizeof(struct con_state));
81     state->id = con->frame;
82     state->mapped = false;
83     state->initial = true;
84     CIRCLEQ_INSERT_HEAD(&state_head, state, state);
85     CIRCLEQ_INSERT_HEAD(&old_state_head, state, old_state);
86     LOG("adding new state for window id 0x%08x\n", state->id);
87 }
88
89 /*
90  * Re-initializes the associated X window state for this container. You have
91  * to call this when you assign a client to an empty container to ensure that
92  * its state gets updated correctly.
93  *
94  */
95 void x_reinit(Con *con) {
96     struct con_state *state;
97
98     if ((state = state_for_frame(con->frame)) == NULL) {
99         ELOG("window state not found\n");
100         return;
101     }
102
103     LOG("resetting state %p to initial\n", state);
104     state->initial = true;
105     memset(&(state->window_rect), 0, sizeof(Rect));
106 }
107
108 void x_con_kill(Con *con) {
109     con_state *state;
110
111     xcb_destroy_window(conn, con->frame);
112     state = state_for_frame(con->frame);
113     CIRCLEQ_REMOVE(&state_head, state, state);
114     CIRCLEQ_REMOVE(&old_state_head, state, old_state);
115 }
116
117 /*
118  * Returns true if the client supports the given protocol atom (like WM_DELETE_WINDOW)
119  *
120  */
121 static bool window_supports_protocol(xcb_window_t window, xcb_atom_t atom) {
122     xcb_get_property_cookie_t cookie;
123     xcb_get_wm_protocols_reply_t protocols;
124     bool result = false;
125
126     cookie = xcb_get_wm_protocols_unchecked(conn, window, atoms[WM_PROTOCOLS]);
127     if (xcb_get_wm_protocols_reply(conn, cookie, &protocols, NULL) != 1)
128         return false;
129
130     /* Check if the client’s protocols have the requested atom set */
131     for (uint32_t i = 0; i < protocols.atoms_len; i++)
132         if (protocols.atoms[i] == atom)
133             result = true;
134
135     xcb_get_wm_protocols_reply_wipe(&protocols);
136
137     return result;
138 }
139
140 void x_window_kill(xcb_window_t window) {
141     /* if this window does not support WM_DELETE_WINDOW, we kill it the hard way */
142     if (!window_supports_protocol(window, atoms[WM_DELETE_WINDOW])) {
143         LOG("Killing window the hard way\n");
144         xcb_kill_client(conn, window);
145         return;
146     }
147
148     xcb_client_message_event_t ev;
149
150     memset(&ev, 0, sizeof(xcb_client_message_event_t));
151
152     ev.response_type = XCB_CLIENT_MESSAGE;
153     ev.window = window;
154     ev.type = atoms[WM_PROTOCOLS];
155     ev.format = 32;
156     ev.data.data32[0] = atoms[WM_DELETE_WINDOW];
157     ev.data.data32[1] = XCB_CURRENT_TIME;
158
159     LOG("Sending WM_DELETE to the client\n");
160     xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)&ev);
161     xcb_flush(conn);
162 }
163
164 void x_draw_decoration(Con *con) {
165     Con *parent;
166
167     parent = con->parent;
168
169     if (con == focused)
170         xcb_change_gc_single(conn, parent->gc, XCB_GC_FOREGROUND, get_colorpixel("#FF0000"));
171     else xcb_change_gc_single(conn, parent->gc, XCB_GC_FOREGROUND, get_colorpixel("#0C0C0C"));
172     xcb_rectangle_t drect = { con->deco_rect.x, con->deco_rect.y, con->deco_rect.width, con->deco_rect.height };
173     xcb_poly_fill_rectangle(conn, parent->frame, parent->gc, 1, &drect);
174
175     if (con->window == NULL)
176         return;
177
178     i3Window *win = con->window;
179
180     if (win->name_x == NULL) {
181         LOG("not rendering decoration, not yet known\n");
182         return;
183     }
184
185
186     LOG("should render text %s onto %p / %s\n", win->name_json, parent, parent->name);
187
188     xcb_change_gc_single(conn, parent->gc, XCB_GC_FOREGROUND, get_colorpixel("#FFFFFF"));
189     if (win->uses_net_wm_name)
190         xcb_image_text_16(
191             conn,
192             win->name_len,
193             parent->frame,
194             parent->gc,
195             con->deco_rect.x,
196             con->deco_rect.y + 14, /* TODO: hardcoded */
197             (xcb_char2b_t*)win->name_x
198         );
199     else
200         xcb_image_text_8(
201             conn,
202             win->name_len,
203             parent->frame,
204             parent->gc,
205             con->deco_rect.x,
206             con->deco_rect.y + 14, /* TODO: hardcoded */
207             win->name_x
208         );
209 }
210
211 /*
212  * This function pushes the properties of each node of the layout tree to
213  * X11 if they have changed (like the map state, position of the window, …).
214  * It recursively traverses all children of the given node.
215  *
216  */
217 static void x_push_node(Con *con) {
218     Con *current;
219     con_state *state;
220
221     LOG("Pushing changes for node %p / %s\n", con, con->name);
222     state = state_for_frame(con->frame);
223
224     /* map/unmap if map state changed, also ensure that the child window
225      * is changed if we are mapped *and* in initial state (meaning the
226      * container was empty before, but now got a child) */
227     if (state->mapped != con->mapped || (con->mapped && state->initial)) {
228         if (!con->mapped) {
229             LOG("unmapping container\n");
230             xcb_unmap_window(conn, con->frame);
231         } else {
232             if (state->initial && con->window != NULL) {
233                 LOG("mapping child window\n");
234                 xcb_map_window(conn, con->window->id);
235             }
236             LOG("mapping container\n");
237             xcb_map_window(conn, con->frame);
238         }
239         state->mapped = con->mapped;
240     }
241
242     /* set new position if rect changed */
243     if (memcmp(&(state->rect), &(con->rect), sizeof(Rect)) != 0) {
244         LOG("setting rect (%d, %d, %d, %d)\n", con->rect.x, con->rect.y, con->rect.width, con->rect.height);
245         xcb_set_window_rect(conn, con->frame, con->rect);
246         memcpy(&(state->rect), &(con->rect), sizeof(Rect));
247     }
248
249     /* dito, but for child windows */
250     if (memcmp(&(state->window_rect), &(con->window_rect), sizeof(Rect)) != 0) {
251         LOG("setting window rect (%d, %d, %d, %d)\n",
252             con->window_rect.x, con->window_rect.y, con->window_rect.width, con->window_rect.height);
253         xcb_set_window_rect(conn, con->window->id, con->window_rect);
254         memcpy(&(state->rect), &(con->rect), sizeof(Rect));
255     }
256
257     /* handle all children and floating windows of this node */
258     TAILQ_FOREACH(current, &(con->nodes_head), nodes)
259         x_push_node(current);
260
261     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
262         x_push_node(current);
263
264     if (con->type != CT_ROOT && con->type != CT_OUTPUT)
265         x_draw_decoration(con);
266 }
267
268 /*
269  * Pushes all changes (state of each node, see x_push_node() and the window
270  * stack) to X11.
271  *
272  */
273 void x_push_changes(Con *con) {
274     con_state *state;
275
276     LOG("\n\n PUSHING CHANGES\n\n");
277     x_push_node(con);
278
279     LOG("-- PUSHING WINDOW STACK --\n");
280     /* X11 correctly represents the stack if we push it from bottom to top */
281     CIRCLEQ_FOREACH_REVERSE(state, &state_head, state) {
282         LOG("stack: 0x%08x\n", state->id);
283         con_state *prev = CIRCLEQ_PREV(state, state);
284         con_state *old_prev = CIRCLEQ_PREV(state, old_state);
285         if ((state->initial || prev != old_prev) && prev != CIRCLEQ_END(&state_head)) {
286             state->initial = false;
287             LOG("Stacking 0x%08x above 0x%08x\n", prev->id, state->id);
288             uint32_t mask = 0;
289             mask |= XCB_CONFIG_WINDOW_SIBLING;
290             mask |= XCB_CONFIG_WINDOW_STACK_MODE;
291             uint32_t values[] = {state->id, XCB_STACK_MODE_ABOVE};
292
293             xcb_configure_window(conn, prev->id, mask, values);
294         }
295     }
296
297     xcb_window_t to_focus = focused->frame;
298     if (focused->window != NULL)
299         to_focus = focused->window->id;
300
301     if (focused_id != to_focus) {
302         LOG("Updating focus (focused: %p / %s)\n", focused, focused->name);
303         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, to_focus, XCB_CURRENT_TIME);
304     }
305
306     xcb_flush(conn);
307     LOG("\n\n ENDING CHANGES\n\n");
308
309     /* save the current stack as old stack */
310     CIRCLEQ_FOREACH(state, &state_head, state) {
311         CIRCLEQ_REMOVE(&old_state_head, state, old_state);
312         CIRCLEQ_INSERT_TAIL(&old_state_head, state, old_state);
313     }
314     CIRCLEQ_FOREACH(state, &old_state_head, old_state) {
315         LOG("old stack: 0x%08x\n", state->id);
316     }
317 }
318
319 /*
320  * Raises the specified container in the internal stack of X windows. The
321  * next call to x_push_changes() will make the change visible in X11.
322  *
323  */
324 void x_raise_con(Con *con) {
325     con_state *state;
326     LOG("raising in new stack: %p / %s\n", con, con->name);
327     state = state_for_frame(con->frame);
328
329     LOG("found state entry, moving to top\n");
330     CIRCLEQ_REMOVE(&state_head, state, state);
331     CIRCLEQ_INSERT_HEAD(&state_head, state, state);
332 }