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