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