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 /*
13  * Match frame and window depth. This is needed because X will refuse to reparent a
14  * window whose background is ParentRelative under a window with a different depth.
15  *
16  */
17 static xcb_window_t _match_depth(i3Window *win, Con *con) {
18  xcb_window_t old_frame = XCB_NONE;
19  if (con->depth != win->depth) {
20  old_frame = con->frame.id;
21  con->depth = win->depth;
22  x_con_reframe(con);
23  }
24  return old_frame;
25 }
26 
27 /*
28  * Remove all match criteria, the first swallowed window wins.
29  *
30  */
31 static void _remove_matches(Con *con) {
32  while (!TAILQ_EMPTY(&(con->swallow_head))) {
33  Match *first = TAILQ_FIRST(&(con->swallow_head));
34  TAILQ_REMOVE(&(con->swallow_head), first, matches);
35  match_free(first);
36  free(first);
37  }
38 }
39 
40 /*
41  * Go through all existing windows (if the window manager is restarted) and manage them
42  *
43  */
44 void manage_existing_windows(xcb_window_t root) {
45  xcb_query_tree_reply_t *reply;
46  int i, len;
47  xcb_window_t *children;
48  xcb_get_window_attributes_cookie_t *cookies;
49 
50  /* Get the tree of windows whose parent is the root window (= all) */
51  if ((reply = xcb_query_tree_reply(conn, xcb_query_tree(conn, root), 0)) == NULL)
52  return;
53 
54  len = xcb_query_tree_children_length(reply);
55  cookies = smalloc(len * sizeof(*cookies));
56 
57  /* Request the window attributes for every window */
58  children = xcb_query_tree_children(reply);
59  for (i = 0; i < len; ++i)
60  cookies[i] = xcb_get_window_attributes(conn, children[i]);
61 
62  /* Call manage_window with the attributes for every window */
63  for (i = 0; i < len; ++i)
64  manage_window(children[i], cookies[i], true);
65 
66  free(reply);
67  free(cookies);
68 }
69 
70 /*
71  * Restores the geometry of each window by reparenting it to the root window
72  * at the position of its frame.
73  *
74  * This is to be called *only* before exiting/restarting i3 because of evil
75  * side-effects which are to be expected when continuing to run i3.
76  *
77  */
78 void restore_geometry(void) {
79  DLOG("Restoring geometry\n");
80 
81  Con *con;
83  if (con->window) {
84  DLOG("Re-adding X11 border of %d px\n", con->border_width);
85  con->window_rect.width += (2 * con->border_width);
86  con->window_rect.height += (2 * con->border_width);
88  DLOG("placing window %08x at %d %d\n", con->window->id, con->rect.x, con->rect.y);
89  xcb_reparent_window(conn, con->window->id, root,
90  con->rect.x, con->rect.y);
91  }
92  }
93 
94  /* Strictly speaking, this line doesn’t really belong here, but since we
95  * are syncing, let’s un-register as a window manager first */
96  xcb_change_window_attributes(conn, root, XCB_CW_EVENT_MASK, (uint32_t[]){XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT});
97 
98  /* Make sure our changes reach the X server, we restart/exit now */
99  xcb_aux_sync(conn);
100 }
101 
102 /*
103  * Do some sanity checks and then reparent the window.
104  *
105  */
106 void manage_window(xcb_window_t window, xcb_get_window_attributes_cookie_t cookie,
107  bool needs_to_be_mapped) {
108  DLOG("window 0x%08x\n", window);
109 
110  xcb_drawable_t d = {window};
111  xcb_get_geometry_cookie_t geomc;
112  xcb_get_geometry_reply_t *geom;
113  xcb_get_window_attributes_reply_t *attr = NULL;
114 
115  xcb_get_property_cookie_t wm_type_cookie, strut_cookie, state_cookie,
116  utf8_title_cookie, title_cookie, qubes_vmname_cookie, qubes_label_cookie,
117  class_cookie, leader_cookie, transient_cookie,
118  role_cookie, startup_id_cookie, wm_hints_cookie,
119  wm_normal_hints_cookie, motif_wm_hints_cookie, wm_user_time_cookie, wm_desktop_cookie,
120  wm_machine_cookie;
121 
122  xcb_get_property_cookie_t wm_icon_cookie;
123 
124  geomc = xcb_get_geometry(conn, d);
125 
126  /* Check if the window is mapped (it could be not mapped when initializing and
127  calling manage_window() for every window) */
128  if ((attr = xcb_get_window_attributes_reply(conn, cookie, 0)) == NULL) {
129  DLOG("Could not get attributes\n");
130  xcb_discard_reply(conn, geomc.sequence);
131  return;
132  }
133 
134  if (needs_to_be_mapped && attr->map_state != XCB_MAP_STATE_VIEWABLE) {
135  xcb_discard_reply(conn, geomc.sequence);
136  goto out;
137  }
138 
139  /* Don’t manage clients with the override_redirect flag */
140  if (attr->override_redirect) {
141  xcb_discard_reply(conn, geomc.sequence);
142  goto out;
143  }
144 
145  /* Check if the window is already managed */
146  if (con_by_window_id(window) != NULL) {
147  DLOG("already managed (by con %p)\n", con_by_window_id(window));
148  xcb_discard_reply(conn, geomc.sequence);
149  goto out;
150  }
151 
152  /* Get the initial geometry (position, size, …) */
153  if ((geom = xcb_get_geometry_reply(conn, geomc, 0)) == NULL) {
154  DLOG("could not get geometry\n");
155  goto out;
156  }
157 
158  uint32_t values[1];
159 
160  /* Set a temporary event mask for the new window, consisting only of
161  * PropertyChange and StructureNotify. We need to be notified of
162  * PropertyChanges because the client can change its properties *after* we
163  * requested them but *before* we actually reparented it and have set our
164  * final event mask.
165  * We need StructureNotify because the client may unmap the window before
166  * we get to re-parent it.
167  * If this request fails, we assume the client has already unmapped the
168  * window between the MapRequest and our event mask change. */
169  values[0] = XCB_EVENT_MASK_PROPERTY_CHANGE |
170  XCB_EVENT_MASK_STRUCTURE_NOTIFY;
171  xcb_void_cookie_t event_mask_cookie =
172  xcb_change_window_attributes_checked(conn, window, XCB_CW_EVENT_MASK, values);
173  if (xcb_request_check(conn, event_mask_cookie) != NULL) {
174  LOG("Could not change event mask, the window probably already disappeared.\n");
175  goto out;
176  }
177 
178 #define GET_PROPERTY(atom, len) xcb_get_property(conn, false, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, len)
179 
180  wm_type_cookie = GET_PROPERTY(A__NET_WM_WINDOW_TYPE, UINT32_MAX);
181  strut_cookie = GET_PROPERTY(A__NET_WM_STRUT_PARTIAL, UINT32_MAX);
182  state_cookie = GET_PROPERTY(A__NET_WM_STATE, UINT32_MAX);
183  utf8_title_cookie = GET_PROPERTY(A__NET_WM_NAME, 128);
184  qubes_vmname_cookie = GET_PROPERTY(A__QUBES_VMNAME, 128);
185  qubes_label_cookie = GET_PROPERTY(A__QUBES_LABEL, UINT32_MAX);
186  leader_cookie = GET_PROPERTY(A_WM_CLIENT_LEADER, UINT32_MAX);
187  transient_cookie = GET_PROPERTY(XCB_ATOM_WM_TRANSIENT_FOR, UINT32_MAX);
188  title_cookie = GET_PROPERTY(XCB_ATOM_WM_NAME, 128);
189  class_cookie = GET_PROPERTY(XCB_ATOM_WM_CLASS, 128);
190  role_cookie = GET_PROPERTY(A_WM_WINDOW_ROLE, 128);
191  startup_id_cookie = GET_PROPERTY(A__NET_STARTUP_ID, 512);
192  wm_hints_cookie = xcb_icccm_get_wm_hints(conn, window);
193  wm_normal_hints_cookie = xcb_icccm_get_wm_normal_hints(conn, window);
194  motif_wm_hints_cookie = GET_PROPERTY(A__MOTIF_WM_HINTS, 5 * sizeof(uint64_t));
195  wm_user_time_cookie = GET_PROPERTY(A__NET_WM_USER_TIME, UINT32_MAX);
196  wm_desktop_cookie = GET_PROPERTY(A__NET_WM_DESKTOP, UINT32_MAX);
197  wm_machine_cookie = GET_PROPERTY(XCB_ATOM_WM_CLIENT_MACHINE, UINT32_MAX);
198  wm_icon_cookie = GET_PROPERTY(A__NET_WM_ICON, UINT32_MAX);
199 
200  i3Window *cwindow = scalloc(1, sizeof(i3Window));
201  cwindow->id = window;
202  cwindow->depth = get_visual_depth(attr->visual);
203 
204  int *buttons = bindings_get_buttons_to_grab();
205  xcb_grab_buttons(conn, window, buttons);
206  FREE(buttons);
207 
208  /* update as much information as possible so far (some replies may be NULL) */
209  window_update_class(cwindow, xcb_get_property_reply(conn, class_cookie, NULL));
210  window_update_name_legacy(cwindow, xcb_get_property_reply(conn, title_cookie, NULL));
211  window_update_name(cwindow, xcb_get_property_reply(conn, utf8_title_cookie, NULL));
212  window_update_icon(cwindow, xcb_get_property_reply(conn, wm_icon_cookie, NULL));
213  window_update_qubes_vmname(cwindow, xcb_get_property_reply(conn, qubes_vmname_cookie, NULL), true);
214  window_update_qubes_label(cwindow, xcb_get_property_reply(conn, qubes_label_cookie, NULL), true);
215  window_update_leader(cwindow, xcb_get_property_reply(conn, leader_cookie, NULL));
216  window_update_transient_for(cwindow, xcb_get_property_reply(conn, transient_cookie, NULL));
217  window_update_strut_partial(cwindow, xcb_get_property_reply(conn, strut_cookie, NULL));
218  window_update_role(cwindow, xcb_get_property_reply(conn, role_cookie, NULL));
219  bool urgency_hint;
220  window_update_hints(cwindow, xcb_get_property_reply(conn, wm_hints_cookie, NULL), &urgency_hint);
221  border_style_t motif_border_style;
222  bool has_mwm_hints = window_update_motif_hints(cwindow, xcb_get_property_reply(conn, motif_wm_hints_cookie, NULL), &motif_border_style);
223  window_update_normal_hints(cwindow, xcb_get_property_reply(conn, wm_normal_hints_cookie, NULL), geom);
224  window_update_machine(cwindow, xcb_get_property_reply(conn, wm_machine_cookie, NULL));
225  xcb_get_property_reply_t *type_reply = xcb_get_property_reply(conn, wm_type_cookie, NULL);
226  xcb_get_property_reply_t *state_reply = xcb_get_property_reply(conn, state_cookie, NULL);
227 
228  xcb_get_property_reply_t *startup_id_reply;
229  startup_id_reply = xcb_get_property_reply(conn, startup_id_cookie, NULL);
230  char *startup_ws = startup_workspace_for_window(cwindow, startup_id_reply);
231  DLOG("startup workspace = %s\n", startup_ws);
232 
233  /* Get _NET_WM_DESKTOP if it was set. */
234  xcb_get_property_reply_t *wm_desktop_reply;
235  wm_desktop_reply = xcb_get_property_reply(conn, wm_desktop_cookie, NULL);
236  cwindow->wm_desktop = NET_WM_DESKTOP_NONE;
237  if (wm_desktop_reply != NULL && xcb_get_property_value_length(wm_desktop_reply) != 0) {
238  uint32_t *wm_desktops = xcb_get_property_value(wm_desktop_reply);
239  cwindow->wm_desktop = (int32_t)wm_desktops[0];
240  }
241  FREE(wm_desktop_reply);
242 
243  /* check if the window needs WM_TAKE_FOCUS */
244  cwindow->needs_take_focus = window_supports_protocol(cwindow->id, A_WM_TAKE_FOCUS);
245 
246  /* read the preferred _NET_WM_WINDOW_TYPE atom */
247  cwindow->window_type = xcb_get_preferred_window_type(type_reply);
248 
249  /* Where to start searching for a container that swallows the new one? */
250  Con *search_at = croot;
251 
252  if (xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_DOCK)) {
253  LOG("This window is of type dock\n");
254  Output *output = get_output_containing(geom->x, geom->y);
255  if (output != NULL) {
256  DLOG("Starting search at output %s\n", output_primary_name(output));
257  search_at = output->con;
258  }
259 
260  /* find out the desired position of this dock window */
261  if (cwindow->reserved.top > 0 && cwindow->reserved.bottom == 0) {
262  DLOG("Top dock client\n");
263  cwindow->dock = W_DOCK_TOP;
264  } else if (cwindow->reserved.top == 0 && cwindow->reserved.bottom > 0) {
265  DLOG("Bottom dock client\n");
266  cwindow->dock = W_DOCK_BOTTOM;
267  } else {
268  DLOG("Ignoring invalid reserved edges (_NET_WM_STRUT_PARTIAL), using position as fallback:\n");
269  if (geom->y < (int16_t)(search_at->rect.height / 2)) {
270  DLOG("geom->y = %d < rect.height / 2 = %d, it is a top dock client\n",
271  geom->y, (search_at->rect.height / 2));
272  cwindow->dock = W_DOCK_TOP;
273  } else {
274  DLOG("geom->y = %d >= rect.height / 2 = %d, it is a bottom dock client\n",
275  geom->y, (search_at->rect.height / 2));
276  cwindow->dock = W_DOCK_BOTTOM;
277  }
278  }
279  }
280 
281  DLOG("Initial geometry: (%d, %d, %d, %d)\n", geom->x, geom->y, geom->width, geom->height);
282 
283  /* See if any container swallows this new window */
284  cwindow->swallowed = false;
285  Match *match = NULL;
286  Con *nc = con_for_window(search_at, cwindow, &match);
287  const bool match_from_restart_mode = (match && match->restart_mode);
288  if (nc == NULL) {
289  Con *wm_desktop_ws = NULL;
290  Assignment *assignment;
291 
292  /* If not, check if it is assigned to a specific workspace */
293  if ((assignment = assignment_for(cwindow, A_TO_WORKSPACE)) ||
294  (assignment = assignment_for(cwindow, A_TO_WORKSPACE_NUMBER))) {
295  DLOG("Assignment matches (%p)\n", match);
296 
297  Con *assigned_ws = NULL;
298  if (assignment->type == A_TO_WORKSPACE_NUMBER) {
299  long parsed_num = ws_name_to_number(assignment->dest.workspace);
300 
301  assigned_ws = get_existing_workspace_by_num(parsed_num);
302  }
303  /* A_TO_WORKSPACE type assignment or fallback from A_TO_WORKSPACE_NUMBER
304  * when the target workspace number does not exist yet. */
305  if (!assigned_ws) {
306  assigned_ws = workspace_get(assignment->dest.workspace);
307  }
308 
309  nc = con_descend_tiling_focused(assigned_ws);
310  DLOG("focused on ws %s: %p / %s\n", assigned_ws->name, nc, nc->name);
311  if (nc->type == CT_WORKSPACE)
312  nc = tree_open_con(nc, cwindow);
313  else
314  nc = tree_open_con(nc->parent, cwindow);
315 
316  /* set the urgency hint on the window if the workspace is not visible */
317  if (!workspace_is_visible(assigned_ws))
318  urgency_hint = true;
319  } else if (cwindow->wm_desktop != NET_WM_DESKTOP_NONE &&
320  cwindow->wm_desktop != NET_WM_DESKTOP_ALL &&
321  (wm_desktop_ws = ewmh_get_workspace_by_index(cwindow->wm_desktop)) != NULL) {
322  /* If _NET_WM_DESKTOP is set to a specific desktop, we open it
323  * there. Note that we ignore the special value 0xFFFFFFFF here
324  * since such a window will be made sticky anyway. */
325 
326  DLOG("Using workspace %p / %s because _NET_WM_DESKTOP = %d.\n",
327  wm_desktop_ws, wm_desktop_ws->name, cwindow->wm_desktop);
328 
329  nc = con_descend_tiling_focused(wm_desktop_ws);
330  if (nc->type == CT_WORKSPACE)
331  nc = tree_open_con(nc, cwindow);
332  else
333  nc = tree_open_con(nc->parent, cwindow);
334  } else if (startup_ws) {
335  /* If it was started on a specific workspace, we want to open it there. */
336  DLOG("Using workspace on which this application was started (%s)\n", startup_ws);
337  nc = con_descend_tiling_focused(workspace_get(startup_ws));
338  DLOG("focused on ws %s: %p / %s\n", startup_ws, nc, nc->name);
339  if (nc->type == CT_WORKSPACE)
340  nc = tree_open_con(nc, cwindow);
341  else
342  nc = tree_open_con(nc->parent, cwindow);
343  } else {
344  /* If not, insert it at the currently focused position */
345  if (focused->type == CT_CON && con_accepts_window(focused)) {
346  LOG("using current container, focused = %p, focused->name = %s\n",
347  focused, focused->name);
348  nc = focused;
349  } else
350  nc = tree_open_con(NULL, cwindow);
351  }
352 
353  if ((assignment = assignment_for(cwindow, A_TO_OUTPUT))) {
354  con_move_to_output_name(nc, assignment->dest.output, true);
355  }
356  } else {
357  /* M_BELOW inserts the new window as a child of the one which was
358  * matched (e.g. dock areas) */
359  if (match != NULL && match->insert_where == M_BELOW) {
360  nc = tree_open_con(nc, cwindow);
361  }
362 
363  /* If M_BELOW is not used, the container is replaced. This happens with
364  * "swallows" criteria that are used for stored layouts, in which case
365  * we need to remove that criterion, because they should only be valid
366  * once. */
367  if (match != NULL && match->insert_where != M_BELOW) {
368  DLOG("Removing match %p from container %p\n", match, nc);
369  TAILQ_REMOVE(&(nc->swallow_head), match, matches);
370  match_free(match);
371  FREE(match);
372  }
373 
374  cwindow->swallowed = true;
375  }
376 
377  DLOG("new container = %p\n", nc);
378  if (nc->window != NULL && nc->window != cwindow) {
379  if (!restore_kill_placeholder(nc->window->id)) {
380  DLOG("Uh?! Container without a placeholder, but with a window, has swallowed this to-be-managed window?!\n");
381  } else {
382  /* Remove remaining criteria, the first swallowed window wins. */
383  _remove_matches(nc);
384  }
385  }
386  xcb_window_t old_frame = XCB_NONE;
387  if (nc->window != cwindow && nc->window != NULL) {
388  window_free(nc->window);
389  old_frame = _match_depth(cwindow, nc);
390  }
391  nc->window = cwindow;
392  x_reinit(nc);
393 
394  nc->border_width = geom->border_width;
395 
396  char *name;
397  sasprintf(&name, "[i3 con] container around %p", cwindow);
398  x_set_name(nc, name);
399  free(name);
400 
401  /* handle fullscreen containers */
402  Con *ws = con_get_workspace(nc);
404 
405  if (xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_FULLSCREEN)) {
406  /* If this window is already fullscreen (after restarting!), skip
407  * toggling fullscreen, that would drop it out of fullscreen mode. */
408  if (fs != nc) {
409  Output *output = get_output_with_dimensions((Rect){geom->x, geom->y, geom->width, geom->height});
410  /* If the requested window geometry spans the whole area
411  * of an output, move the window to that output. This is
412  * needed e.g. for LibreOffice Impress multi-monitor
413  * presentations to work out of the box. */
414  if (output != NULL)
415  con_move_to_output(nc, output, false);
417  }
418  fs = NULL;
419  }
420 
421  bool set_focus = false;
422 
423  if (fs == NULL) {
424  DLOG("Not in fullscreen mode, focusing\n");
425  if (!cwindow->dock) {
426  /* Check that the workspace is visible and on the same output as
427  * the current focused container. If the window was assigned to an
428  * invisible workspace, we should not steal focus. */
429  Con *current_output = con_get_output(focused);
430  Con *target_output = con_get_output(ws);
431 
432  if (workspace_is_visible(ws) && current_output == target_output) {
433  if (!match_from_restart_mode) {
434  set_focus = true;
435  } else {
436  DLOG("not focusing, matched with restart_mode == true\n");
437  }
438  } else {
439  DLOG("workspace not visible, not focusing\n");
440  }
441  } else {
442  DLOG("dock, not focusing\n");
443  }
444  } else {
445  DLOG("fs = %p, ws = %p, not focusing\n", fs, ws);
446  /* Insert the new container in focus stack *after* the currently
447  * focused (fullscreen) con. This way, the new container will be
448  * focused after we return from fullscreen mode */
449  Con *first = TAILQ_FIRST(&(nc->parent->focus_head));
450  if (first != nc) {
451  /* We only modify the focus stack if the container is not already
452  * the first one. This can happen when existing containers swallow
453  * new windows, for example when restarting. */
454  TAILQ_REMOVE(&(nc->parent->focus_head), nc, focused);
455  TAILQ_INSERT_AFTER(&(nc->parent->focus_head), first, nc, focused);
456  }
457  }
458 
459  /* set floating if necessary */
460  bool want_floating = false;
461  if (xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_DIALOG) ||
462  xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_UTILITY) ||
463  xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_TOOLBAR) ||
464  xcb_reply_contains_atom(type_reply, A__NET_WM_WINDOW_TYPE_SPLASH) ||
465  xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_MODAL) ||
466  (cwindow->max_width > 0 && cwindow->max_height > 0 &&
467  cwindow->min_height == cwindow->max_height &&
468  cwindow->min_width == cwindow->max_width)) {
469  LOG("This window is a dialog window, setting floating\n");
470  want_floating = true;
471  }
472 
473  if (xcb_reply_contains_atom(state_reply, A__NET_WM_STATE_STICKY))
474  nc->sticky = true;
475 
476  /* We ignore the hint for an internal workspace because windows in the
477  * scratchpad also have this value, but upon restarting i3 we don't want
478  * them to become sticky windows. */
479  if (cwindow->wm_desktop == NET_WM_DESKTOP_ALL && (ws == NULL || !con_is_internal(ws))) {
480  DLOG("This window has _NET_WM_DESKTOP = 0xFFFFFFFF. Will float it and make it sticky.\n");
481  nc->sticky = true;
482  want_floating = true;
483  }
484 
485  FREE(state_reply);
486  FREE(type_reply);
487 
488  if (cwindow->transient_for != XCB_NONE ||
489  (cwindow->leader != XCB_NONE &&
490  cwindow->leader != cwindow->id &&
491  con_by_window_id(cwindow->leader) != NULL)) {
492  DLOG("This window is transient for another window, setting floating\n");
493  want_floating = true;
494 
495  if (config.popup_during_fullscreen == PDF_LEAVE_FULLSCREEN &&
496  fs != NULL) {
497  DLOG("There is a fullscreen window, leaving fullscreen mode\n");
499  } else if (config.popup_during_fullscreen == PDF_SMART &&
500  fs != NULL &&
501  fs->window != NULL) {
502  set_focus = con_find_transient_for_window(nc, fs->window->id);
503  }
504  }
505 
506  /* dock clients cannot be floating, that makes no sense */
507  if (cwindow->dock)
508  want_floating = false;
509 
510  /* Store the requested geometry. The width/height gets raised to at least
511  * 75x50 when entering floating mode, which is the minimum size for a
512  * window to be useful (smaller windows are usually overlays/toolbars/…
513  * which are not managed by the wm anyways). We store the original geometry
514  * here because it’s used for dock clients. */
515  if (nc->geometry.width == 0)
516  nc->geometry = (Rect){geom->x, geom->y, geom->width, geom->height};
517 
518  if (want_floating) {
519  DLOG("geometry = %d x %d\n", nc->geometry.width, nc->geometry.height);
520  if (floating_enable(nc, true)) {
521  nc->floating = FLOATING_AUTO_ON;
522  }
523  }
524 
525  if (has_mwm_hints) {
526  DLOG("MOTIF_WM_HINTS specifies decorations (border_style = %d)\n", motif_border_style);
527  if (want_floating) {
529  } else {
530  con_set_border_style(nc, motif_border_style, config.default_border_width);
531  }
532  }
533 
534  /* explicitly set the border width to the default */
535  if (nc->current_border_width == -1) {
537  }
538 
539  /* to avoid getting an UnmapNotify event due to reparenting, we temporarily
540  * declare no interest in any state change event of this window */
541  values[0] = XCB_NONE;
542  xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
543 
544  xcb_void_cookie_t rcookie = xcb_reparent_window_checked(conn, window, nc->frame.id, 0, 0);
545  if (xcb_request_check(conn, rcookie) != NULL) {
546  LOG("Could not reparent the window, aborting\n");
547  goto geom_out;
548  }
549 
550  values[0] = CHILD_EVENT_MASK & ~XCB_EVENT_MASK_ENTER_WINDOW;
551  xcb_change_window_attributes(conn, window, XCB_CW_EVENT_MASK, values);
552  xcb_flush(conn);
553 
554  /* Put the client inside the save set. Upon termination (whether killed or
555  * normal exit does not matter) of the window manager, these clients will
556  * be correctly reparented to their most closest living ancestor (=
557  * cleanup) */
558  xcb_change_save_set(conn, XCB_SET_MODE_INSERT, window);
559 
560  if (shape_supported) {
561  /* Receive ShapeNotify events whenever the client altered its window
562  * shape. */
563  xcb_shape_select_input(conn, window, true);
564 
565  /* Check if the window is shaped. Sadly, we can check only for the
566  * bounding shape, not for the input shape. */
567  xcb_shape_query_extents_cookie_t cookie =
568  xcb_shape_query_extents(conn, window);
569  xcb_shape_query_extents_reply_t *reply =
570  xcb_shape_query_extents_reply(conn, cookie, NULL);
571  if (reply != NULL && reply->bounding_shaped) {
572  cwindow->shaped = true;
573  }
574  FREE(reply);
575  }
576 
577  /* Check if any assignments match */
578  run_assignments(cwindow);
579 
580  /* 'ws' may be invalid because of the assignments, e.g. when the user uses
581  * "move window to workspace 1", but had it assigned to workspace 2. */
582  ws = con_get_workspace(nc);
583 
584  /* If this window was put onto an invisible workspace (via assignments), we
585  * render this workspace. It wouldn’t be rendered in our normal code path
586  * because only the visible workspaces get rendered.
587  *
588  * By rendering the workspace, we assign proper coordinates (read: not
589  * width=0, height=0) to the window, which is important for windows who
590  * actually use them to position their GUI elements, e.g. rhythmbox. */
591  if (ws && !workspace_is_visible(ws)) {
592  /* This is a bit hackish: we need to copy the content container’s rect
593  * to the workspace, because calling render_con() on the content
594  * container would also take the shortcut and not render the invisible
595  * workspace at all. However, just calling render_con() on the
596  * workspace isn’t enough either — it needs the rect. */
597  ws->rect = ws->parent->rect;
598  render_con(ws);
599  /* Disable setting focus, otherwise we’d move focus to an invisible
600  * workspace, which we generally prevent (e.g. in
601  * con_move_to_workspace). */
602  set_focus = false;
603  }
604  render_con(croot);
605 
606  cwindow->managed_since = time(NULL);
607 
608  /* Send an event about window creation */
609  ipc_send_window_event("new", nc);
610 
611  if (set_focus && assignment_for(cwindow, A_NO_FOCUS) != NULL) {
612  /* The first window on a workspace should always be focused. We have to
613  * compare with == 1 because the container has already been inserted at
614  * this point. */
615  if (con_num_windows(ws) == 1) {
616  DLOG("This is the first window on this workspace, ignoring no_focus.\n");
617  } else {
618  DLOG("no_focus was set for con = %p, not setting focus.\n", nc);
619  set_focus = false;
620  }
621  }
622 
623  if (set_focus) {
624  DLOG("Checking con = %p for _NET_WM_USER_TIME.\n", nc);
625 
626  uint32_t *wm_user_time;
627  xcb_get_property_reply_t *wm_user_time_reply = xcb_get_property_reply(conn, wm_user_time_cookie, NULL);
628  if (wm_user_time_reply != NULL && xcb_get_property_value_length(wm_user_time_reply) != 0 &&
629  (wm_user_time = xcb_get_property_value(wm_user_time_reply)) &&
630  wm_user_time[0] == 0) {
631  DLOG("_NET_WM_USER_TIME set to 0, not focusing con = %p.\n", nc);
632  set_focus = false;
633  }
634 
635  FREE(wm_user_time_reply);
636  } else {
637  xcb_discard_reply(conn, wm_user_time_cookie.sequence);
638  }
639 
640  if (set_focus) {
641  /* Even if the client doesn't want focus, we still need to focus the
642  * container to not break focus workflows. Our handling towards X will
643  * take care of not setting the input focus. However, one exception to
644  * this are clients using the globally active input model which we
645  * don't want to focus at all. */
647  set_focus = false;
648  }
649  }
650 
651  /* Defer setting focus after the 'new' event has been sent to ensure the
652  * proper window event sequence. */
653  if (set_focus && nc->mapped) {
654  DLOG("Now setting focus.\n");
655  con_activate(nc);
656  }
657 
658  tree_render();
659 
660  /* Destroy the old frame if we had to reframe the container. This needs to be done
661  * after rendering in order to prevent the background from flickering in its place. */
662  if (old_frame != XCB_NONE) {
663  xcb_destroy_window(conn, old_frame);
664  }
665 
666  /* Windows might get managed with the urgency hint already set (Pidgin is
667  * known to do that), so check for that and handle the hint accordingly.
668  * This code needs to be in this part of manage_window() because the window
669  * needs to be on the final workspace first. */
670  con_set_urgency(nc, urgency_hint);
671 
672  /* Update _NET_WM_DESKTOP. We invalidate the cached value first to force an update. */
673  cwindow->wm_desktop = NET_WM_DESKTOP_NONE;
675 
676  /* If a sticky window was mapped onto another workspace, make sure to pop it to the front. */
678 
679 geom_out:
680  free(geom);
681 out:
682  free(attr);
683 }
684 
685 /*
686  * Remanages a window: performs a swallow check and runs assignments.
687  * Returns con for the window regardless if it updated.
688  *
689  */
691  /* Make sure this windows hasn't already been swallowed. */
692  if (con->window->swallowed) {
693  run_assignments(con->window);
694  return con;
695  }
696  Match *match;
697  Con *nc = con_for_window(croot, con->window, &match);
698  if (nc == NULL || nc->window == NULL || nc->window == con->window) {
699  run_assignments(con->window);
700  return con;
701  }
702  /* Make sure the placeholder that wants to swallow this window didn't spawn
703  * after the window to follow current behavior: adding a placeholder won't
704  * swallow windows currently managed. */
705  if (nc->window->managed_since > con->window->managed_since) {
706  run_assignments(con->window);
707  return con;
708  }
709 
710  if (!restore_kill_placeholder(nc->window->id)) {
711  DLOG("Uh?! Container without a placeholder, but with a window, has swallowed this managed window?!\n");
712  } else {
713  _remove_matches(nc);
714  }
715  window_free(nc->window);
716 
717  xcb_window_t old_frame = _match_depth(con->window, nc);
718 
719  x_reparent_child(nc, con);
720 
721  bool moved_workpaces = (con_get_workspace(nc) != con_get_workspace(con));
722 
723  con_merge_into(con, nc);
724 
725  /* Destroy the old frame if we had to reframe the container. This needs to be done
726  * after rendering in order to prevent the background from flickering in its place. */
727  if (old_frame != XCB_NONE) {
728  xcb_destroy_window(conn, old_frame);
729  }
730 
731  run_assignments(nc->window);
732 
733  if (moved_workpaces) {
734  /* If the window is associated with a startup sequence, delete it so
735  * child windows won't be created on the old workspace. */
737 
739  }
740 
741  nc->window->swallowed = true;
742  return nc;
743 }
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:303
int max_width
Definition: data.h:526
An Output is a physical output on your graphics driver.
Definition: data.h:413
char * workspace
Definition: data.h:649
uint16_t depth
Definition: data.h:832
static void _remove_matches(Con *con)
Definition: manage.c:31
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:434
bool sticky
Definition: data.h:767
int min_width
Definition: data.h:522
border_style_t
Definition: data.h:65
uint32_t y
Definition: data.h:209
bool shaped
The window has a nonrectangular shape.
Definition: data.h:537
char * output_primary_name(Output *output)
Retrieves the primary name of an output.
Definition: output.c:53
#define CHILD_EVENT_MASK
The XCB_CW_EVENT_MASK for the child (= real window)
Definition: xcb.h:28
char * name
Definition: data.h:720
void con_set_border_style(Con *con, border_style_t border_style, int border_width)
Sets the given border style on con, correctly keeping the position/size of a floating window...
Definition: con.c:1845
xcb_atom_t window_type
The _NET_WM_WINDOW_TYPE for this window.
Definition: data.h:493
void output_push_sticky_windows(Con *old_focus)
Iterates over all outputs and pushes sticky windows to the currently visible workspace on that output...
Definition: output.c:77
A "match" is a data structure which acts like a mask or expression to match certain windows or not...
Definition: data.h:557
#define TAILQ_FIRST(head)
Definition: queue.h:336
struct Window * window
Definition: data.h:746
union Assignment::@17 dest
destination workspace/command/output, depending on the type
bool doesnt_accept_focus
Whether this window accepts focus.
Definition: data.h:490
int max_height
Definition: data.h:527
Con * ewmh_get_workspace_by_index(uint32_t idx)
Returns the workspace container as enumerated by the EWMH desktop model.
Definition: ewmh.c:353
uint32_t bottom
Definition: data.h:223
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:1446
Stores a rectangle, for example the size of a window, the child window etc.
Definition: data.h:207
#define NET_WM_DESKTOP_ALL
Definition: workspace.h:25
bool workspace_is_visible(Con *ws)
Returns true if the workspace is currently visible.
Definition: workspace.c:314
struct all_cons_head all_cons
Definition: tree.c:15
void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop)
Updates the CLIENT_LEADER (logical parent window).
Definition: window.c:199
int default_floating_border_width
int current_border_width
Definition: data.h:744
bool needs_take_focus
Whether the application needs to receive WM_TAKE_FOCUS.
Definition: data.h:486
int con_num_windows(Con *con)
Count the number of windows (i.e., leaf containers).
Definition: con.c:1021
uint32_t height
Definition: data.h:211
uint32_t wm_desktop
The _NET_WM_DESKTOP for this window.
Definition: data.h:496
Con * workspace_get(const char *num)
Returns a pointer to the workspace with the given number (starting at 0), creating the workspace if n...
Definition: workspace.c:131
int border_width
Definition: data.h:743
void con_move_to_output(Con *con, Output *output, bool fix_coordinates)
Moves the given container to the currently focused container on the visible workspace on the given ou...
Definition: con.c:1484
void window_update_class(i3Window *win, xcb_get_property_reply_t *prop)
Updates the WM_CLASS (consisting of the class and instance) for the given window. ...
Definition: window.c:34
enum Assignment::@16 type
type of this assignment:
void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop)
Updates the TRANSIENT_FOR (logical parent window).
Definition: window.c:224
enum Con::@18 type
void window_update_qubes_label(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the qubes label by using _QUBES_LABEL (encoded in UTF-8) for the given window.
Definition: window.c:175
void con_merge_into(Con *old, Con *new)
Merges container specific data that should move with the window (e.g.
Definition: con.c:2555
void x_reparent_child(Con *con, Con *old)
Reparents the child window of the given container (necessary for sticky containers).
Definition: x.c:217
Con * get_existing_workspace_by_num(int num)
Returns the workspace with the given number or NULL if such a workspace does not exist.
Definition: workspace.c:44
char * output
Definition: data.h:650
bool 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:518
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:671
void startup_sequence_delete_by_window(i3Window *win)
Deletes the startup sequence for a window if it exists.
Definition: startup.c:367
bool mapped
Definition: data.h:672
void window_update_machine(i3Window *win, xcb_get_property_reply_t *prop)
Updates the WM_CLIENT_MACHINE.
Definition: window.c:560
void render_con(Con *con)
"Renders" the given container (and its children), meaning that all rects are updated correctly...
Definition: render.c:42
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:106
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:121
struct reservedpx reserved
Pixels the window reserves.
Definition: data.h:507
void con_toggle_fullscreen(Con *con, int fullscreen_mode)
Toggles fullscreen mode for the given container.
Definition: con.c:1095
xcb_drawable_t id
Definition: libi3.h:571
void window_update_icon(i3Window *win, xcb_get_property_reply_t *prop)
Updates the _NET_WM_ICON.
Definition: window.c:574
#define TAILQ_EMPTY(head)
Definition: queue.h:344
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
Con * con_get_workspace(Con *con)
Gets the workspace container this node is on.
Definition: con.c:477
Con * con_get_output(Con *con)
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on...
Definition: con.c:463
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:151
void x_con_reframe(Con *con)
Definition: x.c:294
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
void window_update_name(i3Window *win, xcb_get_property_reply_t *prop)
Updates the name by using _NET_WM_NAME (encoded in UTF-8) for the given window.
Definition: window.c:67
xcb_window_t root
Definition: main.c:67
xcb_window_t transient_for
Definition: data.h:452
uint16_t depth
Depth of the window.
Definition: data.h:510
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 window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop)
Updates the name by using WM_NAME (encoded in COMPOUND_TEXT).
Definition: window.c:103
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:105
Con * remanage_window(Con *con)
Remanages a window: performs a swallow check and runs assignments.
Definition: manage.c:690
Assignment * assignment_for(i3Window *window, int type)
Returns the first matching assignment for the given window.
Definition: assignments.c:69
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:444
#define FREE(pointer)
Definition: util.h:47
void window_free(i3Window *win)
Frees an i3Window and all its members.
Definition: window.c:18
void con_set_urgency(Con *con, bool urgent)
Set urgency flag to the container, all the parent containers and the workspace.
Definition: con.c:2273
uint32_t top
Definition: data.h:222
int min_height
Definition: data.h:523
void window_update_role(i3Window *win, xcb_get_property_reply_t *prop)
Updates the WM_WINDOW_ROLE.
Definition: window.c:274
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...
bool con_is_internal(Con *con)
Returns true if the container is internal, such as __i3_scratch.
Definition: con.c:588
struct Con * croot
Definition: tree.c:12
surface_t frame
Definition: data.h:686
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:249
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
Con * tree_open_con(Con *con, i3Window *window)
Opens an empty container in the current container.
Definition: tree.c:149
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:347
bool 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:232
struct Rect rect
Definition: data.h:710
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:890
void ewmh_update_wm_desktop(void)
Updates _NET_WM_DESKTOP for all windows.
Definition: ewmh.c:184
#define GET_PROPERTY(atom, len)
int default_border_width
void match_free(Match *match)
Frees the given match.
Definition: match.c:275
xcb_connection_t * conn
XCB connection and root screen.
Definition: main.c:54
xcb_window_t id
Definition: data.h:447
void window_update_qubes_vmname(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the qubes vmname by using _QUBES_VMNAME (encoded in UTF-8) for the given window.
Definition: window.c:143
struct Rect Rect
Definition: data.h:44
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:155
struct Rect window_rect
Definition: data.h:713
uint32_t x
Definition: data.h:208
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:78
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:451
bool restore_kill_placeholder(xcb_window_t placeholder)
Kill the placeholder window, if placeholder refers to a placeholder window.
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:451
A &#39;Window&#39; is a type which contains an xcb_window_t and all the related information (hints like _NET_...
Definition: data.h:446
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:44
void x_reinit(Con *con)
Re-initializes the associated X window state for this container.
Definition: x.c:197
enum Window::@11 dock
Whether the window says it is a dock window.
struct Rect geometry
the geometry this window requested when getting mapped
Definition: data.h:718
enum Con::@19 floating
floating? (= not in tiling layout) This cannot be simply a bool because we want to keep track of whet...
time_t managed_since
Definition: data.h:543
int ws_name_to_number(const char *name)
Parses the workspace name as a number.
Definition: util.c:109
uint32_t width
Definition: data.h:210
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:121
bool shape_supported
Definition: main.c:105
#define TAILQ_INSERT_AFTER(head, listelm, elm, field)
Definition: queue.h:384
A &#39;Con&#39; represents everything from the X11 root window down to a single X11 window.
Definition: data.h:671
enum Config::@6 popup_during_fullscreen
What should happen when a new popup is opened during fullscreen mode.
#define DLOG(fmt,...)
Definition: libi3.h:105
bool con_move_to_output_name(Con *con, const char *name, bool fix_coordinates)
Moves the given container to the currently focused container on the visible workspace on the output s...
Definition: con.c:1499
int * bindings_get_buttons_to_grab(void)
Returns a list of buttons that should be grabbed on a window.
Definition: bindings.c:1007
bool con_find_transient_for_window(Con *start, xcb_window_t target)
Start from a container and traverse the transient_for linked list.
Definition: con.c:742
Con * con_descend_tiling_focused(Con *con)
Returns the focused con inside this client, descending the tree as far as possible.
Definition: con.c:1605
void con_activate(Con *con)
Sets input focus to the given container and raises it to the top.
Definition: con.c:287
struct Con * focused
Definition: tree.c:13
Config config
Definition: config.c:19
bool window_update_normal_hints(i3Window *win, xcb_get_property_reply_t *reply, xcb_get_geometry_reply_t *geom)
Updates the WM_NORMAL_HINTS.
Definition: window.c:313
Con * con
Pointer to the Con which represents this output.
Definition: data.h:433
uint16_t get_visual_depth(xcb_visualid_t visual_id)
Get depth of visual specified by visualid.
Definition: xcb.c:170
#define LOG(fmt,...)
Definition: libi3.h:95
#define TAILQ_REMOVE(head, elm, field)
Definition: queue.h:402
bool swallowed
Definition: data.h:546
static xcb_window_t _match_depth(i3Window *win, Con *con)
Definition: manage.c:17
struct Con * parent
Definition: data.h:706
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:1633
#define NET_WM_DESKTOP_NONE
Definition: workspace.h:24
Con * con_get_fullscreen_covering_ws(Con *ws)
Returns the fullscreen node that covers the given workspace if it exists.
Definition: con.c:573
enum Match::@15 insert_where
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
Definition: data.h:622
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:279
bool restart_mode
Definition: data.h:611