i3
manage.c
Go to the documentation of this file.
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;
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);
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_primary_name(output));
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  DLOG("Assignment matches (%p)\n", match);
264  Con *assigned_ws = workspace_get(assignment->dest.workspace, NULL);
265  nc = con_descend_tiling_focused(assigned_ws);
266  DLOG("focused on ws %s: %p / %s\n", assigned_ws->name, nc, nc->name);
267  if (nc->type == CT_WORKSPACE)
268  nc = tree_open_con(nc, cwindow);
269  else
270  nc = tree_open_con(nc->parent, cwindow);
271 
272  /* set the urgency hint on the window if the workspace is not visible */
273  if (!workspace_is_visible(assigned_ws))
274  urgency_hint = true;
275  } else if (cwindow->wm_desktop != NET_WM_DESKTOP_NONE &&
276  cwindow->wm_desktop != NET_WM_DESKTOP_ALL &&
277  (wm_desktop_ws = ewmh_get_workspace_by_index(cwindow->wm_desktop)) != NULL) {
278  /* If _NET_WM_DESKTOP is set to a specific desktop, we open it
279  * there. Note that we ignore the special value 0xFFFFFFFF here
280  * since such a window will be made sticky anyway. */
281 
282  DLOG("Using workspace %p / %s because _NET_WM_DESKTOP = %d.\n",
283  wm_desktop_ws, wm_desktop_ws->name, cwindow->wm_desktop);
284 
285  nc = con_descend_tiling_focused(wm_desktop_ws);
286  if (nc->type == CT_WORKSPACE)
287  nc = tree_open_con(nc, cwindow);
288  else
289  nc = tree_open_con(nc->parent, cwindow);
290  } else if (startup_ws) {
291  /* If it was started on a specific workspace, we want to open it there. */
292  DLOG("Using workspace on which this application was started (%s)\n", startup_ws);
293  nc = con_descend_tiling_focused(workspace_get(startup_ws, NULL));
294  DLOG("focused on ws %s: %p / %s\n", startup_ws, nc, nc->name);
295  if (nc->type == CT_WORKSPACE)
296  nc = tree_open_con(nc, cwindow);
297  else
298  nc = tree_open_con(nc->parent, cwindow);
299  } else {
300  /* If not, insert it at the currently focused position */
301  if (focused->type == CT_CON && con_accepts_window(focused)) {
302  LOG("using current container, focused = %p, focused->name = %s\n",
303  focused, focused->name);
304  nc = focused;
305  } else
306  nc = tree_open_con(NULL, cwindow);
307  }
308  } else {
309  /* M_BELOW inserts the new window as a child of the one which was
310  * matched (e.g. dock areas) */
311  if (match != NULL && match->insert_where == M_BELOW) {
312  nc = tree_open_con(nc, cwindow);
313  }
314 
315  /* If M_BELOW is not used, the container is replaced. This happens with
316  * "swallows" criteria that are used for stored layouts, in which case
317  * we need to remove that criterion, because they should only be valid
318  * once. */
319  if (match != NULL && match->insert_where != M_BELOW) {
320  DLOG("Removing match %p from container %p\n", match, nc);
321  TAILQ_REMOVE(&(nc->swallow_head), match, matches);
322  match_free(match);
323  FREE(match);
324  }
325  }
326 
327  DLOG("new container = %p\n", nc);
328  if (nc->window != NULL && nc->window != cwindow) {
329  if (!restore_kill_placeholder(nc->window->id)) {
330  DLOG("Uh?! Container without a placeholder, but with a window, has swallowed this to-be-managed window?!\n");
331  } else {
332  /* Remove remaining criteria, the first swallowed window wins. */
333  while (!TAILQ_EMPTY(&(nc->swallow_head))) {
334  Match *first = TAILQ_FIRST(&(nc->swallow_head));
335  TAILQ_REMOVE(&(nc->swallow_head), first, matches);
336  match_free(first);
337  free(first);
338  }
339  }
340  }
341  if (nc->window != cwindow && nc->window != NULL) {
342  window_free(nc->window);
343  }
344  nc->window = cwindow;
345  x_reinit(nc);
346 
347  nc->border_width = geom->border_width;
348 
349  char *name;
350  sasprintf(&name, "[i3 con] container around %p", cwindow);
351  x_set_name(nc, name);
352  free(name);
353 
354  /* handle fullscreen containers */
355  Con *ws = con_get_workspace(nc);
356  Con *fs = (ws ? con_get_fullscreen_con(ws, CF_OUTPUT) : NULL);
357  if (fs == NULL)
359 
360  if (xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_FULLSCREEN)) {
361  /* If this window is already fullscreen (after restarting!), skip
362  * toggling fullscreen, that would drop it out of fullscreen mode. */
363  if (fs != nc) {
364  Output *output = get_output_with_dimensions((Rect){geom->x, geom->y, geom->width, geom->height});
365  /* If the requested window geometry spans the whole area
366  * of an output, move the window to that output. This is
367  * needed e.g. for LibreOffice Impress multi-monitor
368  * presentations to work out of the box. */
369  if (output != NULL)
370  con_move_to_output(nc, output);
372  }
373  fs = NULL;
374  }
375 
376  bool set_focus = false;
377 
378  if (fs == NULL) {
379  DLOG("Not in fullscreen mode, focusing\n");
380  if (!cwindow->dock) {
381  /* Check that the workspace is visible and on the same output as
382  * the current focused container. If the window was assigned to an
383  * invisible workspace, we should not steal focus. */
384  Con *current_output = con_get_output(focused);
385  Con *target_output = con_get_output(ws);
386 
387  if (workspace_is_visible(ws) && current_output == target_output) {
388  if (!match_from_restart_mode) {
389  set_focus = true;
390  } else {
391  DLOG("not focusing, matched with restart_mode == true\n");
392  }
393  } else {
394  DLOG("workspace not visible, not focusing\n");
395  }
396  } else {
397  DLOG("dock, not focusing\n");
398  }
399  } else {
400  DLOG("fs = %p, ws = %p, not focusing\n", fs, ws);
401  /* Insert the new container in focus stack *after* the currently
402  * focused (fullscreen) con. This way, the new container will be
403  * focused after we return from fullscreen mode */
404  Con *first = TAILQ_FIRST(&(nc->parent->focus_head));
405  if (first != nc) {
406  /* We only modify the focus stack if the container is not already
407  * the first one. This can happen when existing containers swallow
408  * new windows, for example when restarting. */
409  TAILQ_REMOVE(&(nc->parent->focus_head), nc, focused);
410  TAILQ_INSERT_AFTER(&(nc->parent->focus_head), first, nc, focused);
411  }
412  }
413 
414  /* set floating if necessary */
415  bool want_floating = false;
416  if (xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_DIALOG) ||
417  xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_UTILITY) ||
418  xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_TOOLBAR) ||
419  xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_SPLASH) ||
420  xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_MODAL) ||
421  (wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE &&
422  wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE &&
423  wm_size_hints.min_height == wm_size_hints.max_height &&
424  wm_size_hints.min_width == wm_size_hints.max_width)) {
425  LOG("This window is a dialog window, setting floating\n");
426  want_floating = true;
427  }
428 
429  if (xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_STICKY))
430  nc->sticky = true;
431 
432  /* We ignore the hint for an internal workspace because windows in the
433  * scratchpad also have this value, but upon restarting i3 we don't want
434  * them to become sticky windows. */
435  if (cwindow->wm_desktop == NET_WM_DESKTOP_ALL && (ws == NULL || !con_is_internal(ws))) {
436  DLOG("This window has _NET_WM_DESKTOP = 0xFFFFFFFF. Will float it and make it sticky.\n");
437  nc->sticky = true;
438  want_floating = true;
439  }
440 
441  FREE(state_reply);
442  FREE(type_reply);
443 
444  if (cwindow->transient_for != XCB_NONE ||
445  (cwindow->leader != XCB_NONE &&
446  cwindow->leader != cwindow->id &&
447  con_by_window_id(cwindow->leader) != NULL)) {
448  LOG("This window is transient for another window, setting floating\n");
449  want_floating = true;
450 
451  if (config.popup_during_fullscreen == PDF_LEAVE_FULLSCREEN &&
452  fs != NULL) {
453  LOG("There is a fullscreen window, leaving fullscreen mode\n");
455  } else if (config.popup_during_fullscreen == PDF_SMART &&
456  fs != NULL &&
457  fs->window != NULL) {
458  i3Window *transient_win = cwindow;
459  while (transient_win != NULL &&
460  transient_win->transient_for != XCB_NONE) {
461  if (transient_win->transient_for == fs->window->id) {
462  LOG("This floating window belongs to the fullscreen window (popup_during_fullscreen == smart)\n");
463  set_focus = true;
464  break;
465  }
466  Con *next_transient = con_by_window_id(transient_win->transient_for);
467  if (next_transient == NULL)
468  break;
469  /* Some clients (e.g. x11-ssh-askpass) actually set
470  * WM_TRANSIENT_FOR to their own window id, so break instead of
471  * looping endlessly. */
472  if (transient_win == next_transient->window)
473  break;
474  transient_win = next_transient->window;
475  }
476  }
477  }
478 
479  /* dock clients cannot be floating, that makes no sense */
480  if (cwindow->dock)
481  want_floating = false;
482 
483  /* Plasma windows set their geometry in WM_SIZE_HINTS. */
484  if ((wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_POSITION || wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_POSITION) &&
485  (wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_SIZE || wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_SIZE)) {
486  DLOG("We are setting geometry according to wm_size_hints x=%d y=%d w=%d h=%d\n",
487  wm_size_hints.x, wm_size_hints.y, wm_size_hints.width, wm_size_hints.height);
488  geom->x = wm_size_hints.x;
489  geom->y = wm_size_hints.y;
490  geom->width = wm_size_hints.width;
491  geom->height = wm_size_hints.height;
492  }
493 
494  if (wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
495  DLOG("Window specifies minimum size %d x %d\n", wm_size_hints.min_width, wm_size_hints.min_height);
496  nc->window->min_width = wm_size_hints.min_width;
497  nc->window->min_height = wm_size_hints.min_height;
498  }
499 
500  /* Store the requested geometry. The width/height gets raised to at least
501  * 75x50 when entering floating mode, which is the minimum size for a
502  * window to be useful (smaller windows are usually overlays/toolbars/…
503  * which are not managed by the wm anyways). We store the original geometry
504  * here because it’s used for dock clients. */
505  if (nc->geometry.width == 0)
506  nc->geometry = (Rect){geom->x, geom->y, geom->width, geom->height};
507 
508  if (motif_border_style != BS_NORMAL) {
509  DLOG("MOTIF_WM_HINTS specifies decorations (border_style = %d)\n", motif_border_style);
510  if (want_floating) {
512  } else {
513  con_set_border_style(nc, motif_border_style, config.default_border_width);
514  }
515  }
516 
517  if (want_floating) {
518  DLOG("geometry = %d x %d\n", nc->geometry.width, nc->geometry.height);
519  /* automatically set the border to the default value if a motif border
520  * was not specified */
521  bool automatic_border = (motif_border_style == BS_NORMAL);
522 
523  floating_enable(nc, automatic_border);
524  }
525 
526  /* explicitly set the border width to the default */
527  if (nc->current_border_width == -1) {
529  }
530 
531  /* to avoid getting an UnmapNotify event due to reparenting, we temporarily
532  * declare no interest in any state change event of this window */
533  values[0] = XCB_NONE;
534  xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
535 
536  xcb_void_cookie_t rcookie = xcb_reparent_window_checked(conn, window, nc->frame.id, 0, 0);
537  if (xcb_request_check(conn, rcookie) != NULL) {
538  LOG("Could not reparent the window, aborting\n");
539  goto geom_out;
540  }
541 
542  values[0] = CHILD_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
543  xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
544  xcb_flush(conn);
545 
546  /* Put the client inside the save set. Upon termination (whether killed or
547  * normal exit does not matter) of the window manager, these clients will
548  * be correctly reparented to their most closest living ancestor (=
549  * cleanup) */
550  xcb_change_save_set(conn, XCB_SET_MODE_INSERT, window);
551 
552  /* Check if any assignments match */
553  run_assignments(cwindow);
554 
555  /* 'ws' may be invalid because of the assignments, e.g. when the user uses
556  * "move window to workspace 1", but had it assigned to workspace 2. */
557  ws = con_get_workspace(nc);
558 
559  /* If this window was put onto an invisible workspace (via assignments), we
560  * render this workspace. It wouldn’t be rendered in our normal code path
561  * because only the visible workspaces get rendered.
562  *
563  * By rendering the workspace, we assign proper coordinates (read: not
564  * width=0, height=0) to the window, which is important for windows who
565  * actually use them to position their GUI elements, e.g. rhythmbox. */
566  if (ws && !workspace_is_visible(ws)) {
567  /* This is a bit hackish: we need to copy the content container’s rect
568  * to the workspace, because calling render_con() on the content
569  * container would also take the shortcut and not render the invisible
570  * workspace at all. However, just calling render_con() on the
571  * workspace isn’t enough either — it needs the rect. */
572  ws->rect = ws->parent->rect;
573  render_con(ws, true);
574  /* Disable setting focus, otherwise we’d move focus to an invisible
575  * workspace, which we generally prevent (e.g. in
576  * con_move_to_workspace). */
577  set_focus = false;
578  }
579  render_con(croot, false);
580 
581  /* Send an event about window creation */
582  ipc_send_window_event("new", nc);
583 
584  if (set_focus && assignment_for(cwindow, A_NO_FOCUS) != NULL) {
585  /* The first window on a workspace should always be focused. We have to
586  * compare with == 1 because the container has already been inserted at
587  * this point. */
588  if (con_num_windows(ws) == 1) {
589  DLOG("This is the first window on this workspace, ignoring no_focus.\n");
590  } else {
591  DLOG("no_focus was set for con = %p, not setting focus.\n", nc);
592  set_focus = false;
593  }
594  }
595 
596  if (set_focus) {
597  DLOG("Checking con = %p for _NET_WM_USER_TIME.\n", nc);
598 
599  uint32_t *wm_user_time;
600  xcb_get_property_reply_t *wm_user_time_reply = xcb_get_property_reply(conn, wm_user_time_cookie, NULL);
601  if (wm_user_time_reply != NULL && xcb_get_property_value_length(wm_user_time_reply) != 0 &&
602  (wm_user_time = xcb_get_property_value(wm_user_time_reply)) &&
603  wm_user_time[0] == 0) {
604  DLOG("_NET_WM_USER_TIME set to 0, not focusing con = %p.\n", nc);
605  set_focus = false;
606  }
607 
608  FREE(wm_user_time_reply);
609  } else {
610  xcb_discard_reply(conn, wm_user_time_cookie.sequence);
611  }
612 
613  if (set_focus) {
614  /* Even if the client doesn't want focus, we still need to focus the
615  * container to not break focus workflows. Our handling towards X will
616  * take care of not setting the input focus. However, one exception to
617  * this are clients using the globally active input model which we
618  * don't want to focus at all. */
620  set_focus = false;
621  }
622  }
623 
624  /* Defer setting focus after the 'new' event has been sent to ensure the
625  * proper window event sequence. */
626  if (set_focus && nc->mapped) {
627  DLOG("Now setting focus.\n");
628  con_focus(nc);
629  }
630 
631  tree_render();
632 
633  /* Windows might get managed with the urgency hint already set (Pidgin is
634  * known to do that), so check for that and handle the hint accordingly.
635  * This code needs to be in this part of manage_window() because the window
636  * needs to be on the final workspace first. */
637  con_set_urgency(nc, urgency_hint);
638 
639  /* Update _NET_WM_DESKTOP. We invalidate the cached value first to force an update. */
640  cwindow->wm_desktop = NET_WM_DESKTOP_NONE;
642 
643  /* If a sticky window was mapped onto another workspace, make sure to pop it to the front. */
645 
646 geom_out:
647  free(geom);
648 out:
649  free(attr);
650  return;
651 }
border_style_t
Definition: data.h:62
xcb_window_t root
Definition: main.c:59
uint32_t wm_desktop
The _NET_WM_DESKTOP for this window.
Definition: data.h:442
int sasprintf(char **strp, const char *fmt,...)
Safe-wrapper around asprintf which exits if it returns -1 (meaning that there is no more memory avail...
#define CHILD_EVENT_MASK
The XCB_CW_EVENT_MASK for the child (= real window)
Definition: xcb.h:35
void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the WM_WINDOW_ROLE.
Definition: window.c:227
Con * focused
Definition: tree.c:13
uint32_t bottom
Definition: data.h:164
void floating_enable(Con *con, bool automatic)
Enables floating mode for the given container by detaching it from its parent, creating a new contain...
Definition: floating.c:161
A &#39;Window&#39; is a type which contains an xcb_window_t and all the related information (hints like _NET_...
Definition: data.h:401
int min_height
Definition: data.h:469
void window_update_motif_hints(i3Window *win, xcb_get_property_reply_t *prop, border_style_t *motif_border_style)
Updates the MOTIF_WM_HINTS.
Definition: window.c:314
void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop)
Updates the CLIENT_LEADER (logical parent window).
Definition: window.c:152
void ewmh_update_wm_desktop(void)
Updates _NET_WM_DESKTOP for all windows.
Definition: ewmh.c:182
#define TAILQ_EMPTY(head)
Definition: queue.h:344
void con_move_to_output(Con *con, Output *output)
Moves the given container to the currently focused container on the visible workspace on the given ou...
Definition: con.c:1303
char * workspace
Definition: data.h:568
A &#39;Con&#39; represents everything from the X11 root window down to a single X11 window.
Definition: data.h:591
#define LOG(fmt,...)
Definition: libi3.h:94
Con * ewmh_get_workspace_by_index(uint32_t idx)
Returns the workspace container as enumerated by the EWMH desktop model.
Definition: ewmh.c:337
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
Definition: data.h:543
void window_update_hints(i3Window *win, xcb_get_property_reply_t *prop, bool *urgency_hint)
Updates the WM_HINTS (we only care about the input focus handling part).
Definition: window.c:273
struct Rect rect
Definition: data.h:627
xcb_connection_t * conn
XCB connection and root screen.
Definition: main.c:46
#define NET_WM_DESKTOP_ALL
Definition: workspace.h:25
void match_free(Match *match)
Frees the given match.
Definition: match.c:267
int con_num_windows(Con *con)
Count the number of windows (i.e., leaf containers).
Definition: con.c:839
void con_focus(Con *con)
Sets input focus to the given container.
Definition: con.c:223
struct Window * window
Definition: data.h:659
Con * tree_open_con(Con *con, i3Window *window)
Opens an empty container in the current container.
Definition: tree.c:145
xcb_window_t transient_for
Definition: data.h:407
void window_update_name(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the name by using _NET_WM_NAME (encoded in UTF-8) for the given window.
Definition: window.c:69
struct Rect Rect
Definition: data.h:44
union Assignment::@19 dest
destination workspace/command, depending on the type
uint32_t top
Definition: data.h:163
void ipc_send_window_event(const char *property, Con *con)
For the window events we send, along the usual "change" field, also the window container, in "container".
Definition: ipc.c:1342
enum Con::@20 type
xcb_window_t leader
Holds the xcb_window_t (just an ID) for the leader window (logical parent for toolwindows and similar...
Definition: data.h:406
Definition: data.h:62
void manage_window(xcb_window_t window, xcb_get_window_attributes_cookie_t cookie, bool needs_to_be_mapped)
Do some sanity checks and then reparent the window.
Definition: manage.c:81
Con * con_by_window_id(xcb_window_t window)
Returns the container with the given client window ID or NULL if no such container exists...
Definition: con.c:583
surface_t frame
Definition: data.h:606
uint16_t get_visual_depth(xcb_visualid_t visual_id)
Get depth of visual specified by visualid.
Definition: xcb.c:200
#define FREE(pointer)
Definition: util.h:50
struct Rect geometry
the geometry this window requested when getting mapped
Definition: data.h:635
bool needs_take_focus
Whether the application needs to receive WM_TAKE_FOCUS.
Definition: data.h:432
xcb_atom_t xcb_get_preferred_window_type(xcb_get_property_reply_t *reply)
Returns the first supported _NET_WM_WINDOW_TYPE atom.
Definition: xcb.c:133
uint32_t x
Definition: data.h:149
void con_toggle_fullscreen(Con *con, int fullscreen_mode)
Toggles fullscreen mode for the given container.
Definition: con.c:909
void x_set_name(Con *con, const char *name)
Sets the WM_NAME property (so, no UTF8, but used only for debugging anyways) of the given name...
Definition: x.c:1213
void window_update_strut_partial(i3Window *win, xcb_get_property_reply_t *prop)
Updates the _NET_WM_STRUT_PARTIAL (reserved pixels at the screen edges)
Definition: window.c:202
void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop)
Updates the TRANSIENT_FOR (logical parent window).
Definition: window.c:177
Con * con_get_workspace(Con *con)
Gets the workspace container this node is on.
Definition: con.c:405
Con * con_get_output(Con *con)
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on...
Definition: con.c:391
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
#define TAILQ_FIRST(head)
Definition: queue.h:336
int default_floating_border_width
bool restore_kill_placeholder(xcb_window_t placeholder)
Kill the placeholder window, if placeholder refers to a placeholder window.
char * name
Definition: data.h:637
bool sticky
Definition: data.h:685
Assignment * assignment_for(i3Window *window, int type)
Returns the first matching assignment for the given window.
Definition: assignments.c:72
void manage_existing_windows(xcb_window_t root)
Go through all existing windows (if the window manager is restarted) and manage them.
Definition: manage.c:20
#define TAILQ_INSERT_AFTER(head, listelm, elm, field)
Definition: queue.h:384
xcb_window_t id
Definition: data.h:402
bool con_accepts_window(Con *con)
Returns true if this node accepts a window (if the node swallows windows, it might already have swall...
Definition: con.c:372
#define TAILQ_REMOVE(head, elm, field)
Definition: queue.h:402
void con_set_urgency(Con *con, bool urgent)
Set urgency flag to the container, all the parent containers and the workspace.
Definition: con.c:2112
bool mapped
Definition: data.h:592
void output_push_sticky_windows(Con *to_focus)
Iterates over all outputs and pushes sticky windows to the currently visible workspace on that output...
Definition: output.c:76
char * startup_workspace_for_window(i3Window *cwindow, xcb_get_property_reply_t *startup_id_reply)
Checks if the given window belongs to a startup notification by checking if the _NET_STARTUP_ID prope...
Definition: startup.c:351
void render_con(Con *con, bool render_fullscreen)
"Renders" the given container (and its children), meaning that all rects are updated correctly...
Definition: render.c:40
bool con_is_internal(Con *con)
Returns true if the container is internal, such as __i3_scratch.
Definition: con.c:502
struct all_cons_head all_cons
Definition: tree.c:15
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
Output * get_output_with_dimensions(Rect rect)
Returns the active output which spans exactly the area specified by rect or NULL if there is no outpu...
Definition: randr.c:122
struct Rect window_rect
Definition: data.h:630
#define NET_WM_DESKTOP_NONE
Definition: workspace.h:24
void * scalloc(size_t num, size_t size)
Safe-wrapper around calloc which exits if malloc returns NULL (meaning that there is no more memory a...
void run_assignments(i3Window *window)
Checks the list of assignments for the given window and runs all matching ones (unless they have alre...
Definition: assignments.c:17
void window_free(i3Window *win)
Frees an i3Window and all its members.
Definition: window.c:16
bool restart_mode
Definition: data.h:532
uint32_t y
Definition: data.h:150
struct reservedpx reserved
Pixels the window reserves.
Definition: data.h:453
uint16_t depth
Depth of the window.
Definition: data.h:456
Con * con_for_window(Con *con, i3Window *window, Match **store_match)
Returns the first container below &#39;con&#39; which wants to swallow this window TODO: priority.
Definition: con.c:763
enum Config::@7 popup_during_fullscreen
What should happen when a new popup is opened during fullscreen mode.
An Output is a physical output on your graphics driver.
Definition: data.h:366
int min_width
Definition: data.h:468
void xcb_set_window_rect(xcb_connection_t *conn, xcb_window_t window, Rect r)
Configures the given window to have the size/position specified by given rect.
Definition: xcb.c:117
uint32_t height
Definition: data.h:152
uint32_t width
Definition: data.h:151
enum Match::@17 insert_where
bool xcb_reply_contains_atom(xcb_get_property_reply_t *prop, xcb_atom_t atom)
Returns true if the given reply contains the given data.
Definition: xcb.c:163
#define GET_PROPERTY(atom, len)
xcb_drawable_t id
Definition: libi3.h:552
#define DLOG(fmt,...)
Definition: libi3.h:104
void con_set_border_style(Con *con, int border_style, int border_width)
Sets the given border style on con, correctly keeping the position/size of a floating window...
Definition: con.c:1669
swallow_head
Definition: data.h:678
A "match" is a data structure which acts like a mask or expression to match certain windows or not...
Definition: data.h:483
Con * con_get_fullscreen_con(Con *con, fullscreen_mode_t fullscreen_mode)
Returns the first fullscreen node below this node.
Definition: con.c:454
enum Window::@13 dock
Whether the window says it is a dock window.
Con * con
Pointer to the Con which represents this output.
Definition: data.h:387
int border_width
Definition: data.h:656
void xcb_grab_buttons(xcb_connection_t *conn, xcb_window_t window, int *buttons)
Grab the specified buttons on a window when managing it.
Definition: xcb.c:309
int default_border_width
bool window_supports_protocol(xcb_window_t window, xcb_atom_t atom)
Returns true if the client supports the given protocol atom (like WM_DELETE_WINDOW) ...
Definition: x.c:265
int * bindings_get_buttons_to_grab(void)
Returns a list of buttons that should be grabbed on a window.
Definition: bindings.c:1000
Con * con_descend_tiling_focused(Con *con)
Returns the focused con inside this client, descending the tree as far as possible.
Definition: con.c:1473
void window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the name by using WM_NAME (encoded in COMPOUND_TEXT).
Definition: window.c:108
int current_border_width
Definition: data.h:657
Config config
Definition: config.c:17
Output * get_output_containing(unsigned int x, unsigned int y)
Returns the active (!) output which contains the coordinates x, y or NULL if there is no output which...
Definition: randr.c:102
void tree_render(void)
Renders the tree, that is rendering all outputs using render_con() and pushing the changes to X11 usi...
Definition: tree.c:495
void restore_geometry(void)
Restores the geometry of each window by reparenting it to the root window at the position of its fram...
Definition: manage.c:54
char * output_primary_name(Output *output)
Retrieves the primary name of an output.
Definition: output.c:51
Stores a rectangle, for example the size of a window, the child window etc.
Definition: data.h:148
bool workspace_is_visible(Con *ws)
Returns true if the workspace is currently visible.
Definition: workspace.c:254
void window_update_class(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the WM_CLASS (consisting of the class and instance) for the given window. ...
Definition: window.c:29
xcb_atom_t window_type
The _NET_WM_WINDOW_TYPE for this window.
Definition: data.h:439
bool doesnt_accept_focus
Whether this window accepts focus.
Definition: data.h:436
Con * workspace_get(const char *num, bool *created)
Returns a pointer to the workspace with the given number (starting at 0), creating the workspace if n...
Definition: workspace.c:48
struct Con * parent
Definition: data.h:623
struct Con * croot
Definition: tree.c:12
focus_head
Definition: data.h:675
void x_reinit(Con *con)
Re-initializes the associated X window state for this container.
Definition: x.c:177