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