i3
handlers.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  * handlers.c: Small handlers for various events (keypresses, focus changes,
8  * …).
9  *
10  */
11 #include "all.h"
12 
13 #include <time.h>
14 #include <float.h>
15 #include <sys/time.h>
16 #include <xcb/randr.h>
17 #define SN_API_NOT_YET_FROZEN 1
18 #include <libsn/sn-monitor.h>
19 
20 int randr_base = -1;
21 int xkb_base = -1;
23 
24 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
25  since it’d trigger an infinite loop of switching between the different windows when
26  changing workspaces */
27 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
28 
29 /*
30  * Adds the given sequence to the list of events which are ignored.
31  * If this ignore should only affect a specific response_type, pass
32  * response_type, otherwise, pass -1.
33  *
34  * Every ignored sequence number gets garbage collected after 5 seconds.
35  *
36  */
37 void add_ignore_event(const int sequence, const int response_type) {
38  struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
39 
40  event->sequence = sequence;
41  event->response_type = response_type;
42  event->added = time(NULL);
43 
45 }
46 
47 /*
48  * Checks if the given sequence is ignored and returns true if so.
49  *
50  */
51 bool event_is_ignored(const int sequence, const int response_type) {
52  struct Ignore_Event *event;
53  time_t now = time(NULL);
54  for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
55  if ((now - event->added) > 5) {
56  struct Ignore_Event *save = event;
57  event = SLIST_NEXT(event, ignore_events);
59  free(save);
60  } else
61  event = SLIST_NEXT(event, ignore_events);
62  }
63 
65  if (event->sequence != sequence)
66  continue;
67 
68  if (event->response_type != -1 &&
69  event->response_type != response_type)
70  continue;
71 
72  /* instead of removing a sequence number we better wait until it gets
73  * garbage collected. it may generate multiple events (there are multiple
74  * enter_notifies for one configure_request, for example). */
75  //SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
76  //free(event);
77  return true;
78  }
79 
80  return false;
81 }
82 
83 /*
84  * Called with coordinates of an enter_notify event or motion_notify event
85  * to check if the user crossed virtual screen boundaries and adjust the
86  * current workspace, if so.
87  *
88  */
89 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
90  Output *output;
91 
92  /* If the user disable focus follows mouse, we have nothing to do here */
94  return;
95 
96  if ((output = get_output_containing(x, y)) == NULL) {
97  ELOG("ERROR: No such screen\n");
98  return;
99  }
100 
101  if (output->con == NULL) {
102  ELOG("ERROR: The screen is not recognized by i3 (no container associated)\n");
103  return;
104  }
105 
106  /* Focus the output on which the user moved their cursor */
107  Con *old_focused = focused;
108  Con *next = con_descend_focused(output_get_content(output->con));
109  /* Since we are switching outputs, this *must* be a different workspace, so
110  * call workspace_show() */
112  con_focus(next);
113 
114  /* If the focus changed, we re-render to get updated decorations */
115  if (old_focused != focused)
116  tree_render();
117 }
118 
119 /*
120  * When the user moves the mouse pointer onto a window, this callback gets called.
121  *
122  */
123 static void handle_enter_notify(xcb_enter_notify_event_t *event) {
124  Con *con;
125 
126  last_timestamp = event->time;
127 
128  DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n",
129  event->event, event->mode, event->detail, event->sequence);
130  DLOG("coordinates %d, %d\n", event->event_x, event->event_y);
131  if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
132  DLOG("This was not a normal notify, ignoring\n");
133  return;
134  }
135  /* Some events are not interesting, because they were not generated
136  * actively by the user, but by reconfiguration of windows */
137  if (event_is_ignored(event->sequence, XCB_ENTER_NOTIFY)) {
138  DLOG("Event ignored\n");
139  return;
140  }
141 
142  bool enter_child = false;
143  /* Get container by frame or by child window */
144  if ((con = con_by_frame_id(event->event)) == NULL) {
145  con = con_by_window_id(event->event);
146  enter_child = true;
147  }
148 
149  /* If we cannot find the container, the user moved their cursor to the root
150  * window. In this case and if they used it to a dock, we need to focus the
151  * workspace on the correct output. */
152  if (con == NULL || con->parent->type == CT_DOCKAREA) {
153  DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
154  check_crossing_screen_boundary(event->root_x, event->root_y);
155  return;
156  }
157 
158  /* see if the user entered the window on a certain window decoration */
159  layout_t layout = (enter_child ? con->parent->layout : con->layout);
160  if (layout == L_DEFAULT) {
161  Con *child;
162  TAILQ_FOREACH(child, &(con->nodes_head), nodes)
163  if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
164  LOG("using child %p / %s instead!\n", child, child->name);
165  con = child;
166  break;
167  }
168  }
169 
171  return;
172 
173  /* if this container is already focused, there is nothing to do. */
174  if (con == focused)
175  return;
176 
177  /* Get the currently focused workspace to check if the focus change also
178  * involves changing workspaces. If so, we need to call workspace_show() to
179  * correctly update state and send the IPC event. */
180  Con *ws = con_get_workspace(con);
181  if (ws != con_get_workspace(focused))
182  workspace_show(ws);
183 
184  focused_id = XCB_NONE;
186  tree_render();
187 }
188 
189 /*
190  * When the user moves the mouse but does not change the active window
191  * (e.g. when having no windows opened but moving mouse on the root screen
192  * and crossing virtual screen boundaries), this callback gets called.
193  *
194  */
195 static void handle_motion_notify(xcb_motion_notify_event_t *event) {
196  last_timestamp = event->time;
197 
198  /* Skip events where the pointer was over a child window, we are only
199  * interested in events on the root window. */
200  if (event->child != XCB_NONE)
201  return;
202 
203  Con *con;
204  if ((con = con_by_frame_id(event->event)) == NULL) {
205  DLOG("MotionNotify for an unknown container, checking if it crosses screen boundaries.\n");
206  check_crossing_screen_boundary(event->root_x, event->root_y);
207  return;
208  }
209 
211  return;
212 
213  if (con->layout != L_DEFAULT && con->layout != L_SPLITV && con->layout != L_SPLITH)
214  return;
215 
216  /* see over which rect the user is */
217  Con *current;
218  TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
219  if (!rect_contains(current->deco_rect, event->event_x, event->event_y))
220  continue;
221 
222  /* We found the rect, let’s see if this window is focused */
223  if (TAILQ_FIRST(&(con->focus_head)) == current)
224  return;
225 
226  con_focus(current);
228  return;
229  }
230 }
231 
232 /*
233  * Called when the keyboard mapping changes (for example by using Xmodmap),
234  * we need to update our key bindings then (re-translate symbols).
235  *
236  */
237 static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
238  if (event->request != XCB_MAPPING_KEYBOARD &&
239  event->request != XCB_MAPPING_MODIFIER)
240  return;
241 
242  DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
243  xcb_refresh_keyboard_mapping(keysyms, event);
244 
246 
250 }
251 
252 /*
253  * A new window appeared on the screen (=was mapped), so let’s manage it.
254  *
255  */
256 static void handle_map_request(xcb_map_request_event_t *event) {
257  xcb_get_window_attributes_cookie_t cookie;
258 
259  cookie = xcb_get_window_attributes_unchecked(conn, event->window);
260 
261  DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
262  add_ignore_event(event->sequence, -1);
263 
264  manage_window(event->window, cookie, false);
265 }
266 
267 /*
268  * Configure requests are received when the application wants to resize windows
269  * on their own.
270  *
271  * We generate a synthethic configure notify event to signalize the client its
272  * "new" position.
273  *
274  */
275 static void handle_configure_request(xcb_configure_request_event_t *event) {
276  Con *con;
277 
278  DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
279  event->window, event->x, event->y, event->width, event->height);
280 
281  /* For unmanaged windows, we just execute the configure request. As soon as
282  * it gets mapped, we will take over anyways. */
283  if ((con = con_by_window_id(event->window)) == NULL) {
284  DLOG("Configure request for unmanaged window, can do that.\n");
285 
286  uint32_t mask = 0;
287  uint32_t values[7];
288  int c = 0;
289 #define COPY_MASK_MEMBER(mask_member, event_member) \
290  do { \
291  if (event->value_mask & mask_member) { \
292  mask |= mask_member; \
293  values[c++] = event->event_member; \
294  } \
295  } while (0)
296 
297  COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
298  COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
299  COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
300  COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
301  COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
302  COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
303  COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
304 
305  xcb_configure_window(conn, event->window, mask, values);
306  xcb_flush(conn);
307 
308  return;
309  }
310 
311  DLOG("Configure request!\n");
312 
313  Con *workspace = con_get_workspace(con);
314  if (workspace && (strcmp(workspace->name, "__i3_scratch") == 0)) {
315  DLOG("This is a scratchpad container, ignoring ConfigureRequest\n");
316  goto out;
317  }
318  Con *fullscreen = con_get_fullscreen_covering_ws(workspace);
319 
320  if (fullscreen != con && con_is_floating(con) && con_is_leaf(con)) {
321  /* find the height for the decorations */
322  int deco_height = con->deco_rect.height;
323  /* we actually need to apply the size/position changes to the *parent*
324  * container */
325  Rect bsr = con_border_style_rect(con);
326  if (con->border_style == BS_NORMAL) {
327  bsr.y += deco_height;
328  bsr.height -= deco_height;
329  }
330  Con *floatingcon = con->parent;
331  Rect newrect = floatingcon->rect;
332 
333  if (event->value_mask & XCB_CONFIG_WINDOW_X) {
334  newrect.x = event->x + (-1) * bsr.x;
335  DLOG("proposed x = %d, new x is %d\n", event->x, newrect.x);
336  }
337  if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
338  newrect.y = event->y + (-1) * bsr.y;
339  DLOG("proposed y = %d, new y is %d\n", event->y, newrect.y);
340  }
341  if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
342  newrect.width = event->width + (-1) * bsr.width;
343  newrect.width += con->border_width * 2;
344  DLOG("proposed width = %d, new width is %d (x11 border %d)\n",
345  event->width, newrect.width, con->border_width);
346  }
347  if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
348  newrect.height = event->height + (-1) * bsr.height;
349  newrect.height += con->border_width * 2;
350  DLOG("proposed height = %d, new height is %d (x11 border %d)\n",
351  event->height, newrect.height, con->border_width);
352  }
353 
354  DLOG("Container is a floating leaf node, will do that.\n");
355  floating_reposition(floatingcon, newrect);
356  return;
357  }
358 
359  /* Dock windows can be reconfigured in their height and moved to another output. */
360  if (con->parent && con->parent->type == CT_DOCKAREA) {
361  DLOG("Reconfiguring dock window (con = %p).\n", con);
362  if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
363  DLOG("Dock client wants to change height to %d, we can do that.\n", event->height);
364 
365  con->geometry.height = event->height;
366  tree_render();
367  }
368 
369  if (event->value_mask & XCB_CONFIG_WINDOW_X || event->value_mask & XCB_CONFIG_WINDOW_Y) {
370  int16_t x = event->value_mask & XCB_CONFIG_WINDOW_X ? event->x : (int16_t)con->geometry.x;
371  int16_t y = event->value_mask & XCB_CONFIG_WINDOW_Y ? event->y : (int16_t)con->geometry.y;
372 
373  Con *current_output = con_get_output(con);
374  Output *target = get_output_containing(x, y);
375  if (target != NULL && current_output != target->con) {
376  DLOG("Dock client is requested to be moved to output %s, moving it there.\n", output_primary_name(target));
377  Match *match;
378  Con *nc = con_for_window(target->con, con->window, &match);
379  DLOG("Dock client will be moved to container %p.\n", nc);
380  con_detach(con);
381  con_attach(con, nc, false);
382 
383  tree_render();
384  } else {
385  DLOG("Dock client will not be moved, we only support moving it to another output.\n");
386  }
387  }
388  goto out;
389  }
390 
391  if (event->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
392  DLOG("window 0x%08x wants to be stacked %d\n", event->window, event->stack_mode);
393 
394  /* Emacs and IntelliJ Idea “request focus” by stacking their window
395  * above all others. */
396  if (event->stack_mode != XCB_STACK_MODE_ABOVE) {
397  DLOG("stack_mode != XCB_STACK_MODE_ABOVE, ignoring ConfigureRequest\n");
398  goto out;
399  }
400 
401  if (fullscreen || !con_is_leaf(con)) {
402  DLOG("fullscreen or not a leaf, ignoring ConfigureRequest\n");
403  goto out;
404  }
405 
406  if (workspace == NULL) {
407  DLOG("Window is not being managed, ignoring ConfigureRequest\n");
408  goto out;
409  }
410 
411  if (config.focus_on_window_activation == FOWA_FOCUS || (config.focus_on_window_activation == FOWA_SMART && workspace_is_visible(workspace))) {
412  DLOG("Focusing con = %p\n", con);
413  workspace_show(workspace);
414  con_activate(con);
415  tree_render();
416  } else if (config.focus_on_window_activation == FOWA_URGENT || (config.focus_on_window_activation == FOWA_SMART && !workspace_is_visible(workspace))) {
417  DLOG("Marking con = %p urgent\n", con);
418  con_set_urgency(con, true);
419  tree_render();
420  } else {
421  DLOG("Ignoring request for con = %p.\n", con);
422  }
423  }
424 
425 out:
427 }
428 
429 /*
430  * Gets triggered upon a RandR screen change event, that is when the user
431  * changes the screen configuration in any way (mode, position, …)
432  *
433  */
434 static void handle_screen_change(xcb_generic_event_t *e) {
435  DLOG("RandR screen change\n");
436 
437  /* The geometry of the root window is used for “fullscreen global” and
438  * changes when new outputs are added. */
439  xcb_get_geometry_cookie_t cookie = xcb_get_geometry(conn, root);
440  xcb_get_geometry_reply_t *reply = xcb_get_geometry_reply(conn, cookie, NULL);
441  if (reply == NULL) {
442  ELOG("Could not get geometry of the root window, exiting\n");
443  exit(1);
444  }
445  DLOG("root geometry reply: (%d, %d) %d x %d\n", reply->x, reply->y, reply->width, reply->height);
446 
447  croot->rect.width = reply->width;
448  croot->rect.height = reply->height;
449 
451 
453 
454  ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
455 }
456 
457 /*
458  * Our window decorations were unmapped. That means, the window will be killed
459  * now, so we better clean up before.
460  *
461  */
462 static void handle_unmap_notify_event(xcb_unmap_notify_event_t *event) {
463  DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
464  xcb_get_input_focus_cookie_t cookie;
465  Con *con = con_by_window_id(event->window);
466  if (con == NULL) {
467  /* This could also be an UnmapNotify for the frame. We need to
468  * decrement the ignore_unmap counter. */
469  con = con_by_frame_id(event->window);
470  if (con == NULL) {
471  LOG("Not a managed window, ignoring UnmapNotify event\n");
472  return;
473  }
474 
475  if (con->ignore_unmap > 0)
476  con->ignore_unmap--;
477  /* See the end of this function. */
478  cookie = xcb_get_input_focus(conn);
479  DLOG("ignore_unmap = %d for frame of container %p\n", con->ignore_unmap, con);
480  goto ignore_end;
481  }
482 
483  /* See the end of this function. */
484  cookie = xcb_get_input_focus(conn);
485 
486  if (con->ignore_unmap > 0) {
487  DLOG("ignore_unmap = %d, dec\n", con->ignore_unmap);
488  con->ignore_unmap--;
489  goto ignore_end;
490  }
491 
492  /* Since we close the container, we need to unset _NET_WM_DESKTOP and
493  * _NET_WM_STATE according to the spec. */
494  xcb_delete_property(conn, event->window, A__NET_WM_DESKTOP);
495  xcb_delete_property(conn, event->window, A__NET_WM_STATE);
496 
498  tree_render();
499 
500 ignore_end:
501  /* If the client (as opposed to i3) destroyed or unmapped a window, an
502  * EnterNotify event will follow (indistinguishable from an EnterNotify
503  * event caused by moving your mouse), causing i3 to set focus to whichever
504  * window is now visible.
505  *
506  * In a complex stacked or tabbed layout (take two v-split containers in a
507  * tabbed container), when the bottom window in tab2 is closed, the bottom
508  * window of tab1 is visible instead. X11 will thus send an EnterNotify
509  * event for the bottom window of tab1, while the focus should be set to
510  * the remaining window of tab2.
511  *
512  * Therefore, we ignore all EnterNotify events which have the same sequence
513  * as an UnmapNotify event. */
514  add_ignore_event(event->sequence, XCB_ENTER_NOTIFY);
515 
516  /* Since we just ignored the sequence of this UnmapNotify, we want to make
517  * sure that following events use a different sequence. When putting xterm
518  * into fullscreen and moving the pointer to a different window, without
519  * using GetInputFocus, subsequent (legitimate) EnterNotify events arrived
520  * with the same sequence and thus were ignored (see ticket #609). */
521  free(xcb_get_input_focus_reply(conn, cookie, NULL));
522 }
523 
524 /*
525  * A destroy notify event is sent when the window is not unmapped, but
526  * immediately destroyed (for example when starting a window and immediately
527  * killing the program which started it).
528  *
529  * We just pass on the event to the unmap notify handler (by copying the
530  * important fields in the event data structure).
531  *
532  */
533 static void handle_destroy_notify_event(xcb_destroy_notify_event_t *event) {
534  DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
535 
536  xcb_unmap_notify_event_t unmap;
537  unmap.sequence = event->sequence;
538  unmap.event = event->event;
539  unmap.window = event->window;
540 
542 }
543 
544 static bool window_name_changed(i3Window *window, char *old_name) {
545  if ((old_name == NULL) && (window->name == NULL))
546  return false;
547 
548  /* Either the old or the new one is NULL, but not both. */
549  if ((old_name == NULL) ^ (window->name == NULL))
550  return true;
551 
552  return (strcmp(old_name, i3string_as_utf8(window->name)) != 0);
553 }
554 
555 /*
556  * Called when a window changes its title
557  *
558  */
559 static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
560  xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
561  Con *con;
562  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
563  return false;
564 
565  char *old_name = (con->window->name != NULL ? sstrdup(i3string_as_utf8(con->window->name)) : NULL);
566 
567  window_update_name(con->window, prop, false);
568 
570 
571  if (window_name_changed(con->window, old_name))
572  ipc_send_window_event("title", con);
573 
574  FREE(old_name);
575 
576  return true;
577 }
578 
579 /*
580  * Handles legacy window name updates (WM_NAME), see also src/window.c,
581  * window_update_name_legacy().
582  *
583  */
584 static bool handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
585  xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
586  Con *con;
587  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
588  return false;
589 
590  char *old_name = (con->window->name != NULL ? sstrdup(i3string_as_utf8(con->window->name)) : NULL);
591 
592  window_update_name_legacy(con->window, prop, false);
593 
595 
596  if (window_name_changed(con->window, old_name))
597  ipc_send_window_event("title", con);
598 
599  FREE(old_name);
600 
601  return true;
602 }
603 
604 /*
605  * Called when a window changes its WM_WINDOW_ROLE.
606  *
607  */
608 static bool handle_windowrole_change(void *data, xcb_connection_t *conn, uint8_t state,
609  xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
610  Con *con;
611  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
612  return false;
613 
614  window_update_role(con->window, prop, false);
615 
616  return true;
617 }
618 
619 /*
620  * Expose event means we should redraw our windows (= title bar)
621  *
622  */
623 static void handle_expose_event(xcb_expose_event_t *event) {
624  Con *parent;
625 
626  DLOG("window = %08x\n", event->window);
627 
628  if ((parent = con_by_frame_id(event->window)) == NULL) {
629  LOG("expose event for unknown window, ignoring\n");
630  return;
631  }
632 
633  /* Since we render to our surface on every change anyways, expose events
634  * only tell us that the X server lost (parts of) the window contents. */
635  draw_util_copy_surface(&(parent->frame_buffer), &(parent->frame),
636  0, 0, 0, 0, parent->rect.width, parent->rect.height);
637  xcb_flush(conn);
638 }
639 
640 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
641 #define _NET_WM_MOVERESIZE_SIZE_TOP 1
642 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT 2
643 #define _NET_WM_MOVERESIZE_SIZE_RIGHT 3
644 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT 4
645 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM 5
646 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT 6
647 #define _NET_WM_MOVERESIZE_SIZE_LEFT 7
648 #define _NET_WM_MOVERESIZE_MOVE 8 /* movement only */
649 #define _NET_WM_MOVERESIZE_SIZE_KEYBOARD 9 /* size via keyboard */
650 #define _NET_WM_MOVERESIZE_MOVE_KEYBOARD 10 /* move via keyboard */
651 #define _NET_WM_MOVERESIZE_CANCEL 11 /* cancel operation */
652 
653 #define _NET_MOVERESIZE_WINDOW_X (1 << 8)
654 #define _NET_MOVERESIZE_WINDOW_Y (1 << 9)
655 #define _NET_MOVERESIZE_WINDOW_WIDTH (1 << 10)
656 #define _NET_MOVERESIZE_WINDOW_HEIGHT (1 << 11)
657 
658 /*
659  * Handle client messages (EWMH)
660  *
661  */
662 static void handle_client_message(xcb_client_message_event_t *event) {
663  /* If this is a startup notification ClientMessage, the library will handle
664  * it and call our monitor_event() callback. */
665  if (sn_xcb_display_process_event(sndisplay, (xcb_generic_event_t *)event))
666  return;
667 
668  LOG("ClientMessage for window 0x%08x\n", event->window);
669  if (event->type == A__NET_WM_STATE) {
670  if (event->format != 32 ||
671  (event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN &&
672  event->data.data32[1] != A__NET_WM_STATE_DEMANDS_ATTENTION &&
673  event->data.data32[1] != A__NET_WM_STATE_STICKY)) {
674  DLOG("Unknown atom in clientmessage of type %d\n", event->data.data32[1]);
675  return;
676  }
677 
678  Con *con = con_by_window_id(event->window);
679  if (con == NULL) {
680  DLOG("Could not get window for client message\n");
681  return;
682  }
683 
684  if (event->data.data32[1] == A__NET_WM_STATE_FULLSCREEN) {
685  /* Check if the fullscreen state should be toggled */
686  if ((con->fullscreen_mode != CF_NONE &&
687  (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
688  event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
689  (con->fullscreen_mode == CF_NONE &&
690  (event->data.data32[0] == _NET_WM_STATE_ADD ||
691  event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
692  DLOG("toggling fullscreen\n");
694  }
695  } else if (event->data.data32[1] == A__NET_WM_STATE_DEMANDS_ATTENTION) {
696  /* Check if the urgent flag must be set or not */
697  if (event->data.data32[0] == _NET_WM_STATE_ADD)
698  con_set_urgency(con, true);
699  else if (event->data.data32[0] == _NET_WM_STATE_REMOVE)
700  con_set_urgency(con, false);
701  else if (event->data.data32[0] == _NET_WM_STATE_TOGGLE)
702  con_set_urgency(con, !con->urgent);
703  } else if (event->data.data32[1] == A__NET_WM_STATE_STICKY) {
704  DLOG("Received a client message to modify _NET_WM_STATE_STICKY.\n");
705  if (event->data.data32[0] == _NET_WM_STATE_ADD)
706  con->sticky = true;
707  else if (event->data.data32[0] == _NET_WM_STATE_REMOVE)
708  con->sticky = false;
709  else if (event->data.data32[0] == _NET_WM_STATE_TOGGLE)
710  con->sticky = !con->sticky;
711 
712  DLOG("New sticky status for con = %p is %i.\n", con, con->sticky);
713  ewmh_update_sticky(con->window->id, con->sticky);
716  }
717 
718  tree_render();
719  } else if (event->type == A__NET_ACTIVE_WINDOW) {
720  if (event->format != 32)
721  return;
722 
723  DLOG("_NET_ACTIVE_WINDOW: Window 0x%08x should be activated\n", event->window);
724 
725  Con *con = con_by_window_id(event->window);
726  if (con == NULL) {
727  DLOG("Could not get window for client message\n");
728  return;
729  }
730 
731  Con *ws = con_get_workspace(con);
732  if (ws == NULL) {
733  DLOG("Window is not being managed, ignoring _NET_ACTIVE_WINDOW\n");
734  return;
735  }
736 
737  if (con_is_internal(ws) && ws != workspace_get("__i3_scratch", NULL)) {
738  DLOG("Workspace is internal but not scratchpad, ignoring _NET_ACTIVE_WINDOW\n");
739  return;
740  }
741 
742  /* data32[0] indicates the source of the request (application or pager) */
743  if (event->data.data32[0] == 2) {
744  /* Always focus the con if it is from a pager, because this is most
745  * likely from some user action */
746  DLOG("This request came from a pager. Focusing con = %p\n", con);
747 
748  if (con_is_internal(ws)) {
749  scratchpad_show(con);
750  } else {
751  workspace_show(ws);
752  /* Re-set focus, even if unchanged from i3’s perspective. */
753  focused_id = XCB_NONE;
754  con_activate(con);
755  }
756  } else {
757  /* Request is from an application. */
758  if (con_is_internal(ws)) {
759  DLOG("Ignoring request to make con = %p active because it's on an internal workspace.\n", con);
760  return;
761  }
762 
763  if (config.focus_on_window_activation == FOWA_FOCUS || (config.focus_on_window_activation == FOWA_SMART && workspace_is_visible(ws))) {
764  DLOG("Focusing con = %p\n", con);
765  workspace_show(ws);
766  con_activate(con);
767  } else if (config.focus_on_window_activation == FOWA_URGENT || (config.focus_on_window_activation == FOWA_SMART && !workspace_is_visible(ws))) {
768  DLOG("Marking con = %p urgent\n", con);
769  con_set_urgency(con, true);
770  } else
771  DLOG("Ignoring request for con = %p.\n", con);
772  }
773 
774  tree_render();
775  } else if (event->type == A_I3_SYNC) {
776  xcb_window_t window = event->data.data32[0];
777  uint32_t rnd = event->data.data32[1];
778  sync_respond(window, rnd);
779  } else if (event->type == A__NET_REQUEST_FRAME_EXTENTS) {
780  /*
781  * A client can request an estimate for the frame size which the window
782  * manager will put around it before actually mapping its window. Java
783  * does this (as of openjdk-7).
784  *
785  * Note that the calculation below is not entirely accurate — once you
786  * set a different border type, it’s off. We _could_ request all the
787  * window properties (which have to be set up at this point according
788  * to EWMH), but that seems rather elaborate. The standard explicitly
789  * says the application must cope with an estimate that is not entirely
790  * accurate.
791  */
792  DLOG("_NET_REQUEST_FRAME_EXTENTS for window 0x%08x\n", event->window);
793 
794  /* The reply data: approximate frame size */
795  Rect r = {
796  config.default_border_width, /* left */
797  config.default_border_width, /* right */
798  render_deco_height(), /* top */
799  config.default_border_width /* bottom */
800  };
801  xcb_change_property(
802  conn,
803  XCB_PROP_MODE_REPLACE,
804  event->window,
805  A__NET_FRAME_EXTENTS,
806  XCB_ATOM_CARDINAL, 32, 4,
807  &r);
808  xcb_flush(conn);
809  } else if (event->type == A_WM_CHANGE_STATE) {
810  /* http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.4 */
811  if (event->data.data32[0] == XCB_ICCCM_WM_STATE_ICONIC) {
812  /* For compatiblity reasons, Wine will request iconic state and cannot ensure that the WM has agreed on it;
813  * immediately revert to normal to avoid being stuck in a paused state. */
814  DLOG("Client has requested iconic state, rejecting. (window = %d)\n", event->window);
815  long data[] = {XCB_ICCCM_WM_STATE_NORMAL, XCB_NONE};
816  xcb_change_property(conn, XCB_PROP_MODE_REPLACE, event->window,
817  A_WM_STATE, A_WM_STATE, 32, 2, data);
818  } else {
819  DLOG("Not handling WM_CHANGE_STATE request. (window = %d, state = %d)\n", event->window, event->data.data32[0]);
820  }
821  } else if (event->type == A__NET_CURRENT_DESKTOP) {
822  /* This request is used by pagers and bars to change the current
823  * desktop likely as a result of some user action. We interpret this as
824  * a request to focus the given workspace. See
825  * https://standards.freedesktop.org/wm-spec/latest/ar01s03.html#idm140251368135008
826  * */
827  DLOG("Request to change current desktop to index %d\n", event->data.data32[0]);
828  Con *ws = ewmh_get_workspace_by_index(event->data.data32[0]);
829  if (ws == NULL) {
830  ELOG("Could not determine workspace for this index, ignoring request.\n");
831  return;
832  }
833 
834  DLOG("Handling request to focus workspace %s\n", ws->name);
835  workspace_show(ws);
836  tree_render();
837  } else if (event->type == A__NET_WM_DESKTOP) {
838  uint32_t index = event->data.data32[0];
839  DLOG("Request to move window %d to EWMH desktop index %d\n", event->window, index);
840 
841  Con *con = con_by_window_id(event->window);
842  if (con == NULL) {
843  DLOG("Couldn't find con for window %d, ignoring the request.\n", event->window);
844  return;
845  }
846 
847  if (index == NET_WM_DESKTOP_ALL) {
848  /* The window is requesting to be visible on all workspaces, so
849  * let's float it and make it sticky. */
850  DLOG("The window was requested to be visible on all workspaces, making it sticky and floating.\n");
851 
852  floating_enable(con, false);
853 
854  con->sticky = true;
855  ewmh_update_sticky(con->window->id, true);
857  } else {
858  Con *ws = ewmh_get_workspace_by_index(index);
859  if (ws == NULL) {
860  ELOG("Could not determine workspace for this index, ignoring request.\n");
861  return;
862  }
863 
864  con_move_to_workspace(con, ws, true, false, false);
865  }
866 
867  tree_render();
869  } else if (event->type == A__NET_CLOSE_WINDOW) {
870  /*
871  * Pagers wanting to close a window MUST send a _NET_CLOSE_WINDOW
872  * client message request to the root window.
873  * https://standards.freedesktop.org/wm-spec/wm-spec-latest.html#idm140200472668896
874  */
875  Con *con = con_by_window_id(event->window);
876  if (con) {
877  DLOG("Handling _NET_CLOSE_WINDOW request (con = %p)\n", con);
878 
879  if (event->data.data32[0])
880  last_timestamp = event->data.data32[0];
881 
882  tree_close_internal(con, KILL_WINDOW, false);
883  tree_render();
884  } else {
885  DLOG("Couldn't find con for _NET_CLOSE_WINDOW request. (window = %d)\n", event->window);
886  }
887  } else if (event->type == A__NET_WM_MOVERESIZE) {
888  /*
889  * Client-side decorated Gtk3 windows emit this signal when being
890  * dragged by their GtkHeaderBar
891  */
892  Con *con = con_by_window_id(event->window);
893  if (!con || !con_is_floating(con)) {
894  DLOG("Couldn't find con for _NET_WM_MOVERESIZE request, or con not floating (window = %d)\n", event->window);
895  return;
896  }
897  DLOG("Handling _NET_WM_MOVERESIZE request (con = %p)\n", con);
898  uint32_t direction = event->data.data32[2];
899  uint32_t x_root = event->data.data32[0];
900  uint32_t y_root = event->data.data32[1];
901  /* construct fake xcb_button_press_event_t */
902  xcb_button_press_event_t fake = {
903  .root_x = x_root,
904  .root_y = y_root,
905  .event_x = x_root - (con->rect.x),
906  .event_y = y_root - (con->rect.y)};
907  switch (direction) {
909  floating_drag_window(con->parent, &fake);
910  break;
912  floating_resize_window(con->parent, false, &fake);
913  break;
914  default:
915  DLOG("_NET_WM_MOVERESIZE direction %d not implemented\n", direction);
916  break;
917  }
918  } else if (event->type == A__NET_MOVERESIZE_WINDOW) {
919  DLOG("Received _NET_MOVE_RESIZE_WINDOW. Handling by faking a configure request.\n");
920 
921  void *_generated_event = scalloc(32, 1);
922  xcb_configure_request_event_t *generated_event = _generated_event;
923 
924  generated_event->window = event->window;
925  generated_event->response_type = XCB_CONFIGURE_REQUEST;
926 
927  generated_event->value_mask = 0;
928  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_X) {
929  generated_event->value_mask |= XCB_CONFIG_WINDOW_X;
930  generated_event->x = event->data.data32[1];
931  }
932  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_Y) {
933  generated_event->value_mask |= XCB_CONFIG_WINDOW_Y;
934  generated_event->y = event->data.data32[2];
935  }
936  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_WIDTH) {
937  generated_event->value_mask |= XCB_CONFIG_WINDOW_WIDTH;
938  generated_event->width = event->data.data32[3];
939  }
940  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_HEIGHT) {
941  generated_event->value_mask |= XCB_CONFIG_WINDOW_HEIGHT;
942  generated_event->height = event->data.data32[4];
943  }
944 
945  handle_configure_request(generated_event);
946  FREE(generated_event);
947  } else {
948  DLOG("Skipping client message for unhandled type %d\n", event->type);
949  }
950 }
951 
952 static bool handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
953  xcb_atom_t atom, xcb_get_property_reply_t *reply) {
954  Con *con;
955  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
956  return false;
957 
958  window_update_type(con->window, reply);
959  return true;
960 }
961 
962 /*
963  * Handles the size hints set by a window, but currently only the part necessary for displaying
964  * clients proportionally inside their frames (mplayer for example)
965  *
966  * See ICCCM 4.1.2.3 for more details
967  *
968  */
969 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
970  xcb_atom_t name, xcb_get_property_reply_t *reply) {
971  Con *con = con_by_window_id(window);
972  if (con == NULL) {
973  DLOG("Received WM_NORMAL_HINTS for unknown client\n");
974  return false;
975  }
976 
977  xcb_size_hints_t size_hints;
978 
979  /* If the hints were already in this event, use them, if not, request them */
980  if (reply != NULL) {
981  xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
982  } else {
983  xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
984  }
985 
986  int win_width = con->window_rect.width;
987  int win_height = con->window_rect.height;
988 
989  if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
990  DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
991 
992  con->window->min_width = size_hints.min_width;
993  con->window->min_height = size_hints.min_height;
994  }
995 
996  if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE)) {
997  DLOG("Maximum size: %d (width) x %d (height)\n", size_hints.max_width, size_hints.max_height);
998 
999  con->window->max_width = size_hints.max_width;
1000  con->window->max_height = size_hints.max_height;
1001  }
1002 
1003  if (con_is_floating(con)) {
1004  win_width = MAX(win_width, con->window->min_width);
1005  win_height = MAX(win_height, con->window->min_height);
1006  win_width = MIN(win_width, con->window->max_width);
1007  win_height = MIN(win_height, con->window->max_height);
1008  }
1009 
1010  bool changed = false;
1011  if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
1012  if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF) {
1013  if (con->window->width_increment != size_hints.width_inc) {
1014  con->window->width_increment = size_hints.width_inc;
1015  changed = true;
1016  }
1017  }
1018 
1019  if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF) {
1020  if (con->window->height_increment != size_hints.height_inc) {
1021  con->window->height_increment = size_hints.height_inc;
1022  changed = true;
1023  }
1024  }
1025 
1026  if (changed) {
1027  DLOG("resize increments changed\n");
1028  }
1029  }
1030 
1031  bool has_base_size = false;
1032  int base_width = 0;
1033  int base_height = 0;
1034 
1035  /* The base width / height is the desired size of the window. */
1036  if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
1037  base_width = size_hints.base_width;
1038  base_height = size_hints.base_height;
1039  has_base_size = true;
1040  }
1041 
1042  /* If the window didn't specify a base size, the ICCCM tells us to fall
1043  * back to the minimum size instead, if available. */
1044  if (!has_base_size && size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
1045  base_width = size_hints.min_width;
1046  base_height = size_hints.min_height;
1047  }
1048 
1049  // TODO XXX Should we only do this is the base size is > 0?
1050  if (base_width != con->window->base_width || base_height != con->window->base_height) {
1051  con->window->base_width = base_width;
1052  con->window->base_height = base_height;
1053 
1054  DLOG("client's base_height changed to %d\n", base_height);
1055  DLOG("client's base_width changed to %d\n", base_width);
1056  changed = true;
1057  }
1058 
1059  /* If no aspect ratio was set or if it was invalid, we ignore the hints */
1060  if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
1061  (size_hints.min_aspect_num <= 0) ||
1062  (size_hints.min_aspect_den <= 0)) {
1063  goto render_and_return;
1064  }
1065 
1066  /* The ICCCM says to subtract the base size from the window size for aspect
1067  * ratio calculations. However, unlike determining the base size itself we
1068  * must not fall back to using the minimum size in this case according to
1069  * the ICCCM. */
1070  double width = win_width - base_width * has_base_size;
1071  double height = win_height - base_height * has_base_size;
1072 
1073  /* Convert numerator/denominator to a double */
1074  double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
1075  double max_aspect = (double)size_hints.max_aspect_num / size_hints.max_aspect_den;
1076 
1077  DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
1078  DLOG("width = %f, height = %f\n", width, height);
1079 
1080  /* Sanity checks, this is user-input, in a way */
1081  if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0) {
1082  goto render_and_return;
1083  }
1084 
1085  /* Check if we need to set proportional_* variables using the correct ratio */
1086  double aspect_ratio = 0.0;
1087  if ((width / height) < min_aspect) {
1088  aspect_ratio = min_aspect;
1089  } else if ((width / height) > max_aspect) {
1090  aspect_ratio = max_aspect;
1091  } else {
1092  goto render_and_return;
1093  }
1094 
1095  if (fabs(con->window->aspect_ratio - aspect_ratio) > DBL_EPSILON) {
1096  con->window->aspect_ratio = aspect_ratio;
1097  changed = true;
1098  }
1099 
1100 render_and_return:
1101  if (changed) {
1102  tree_render();
1103  }
1104 
1105  FREE(reply);
1106  return true;
1107 }
1108 
1109 /*
1110  * Handles the WM_HINTS property for extracting the urgency state of the window.
1111  *
1112  */
1113 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1114  xcb_atom_t name, xcb_get_property_reply_t *reply) {
1115  Con *con = con_by_window_id(window);
1116  if (con == NULL) {
1117  DLOG("Received WM_HINTS for unknown client\n");
1118  return false;
1119  }
1120 
1121  bool urgency_hint;
1122  if (reply == NULL)
1123  reply = xcb_get_property_reply(conn, xcb_icccm_get_wm_hints(conn, window), NULL);
1124  window_update_hints(con->window, reply, &urgency_hint);
1125  con_set_urgency(con, urgency_hint);
1126  tree_render();
1127 
1128  return true;
1129 }
1130 
1131 /*
1132  * Handles the transient for hints set by a window, signalizing that this window is a popup window
1133  * for some other window.
1134  *
1135  * See ICCCM 4.1.2.6 for more details
1136  *
1137  */
1138 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1139  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1140  Con *con;
1141 
1142  if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
1143  DLOG("No such window\n");
1144  return false;
1145  }
1146 
1147  if (prop == NULL) {
1148  prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn, false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32),
1149  NULL);
1150  if (prop == NULL)
1151  return false;
1152  }
1153 
1154  window_update_transient_for(con->window, prop);
1155 
1156  return true;
1157 }
1158 
1159 /*
1160  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
1161  * toolwindow (or similar) and to which window it belongs (logical parent).
1162  *
1163  */
1164 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1165  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1166  Con *con;
1167  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
1168  return false;
1169 
1170  if (prop == NULL) {
1171  prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn, false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32),
1172  NULL);
1173  if (prop == NULL)
1174  return false;
1175  }
1176 
1177  window_update_leader(con->window, prop);
1178 
1179  return true;
1180 }
1181 
1182 /*
1183  * Handles FocusIn events which are generated by clients (i3’s focus changes
1184  * don’t generate FocusIn events due to a different EventMask) and updates the
1185  * decorations accordingly.
1186  *
1187  */
1188 static void handle_focus_in(xcb_focus_in_event_t *event) {
1189  DLOG("focus change in, for window 0x%08x\n", event->event);
1190 
1191  if (event->event == root) {
1192  DLOG("Received focus in for root window, refocusing the focused window.\n");
1193  con_focus(focused);
1194  focused_id = XCB_NONE;
1196  }
1197 
1198  Con *con;
1199  if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
1200  return;
1201  DLOG("That is con %p / %s\n", con, con->name);
1202 
1203  if (event->mode == XCB_NOTIFY_MODE_GRAB ||
1204  event->mode == XCB_NOTIFY_MODE_UNGRAB) {
1205  DLOG("FocusIn event for grab/ungrab, ignoring\n");
1206  return;
1207  }
1208 
1209  if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
1210  DLOG("notify detail is pointer, ignoring this event\n");
1211  return;
1212  }
1213 
1214  /* Floating windows should be refocused to ensure that they are on top of
1215  * other windows. */
1216  if (focused_id == event->event && !con_inside_floating(con)) {
1217  DLOG("focus matches the currently focused window, not doing anything\n");
1218  return;
1219  }
1220 
1221  /* Skip dock clients, they cannot get the i3 focus. */
1222  if (con->parent->type == CT_DOCKAREA) {
1223  DLOG("This is a dock client, not focusing.\n");
1224  return;
1225  }
1226 
1227  DLOG("focus is different / refocusing floating window: updating decorations\n");
1228 
1229  /* Get the currently focused workspace to check if the focus change also
1230  * involves changing workspaces. If so, we need to call workspace_show() to
1231  * correctly update state and send the IPC event. */
1232  Con *ws = con_get_workspace(con);
1233  if (ws != con_get_workspace(focused))
1234  workspace_show(ws);
1235 
1236  con_activate(con);
1237  /* We update focused_id because we don’t need to set focus again */
1238  focused_id = event->event;
1239  tree_render();
1240 }
1241 
1242 /*
1243  * Handles ConfigureNotify events for the root window, which are generated when
1244  * the monitor configuration changed.
1245  *
1246  */
1247 static void handle_configure_notify(xcb_configure_notify_event_t *event) {
1248  if (event->event != root) {
1249  DLOG("ConfigureNotify for non-root window 0x%08x, ignoring\n", event->event);
1250  return;
1251  }
1252  DLOG("ConfigureNotify for root window 0x%08x\n", event->event);
1253 
1254  if (force_xinerama) {
1255  return;
1256  }
1258 }
1259 
1260 /*
1261  * Handles the WM_CLASS property for assignments and criteria selection.
1262  *
1263  */
1264 static bool handle_class_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1265  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1266  Con *con;
1267  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
1268  return false;
1269 
1270  if (prop == NULL) {
1271  prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn, false, window, XCB_ATOM_WM_CLASS, XCB_ATOM_STRING, 0, 32),
1272  NULL);
1273 
1274  if (prop == NULL)
1275  return false;
1276  }
1277 
1278  window_update_class(con->window, prop, false);
1279 
1280  return true;
1281 }
1282 
1283 /*
1284  * Handles the _MOTIF_WM_HINTS property of specifing window deocration settings.
1285  *
1286  */
1287 static bool handle_motif_hints_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1288  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1289  Con *con;
1290  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
1291  return false;
1292 
1293  if (prop == NULL) {
1294  prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn, false, window, A__MOTIF_WM_HINTS, XCB_GET_PROPERTY_TYPE_ANY, 0, 5 * sizeof(uint64_t)),
1295  NULL);
1296 
1297  if (prop == NULL)
1298  return false;
1299  }
1300 
1301  border_style_t motif_border_style;
1302  window_update_motif_hints(con->window, prop, &motif_border_style);
1303 
1304  if (motif_border_style != con->border_style && motif_border_style != BS_NORMAL) {
1305  DLOG("Update border style of con %p to %d\n", con, motif_border_style);
1306  con_set_border_style(con, motif_border_style, con->current_border_width);
1307 
1309  }
1310 
1311  return true;
1312 }
1313 
1314 /*
1315  * Handles the _NET_WM_STRUT_PARTIAL property for allocating space for dock clients.
1316  *
1317  */
1318 static bool handle_strut_partial_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1319  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1320  DLOG("strut partial change for window 0x%08x\n", window);
1321 
1322  Con *con;
1323  if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
1324  return false;
1325  }
1326 
1327  if (prop == NULL) {
1328  xcb_generic_error_t *err = NULL;
1329  xcb_get_property_cookie_t strut_cookie = xcb_get_property(conn, false, window, A__NET_WM_STRUT_PARTIAL,
1330  XCB_GET_PROPERTY_TYPE_ANY, 0, UINT32_MAX);
1331  prop = xcb_get_property_reply(conn, strut_cookie, &err);
1332 
1333  if (err != NULL) {
1334  DLOG("got error when getting strut partial property: %d\n", err->error_code);
1335  free(err);
1336  return false;
1337  }
1338 
1339  if (prop == NULL) {
1340  return false;
1341  }
1342  }
1343 
1344  DLOG("That is con %p / %s\n", con, con->name);
1345 
1346  window_update_strut_partial(con->window, prop);
1347 
1348  /* we only handle this change for dock clients */
1349  if (con->parent == NULL || con->parent->type != CT_DOCKAREA) {
1350  return true;
1351  }
1352 
1353  Con *search_at = croot;
1354  Con *output = con_get_output(con);
1355  if (output != NULL) {
1356  DLOG("Starting search at output %s\n", output->name);
1357  search_at = output;
1358  }
1359 
1360  /* find out the desired position of this dock window */
1361  if (con->window->reserved.top > 0 && con->window->reserved.bottom == 0) {
1362  DLOG("Top dock client\n");
1363  con->window->dock = W_DOCK_TOP;
1364  } else if (con->window->reserved.top == 0 && con->window->reserved.bottom > 0) {
1365  DLOG("Bottom dock client\n");
1366  con->window->dock = W_DOCK_BOTTOM;
1367  } else {
1368  DLOG("Ignoring invalid reserved edges (_NET_WM_STRUT_PARTIAL), using position as fallback:\n");
1369  if (con->geometry.y < (search_at->rect.height / 2)) {
1370  DLOG("geom->y = %d < rect.height / 2 = %d, it is a top dock client\n",
1371  con->geometry.y, (search_at->rect.height / 2));
1372  con->window->dock = W_DOCK_TOP;
1373  } else {
1374  DLOG("geom->y = %d >= rect.height / 2 = %d, it is a bottom dock client\n",
1375  con->geometry.y, (search_at->rect.height / 2));
1376  con->window->dock = W_DOCK_BOTTOM;
1377  }
1378  }
1379 
1380  /* find the dockarea */
1381  Con *dockarea = con_for_window(search_at, con->window, NULL);
1382  assert(dockarea != NULL);
1383 
1384  /* attach the dock to the dock area */
1385  con_detach(con);
1386  con->parent = dockarea;
1387  TAILQ_INSERT_HEAD(&(dockarea->focus_head), con, focused);
1388  TAILQ_INSERT_HEAD(&(dockarea->nodes_head), con, nodes);
1389 
1390  tree_render();
1391 
1392  return true;
1393 }
1394 
1395 /* Returns false if the event could not be processed (e.g. the window could not
1396  * be found), true otherwise */
1397 typedef bool (*cb_property_handler_t)(void *data, xcb_connection_t *c, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *property);
1398 
1400  xcb_atom_t atom;
1401  uint32_t long_len;
1403 };
1404 
1406  {0, 128, handle_windowname_change},
1407  {0, UINT_MAX, handle_hints},
1409  {0, UINT_MAX, handle_normal_hints},
1410  {0, UINT_MAX, handle_clientleader_change},
1411  {0, UINT_MAX, handle_transient_for},
1412  {0, 128, handle_windowrole_change},
1413  {0, 128, handle_class_change},
1414  {0, UINT_MAX, handle_strut_partial_change},
1415  {0, UINT_MAX, handle_window_type},
1416  {0, 5 * sizeof(uint64_t), handle_motif_hints_change}};
1417 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
1418 
1419 /*
1420  * Sets the appropriate atoms for the property handlers after the atoms were
1421  * received from X11
1422  *
1423  */
1425  sn_monitor_context_new(sndisplay, conn_screen, startup_monitor_event, NULL, NULL);
1426 
1427  property_handlers[0].atom = A__NET_WM_NAME;
1428  property_handlers[1].atom = XCB_ATOM_WM_HINTS;
1429  property_handlers[2].atom = XCB_ATOM_WM_NAME;
1430  property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
1431  property_handlers[4].atom = A_WM_CLIENT_LEADER;
1432  property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
1433  property_handlers[6].atom = A_WM_WINDOW_ROLE;
1434  property_handlers[7].atom = XCB_ATOM_WM_CLASS;
1435  property_handlers[8].atom = A__NET_WM_STRUT_PARTIAL;
1436  property_handlers[9].atom = A__NET_WM_WINDOW_TYPE;
1437  property_handlers[10].atom = A__MOTIF_WM_HINTS;
1438 }
1439 
1440 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
1441  struct property_handler_t *handler = NULL;
1442  xcb_get_property_reply_t *propr = NULL;
1443 
1444  for (size_t c = 0; c < NUM_HANDLERS; c++) {
1445  if (property_handlers[c].atom != atom)
1446  continue;
1447 
1448  handler = &property_handlers[c];
1449  break;
1450  }
1451 
1452  if (handler == NULL) {
1453  //DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
1454  return;
1455  }
1456 
1457  if (state != XCB_PROPERTY_DELETE) {
1458  xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
1459  propr = xcb_get_property_reply(conn, cookie, 0);
1460  }
1461 
1462  /* the handler will free() the reply unless it returns false */
1463  if (!handler->cb(NULL, conn, state, window, atom, propr))
1464  FREE(propr);
1465 }
1466 
1467 /*
1468  * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
1469  * event type.
1470  *
1471  */
1472 void handle_event(int type, xcb_generic_event_t *event) {
1473  if (type != XCB_MOTION_NOTIFY)
1474  DLOG("event type %d, xkb_base %d\n", type, xkb_base);
1475 
1476  if (randr_base > -1 &&
1477  type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
1478  handle_screen_change(event);
1479  return;
1480  }
1481 
1482  if (xkb_base > -1 && type == xkb_base) {
1483  DLOG("xkb event, need to handle it.\n");
1484 
1485  xcb_xkb_state_notify_event_t *state = (xcb_xkb_state_notify_event_t *)event;
1486  if (state->xkbType == XCB_XKB_NEW_KEYBOARD_NOTIFY) {
1487  DLOG("xkb new keyboard notify, sequence %d, time %d\n", state->sequence, state->time);
1488  xcb_key_symbols_free(keysyms);
1489  keysyms = xcb_key_symbols_alloc(conn);
1490  if (((xcb_xkb_new_keyboard_notify_event_t *)event)->changed & XCB_XKB_NKN_DETAIL_KEYCODES)
1491  (void)load_keymap();
1495  } else if (state->xkbType == XCB_XKB_MAP_NOTIFY) {
1496  if (event_is_ignored(event->sequence, type)) {
1497  DLOG("Ignoring map notify event for sequence %d.\n", state->sequence);
1498  } else {
1499  DLOG("xkb map notify, sequence %d, time %d\n", state->sequence, state->time);
1500  add_ignore_event(event->sequence, type);
1501  xcb_key_symbols_free(keysyms);
1502  keysyms = xcb_key_symbols_alloc(conn);
1506  (void)load_keymap();
1507  }
1508  } else if (state->xkbType == XCB_XKB_STATE_NOTIFY) {
1509  DLOG("xkb state group = %d\n", state->group);
1510  if (xkb_current_group == state->group)
1511  return;
1512  xkb_current_group = state->group;
1515  }
1516 
1517  return;
1518  }
1519 
1520  switch (type) {
1521  case XCB_KEY_PRESS:
1522  case XCB_KEY_RELEASE:
1523  handle_key_press((xcb_key_press_event_t *)event);
1524  break;
1525 
1526  case XCB_BUTTON_PRESS:
1527  case XCB_BUTTON_RELEASE:
1528  handle_button_press((xcb_button_press_event_t *)event);
1529  break;
1530 
1531  case XCB_MAP_REQUEST:
1532  handle_map_request((xcb_map_request_event_t *)event);
1533  break;
1534 
1535  case XCB_UNMAP_NOTIFY:
1536  handle_unmap_notify_event((xcb_unmap_notify_event_t *)event);
1537  break;
1538 
1539  case XCB_DESTROY_NOTIFY:
1540  handle_destroy_notify_event((xcb_destroy_notify_event_t *)event);
1541  break;
1542 
1543  case XCB_EXPOSE:
1544  if (((xcb_expose_event_t *)event)->count == 0) {
1545  handle_expose_event((xcb_expose_event_t *)event);
1546  }
1547 
1548  break;
1549 
1550  case XCB_MOTION_NOTIFY:
1551  handle_motion_notify((xcb_motion_notify_event_t *)event);
1552  break;
1553 
1554  /* Enter window = user moved their mouse over the window */
1555  case XCB_ENTER_NOTIFY:
1556  handle_enter_notify((xcb_enter_notify_event_t *)event);
1557  break;
1558 
1559  /* Client message are sent to the root window. The only interesting
1560  * client message for us is _NET_WM_STATE, we honour
1561  * _NET_WM_STATE_FULLSCREEN and _NET_WM_STATE_DEMANDS_ATTENTION */
1562  case XCB_CLIENT_MESSAGE:
1563  handle_client_message((xcb_client_message_event_t *)event);
1564  break;
1565 
1566  /* Configure request = window tried to change size on its own */
1567  case XCB_CONFIGURE_REQUEST:
1568  handle_configure_request((xcb_configure_request_event_t *)event);
1569  break;
1570 
1571  /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1572  case XCB_MAPPING_NOTIFY:
1573  handle_mapping_notify((xcb_mapping_notify_event_t *)event);
1574  break;
1575 
1576  case XCB_FOCUS_IN:
1577  handle_focus_in((xcb_focus_in_event_t *)event);
1578  break;
1579 
1580  case XCB_PROPERTY_NOTIFY: {
1581  xcb_property_notify_event_t *e = (xcb_property_notify_event_t *)event;
1582  last_timestamp = e->time;
1583  property_notify(e->state, e->window, e->atom);
1584  break;
1585  }
1586 
1587  case XCB_CONFIGURE_NOTIFY:
1588  handle_configure_notify((xcb_configure_notify_event_t *)event);
1589  break;
1590 
1591  default:
1592  //DLOG("Unhandled event of type %d\n", type);
1593  break;
1594  }
1595 }
Rect con_border_style_rect(Con *con)
Returns a "relative" Rect which contains the amount of pixels that need to be added to the original R...
Definition: con.c:1638
enum Config::@6 focus_on_window_activation
Behavior when a window sends a NET_ACTIVE_WINDOW message.
#define XCB_NUM_LOCK
Definition: xcb.h:29
#define FREE(pointer)
Definition: util.h:47
int width_increment
Definition: data.h:496
void con_detach(Con *con)
Detaches the given container from its current parent.
Definition: con.c:207
xcb_window_t root
Definition: main.c:57
uint32_t top
Definition: data.h:189
uint32_t height
Definition: data.h:178
void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop)
Updates the TRANSIENT_FOR (logical parent window).
Definition: window.c:228
nodes_head
Definition: data.h:711
static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *prop)
Definition: handlers.c:1138
char * name
Definition: data.h:676
#define SLIST_FOREACH(var, head, field)
Definition: queue.h:114
bool sticky
Definition: data.h:724
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:173
void workspace_show(Con *workspace)
Switches to the given workspace.
Definition: workspace.c:411
static void handle_motion_notify(xcb_motion_notify_event_t *event)
Definition: handlers.c:195
void fake_absolute_configure_notify(Con *con)
Generates a configure_notify_event with absolute coordinates (relative to the X root window...
Definition: xcb.c:75
struct Con * parent
Definition: data.h:662
static void check_crossing_screen_boundary(uint32_t x, uint32_t y)
Definition: handlers.c:89
int randr_base
Definition: handlers.c:20
void add_ignore_event(const int sequence, const int response_type)
Adds the given sequence to the list of events which are ignored.
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
void scratchpad_fix_resolution(void)
When starting i3 initially (and after each change to the connected outputs), this function fixes the ...
Definition: scratchpad.c:249
#define SLIST_NEXT(elm, field)
Definition: queue.h:112
uint32_t aio_get_mod_mask_for(uint32_t keysym, xcb_key_symbols_t *symbols)
All-in-one function which returns the modifier mask (XCB_MOD_MASK_*) for the given keysymbol...
int max_width
Definition: data.h:504
#define _NET_WM_STATE_ADD
Definition: xcb.h:18
void ewmh_update_wm_desktop(void)
Updates _NET_WM_DESKTOP for all windows.
Definition: ewmh.c:182
int border_width
Definition: data.h:695
struct Con * croot
Definition: tree.c:12
border_style_t
Definition: data.h:62
bool disable_focus_follows_mouse
By default, focus follows mouse.
#define DLOG(fmt,...)
Definition: libi3.h:104
xcb_window_t id
Definition: data.h:428
struct reservedpx reserved
Pixels the window reserves.
Definition: data.h:485
static void handle_expose_event(xcb_expose_event_t *event)
Definition: handlers.c:623
bool event_is_ignored(const int sequence, const int response_type)
Checks if the given sequence is ignored and returns true if so.
Definition: handlers.c:51
#define SLIST_REMOVE(head, elm, type, field)
Definition: queue.h:154
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
#define _NET_MOVERESIZE_WINDOW_X
Definition: handlers.c:653
Con * ewmh_get_workspace_by_index(uint32_t idx)
Returns the workspace container as enumerated by the EWMH desktop model.
Definition: ewmh.c:351
ignore_events
Definition: data.h:238
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 x_push_changes(Con *con)
Pushes all changes (state of each node, see x_push_node() and the window stack) to X11...
Definition: x.c:1061
void floating_drag_window(Con *con, const xcb_button_press_event_t *event)
Called when the user clicked on the titlebar of a floating window.
Definition: floating.c:537
int handle_button_press(xcb_button_press_event_t *event)
The button press X callback.
Definition: click.c:339
struct Rect deco_rect
Definition: data.h:672
xcb_connection_t * conn
XCB connection and root screen.
Definition: main.c:44
#define _NET_WM_MOVERESIZE_MOVE
Definition: handlers.c:648
static bool handle_class_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *prop)
Definition: handlers.c:1264
An Output is a physical output on your graphics driver.
Definition: data.h:392
bool workspace_is_visible(Con *ws)
Returns true if the workspace is currently visible.
Definition: workspace.c:298
void con_focus(Con *con)
Sets input focus to the given container.
Definition: con.c:223
enum Window::@13 dock
Whether the window says it is a dock window.
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
bool con_is_leaf(Con *con)
Returns true when this node is a leaf node (has no children)
Definition: con.c:303
layout_t
Container layouts.
Definition: data.h:91
void ewmh_update_sticky(xcb_window_t window, bool sticky)
Set or remove _NET_WM_STATE_STICKY on the window.
Definition: ewmh.c:277
int default_border_width
uint32_t y
Definition: data.h:176
static void handle_destroy_notify_event(xcb_destroy_notify_event_t *event)
Definition: handlers.c:533
surface_t frame_buffer
Definition: data.h:646
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:1587
static SLIST_HEAD(ignore_head, Ignore_Event)
Definition: handlers.c:27
void draw_util_copy_surface(surface_t *src, surface_t *dest, double src_x, double src_y, double dest_x, double dest_y, double width, double height)
Copies a surface onto another surface.
int base_width
Definition: data.h:492
void randr_query_outputs(void)
Initializes the specified output, assigning the specified workspace to it.
Definition: randr.c:850
int xkb_base
Definition: handlers.c:21
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
focus_head
Definition: data.h:714
static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom)
Definition: handlers.c:1440
Con * con_inside_floating(Con *con)
Checks if the given container is either floating or inside some floating container.
Definition: con.c:566
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
int current_border_width
Definition: data.h:696
void startup_monitor_event(SnMonitorEvent *event, void *userdata)
Called by libstartup-notification when something happens.
Definition: startup.c:214
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:614
int min_width
Definition: data.h:500
A "match" is a data structure which acts like a mask or expression to match certain windows or not...
Definition: data.h:519
uint32_t width
Definition: data.h:177
#define TAILQ_INSERT_HEAD(head, elm, field)
Definition: queue.h:366
static void handle_enter_notify(xcb_enter_notify_event_t *event)
Definition: handlers.c:123
bool force_xinerama
Definition: main.c:93
uint32_t long_len
Definition: handlers.c:1401
static void handle_unmap_notify_event(xcb_unmap_notify_event_t *event)
Definition: handlers.c:462
static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *reply)
Definition: handlers.c:1113
static void handle_focus_in(xcb_focus_in_event_t *event)
Definition: handlers.c:1188
bool floating_reposition(Con *con, Rect newrect)
Repositions the CT_FLOATING_CON to have the coordinates specified by newrect, but only if the coordin...
Definition: floating.c:892
static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *reply)
Definition: handlers.c:969
struct Window * window
Definition: data.h:698
void grab_all_keys(xcb_connection_t *conn)
Grab the bound keys (tell X to send us keypress events for those keycodes)
Definition: bindings.c:147
int response_type
Definition: data.h:234
static struct property_handler_t property_handlers[]
Definition: handlers.c:1405
static bool handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop)
Definition: handlers.c:584
uint32_t width
Definition: data.h:129
xcb_window_t focused_id
Stores the X11 window ID of the currently focused window.
Definition: x.c:20
void con_toggle_fullscreen(Con *con, int fullscreen_mode)
Toggles fullscreen mode for the given container.
Definition: con.c:1000
#define TAILQ_FIRST(head)
Definition: queue.h:336
struct Rect window_rect
Definition: data.h:669
int sequence
Definition: data.h:233
Con * con
Pointer to the Con which represents this output.
Definition: data.h:413
Con * con_get_workspace(Con *con)
Gets the workspace container this node is on.
Definition: con.c:419
Con * con_get_output(Con *con)
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on...
Definition: con.c:405
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:365
Stores a rectangle, for example the size of a window, the child window etc.
Definition: data.h:174
static cmdp_state state
void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the WM_WINDOW_ROLE.
Definition: window.c:278
bool con_is_floating(Con *con)
Returns true if the node is floating.
Definition: con.c:541
#define SLIST_FIRST(head)
Definition: queue.h:109
#define COPY_MASK_MEMBER(mask_member, event_member)
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:446
Con * con_by_frame_id(xcb_window_t frame)
Returns the container with the given frame ID or NULL if no such container exists.
Definition: con.c:652
void con_move_to_workspace(Con *con, Con *workspace, bool fix_coordinates, bool dont_warp, bool ignore_focus)
Moves the given container to the currently focused container on the given workspace.
Definition: con.c:1369
struct Rect geometry
the geometry this window requested when getting mapped
Definition: data.h:674
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:324
int xkb_current_group
Definition: handlers.c:22
void con_set_urgency(Con *con, bool urgent)
Set urgency flag to the container, all the parent containers and the workspace.
Definition: con.c:2173
#define _NET_MOVERESIZE_WINDOW_Y
Definition: handlers.c:654
cb_property_handler_t cb
Definition: handlers.c:1402
bool scratchpad_show(Con *con)
Either shows the top-most scratchpad window (con == NULL) or shows the specified con (if it is scratc...
Definition: scratchpad.c:87
void property_handlers_init(void)
Sets the appropriate atoms for the property handlers after the atoms were received from X11...
Definition: handlers.c:1424
char * sstrdup(const char *str)
Safe-wrapper around strdup which exits if malloc returns NULL (meaning that there is no more memory a...
#define _NET_WM_MOVERESIZE_SIZE_LEFT
Definition: handlers.c:647
double aspect_ratio
Definition: data.h:508
Definition: data.h:62
struct Rect rect
Definition: data.h:666
Definition: data.h:98
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:83
bool con_is_internal(Con *con)
Returns true if the container is internal, such as __i3_scratch.
Definition: con.c:533
#define _NET_WM_STATE_REMOVE
Definition: xcb.h:17
xcb_key_symbols_t * keysyms
Definition: main.c:68
#define LOG(fmt,...)
Definition: libi3.h:94
Con * output_get_content(Con *output)
Returns the output container below the given output container.
Definition: output.c:16
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:122
unsigned int xcb_numlock_mask
Definition: xcb.c:12
void floating_resize_window(Con *con, const bool proportional, const xcb_button_press_event_t *event)
Called when the user clicked on a floating window while holding the floating_modifier and the right m...
Definition: floating.c:639
A &#39;Window&#39; is a type which contains an xcb_window_t and all the related information (hints like _NET_...
Definition: data.h:427
#define _NET_MOVERESIZE_WINDOW_HEIGHT
Definition: handlers.c:656
Definition: data.h:97
SnDisplay * sndisplay
Definition: main.c:49
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:794
enum Con::@20 type
struct Con * focused
Definition: tree.c:13
xcb_atom_t atom
Definition: handlers.c:1400
bool load_keymap(void)
Loads the XKB keymap from the X11 server and feeds it to xkbcommon.
Definition: bindings.c:931
#define NUM_HANDLERS
Definition: handlers.c:1417
static void handle_screen_change(xcb_generic_event_t *e)
Definition: handlers.c:434
Con * con_descend_focused(Con *con)
Returns the focused con inside this client, descending the tree as far as possible.
Definition: con.c:1531
uint32_t height
Definition: data.h:130
uint8_t ignore_unmap
This counter contains the number of UnmapNotify events for this container (or, more precisely...
Definition: data.h:642
static bool window_name_changed(i3Window *window, char *old_name)
Definition: handlers.c:544
layout_t layout
Definition: data.h:740
uint32_t bottom
Definition: data.h:190
void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop)
Updates the CLIENT_LEADER (logical parent window).
Definition: window.c:203
bool tree_close_internal(Con *con, kill_window_t kill_window, bool dont_kill_parent)
Closes the given container including all children.
Definition: tree.c:191
void ipc_send_event(const char *event, uint32_t message_type, const char *payload)
Sends the specified event to all IPC clients which are currently connected and subscribed to this kin...
Definition: ipc.c:148
static void handle_map_request(xcb_map_request_event_t *event)
Definition: handlers.c:256
Definition: data.h:92
A &#39;Con&#39; represents everything from the X11 root window down to a single X11 window.
Definition: data.h:630
const char * i3string_as_utf8(i3String *str)
Returns the UTF-8 encoded version of the i3String.
int min_height
Definition: data.h:501
void sync_respond(xcb_window_t window, uint32_t rnd)
Definition: sync.c:12
int height_increment
Definition: data.h:497
static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *prop)
Definition: handlers.c:1164
#define ELOG(fmt,...)
Definition: libi3.h:99
#define NET_WM_DESKTOP_ALL
Definition: workspace.h:25
void translate_keysyms(void)
Translates keysymbols to keycodes for all bindings which use keysyms.
Definition: bindings.c:432
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:1741
static bool handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *reply)
Definition: handlers.c:952
static bool handle_motif_hints_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *prop)
Definition: handlers.c:1287
uint32_t x
Definition: data.h:175
bool rect_contains(Rect rect, uint32_t x, uint32_t y)
Definition: util.c:35
static bool handle_windowrole_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop)
Definition: handlers.c:608
surface_t frame
Definition: data.h:645
static void handle_client_message(xcb_client_message_event_t *event)
Definition: handlers.c:662
#define SLIST_INSERT_HEAD(head, elm, field)
Definition: queue.h:138
Definition: data.h:615
static void handle_configure_notify(xcb_configure_notify_event_t *event)
Definition: handlers.c:1247
int base_height
Definition: data.h:493
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:253
void con_attach(Con *con, Con *parent, bool ignore_focus)
Attaches the given container to the given parent.
Definition: con.c:199
#define _NET_WM_STATE_TOGGLE
Definition: xcb.h:19
static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop)
Definition: handlers.c:559
int conn_screen
Definition: main.c:46
static bool handle_strut_partial_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *prop)
Definition: handlers.c:1318
bool(* cb_property_handler_t)(void *data, xcb_connection_t *c, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *property)
Definition: handlers.c:1397
#define MAX(x, y)
Definition: floating.c:13
void con_activate(Con *con)
Sets input focus to the given container and raises it to the top.
Definition: con.c:264
xcb_timestamp_t last_timestamp
The last timestamp we got from X11 (timestamps are included in some events and are used for some thin...
Definition: main.c:54
static void handle_mapping_notify(xcb_mapping_notify_event_t *event)
Definition: handlers.c:237
void handle_key_press(xcb_key_press_event_t *event)
There was a key press.
Definition: key_press.c:18
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
int render_deco_height(void)
Returns the height for the decorations.
Definition: render.c:25
#define SLIST_END(head)
Definition: queue.h:110
#define _NET_WM_MOVERESIZE_SIZE_TOPLEFT
Definition: handlers.c:640
static void handle_configure_request(xcb_configure_request_event_t *event)
Definition: handlers.c:275
uint32_t y
Definition: data.h:128
char * output_primary_name(Output *output)
Retrieves the primary name of an output.
Definition: output.c:51
bool urgent
Definition: data.h:635
void window_update_type(i3Window *window, xcb_get_property_reply_t *reply)
Updates the _NET_WM_WINDOW_TYPE property.
Definition: window.c:306
void ungrab_all_keys(xcb_connection_t *conn)
Ungrabs all keys, to be called before re-grabbing the keys because of a mapping_notify event or a con...
Definition: config.c:26
Con * con_get_fullscreen_covering_ws(Con *ws)
Returns the fullscreen node that covers the given workspace if it exists.
Definition: con.c:518
uint32_t x
Definition: data.h:127
#define _NET_MOVERESIZE_WINDOW_WIDTH
Definition: handlers.c:655
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
time_t added
Definition: data.h:235
fullscreen_mode_t fullscreen_mode
Definition: data.h:719
i3String * name
The name of the window.
Definition: data.h:444
border_style_t border_style
Definition: data.h:741
int max_height
Definition: data.h:505
void handle_event(int type, xcb_generic_event_t *event)
Takes an xcb_generic_event_t and calls the appropriate handler, based on the event type...
Definition: handlers.c:1472