]> git.sur5r.net Git - i3/i3/blob - src/manage.c
Merge branch 'master' into next
[i3/i3] / src / manage.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * manage.c: Contains all functions for initially managing new windows
8  *           (or existing ones on restart).
9  *
10  */
11
12 #include "all.h"
13
14 /*
15  * Go through all existing windows (if the window manager is restarted) and manage them
16  *
17  */
18 void manage_existing_windows(xcb_window_t root) {
19     xcb_query_tree_reply_t *reply;
20     int i, len;
21     xcb_window_t *children;
22     xcb_get_window_attributes_cookie_t *cookies;
23
24     /* Get the tree of windows whose parent is the root window (= all) */
25     if ((reply = xcb_query_tree_reply(conn, xcb_query_tree(conn, root), 0)) == NULL)
26         return;
27
28     len = xcb_query_tree_children_length(reply);
29     cookies = smalloc(len * sizeof(*cookies));
30
31     /* Request the window attributes for every window */
32     children = xcb_query_tree_children(reply);
33     for (i = 0; i < len; ++i)
34         cookies[i] = xcb_get_window_attributes(conn, children[i]);
35
36     /* Call manage_window with the attributes for every window */
37     for (i = 0; i < len; ++i)
38         manage_window(children[i], cookies[i], true);
39
40     free(reply);
41     free(cookies);
42 }
43
44 /*
45  * Restores the geometry of each window by reparenting it to the root window
46  * at the position of its frame.
47  *
48  * This is to be called *only* before exiting/restarting i3 because of evil
49  * side-effects which are to be expected when continuing to run i3.
50  *
51  */
52 void restore_geometry() {
53     DLOG("Restoring geometry\n");
54
55     Con *con;
56     TAILQ_FOREACH(con, &all_cons, all_cons)
57         if (con->window) {
58             DLOG("Re-adding X11 border of %d px\n", con->border_width);
59             con->window_rect.width += (2 * con->border_width);
60             con->window_rect.height += (2 * con->border_width);
61             xcb_set_window_rect(conn, con->window->id, con->window_rect);
62             DLOG("placing window %08x at %d %d\n", con->window->id, con->rect.x, con->rect.y);
63             xcb_reparent_window(conn, con->window->id, root,
64                                 con->rect.x, con->rect.y);
65         }
66
67     /* Make sure our changes reach the X server, we restart/exit now */
68     xcb_flush(conn);
69 }
70
71 /*
72  * Do some sanity checks and then reparent the window.
73  *
74  */
75 void manage_window(xcb_window_t window, xcb_get_window_attributes_cookie_t cookie,
76                    bool needs_to_be_mapped) {
77     xcb_drawable_t d = { window };
78     xcb_get_geometry_cookie_t geomc;
79     xcb_get_geometry_reply_t *geom;
80     xcb_get_window_attributes_reply_t *attr = NULL;
81
82     DLOG("---> looking at window 0x%08x\n", window);
83
84     xcb_get_property_cookie_t wm_type_cookie, strut_cookie, state_cookie,
85                               utf8_title_cookie, title_cookie,
86                               class_cookie, leader_cookie, transient_cookie;
87
88
89     geomc = xcb_get_geometry(conn, d);
90 #define FREE_GEOMETRY() do { \
91     if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) != NULL) \
92         free(geom); \
93 } while (0)
94
95     /* Check if the window is mapped (it could be not mapped when intializing and
96        calling manage_window() for every window) */
97     if ((attr = xcb_get_window_attributes_reply(conn, cookie, 0)) == NULL) {
98         DLOG("Could not get attributes\n");
99         FREE_GEOMETRY();
100         return;
101     }
102
103     if (needs_to_be_mapped && attr->map_state != XCB_MAP_STATE_VIEWABLE) {
104         DLOG("map_state unviewable\n");
105         FREE_GEOMETRY();
106         goto out;
107     }
108
109     /* Don’t manage clients with the override_redirect flag */
110     DLOG("override_redirect is %d\n", attr->override_redirect);
111     if (attr->override_redirect) {
112         FREE_GEOMETRY();
113         goto out;
114     }
115
116     /* Check if the window is already managed */
117     if (con_by_window_id(window) != NULL) {
118         DLOG("already managed (by con %p)\n", con_by_window_id(window));
119         FREE_GEOMETRY();
120         goto out;
121     }
122
123     /* Get the initial geometry (position, size, …) */
124     if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL) {
125         DLOG("could not get geometry\n");
126         goto out;
127     }
128
129     uint32_t values[1];
130
131     /* Set a temporary event mask for the new window, consisting only of
132      * PropertyChange. We need to be notified of PropertyChanges because the
133      * client can change its properties *after* we requested them but *before*
134      * we actually reparented it and have set our final event mask. */
135     values[0] = XCB_EVENT_MASK_PROPERTY_CHANGE;
136     xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
137
138 #define GET_PROPERTY(atom, len) xcb_get_property(conn, false, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, len)
139
140     wm_type_cookie = GET_PROPERTY(A__NET_WM_WINDOW_TYPE, UINT32_MAX);
141     strut_cookie = GET_PROPERTY(A__NET_WM_STRUT_PARTIAL, UINT32_MAX);
142     state_cookie = GET_PROPERTY(A__NET_WM_STATE, UINT32_MAX);
143     utf8_title_cookie = GET_PROPERTY(A__NET_WM_NAME, 128);
144     leader_cookie = GET_PROPERTY(A_WM_CLIENT_LEADER, UINT32_MAX);
145     transient_cookie = GET_PROPERTY(XCB_ATOM_WM_TRANSIENT_FOR, UINT32_MAX);
146     title_cookie = GET_PROPERTY(XCB_ATOM_WM_NAME, 128);
147     class_cookie = GET_PROPERTY(XCB_ATOM_WM_CLASS, 128);
148     /* TODO: also get wm_normal_hints here. implement after we got rid of xcb-event */
149
150     DLOG("reparenting!\n");
151
152     i3Window *cwindow = scalloc(sizeof(i3Window));
153     cwindow->id = window;
154
155     /* We need to grab the mouse buttons for click to focus */
156     xcb_grab_button(conn, false, window, XCB_EVENT_MASK_BUTTON_PRESS,
157                     XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
158                     1 /* left mouse button */,
159                     XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
160
161     xcb_grab_button(conn, false, window, XCB_EVENT_MASK_BUTTON_PRESS,
162                     XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
163                     3 /* right mouse button */,
164                     XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
165
166
167     /* update as much information as possible so far (some replies may be NULL) */
168     window_update_class(cwindow, xcb_get_property_reply(conn, class_cookie, NULL), true);
169     window_update_name_legacy(cwindow, xcb_get_property_reply(conn, title_cookie, NULL), true);
170     window_update_name(cwindow, xcb_get_property_reply(conn, utf8_title_cookie, NULL), true);
171     window_update_leader(cwindow, xcb_get_property_reply(conn, leader_cookie, NULL));
172     window_update_transient_for(cwindow, xcb_get_property_reply(conn, transient_cookie, NULL));
173     window_update_strut_partial(cwindow, xcb_get_property_reply(conn, strut_cookie, NULL));
174
175     /* check if the window needs WM_TAKE_FOCUS */
176     cwindow->needs_take_focus = window_supports_protocol(cwindow->id, A_WM_TAKE_FOCUS);
177
178     /* Where to start searching for a container that swallows the new one? */
179     Con *search_at = croot;
180
181     xcb_get_property_reply_t *reply = xcb_get_property_reply(conn, wm_type_cookie, NULL);
182     if (xcb_reply_contains_atom(reply, A__NET_WM_WINDOW_TYPE_DOCK)) {
183         LOG("This window is of type dock\n");
184         Output *output = get_output_containing(geom->x, geom->y);
185         if (output != NULL) {
186             DLOG("Starting search at output %s\n", output->name);
187             search_at = output->con;
188         }
189
190         /* find out the desired position of this dock window */
191         if (cwindow->reserved.top > 0 && cwindow->reserved.bottom == 0) {
192             DLOG("Top dock client\n");
193             cwindow->dock = W_DOCK_TOP;
194         } else if (cwindow->reserved.top == 0 && cwindow->reserved.bottom > 0) {
195             DLOG("Bottom dock client\n");
196             cwindow->dock = W_DOCK_BOTTOM;
197         } else {
198             DLOG("Ignoring invalid reserved edges (_NET_WM_STRUT_PARTIAL), using position as fallback:\n");
199             if (geom->y < (search_at->rect.height / 2)) {
200                 DLOG("geom->y = %d < rect.height / 2 = %d, it is a top dock client\n",
201                      geom->y, (search_at->rect.height / 2));
202                 cwindow->dock = W_DOCK_TOP;
203             } else {
204                 DLOG("geom->y = %d >= rect.height / 2 = %d, it is a bottom dock client\n",
205                      geom->y, (search_at->rect.height / 2));
206                 cwindow->dock = W_DOCK_BOTTOM;
207             }
208         }
209     }
210
211     DLOG("Initial geometry: (%d, %d, %d, %d)\n", geom->x, geom->y, geom->width, geom->height);
212
213     Con *nc = NULL;
214     Match *match;
215     Assignment *assignment;
216
217     /* TODO: two matches for one container */
218
219     /* See if any container swallows this new window */
220     nc = con_for_window(search_at, cwindow, &match);
221     if (nc == NULL) {
222         /* If not, check if it is assigned to a specific workspace / output */
223         if ((assignment = assignment_for(cwindow, A_TO_WORKSPACE | A_TO_OUTPUT))) {
224             DLOG("Assignment matches (%p)\n", match);
225             if (assignment->type == A_TO_WORKSPACE) {
226                 nc = con_descend_focused(workspace_get(assignment->dest.workspace, NULL));
227                 DLOG("focused on ws %s: %p / %s\n", assignment->dest.workspace, nc, nc->name);
228                 if (nc->type == CT_WORKSPACE)
229                     nc = tree_open_con(nc, cwindow);
230                 else nc = tree_open_con(nc->parent, cwindow);
231             }
232         /* TODO: handle assignments with type == A_TO_OUTPUT */
233         } else {
234             /* If not, insert it at the currently focused position */
235             if (focused->type == CT_CON && con_accepts_window(focused)) {
236                 LOG("using current container, focused = %p, focused->name = %s\n",
237                                 focused, focused->name);
238                 nc = focused;
239             } else nc = tree_open_con(NULL, cwindow);
240         }
241     } else {
242         /* M_BELOW inserts the new window as a child of the one which was
243          * matched (e.g. dock areas) */
244         if (match != NULL && match->insert_where == M_BELOW) {
245             nc = tree_open_con(nc, cwindow);
246         }
247     }
248
249     DLOG("new container = %p\n", nc);
250     nc->window = cwindow;
251     x_reinit(nc);
252
253     nc->border_width = geom->border_width;
254
255     char *name;
256     asprintf(&name, "[i3 con] container around %p", cwindow);
257     x_set_name(nc, name);
258     free(name);
259
260     Con *ws = con_get_workspace(nc);
261     Con *fs = (ws ? con_get_fullscreen_con(ws, CF_OUTPUT) : NULL);
262     if (fs == NULL)
263         fs = con_get_fullscreen_con(croot, CF_GLOBAL);
264
265     if (fs == NULL) {
266         DLOG("Not in fullscreen mode, focusing\n");
267         if (!cwindow->dock) {
268             /* Check that the workspace is visible. If the window was assigned
269              * to an invisible workspace, we should not steal focus. */
270             if (workspace_is_visible(ws)) {
271                 con_focus(nc);
272             } else DLOG("workspace not visible, not focusing\n");
273         } else DLOG("dock, not focusing\n");
274     } else {
275         DLOG("fs = %p, ws = %p, not focusing\n", fs, ws);
276         /* Insert the new container in focus stack *after* the currently
277          * focused (fullscreen) con. This way, the new container will be
278          * focused after we return from fullscreen mode */
279         Con *first = TAILQ_FIRST(&(nc->parent->focus_head));
280         if (first != nc) {
281             /* We only modify the focus stack if the container is not already
282              * the first one. This can happen when existing containers swallow
283              * new windows, for example when restarting. */
284             TAILQ_REMOVE(&(nc->parent->focus_head), nc, focused);
285             TAILQ_INSERT_AFTER(&(nc->parent->focus_head), first, nc, focused);
286         }
287     }
288
289     /* set floating if necessary */
290     bool want_floating = false;
291     if (xcb_reply_contains_atom(reply, A__NET_WM_WINDOW_TYPE_DIALOG) ||
292         xcb_reply_contains_atom(reply, A__NET_WM_WINDOW_TYPE_UTILITY) ||
293         xcb_reply_contains_atom(reply, A__NET_WM_WINDOW_TYPE_TOOLBAR) ||
294         xcb_reply_contains_atom(reply, A__NET_WM_WINDOW_TYPE_SPLASH)) {
295         LOG("This window is a dialog window, setting floating\n");
296         want_floating = true;
297     }
298
299     FREE(reply);
300
301     if (cwindow->transient_for != XCB_NONE ||
302         (cwindow->leader != XCB_NONE &&
303          cwindow->leader != cwindow->id &&
304          con_by_window_id(cwindow->leader) != NULL)) {
305         LOG("This window is transiert for another window, setting floating\n");
306         want_floating = true;
307
308         if (config.popup_during_fullscreen == PDF_LEAVE_FULLSCREEN &&
309             fs != NULL) {
310             LOG("There is a fullscreen window, leaving fullscreen mode\n");
311             con_toggle_fullscreen(fs, CF_OUTPUT);
312         }
313     }
314
315     /* dock clients cannot be floating, that makes no sense */
316     if (cwindow->dock)
317         want_floating = false;
318
319     /* Store the requested geometry. The width/height gets raised to at least
320      * 75x50 when entering floating mode, which is the minimum size for a
321      * window to be useful (smaller windows are usually overlays/toolbars/…
322      * which are not managed by the wm anyways). We store the original geometry
323      * here because it’s used for dock clients. */
324     nc->geometry = (Rect){ geom->x, geom->y, geom->width, geom->height };
325
326     if (want_floating) {
327         DLOG("geometry = %d x %d\n", nc->geometry.width, nc->geometry.height);
328         floating_enable(nc, true);
329     }
330
331     /* to avoid getting an UnmapNotify event due to reparenting, we temporarily
332      * declare no interest in any state change event of this window */
333     values[0] = XCB_NONE;
334     xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
335
336     xcb_void_cookie_t rcookie = xcb_reparent_window_checked(conn, window, nc->frame, 0, 0);
337     if (xcb_request_check(conn, rcookie) != NULL) {
338         LOG("Could not reparent the window, aborting\n");
339         goto geom_out;
340     }
341
342     values[0] = CHILD_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
343     xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
344     xcb_flush(conn);
345
346     reply = xcb_get_property_reply(conn, state_cookie, NULL);
347     if (xcb_reply_contains_atom(reply, A__NET_WM_STATE_FULLSCREEN))
348         con_toggle_fullscreen(nc, CF_OUTPUT);
349
350     FREE(reply);
351
352     /* Put the client inside the save set. Upon termination (whether killed or
353      * normal exit does not matter) of the window manager, these clients will
354      * be correctly reparented to their most closest living ancestor (=
355      * cleanup) */
356     xcb_change_save_set(conn, XCB_SET_MODE_INSERT, window);
357
358     /* Check if any assignments match */
359     run_assignments(cwindow);
360
361     tree_render();
362
363 geom_out:
364     free(geom);
365 out:
366     free(attr);
367     return;
368 }