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