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