]> git.sur5r.net Git - i3/i3/blob - src/manage.c
Allow assign to workspace by number
[i3/i3] / src / manage.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 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 #include "yajl_utils.h"
13
14 #include <yajl/yajl_gen.h>
15
16 /*
17  * Go through all existing windows (if the window manager is restarted) and manage them
18  *
19  */
20 void manage_existing_windows(xcb_window_t root) {
21     xcb_query_tree_reply_t *reply;
22     int i, len;
23     xcb_window_t *children;
24     xcb_get_window_attributes_cookie_t *cookies;
25
26     /* Get the tree of windows whose parent is the root window (= all) */
27     if ((reply = xcb_query_tree_reply(conn, xcb_query_tree(conn, root), 0)) == NULL)
28         return;
29
30     len = xcb_query_tree_children_length(reply);
31     cookies = smalloc(len * sizeof(*cookies));
32
33     /* Request the window attributes for every window */
34     children = xcb_query_tree_children(reply);
35     for (i = 0; i < len; ++i)
36         cookies[i] = xcb_get_window_attributes(conn, children[i]);
37
38     /* Call manage_window with the attributes for every window */
39     for (i = 0; i < len; ++i)
40         manage_window(children[i], cookies[i], true);
41
42     free(reply);
43     free(cookies);
44 }
45
46 /*
47  * Restores the geometry of each window by reparenting it to the root window
48  * at the position of its frame.
49  *
50  * This is to be called *only* before exiting/restarting i3 because of evil
51  * side-effects which are to be expected when continuing to run i3.
52  *
53  */
54 void restore_geometry(void) {
55     DLOG("Restoring geometry\n");
56
57     Con *con;
58     TAILQ_FOREACH(con, &all_cons, all_cons)
59     if (con->window) {
60         DLOG("Re-adding X11 border of %d px\n", con->border_width);
61         con->window_rect.width += (2 * con->border_width);
62         con->window_rect.height += (2 * con->border_width);
63         xcb_set_window_rect(conn, con->window->id, con->window_rect);
64         DLOG("placing window %08x at %d %d\n", con->window->id, con->rect.x, con->rect.y);
65         xcb_reparent_window(conn, con->window->id, root,
66                             con->rect.x, con->rect.y);
67     }
68
69     /* Strictly speaking, this line doesn’t really belong here, but since we
70      * are syncing, let’s un-register as a window manager first */
71     xcb_change_window_attributes(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT});
72
73     /* Make sure our changes reach the X server, we restart/exit now */
74     xcb_aux_sync(conn);
75 }
76
77 /*
78  * Do some sanity checks and then reparent the window.
79  *
80  */
81 void manage_window(xcb_window_t window, xcb_get_window_attributes_cookie_t cookie,
82                    bool needs_to_be_mapped) {
83     xcb_drawable_t d = {window};
84     xcb_get_geometry_cookie_t geomc;
85     xcb_get_geometry_reply_t *geom;
86     xcb_get_window_attributes_reply_t *attr = NULL;
87
88     xcb_get_property_cookie_t wm_type_cookie, strut_cookie, state_cookie,
89         utf8_title_cookie, title_cookie,
90         class_cookie, leader_cookie, transient_cookie,
91         role_cookie, startup_id_cookie, wm_hints_cookie,
92         wm_normal_hints_cookie, motif_wm_hints_cookie, wm_user_time_cookie, wm_desktop_cookie;
93
94     geomc = xcb_get_geometry(conn, d);
95
96     /* Check if the window is mapped (it could be not mapped when intializing and
97        calling manage_window() for every window) */
98     if ((attr = xcb_get_window_attributes_reply(conn, cookie, 0)) == NULL) {
99         DLOG("Could not get attributes\n");
100         xcb_discard_reply(conn, geomc.sequence);
101         return;
102     }
103
104     if (needs_to_be_mapped && attr->map_state != XCB_MAP_STATE_VIEWABLE) {
105         xcb_discard_reply(conn, geomc.sequence);
106         goto out;
107     }
108
109     /* Don’t manage clients with the override_redirect flag */
110     if (attr->override_redirect) {
111         xcb_discard_reply(conn, geomc.sequence);
112         goto out;
113     }
114
115     /* Check if the window is already managed */
116     if (con_by_window_id(window) != NULL) {
117         DLOG("already managed (by con %p)\n", con_by_window_id(window));
118         xcb_discard_reply(conn, geomc.sequence);
119         goto out;
120     }
121
122     /* Get the initial geometry (position, size, …) */
123     if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL) {
124         DLOG("could not get geometry\n");
125         goto out;
126     }
127
128     uint32_t values[1];
129
130     /* Set a temporary event mask for the new window, consisting only of
131      * PropertyChange and StructureNotify. We need to be notified of
132      * PropertyChanges because the client can change its properties *after* we
133      * requested them but *before* we actually reparented it and have set our
134      * final event mask.
135      * We need StructureNotify because the client may unmap the window before
136      * we get to re-parent it.
137      * If this request fails, we assume the client has already unmapped the
138      * window between the MapRequest and our event mask change. */
139     values[0] = XCB_EVENT_MASK_PROPERTY_CHANGE |
140                 XCB_EVENT_MASK_STRUCTURE_NOTIFY;
141     xcb_void_cookie_t event_mask_cookie =
142         xcb_change_window_attributes_checked(conn, window, XCB_CW_EVENT_MASK, values);
143     if (xcb_request_check(conn, event_mask_cookie) != NULL) {
144         LOG("Could not change event mask, the window probably already disappeared.\n");
145         goto out;
146     }
147
148 #define GET_PROPERTY(atom, len) xcb_get_property(conn, false, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, len)
149
150     wm_type_cookie = GET_PROPERTY(A__NET_WM_WINDOW_TYPE, UINT32_MAX);
151     strut_cookie = GET_PROPERTY(A__NET_WM_STRUT_PARTIAL, UINT32_MAX);
152     state_cookie = GET_PROPERTY(A__NET_WM_STATE, UINT32_MAX);
153     utf8_title_cookie = GET_PROPERTY(A__NET_WM_NAME, 128);
154     leader_cookie = GET_PROPERTY(A_WM_CLIENT_LEADER, UINT32_MAX);
155     transient_cookie = GET_PROPERTY(XCB_ATOM_WM_TRANSIENT_FOR, UINT32_MAX);
156     title_cookie = GET_PROPERTY(XCB_ATOM_WM_NAME, 128);
157     class_cookie = GET_PROPERTY(XCB_ATOM_WM_CLASS, 128);
158     role_cookie = GET_PROPERTY(A_WM_WINDOW_ROLE, 128);
159     startup_id_cookie = GET_PROPERTY(A__NET_STARTUP_ID, 512);
160     wm_hints_cookie = xcb_icccm_get_wm_hints(conn, window);
161     wm_normal_hints_cookie = xcb_icccm_get_wm_normal_hints(conn, window);
162     motif_wm_hints_cookie = GET_PROPERTY(A__MOTIF_WM_HINTS, 5 * sizeof(uint64_t));
163     wm_user_time_cookie = GET_PROPERTY(A__NET_WM_USER_TIME, UINT32_MAX);
164     wm_desktop_cookie = GET_PROPERTY(A__NET_WM_DESKTOP, UINT32_MAX);
165
166     DLOG("Managing window 0x%08x\n", window);
167
168     i3Window *cwindow = scalloc(1, sizeof(i3Window));
169     cwindow->id = window;
170     cwindow->depth = get_visual_depth(attr->visual);
171
172     int *buttons = bindings_get_buttons_to_grab();
173     xcb_grab_buttons(conn, window, buttons);
174     FREE(buttons);
175
176     /* update as much information as possible so far (some replies may be NULL) */
177     window_update_class(cwindow, xcb_get_property_reply(conn, class_cookie, NULL), true);
178     window_update_name_legacy(cwindow, xcb_get_property_reply(conn, title_cookie, NULL), true);
179     window_update_name(cwindow, xcb_get_property_reply(conn, utf8_title_cookie, NULL), true);
180     window_update_leader(cwindow, xcb_get_property_reply(conn, leader_cookie, NULL));
181     window_update_transient_for(cwindow, xcb_get_property_reply(conn, transient_cookie, NULL));
182     window_update_strut_partial(cwindow, xcb_get_property_reply(conn, strut_cookie, NULL));
183     window_update_role(cwindow, xcb_get_property_reply(conn, role_cookie, NULL), true);
184     bool urgency_hint;
185     window_update_hints(cwindow, xcb_get_property_reply(conn, wm_hints_cookie, NULL), &urgency_hint);
186     border_style_t motif_border_style = BS_NORMAL;
187     window_update_motif_hints(cwindow, xcb_get_property_reply(conn, motif_wm_hints_cookie, NULL), &motif_border_style);
188     xcb_size_hints_t wm_size_hints;
189     if (!xcb_icccm_get_wm_size_hints_reply(conn, wm_normal_hints_cookie, &wm_size_hints, NULL))
190         memset(&wm_size_hints, '\0', sizeof(xcb_size_hints_t));
191     xcb_get_property_reply_t *type_reply = xcb_get_property_reply(conn, wm_type_cookie, NULL);
192     xcb_get_property_reply_t *state_reply = xcb_get_property_reply(conn, state_cookie, NULL);
193
194     xcb_get_property_reply_t *startup_id_reply;
195     startup_id_reply = xcb_get_property_reply(conn, startup_id_cookie, NULL);
196     char *startup_ws = startup_workspace_for_window(cwindow, startup_id_reply);
197     DLOG("startup workspace = %s\n", startup_ws);
198
199     /* Get _NET_WM_DESKTOP if it was set. */
200     xcb_get_property_reply_t *wm_desktop_reply;
201     wm_desktop_reply = xcb_get_property_reply(conn, wm_desktop_cookie, NULL);
202     cwindow->wm_desktop = NET_WM_DESKTOP_NONE;
203     if (wm_desktop_reply != NULL && xcb_get_property_value_length(wm_desktop_reply) != 0) {
204         uint32_t *wm_desktops = xcb_get_property_value(wm_desktop_reply);
205         cwindow->wm_desktop = (int32_t)wm_desktops[0];
206     }
207     FREE(wm_desktop_reply);
208
209     /* check if the window needs WM_TAKE_FOCUS */
210     cwindow->needs_take_focus = window_supports_protocol(cwindow->id, A_WM_TAKE_FOCUS);
211
212     /* read the preferred _NET_WM_WINDOW_TYPE atom */
213     cwindow->window_type = xcb_get_preferred_window_type(type_reply);
214
215     /* Where to start searching for a container that swallows the new one? */
216     Con *search_at = croot;
217
218     if (xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_DOCK)) {
219         LOG("This window is of type dock\n");
220         Output *output = get_output_containing(geom->x, geom->y);
221         if (output != NULL) {
222             DLOG("Starting search at output %s\n", output->name);
223             search_at = output->con;
224         }
225
226         /* find out the desired position of this dock window */
227         if (cwindow->reserved.top > 0 && cwindow->reserved.bottom == 0) {
228             DLOG("Top dock client\n");
229             cwindow->dock = W_DOCK_TOP;
230         } else if (cwindow->reserved.top == 0 && cwindow->reserved.bottom > 0) {
231             DLOG("Bottom dock client\n");
232             cwindow->dock = W_DOCK_BOTTOM;
233         } else {
234             DLOG("Ignoring invalid reserved edges (_NET_WM_STRUT_PARTIAL), using position as fallback:\n");
235             if (geom->y < (int16_t)(search_at->rect.height / 2)) {
236                 DLOG("geom->y = %d < rect.height / 2 = %d, it is a top dock client\n",
237                      geom->y, (search_at->rect.height / 2));
238                 cwindow->dock = W_DOCK_TOP;
239             } else {
240                 DLOG("geom->y = %d >= rect.height / 2 = %d, it is a bottom dock client\n",
241                      geom->y, (search_at->rect.height / 2));
242                 cwindow->dock = W_DOCK_BOTTOM;
243             }
244         }
245     }
246
247     DLOG("Initial geometry: (%d, %d, %d, %d)\n", geom->x, geom->y, geom->width, geom->height);
248
249     Con *nc = NULL;
250     Match *match = NULL;
251     Assignment *assignment;
252
253     /* TODO: two matches for one container */
254
255     /* See if any container swallows this new window */
256     nc = con_for_window(search_at, cwindow, &match);
257     const bool match_from_restart_mode = (match && match->restart_mode);
258     if (nc == NULL) {
259         Con *wm_desktop_ws = NULL;
260
261         /* If not, check if it is assigned to a specific workspace */
262         if ((assignment = assignment_for(cwindow, A_TO_WORKSPACE)) ||
263             (assignment = assignment_for(cwindow, A_TO_WORKSPACE_NUMBER))) {
264             DLOG("Assignment matches (%p)\n", match);
265
266             Con *assigned_ws = NULL;
267             if (assignment->type == A_TO_WORKSPACE_NUMBER) {
268                 Con *output = NULL;
269                 long parsed_num = ws_name_to_number(assignment->dest.workspace);
270
271                 /* This will only work for workspaces that already exist. */
272                 TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
273                     GREP_FIRST(assigned_ws, output_get_content(output), child->num == parsed_num);
274                 }
275             }
276             /* A_TO_WORKSPACE type assignment or fallback from A_TO_WORKSPACE_NUMBER
277              * when the target workspace number does not exist yet. */
278             if (!assigned_ws) {
279                 assigned_ws = workspace_get(assignment->dest.workspace, NULL);
280             }
281
282             nc = con_descend_tiling_focused(assigned_ws);
283             DLOG("focused on ws %s: %p / %s\n", assigned_ws->name, nc, nc->name);
284             if (nc->type == CT_WORKSPACE)
285                 nc = tree_open_con(nc, cwindow);
286             else
287                 nc = tree_open_con(nc->parent, cwindow);
288
289             /* set the urgency hint on the window if the workspace is not visible */
290             if (!workspace_is_visible(assigned_ws))
291                 urgency_hint = true;
292         } else if (cwindow->wm_desktop != NET_WM_DESKTOP_NONE &&
293                    cwindow->wm_desktop != NET_WM_DESKTOP_ALL &&
294                    (wm_desktop_ws = ewmh_get_workspace_by_index(cwindow->wm_desktop)) != NULL) {
295             /* If _NET_WM_DESKTOP is set to a specific desktop, we open it
296              * there. Note that we ignore the special value 0xFFFFFFFF here
297              * since such a window will be made sticky anyway. */
298
299             DLOG("Using workspace %p / %s because _NET_WM_DESKTOP = %d.\n",
300                  wm_desktop_ws, wm_desktop_ws->name, cwindow->wm_desktop);
301
302             nc = con_descend_tiling_focused(wm_desktop_ws);
303             if (nc->type == CT_WORKSPACE)
304                 nc = tree_open_con(nc, cwindow);
305             else
306                 nc = tree_open_con(nc->parent, cwindow);
307         } else if (startup_ws) {
308             /* If it was started on a specific workspace, we want to open it there. */
309             DLOG("Using workspace on which this application was started (%s)\n", startup_ws);
310             nc = con_descend_tiling_focused(workspace_get(startup_ws, NULL));
311             DLOG("focused on ws %s: %p / %s\n", startup_ws, nc, nc->name);
312             if (nc->type == CT_WORKSPACE)
313                 nc = tree_open_con(nc, cwindow);
314             else
315                 nc = tree_open_con(nc->parent, cwindow);
316         } else {
317             /* If not, insert it at the currently focused position */
318             if (focused->type == CT_CON && con_accepts_window(focused)) {
319                 LOG("using current container, focused = %p, focused->name = %s\n",
320                     focused, focused->name);
321                 nc = focused;
322             } else
323                 nc = tree_open_con(NULL, cwindow);
324         }
325     } else {
326         /* M_BELOW inserts the new window as a child of the one which was
327          * matched (e.g. dock areas) */
328         if (match != NULL && match->insert_where == M_BELOW) {
329             nc = tree_open_con(nc, cwindow);
330         }
331
332         /* If M_BELOW is not used, the container is replaced. This happens with
333          * "swallows" criteria that are used for stored layouts, in which case
334          * we need to remove that criterion, because they should only be valid
335          * once. */
336         if (match != NULL && match->insert_where != M_BELOW) {
337             DLOG("Removing match %p from container %p\n", match, nc);
338             TAILQ_REMOVE(&(nc->swallow_head), match, matches);
339             match_free(match);
340             FREE(match);
341         }
342     }
343
344     DLOG("new container = %p\n", nc);
345     if (nc->window != NULL && nc->window != cwindow) {
346         if (!restore_kill_placeholder(nc->window->id)) {
347             DLOG("Uh?! Container without a placeholder, but with a window, has swallowed this to-be-managed window?!\n");
348         } else {
349             /* Remove remaining criteria, the first swallowed window wins. */
350             while (!TAILQ_EMPTY(&(nc->swallow_head))) {
351                 Match *first = TAILQ_FIRST(&(nc->swallow_head));
352                 TAILQ_REMOVE(&(nc->swallow_head), first, matches);
353                 match_free(first);
354                 free(first);
355             }
356         }
357     }
358     if (nc->window != cwindow && nc->window != NULL) {
359         window_free(nc->window);
360     }
361     nc->window = cwindow;
362     x_reinit(nc);
363
364     nc->border_width = geom->border_width;
365
366     char *name;
367     sasprintf(&name, "[i3 con] container around %p", cwindow);
368     x_set_name(nc, name);
369     free(name);
370
371     /* handle fullscreen containers */
372     Con *ws = con_get_workspace(nc);
373     Con *fs = (ws ? con_get_fullscreen_con(ws, CF_OUTPUT) : NULL);
374     if (fs == NULL)
375         fs = con_get_fullscreen_con(croot, CF_GLOBAL);
376
377     if (xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_FULLSCREEN)) {
378         /* If this window is already fullscreen (after restarting!), skip
379          * toggling fullscreen, that would drop it out of fullscreen mode. */
380         if (fs != nc) {
381             Output *output = get_output_with_dimensions((Rect){geom->x, geom->y, geom->width, geom->height});
382             /* If the requested window geometry spans the whole area
383              * of an output, move the window to that output. This is
384              * needed e.g. for LibreOffice Impress multi-monitor
385              * presentations to work out of the box. */
386             if (output != NULL)
387                 con_move_to_output(nc, output);
388             con_toggle_fullscreen(nc, CF_OUTPUT);
389         }
390         fs = NULL;
391     }
392
393     bool set_focus = false;
394
395     if (fs == NULL) {
396         DLOG("Not in fullscreen mode, focusing\n");
397         if (!cwindow->dock) {
398             /* Check that the workspace is visible and on the same output as
399              * the current focused container. If the window was assigned to an
400              * invisible workspace, we should not steal focus. */
401             Con *current_output = con_get_output(focused);
402             Con *target_output = con_get_output(ws);
403
404             if (workspace_is_visible(ws) && current_output == target_output) {
405                 if (!match_from_restart_mode) {
406                     set_focus = true;
407                 } else {
408                     DLOG("not focusing, matched with restart_mode == true\n");
409                 }
410             } else {
411                 DLOG("workspace not visible, not focusing\n");
412             }
413         } else {
414             DLOG("dock, not focusing\n");
415         }
416     } else {
417         DLOG("fs = %p, ws = %p, not focusing\n", fs, ws);
418         /* Insert the new container in focus stack *after* the currently
419          * focused (fullscreen) con. This way, the new container will be
420          * focused after we return from fullscreen mode */
421         Con *first = TAILQ_FIRST(&(nc->parent->focus_head));
422         if (first != nc) {
423             /* We only modify the focus stack if the container is not already
424              * the first one. This can happen when existing containers swallow
425              * new windows, for example when restarting. */
426             TAILQ_REMOVE(&(nc->parent->focus_head), nc, focused);
427             TAILQ_INSERT_AFTER(&(nc->parent->focus_head), first, nc, focused);
428         }
429     }
430
431     /* set floating if necessary */
432     bool want_floating = false;
433     if (xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_DIALOG) ||
434         xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_UTILITY) ||
435         xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_TOOLBAR) ||
436         xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_SPLASH) ||
437         xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_MODAL) ||
438         (wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE &&
439          wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE &&
440          wm_size_hints.min_height == wm_size_hints.max_height &&
441          wm_size_hints.min_width == wm_size_hints.max_width)) {
442         LOG("This window is a dialog window, setting floating\n");
443         want_floating = true;
444     }
445
446     if (xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_STICKY))
447         nc->sticky = true;
448
449     /* We ignore the hint for an internal workspace because windows in the
450      * scratchpad also have this value, but upon restarting i3 we don't want
451      * them to become sticky windows. */
452     if (cwindow->wm_desktop == NET_WM_DESKTOP_ALL && (ws == NULL || !con_is_internal(ws))) {
453         DLOG("This window has _NET_WM_DESKTOP = 0xFFFFFFFF. Will float it and make it sticky.\n");
454         nc->sticky = true;
455         want_floating = true;
456     }
457
458     FREE(state_reply);
459     FREE(type_reply);
460
461     if (cwindow->transient_for != XCB_NONE ||
462         (cwindow->leader != XCB_NONE &&
463          cwindow->leader != cwindow->id &&
464          con_by_window_id(cwindow->leader) != NULL)) {
465         LOG("This window is transient for another window, setting floating\n");
466         want_floating = true;
467
468         if (config.popup_during_fullscreen == PDF_LEAVE_FULLSCREEN &&
469             fs != NULL) {
470             LOG("There is a fullscreen window, leaving fullscreen mode\n");
471             con_toggle_fullscreen(fs, CF_OUTPUT);
472         } else if (config.popup_during_fullscreen == PDF_SMART &&
473                    fs != NULL &&
474                    fs->window != NULL) {
475             i3Window *transient_win = cwindow;
476             while (transient_win != NULL &&
477                    transient_win->transient_for != XCB_NONE) {
478                 if (transient_win->transient_for == fs->window->id) {
479                     LOG("This floating window belongs to the fullscreen window (popup_during_fullscreen == smart)\n");
480                     set_focus = true;
481                     break;
482                 }
483                 Con *next_transient = con_by_window_id(transient_win->transient_for);
484                 if (next_transient == NULL)
485                     break;
486                 /* Some clients (e.g. x11-ssh-askpass) actually set
487                  * WM_TRANSIENT_FOR to their own window id, so break instead of
488                  * looping endlessly. */
489                 if (transient_win == next_transient->window)
490                     break;
491                 transient_win = next_transient->window;
492             }
493         }
494     }
495
496     /* dock clients cannot be floating, that makes no sense */
497     if (cwindow->dock)
498         want_floating = false;
499
500     /* Plasma windows set their geometry in WM_SIZE_HINTS. */
501     if ((wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_POSITION || wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_POSITION) &&
502         (wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_SIZE || wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_SIZE)) {
503         DLOG("We are setting geometry according to wm_size_hints x=%d y=%d w=%d h=%d\n",
504              wm_size_hints.x, wm_size_hints.y, wm_size_hints.width, wm_size_hints.height);
505         geom->x = wm_size_hints.x;
506         geom->y = wm_size_hints.y;
507         geom->width = wm_size_hints.width;
508         geom->height = wm_size_hints.height;
509     }
510
511     if (wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
512         DLOG("Window specifies minimum size %d x %d\n", wm_size_hints.min_width, wm_size_hints.min_height);
513         nc->window->min_width = wm_size_hints.min_width;
514         nc->window->min_height = wm_size_hints.min_height;
515     }
516
517     /* Store the requested geometry. The width/height gets raised to at least
518      * 75x50 when entering floating mode, which is the minimum size for a
519      * window to be useful (smaller windows are usually overlays/toolbars/…
520      * which are not managed by the wm anyways). We store the original geometry
521      * here because it’s used for dock clients. */
522     if (nc->geometry.width == 0)
523         nc->geometry = (Rect){geom->x, geom->y, geom->width, geom->height};
524
525     if (motif_border_style != BS_NORMAL) {
526         DLOG("MOTIF_WM_HINTS specifies decorations (border_style = %d)\n", motif_border_style);
527         if (want_floating) {
528             con_set_border_style(nc, motif_border_style, config.default_floating_border_width);
529         } else {
530             con_set_border_style(nc, motif_border_style, config.default_border_width);
531         }
532     }
533
534     if (want_floating) {
535         DLOG("geometry = %d x %d\n", nc->geometry.width, nc->geometry.height);
536         /* automatically set the border to the default value if a motif border
537          * was not specified */
538         bool automatic_border = (motif_border_style == BS_NORMAL);
539
540         floating_enable(nc, automatic_border);
541     }
542
543     /* explicitly set the border width to the default */
544     if (nc->current_border_width == -1) {
545         nc->current_border_width = (want_floating ? config.default_floating_border_width : config.default_border_width);
546     }
547
548     /* to avoid getting an UnmapNotify event due to reparenting, we temporarily
549      * declare no interest in any state change event of this window */
550     values[0] = XCB_NONE;
551     xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
552
553     xcb_void_cookie_t rcookie = xcb_reparent_window_checked(conn, window, nc->frame.id, 0, 0);
554     if (xcb_request_check(conn, rcookie) != NULL) {
555         LOG("Could not reparent the window, aborting\n");
556         goto geom_out;
557     }
558
559     values[0] = CHILD_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
560     xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
561     xcb_flush(conn);
562
563     /* Put the client inside the save set. Upon termination (whether killed or
564      * normal exit does not matter) of the window manager, these clients will
565      * be correctly reparented to their most closest living ancestor (=
566      * cleanup) */
567     xcb_change_save_set(conn, XCB_SET_MODE_INSERT, window);
568
569     /* Check if any assignments match */
570     run_assignments(cwindow);
571
572     /* 'ws' may be invalid because of the assignments, e.g. when the user uses
573      * "move window to workspace 1", but had it assigned to workspace 2. */
574     ws = con_get_workspace(nc);
575
576     /* If this window was put onto an invisible workspace (via assignments), we
577      * render this workspace. It wouldn’t be rendered in our normal code path
578      * because only the visible workspaces get rendered.
579      *
580      * By rendering the workspace, we assign proper coordinates (read: not
581      * width=0, height=0) to the window, which is important for windows who
582      * actually use them to position their GUI elements, e.g. rhythmbox. */
583     if (ws && !workspace_is_visible(ws)) {
584         /* This is a bit hackish: we need to copy the content container’s rect
585          * to the workspace, because calling render_con() on the content
586          * container would also take the shortcut and not render the invisible
587          * workspace at all. However, just calling render_con() on the
588          * workspace isn’t enough either — it needs the rect. */
589         ws->rect = ws->parent->rect;
590         render_con(ws, true);
591         /* Disable setting focus, otherwise we’d move focus to an invisible
592          * workspace, which we generally prevent (e.g. in
593          * con_move_to_workspace). */
594         set_focus = false;
595     }
596     render_con(croot, false);
597
598     /* Send an event about window creation */
599     ipc_send_window_event("new", nc);
600
601     if (set_focus && assignment_for(cwindow, A_NO_FOCUS) != NULL) {
602         /* The first window on a workspace should always be focused. We have to
603          * compare with == 1 because the container has already been inserted at
604          * this point. */
605         if (con_num_windows(ws) == 1) {
606             DLOG("This is the first window on this workspace, ignoring no_focus.\n");
607         } else {
608             DLOG("no_focus was set for con = %p, not setting focus.\n", nc);
609             set_focus = false;
610         }
611     }
612
613     if (set_focus) {
614         DLOG("Checking con = %p for _NET_WM_USER_TIME.\n", nc);
615
616         uint32_t *wm_user_time;
617         xcb_get_property_reply_t *wm_user_time_reply = xcb_get_property_reply(conn, wm_user_time_cookie, NULL);
618         if (wm_user_time_reply != NULL && xcb_get_property_value_length(wm_user_time_reply) != 0 &&
619             (wm_user_time = xcb_get_property_value(wm_user_time_reply)) &&
620             wm_user_time[0] == 0) {
621             DLOG("_NET_WM_USER_TIME set to 0, not focusing con = %p.\n", nc);
622             set_focus = false;
623         }
624
625         FREE(wm_user_time_reply);
626     } else {
627         xcb_discard_reply(conn, wm_user_time_cookie.sequence);
628     }
629
630     if (set_focus) {
631         /* Even if the client doesn't want focus, we still need to focus the
632          * container to not break focus workflows. Our handling towards X will
633          * take care of not setting the input focus. However, one exception to
634          * this are clients using the globally active input model which we
635          * don't want to focus at all. */
636         if (nc->window->doesnt_accept_focus && !nc->window->needs_take_focus) {
637             set_focus = false;
638         }
639     }
640
641     /* Defer setting focus after the 'new' event has been sent to ensure the
642      * proper window event sequence. */
643     if (set_focus && nc->mapped) {
644         DLOG("Now setting focus.\n");
645         con_focus(nc);
646     }
647
648     tree_render();
649
650     /* Windows might get managed with the urgency hint already set (Pidgin is
651      * known to do that), so check for that and handle the hint accordingly.
652      * This code needs to be in this part of manage_window() because the window
653      * needs to be on the final workspace first. */
654     con_set_urgency(nc, urgency_hint);
655
656     /* Update _NET_WM_DESKTOP. We invalidate the cached value first to force an update. */
657     cwindow->wm_desktop = NET_WM_DESKTOP_NONE;
658     ewmh_update_wm_desktop();
659
660     /* If a sticky window was mapped onto another workspace, make sure to pop it to the front. */
661     output_push_sticky_windows(focused);
662
663 geom_out:
664     free(geom);
665 out:
666     free(attr);
667     return;
668 }