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