]> git.sur5r.net Git - i3/i3/blob - src/manage.c
Bugfix: don’t focus dock clients (Thanks mseed, mist)
[i3/i3] / src / manage.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 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 = 0;
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     wm_type_cookie = xcb_get_any_property_unchecked(conn, false, window, atoms[_NET_WM_WINDOW_TYPE], UINT32_MAX);
89     strut_cookie = xcb_get_any_property_unchecked(conn, false, window, atoms[_NET_WM_STRUT_PARTIAL], UINT32_MAX);
90     state_cookie = xcb_get_any_property_unchecked(conn, false, window, atoms[_NET_WM_STATE], UINT32_MAX);
91     utf8_title_cookie = xcb_get_any_property_unchecked(conn, false, window, atoms[_NET_WM_NAME], 128);
92     leader_cookie = xcb_get_any_property_unchecked(conn, false, window, atoms[WM_CLIENT_LEADER], UINT32_MAX);
93     transient_cookie = xcb_get_any_property_unchecked(conn, false, window, WM_TRANSIENT_FOR, UINT32_MAX);
94     title_cookie = xcb_get_any_property_unchecked(conn, false, window, WM_NAME, 128);
95     class_cookie = xcb_get_any_property_unchecked(conn, false, window, WM_CLASS, 128);
96     /* TODO: also get wm_normal_hints here. implement after we got rid of xcb-event */
97
98     geomc = xcb_get_geometry(conn, d);
99
100     /* Check if the window is mapped (it could be not mapped when intializing and
101        calling manage_window() for every window) */
102     if ((attr = xcb_get_window_attributes_reply(conn, cookie, 0)) == NULL) {
103         DLOG("Could not get attributes\n");
104         return;
105     }
106
107     if (needs_to_be_mapped && attr->map_state != XCB_MAP_STATE_VIEWABLE) {
108         DLOG("map_state unviewable\n");
109         goto out;
110     }
111
112     /* Don’t manage clients with the override_redirect flag */
113     DLOG("override_redirect is %d\n", attr->override_redirect);
114     if (attr->override_redirect)
115         goto out;
116
117     /* Check if the window is already managed */
118     if (con_by_window_id(window) != NULL) {
119         DLOG("already managed (by con %p)\n", con_by_window_id(window));
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     DLOG("reparenting!\n");
130     uint32_t mask = 0;
131     uint32_t values[1];
132
133     i3Window *cwindow = scalloc(sizeof(i3Window));
134     cwindow->id = window;
135
136     /* We need to grab the mouse buttons for click to focus */
137     xcb_grab_button(conn, false, window, XCB_EVENT_MASK_BUTTON_PRESS,
138                     XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
139                     1 /* left mouse button */,
140                     XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
141
142     xcb_grab_button(conn, false, window, XCB_EVENT_MASK_BUTTON_PRESS,
143                     XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
144                     3 /* right mouse button */,
145                     XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
146
147
148     /* update as much information as possible so far (some replies may be NULL) */
149     window_update_class(cwindow, xcb_get_property_reply(conn, class_cookie, NULL));
150     window_update_name_legacy(cwindow, xcb_get_property_reply(conn, title_cookie, NULL));
151     window_update_name(cwindow, xcb_get_property_reply(conn, utf8_title_cookie, NULL));
152     window_update_leader(cwindow, xcb_get_property_reply(conn, leader_cookie, NULL));
153     window_update_transient_for(cwindow, xcb_get_property_reply(conn, transient_cookie, NULL));
154     window_update_strut_partial(cwindow, xcb_get_property_reply(conn, strut_cookie, NULL));
155
156     /* Where to start searching for a container that swallows the new one? */
157     Con *search_at = croot;
158
159     xcb_get_property_reply_t *reply = xcb_get_property_reply(conn, wm_type_cookie, NULL);
160     if (xcb_reply_contains_atom(reply, atoms[_NET_WM_WINDOW_TYPE_DOCK])) {
161         LOG("This window is of type dock\n");
162         Output *output = get_output_containing(geom->x, geom->y);
163         if (output != NULL) {
164             DLOG("Starting search at output %s\n", output->name);
165             search_at = output->con;
166         }
167
168         /* find out the desired position of this dock window */
169         if (cwindow->reserved.top > 0 && cwindow->reserved.bottom == 0) {
170             DLOG("Top dock client\n");
171             cwindow->dock = W_DOCK_TOP;
172         } else if (cwindow->reserved.top == 0 && cwindow->reserved.bottom > 0) {
173             DLOG("Bottom dock client\n");
174             cwindow->dock = W_DOCK_BOTTOM;
175         } else {
176             DLOG("Ignoring invalid reserved edges (_NET_WM_STRUT_PARTIAL), using position as fallback:\n");
177             if (geom->y < (search_at->rect.height / 2)) {
178                 DLOG("geom->y = %d < rect.height / 2 = %d, it is a top dock client\n",
179                      geom->y, (search_at->rect.height / 2));
180                 cwindow->dock = W_DOCK_TOP;
181             } else {
182                 DLOG("geom->y = %d >= rect.height / 2 = %d, it is a bottom dock client\n",
183                      geom->y, (search_at->rect.height / 2));
184                 cwindow->dock = W_DOCK_BOTTOM;
185             }
186         }
187     }
188
189     DLOG("Initial geometry: (%d, %d, %d, %d)\n", geom->x, geom->y, geom->width, geom->height);
190
191     Con *nc;
192     Match *match;
193
194     /* TODO: assignments */
195     /* TODO: two matches for one container */
196
197     /* See if any container swallows this new window */
198     nc = con_for_window(search_at, cwindow, &match);
199     if (nc == NULL) {
200         if (focused->type == CT_CON && con_accepts_window(focused)) {
201             LOG("using current container, focused = %p, focused->name = %s\n",
202                             focused, focused->name);
203             nc = focused;
204         } else nc = tree_open_con(NULL, true);
205     } else {
206         /* M_ACTIVE are assignments */
207         if (match != NULL && match->insert_where == M_ACTIVE) {
208             /* We need to go down the focus stack starting from nc */
209             while (TAILQ_FIRST(&(nc->focus_head)) != TAILQ_END(&(nc->focus_head))) {
210                 DLOG("walking down one step...\n");
211                 nc = TAILQ_FIRST(&(nc->focus_head));
212             }
213             /* We need to open a new con */
214             /* TODO: make a difference between match-once containers (directly assign
215              * cwindow) and match-multiple (tree_open_con first) */
216             nc = tree_open_con(nc->parent, true);
217         }
218
219         /* M_BELOW inserts the new window as a child of the one which was
220          * matched (e.g. dock areas) */
221         else if (match != NULL && match->insert_where == M_BELOW) {
222             nc = tree_open_con(nc, !cwindow->dock);
223         }
224     }
225
226     DLOG("new container = %p\n", nc);
227     nc->window = cwindow;
228     x_reinit(nc);
229
230     nc->border_width = geom->border_width;
231
232     char *name;
233     asprintf(&name, "[i3 con] container around %p", cwindow);
234     x_set_name(nc, name);
235     free(name);
236
237     /* set floating if necessary */
238     bool want_floating = false;
239     if (xcb_reply_contains_atom(reply, atoms[_NET_WM_WINDOW_TYPE_DIALOG]) ||
240         xcb_reply_contains_atom(reply, atoms[_NET_WM_WINDOW_TYPE_UTILITY]) ||
241         xcb_reply_contains_atom(reply, atoms[_NET_WM_WINDOW_TYPE_TOOLBAR]) ||
242         xcb_reply_contains_atom(reply, atoms[_NET_WM_WINDOW_TYPE_SPLASH])) {
243         LOG("This window is a dialog window, setting floating\n");
244         want_floating = true;
245     }
246
247     if (cwindow->transient_for != XCB_NONE ||
248         (cwindow->leader != XCB_NONE &&
249          cwindow->leader != cwindow->id &&
250          con_by_window_id(cwindow->leader) != NULL))
251         want_floating = true;
252
253     /* dock clients cannot be floating, that makes no sense */
254     if (cwindow->dock)
255         want_floating = false;
256
257     nc->geometry = (Rect){ geom->x, geom->y, geom->width, geom->height };
258
259     if (want_floating) {
260         nc->rect.x = geom->x;
261         nc->rect.y = geom->y;
262         /* We respect the geometry wishes of floating windows, as long as they
263          * are bigger than our minimal useful size (75x50). */
264         nc->rect.width = max(geom->width, 75);
265         nc->rect.height = max(geom->height, 50);
266         DLOG("geometry = %d x %d\n", nc->rect.width, nc->rect.height);
267         floating_enable(nc, false);
268     }
269
270     /* to avoid getting an UnmapNotify event due to reparenting, we temporarily
271      * declare no interest in any state change event of this window */
272     values[0] = XCB_NONE;
273     xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
274
275     xcb_void_cookie_t rcookie = xcb_reparent_window_checked(conn, window, nc->frame, 0, 0);
276     if (xcb_request_check(conn, rcookie) != NULL) {
277         LOG("Could not reparent the window, aborting\n");
278         goto out;
279     }
280
281     mask = XCB_CW_EVENT_MASK;
282     values[0] = CHILD_EVENT_MASK;
283     xcb_change_window_attributes(conn, window, mask, values);
284
285     reply = xcb_get_property_reply(conn, state_cookie, NULL);
286     if (xcb_reply_contains_atom(reply, atoms[_NET_WM_STATE_FULLSCREEN]))
287         con_toggle_fullscreen(nc);
288
289     /* Put the client inside the save set. Upon termination (whether killed or
290      * normal exit does not matter) of the window manager, these clients will
291      * be correctly reparented to their most closest living ancestor (=
292      * cleanup) */
293     xcb_change_save_set(conn, XCB_SET_MODE_INSERT, window);
294
295     tree_render();
296
297     free(geom);
298 out:
299     free(attr);
300     return;
301 }
302
303 #if 0
304 void reparent_window(xcb_connection_t *conn, xcb_window_t child,
305                      xcb_visualid_t visual, xcb_window_t root, uint8_t depth,
306                      int16_t x, int16_t y, uint16_t width, uint16_t height,
307                      uint32_t border_width) {
308
309        /* Minimum useful size for managed windows is 75x50 (primarily affects floating) */
310         width = max(width, 75);
311         height = max(height, 50);
312
313         if (config.default_border != NULL)
314                 client_init_border(conn, new, config.default_border[1]);
315
316         /* We need to grab the mouse buttons for click to focus */
317         xcb_grab_button(conn, false, child, XCB_EVENT_MASK_BUTTON_PRESS,
318                         XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
319                         1 /* left mouse button */,
320                         XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
321
322         xcb_grab_button(conn, false, child, XCB_EVENT_MASK_BUTTON_PRESS,
323                         XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, root, XCB_NONE,
324                         3 /* right mouse button */,
325                         XCB_BUTTON_MASK_ANY /* don’t filter for any modifiers */);
326
327         if (dock) {
328             DLOG("Window is a dock.\n");
329             Output *t_out = get_output_containing(x, y);
330             if (t_out != c_ws->output) {
331                     DLOG("Dock client requested to be on output %s by geometry (%d, %d)\n",
332                                     t_out->name, x, y);
333                     new->workspace = t_out->current_workspace;
334             }
335             new->dock = true;
336             new->borderless = true;
337             new->titlebar_position = TITLEBAR_OFF;
338             new->force_reconfigure = true;
339             new->container = NULL;
340             SLIST_INSERT_HEAD(&(t_out->dock_clients), new, dock_clients);
341             /* If it’s a dock we can’t make it float, so we break */
342             new->floating = FLOATING_AUTO_OFF;
343         }
344
345         /* All clients which have a leader should be floating */
346         if (!new->dock && !client_is_floating(new) && new->leader != 0) {
347                 DLOG("Client has WM_CLIENT_LEADER hint set, setting floating\n");
348                 new->floating = FLOATING_AUTO_ON;
349         }
350
351         if (new->workspace->auto_float) {
352                 new->floating = FLOATING_AUTO_ON;
353                 DLOG("workspace is in autofloat mode, setting floating\n");
354         }
355
356         if (new->dock) {
357                 /* Get _NET_WM_STRUT_PARTIAL to determine the client’s requested height */
358                 uint32_t *strut;
359                 preply = xcb_get_property_reply(conn, strut_cookie, NULL);
360                 if (preply != NULL && preply->value_len > 0 && (strut = xcb_get_property_value(preply))) {
361                         /* We only use a subset of the provided values, namely the reserved space at the top/bottom
362                            of the screen. This is because the only possibility for bars is at to be at the top/bottom
363                            with maximum horizontal size.
364                            TODO: bars at the top */
365                         new->desired_height = strut[3];
366                         if (new->desired_height == 0) {
367                                 DLOG("Client wanted to be 0 pixels high, using the window's height (%d)\n", original_height);
368                                 new->desired_height = original_height;
369                         }
370                         DLOG("the client wants to be %d pixels high\n", new->desired_height);
371                 } else {
372                         DLOG("The client didn't specify space to reserve at the screen edge, using its height (%d)\n", original_height);
373                         new->desired_height = original_height;
374                 }
375         } else {
376                 /* If it’s not a dock, we can check on which workspace we should put it. */
377
378                 /* Firstly, we need to get the window’s class / title. We asked for the properties at the
379                  * top of this function, get them now and pass them to our callback function for window class / title
380                  * changes. It is important that the client was already inserted into the by_child table,
381                  * because the callbacks won’t work otherwise. */
382                 preply = xcb_get_property_reply(conn, utf8_title_cookie, NULL);
383                 handle_windowname_change(NULL, conn, 0, new->child, atoms[_NET_WM_NAME], preply);
384
385                 preply = xcb_get_property_reply(conn, title_cookie, NULL);
386                 handle_windowname_change_legacy(NULL, conn, 0, new->child, WM_NAME, preply);
387
388                 preply = xcb_get_property_reply(conn, class_cookie, NULL);
389                 handle_windowclass_change(NULL, conn, 0, new->child, WM_CLASS, preply);
390
391                 /* if WM_CLIENT_LEADER is set, we put the new window on the
392                  * same window as its leader. This might be overwritten by
393                  * assignments afterwards. */
394                 if (new->leader != XCB_NONE) {
395                         DLOG("client->leader is set (to 0x%08x)\n", new->leader);
396                         Client *parent = table_get(&by_child, new->leader);
397                         if (parent != NULL && parent->container != NULL) {
398                                 Workspace *t_ws = parent->workspace;
399                                 new->container = t_ws->table[parent->container->col][parent->container->row];
400                                 new->workspace = t_ws;
401                                 old_focused = new->container->currently_focused;
402                                 map_frame = workspace_is_visible(t_ws);
403                                 new->urgent = true;
404                                 /* This is a little tricky: we cannot use
405                                  * workspace_update_urgent_flag() because the
406                                  * new window was not yet inserted into the
407                                  * focus stack on t_ws. */
408                                 t_ws->urgent = true;
409                         } else {
410                                 DLOG("parent is not usable\n");
411                         }
412                 }
413
414                 struct Assignment *assign;
415                 TAILQ_FOREACH(assign, &assignments, assignments) {
416                         if (get_matching_client(conn, assign->windowclass_title, new) == NULL)
417                                 continue;
418
419                         if (assign->floating == ASSIGN_FLOATING_ONLY ||
420                             assign->floating == ASSIGN_FLOATING) {
421                                 new->floating = FLOATING_AUTO_ON;
422                                 LOG("Assignment matches, putting client into floating mode\n");
423                                 if (assign->floating == ASSIGN_FLOATING_ONLY)
424                                         break;
425                         }
426
427                         LOG("Assignment \"%s\" matches, so putting it on workspace %d\n",
428                             assign->windowclass_title, assign->workspace);
429
430                         if (c_ws->output->current_workspace->num == (assign->workspace-1)) {
431                                 DLOG("We are already there, no need to do anything\n");
432                                 break;
433                         }
434
435                         DLOG("Changing container/workspace and unmapping the client\n");
436                         Workspace *t_ws = workspace_get(assign->workspace-1);
437                         workspace_initialize(t_ws, c_ws->output, false);
438
439                         new->container = t_ws->table[t_ws->current_col][t_ws->current_row];
440                         new->workspace = t_ws;
441                         old_focused = new->container->currently_focused;
442
443                         map_frame = workspace_is_visible(t_ws);
444                         break;
445                 }
446         }
447
448
449         if (client_is_floating(new)) {
450                 SLIST_INSERT_HEAD(&(new->workspace->focus_stack), new, focus_clients);
451
452                 /* Add the client to the list of floating clients for its workspace */
453                 TAILQ_INSERT_TAIL(&(new->workspace->floating_clients), new, floating_clients);
454
455                 new->container = NULL;
456
457                 new->rect.width = new->floating_rect.width + 2 + 2;
458                 new->rect.height = new->floating_rect.height + (font->height + 2 + 2) + 2;
459
460                 /* Some clients (like GIMP’s color picker window) get mapped
461                  * to (0, 0), so we push them to a reasonable position
462                  * (centered over their leader) */
463                 if (new->leader != 0 && x == 0 && y == 0) {
464                         DLOG("Floating client wants to (0x0), moving it over its leader instead\n");
465                         Client *leader = table_get(&by_child, new->leader);
466                         if (leader == NULL) {
467                                 DLOG("leader is NULL, centering it over current workspace\n");
468
469                                 x = c_ws->rect.x + (c_ws->rect.width / 2) - (new->rect.width / 2);
470                                 y = c_ws->rect.y + (c_ws->rect.height / 2) - (new->rect.height / 2);
471                         } else {
472                                 x = leader->rect.x + (leader->rect.width / 2) - (new->rect.width / 2);
473                                 y = leader->rect.y + (leader->rect.height / 2) - (new->rect.height / 2);
474                         }
475                 }
476                 new->floating_rect.x = new->rect.x = x;
477                 new->floating_rect.y = new->rect.y = y;
478                 DLOG("copying floating_rect from tiling (%d, %d) size (%d, %d)\n",
479                                 new->floating_rect.x, new->floating_rect.y,
480                                 new->floating_rect.width, new->floating_rect.height);
481                 DLOG("outer rect (%d, %d) size (%d, %d)\n",
482                                 new->rect.x, new->rect.y, new->rect.width, new->rect.height);
483
484                 /* Make sure it is on top of the other windows */
485                 xcb_raise_window(conn, new->frame);
486                 reposition_client(conn, new);
487                 resize_client(conn, new);
488                 /* redecorate_window flushes */
489                 redecorate_window(conn, new);
490         }
491
492         new->initialized = true;
493
494
495         render_layout(conn);
496
497 map:
498         /* Map the window first to avoid flickering */
499         xcb_map_window(conn, child);
500         if (map_frame)
501                 client_map(conn, new);
502
503         if ((CUR_CELL->workspace->fullscreen_client == NULL || new->fullscreen) && !new->dock) {
504                 /* Focus the new window if we’re not in fullscreen mode and if it is not a dock window */
505                 if ((new->workspace->fullscreen_client == NULL) || new->fullscreen) {
506                         if (!client_is_floating(new)) {
507                                 new->container->currently_focused = new;
508                                 if (map_frame)
509                                         render_container(conn, new->container);
510                         }
511                         if (new->container == CUR_CELL || client_is_floating(new)) {
512                                 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, new->child, XCB_CURRENT_TIME);
513                                 ewmh_update_active_window(new->child);
514                         }
515                 }
516         }
517
518         xcb_flush(conn);
519 }
520 #endif