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);
415  con_activate(con);
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(1);
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, false);
569 
571 
572  if (window_name_changed(con->window, old_name))
573  ipc_send_window_event("title", con);
574 
575  FREE(old_name);
576 
577  return true;
578 }
579 
580 /*
581  * Handles legacy window name updates (WM_NAME), see also src/window.c,
582  * window_update_name_legacy().
583  *
584  */
585 static bool handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
586  xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
587  Con *con;
588  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
589  return false;
590 
591  char *old_name = (con->window->name != NULL ? sstrdup(i3string_as_utf8(con->window->name)) : NULL);
592 
593  window_update_name_legacy(con->window, prop, false);
594 
596 
597  if (window_name_changed(con->window, old_name))
598  ipc_send_window_event("title", con);
599 
600  FREE(old_name);
601 
602  return true;
603 }
604 
605 /*
606  * Called when a window changes its WM_WINDOW_ROLE.
607  *
608  */
609 static bool handle_windowrole_change(void *data, xcb_connection_t *conn, uint8_t state,
610  xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
611  Con *con;
612  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
613  return false;
614 
615  window_update_role(con->window, prop, false);
616 
617  return true;
618 }
619 
620 /*
621  * Expose event means we should redraw our windows (= title bar)
622  *
623  */
624 static void handle_expose_event(xcb_expose_event_t *event) {
625  Con *parent;
626 
627  DLOG("window = %08x\n", event->window);
628 
629  if ((parent = con_by_frame_id(event->window)) == NULL) {
630  LOG("expose event for unknown window, ignoring\n");
631  return;
632  }
633 
634  /* Since we render to our surface on every change anyways, expose events
635  * only tell us that the X server lost (parts of) the window contents. */
636  draw_util_copy_surface(&(parent->frame_buffer), &(parent->frame),
637  0, 0, 0, 0, parent->rect.width, parent->rect.height);
638  xcb_flush(conn);
639 }
640 
641 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
642 #define _NET_WM_MOVERESIZE_SIZE_TOP 1
643 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT 2
644 #define _NET_WM_MOVERESIZE_SIZE_RIGHT 3
645 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT 4
646 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM 5
647 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT 6
648 #define _NET_WM_MOVERESIZE_SIZE_LEFT 7
649 #define _NET_WM_MOVERESIZE_MOVE 8 /* movement only */
650 #define _NET_WM_MOVERESIZE_SIZE_KEYBOARD 9 /* size via keyboard */
651 #define _NET_WM_MOVERESIZE_MOVE_KEYBOARD 10 /* move via keyboard */
652 #define _NET_WM_MOVERESIZE_CANCEL 11 /* cancel operation */
653 
654 #define _NET_MOVERESIZE_WINDOW_X (1 << 8)
655 #define _NET_MOVERESIZE_WINDOW_Y (1 << 9)
656 #define _NET_MOVERESIZE_WINDOW_WIDTH (1 << 10)
657 #define _NET_MOVERESIZE_WINDOW_HEIGHT (1 << 11)
658 
659 /*
660  * Handle client messages (EWMH)
661  *
662  */
663 static void handle_client_message(xcb_client_message_event_t *event) {
664  /* If this is a startup notification ClientMessage, the library will handle
665  * it and call our monitor_event() callback. */
666  if (sn_xcb_display_process_event(sndisplay, (xcb_generic_event_t *)event))
667  return;
668 
669  LOG("ClientMessage for window 0x%08x\n", event->window);
670  if (event->type == A__NET_WM_STATE) {
671  if (event->format != 32 ||
672  (event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN &&
673  event->data.data32[1] != A__NET_WM_STATE_DEMANDS_ATTENTION &&
674  event->data.data32[1] != A__NET_WM_STATE_STICKY)) {
675  DLOG("Unknown atom in clientmessage of type %d\n", event->data.data32[1]);
676  return;
677  }
678 
679  Con *con = con_by_window_id(event->window);
680  if (con == NULL) {
681  DLOG("Could not get window for client message\n");
682  return;
683  }
684 
685  if (event->data.data32[1] == A__NET_WM_STATE_FULLSCREEN) {
686  /* Check if the fullscreen state should be toggled */
687  if ((con->fullscreen_mode != CF_NONE &&
688  (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
689  event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
690  (con->fullscreen_mode == CF_NONE &&
691  (event->data.data32[0] == _NET_WM_STATE_ADD ||
692  event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
693  DLOG("toggling fullscreen\n");
695  }
696  } else if (event->data.data32[1] == A__NET_WM_STATE_DEMANDS_ATTENTION) {
697  /* Check if the urgent flag must be set or not */
698  if (event->data.data32[0] == _NET_WM_STATE_ADD)
699  con_set_urgency(con, true);
700  else if (event->data.data32[0] == _NET_WM_STATE_REMOVE)
701  con_set_urgency(con, false);
702  else if (event->data.data32[0] == _NET_WM_STATE_TOGGLE)
703  con_set_urgency(con, !con->urgent);
704  } else if (event->data.data32[1] == A__NET_WM_STATE_STICKY) {
705  DLOG("Received a client message to modify _NET_WM_STATE_STICKY.\n");
706  if (event->data.data32[0] == _NET_WM_STATE_ADD)
707  con->sticky = true;
708  else if (event->data.data32[0] == _NET_WM_STATE_REMOVE)
709  con->sticky = false;
710  else if (event->data.data32[0] == _NET_WM_STATE_TOGGLE)
711  con->sticky = !con->sticky;
712 
713  DLOG("New sticky status for con = %p is %i.\n", con, con->sticky);
714  ewmh_update_sticky(con->window->id, con->sticky);
717  }
718 
719  tree_render();
720  } else if (event->type == A__NET_ACTIVE_WINDOW) {
721  if (event->format != 32)
722  return;
723 
724  DLOG("_NET_ACTIVE_WINDOW: Window 0x%08x should be activated\n", event->window);
725 
726  Con *con = con_by_window_id(event->window);
727  if (con == NULL) {
728  DLOG("Could not get window for client message\n");
729  return;
730  }
731 
732  Con *ws = con_get_workspace(con);
733  if (ws == NULL) {
734  DLOG("Window is not being managed, ignoring _NET_ACTIVE_WINDOW\n");
735  return;
736  }
737 
738  if (con_is_internal(ws) && ws != workspace_get("__i3_scratch", NULL)) {
739  DLOG("Workspace is internal but not scratchpad, ignoring _NET_ACTIVE_WINDOW\n");
740  return;
741  }
742 
743  /* data32[0] indicates the source of the request (application or pager) */
744  if (event->data.data32[0] == 2) {
745  /* Always focus the con if it is from a pager, because this is most
746  * likely from some user action */
747  DLOG("This request came from a pager. Focusing con = %p\n", con);
748 
749  if (con_is_internal(ws)) {
750  scratchpad_show(con);
751  } else {
752  workspace_show(ws);
753  /* Re-set focus, even if unchanged from i3’s perspective. */
754  focused_id = XCB_NONE;
755  con_activate(con);
756  }
757  } else {
758  /* Request is from an application. */
759  if (con_is_internal(ws)) {
760  DLOG("Ignoring request to make con = %p active because it's on an internal workspace.\n", con);
761  return;
762  }
763 
764  if (config.focus_on_window_activation == FOWA_FOCUS || (config.focus_on_window_activation == FOWA_SMART && workspace_is_visible(ws))) {
765  DLOG("Focusing con = %p\n", con);
766  workspace_show(ws);
767  con_activate(con);
768  } else if (config.focus_on_window_activation == FOWA_URGENT || (config.focus_on_window_activation == FOWA_SMART && !workspace_is_visible(ws))) {
769  DLOG("Marking con = %p urgent\n", con);
770  con_set_urgency(con, true);
771  } else
772  DLOG("Ignoring request for con = %p.\n", con);
773  }
774 
775  tree_render();
776  } else if (event->type == A_I3_SYNC) {
777  xcb_window_t window = event->data.data32[0];
778  uint32_t rnd = event->data.data32[1];
779  sync_respond(window, rnd);
780  } else if (event->type == A__NET_REQUEST_FRAME_EXTENTS) {
781  /*
782  * A client can request an estimate for the frame size which the window
783  * manager will put around it before actually mapping its window. Java
784  * does this (as of openjdk-7).
785  *
786  * Note that the calculation below is not entirely accurate — once you
787  * set a different border type, it’s off. We _could_ request all the
788  * window properties (which have to be set up at this point according
789  * to EWMH), but that seems rather elaborate. The standard explicitly
790  * says the application must cope with an estimate that is not entirely
791  * accurate.
792  */
793  DLOG("_NET_REQUEST_FRAME_EXTENTS for window 0x%08x\n", event->window);
794 
795  /* The reply data: approximate frame size */
796  Rect r = {
797  config.default_border_width, /* left */
798  config.default_border_width, /* right */
799  render_deco_height(), /* top */
800  config.default_border_width /* bottom */
801  };
802  xcb_change_property(
803  conn,
804  XCB_PROP_MODE_REPLACE,
805  event->window,
806  A__NET_FRAME_EXTENTS,
807  XCB_ATOM_CARDINAL, 32, 4,
808  &r);
809  xcb_flush(conn);
810  } else if (event->type == A_WM_CHANGE_STATE) {
811  /* http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.4 */
812  if (event->data.data32[0] == XCB_ICCCM_WM_STATE_ICONIC) {
813  /* For compatiblity reasons, Wine will request iconic state and cannot ensure that the WM has agreed on it;
814  * immediately revert to normal to avoid being stuck in a paused state. */
815  DLOG("Client has requested iconic state, rejecting. (window = %d)\n", event->window);
816  long data[] = {XCB_ICCCM_WM_STATE_NORMAL, XCB_NONE};
817  xcb_change_property(conn, XCB_PROP_MODE_REPLACE, event->window,
818  A_WM_STATE, A_WM_STATE, 32, 2, data);
819  } else {
820  DLOG("Not handling WM_CHANGE_STATE request. (window = %d, state = %d)\n", event->window, event->data.data32[0]);
821  }
822  } else if (event->type == A__NET_CURRENT_DESKTOP) {
823  /* This request is used by pagers and bars to change the current
824  * desktop likely as a result of some user action. We interpret this as
825  * a request to focus the given workspace. See
826  * https://standards.freedesktop.org/wm-spec/latest/ar01s03.html#idm140251368135008
827  * */
828  DLOG("Request to change current desktop to index %d\n", event->data.data32[0]);
829  Con *ws = ewmh_get_workspace_by_index(event->data.data32[0]);
830  if (ws == NULL) {
831  ELOG("Could not determine workspace for this index, ignoring request.\n");
832  return;
833  }
834 
835  DLOG("Handling request to focus workspace %s\n", ws->name);
836  workspace_show(ws);
837  tree_render();
838  } else if (event->type == A__NET_WM_DESKTOP) {
839  uint32_t index = event->data.data32[0];
840  DLOG("Request to move window %d to EWMH desktop index %d\n", event->window, index);
841 
842  Con *con = con_by_window_id(event->window);
843  if (con == NULL) {
844  DLOG("Couldn't find con for window %d, ignoring the request.\n", event->window);
845  return;
846  }
847 
848  if (index == NET_WM_DESKTOP_ALL) {
849  /* The window is requesting to be visible on all workspaces, so
850  * let's float it and make it sticky. */
851  DLOG("The window was requested to be visible on all workspaces, making it sticky and floating.\n");
852 
853  floating_enable(con, false);
854 
855  con->sticky = true;
856  ewmh_update_sticky(con->window->id, true);
858  } else {
859  Con *ws = ewmh_get_workspace_by_index(index);
860  if (ws == NULL) {
861  ELOG("Could not determine workspace for this index, ignoring request.\n");
862  return;
863  }
864 
865  con_move_to_workspace(con, ws, true, false, false);
866  }
867 
868  tree_render();
870  } else if (event->type == A__NET_CLOSE_WINDOW) {
871  /*
872  * Pagers wanting to close a window MUST send a _NET_CLOSE_WINDOW
873  * client message request to the root window.
874  * https://standards.freedesktop.org/wm-spec/wm-spec-latest.html#idm140200472668896
875  */
876  Con *con = con_by_window_id(event->window);
877  if (con) {
878  DLOG("Handling _NET_CLOSE_WINDOW request (con = %p)\n", con);
879 
880  if (event->data.data32[0])
881  last_timestamp = event->data.data32[0];
882 
883  tree_close_internal(con, KILL_WINDOW, false);
884  tree_render();
885  } else {
886  DLOG("Couldn't find con for _NET_CLOSE_WINDOW request. (window = %d)\n", event->window);
887  }
888  } else if (event->type == A__NET_WM_MOVERESIZE) {
889  /*
890  * Client-side decorated Gtk3 windows emit this signal when being
891  * dragged by their GtkHeaderBar
892  */
893  Con *con = con_by_window_id(event->window);
894  if (!con || !con_is_floating(con)) {
895  DLOG("Couldn't find con for _NET_WM_MOVERESIZE request, or con not floating (window = %d)\n", event->window);
896  return;
897  }
898  DLOG("Handling _NET_WM_MOVERESIZE request (con = %p)\n", con);
899  uint32_t direction = event->data.data32[2];
900  uint32_t x_root = event->data.data32[0];
901  uint32_t y_root = event->data.data32[1];
902  /* construct fake xcb_button_press_event_t */
903  xcb_button_press_event_t fake = {
904  .root_x = x_root,
905  .root_y = y_root,
906  .event_x = x_root - (con->rect.x),
907  .event_y = y_root - (con->rect.y)};
908  switch (direction) {
910  floating_drag_window(con->parent, &fake);
911  break;
913  floating_resize_window(con->parent, false, &fake);
914  break;
915  default:
916  DLOG("_NET_WM_MOVERESIZE direction %d not implemented\n", direction);
917  break;
918  }
919  } else if (event->type == A__NET_MOVERESIZE_WINDOW) {
920  DLOG("Received _NET_MOVE_RESIZE_WINDOW. Handling by faking a configure request.\n");
921 
922  void *_generated_event = scalloc(32, 1);
923  xcb_configure_request_event_t *generated_event = _generated_event;
924 
925  generated_event->window = event->window;
926  generated_event->response_type = XCB_CONFIGURE_REQUEST;
927 
928  generated_event->value_mask = 0;
929  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_X) {
930  generated_event->value_mask |= XCB_CONFIG_WINDOW_X;
931  generated_event->x = event->data.data32[1];
932  }
933  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_Y) {
934  generated_event->value_mask |= XCB_CONFIG_WINDOW_Y;
935  generated_event->y = event->data.data32[2];
936  }
937  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_WIDTH) {
938  generated_event->value_mask |= XCB_CONFIG_WINDOW_WIDTH;
939  generated_event->width = event->data.data32[3];
940  }
941  if (event->data.data32[0] & _NET_MOVERESIZE_WINDOW_HEIGHT) {
942  generated_event->value_mask |= XCB_CONFIG_WINDOW_HEIGHT;
943  generated_event->height = event->data.data32[4];
944  }
945 
946  handle_configure_request(generated_event);
947  FREE(generated_event);
948  } else {
949  DLOG("Skipping client message for unhandled type %d\n", event->type);
950  }
951 }
952 
953 static bool handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
954  xcb_atom_t atom, xcb_get_property_reply_t *reply) {
955  Con *con;
956  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
957  return false;
958 
959  window_update_type(con->window, reply);
960  return true;
961 }
962 
963 /*
964  * Handles the size hints set by a window, but currently only the part necessary for displaying
965  * clients proportionally inside their frames (mplayer for example)
966  *
967  * See ICCCM 4.1.2.3 for more details
968  *
969  */
970 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
971  xcb_atom_t name, xcb_get_property_reply_t *reply) {
972  Con *con = con_by_window_id(window);
973  if (con == NULL) {
974  DLOG("Received WM_NORMAL_HINTS for unknown client\n");
975  return false;
976  }
977 
978  bool changed = window_update_normal_hints(con->window, reply, NULL);
979 
980  if (changed) {
981  Con *floating = con_inside_floating(con);
982  if (floating) {
983  floating_check_size(con, false);
984  tree_render();
985  }
986  }
987 
988  FREE(reply);
989  return true;
990 }
991 
992 /*
993  * Handles the WM_HINTS property for extracting the urgency state of the window.
994  *
995  */
996 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
997  xcb_atom_t name, xcb_get_property_reply_t *reply) {
998  Con *con = con_by_window_id(window);
999  if (con == NULL) {
1000  DLOG("Received WM_HINTS for unknown client\n");
1001  return false;
1002  }
1003 
1004  bool urgency_hint;
1005  if (reply == NULL)
1006  reply = xcb_get_property_reply(conn, xcb_icccm_get_wm_hints(conn, window), NULL);
1007  window_update_hints(con->window, reply, &urgency_hint);
1008  con_set_urgency(con, urgency_hint);
1009  tree_render();
1010 
1011  return true;
1012 }
1013 
1014 /*
1015  * Handles the transient for hints set by a window, signalizing that this window is a popup window
1016  * for some other window.
1017  *
1018  * See ICCCM 4.1.2.6 for more details
1019  *
1020  */
1021 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1022  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1023  Con *con;
1024 
1025  if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
1026  DLOG("No such window\n");
1027  return false;
1028  }
1029 
1030  if (prop == NULL) {
1031  prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn, false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32),
1032  NULL);
1033  if (prop == NULL)
1034  return false;
1035  }
1036 
1037  window_update_transient_for(con->window, prop);
1038 
1039  return true;
1040 }
1041 
1042 /*
1043  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
1044  * toolwindow (or similar) and to which window it belongs (logical parent).
1045  *
1046  */
1047 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1048  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1049  Con *con;
1050  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
1051  return false;
1052 
1053  if (prop == NULL) {
1054  prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn, false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32),
1055  NULL);
1056  if (prop == NULL)
1057  return false;
1058  }
1059 
1060  window_update_leader(con->window, prop);
1061 
1062  return true;
1063 }
1064 
1065 /*
1066  * Handles FocusIn events which are generated by clients (i3’s focus changes
1067  * don’t generate FocusIn events due to a different EventMask) and updates the
1068  * decorations accordingly.
1069  *
1070  */
1071 static void handle_focus_in(xcb_focus_in_event_t *event) {
1072  DLOG("focus change in, for window 0x%08x\n", event->event);
1073 
1074  if (event->event == root) {
1075  DLOG("Received focus in for root window, refocusing the focused window.\n");
1076  con_focus(focused);
1077  focused_id = XCB_NONE;
1079  }
1080 
1081  Con *con;
1082  if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
1083  return;
1084  DLOG("That is con %p / %s\n", con, con->name);
1085 
1086  if (event->mode == XCB_NOTIFY_MODE_GRAB ||
1087  event->mode == XCB_NOTIFY_MODE_UNGRAB) {
1088  DLOG("FocusIn event for grab/ungrab, ignoring\n");
1089  return;
1090  }
1091 
1092  if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
1093  DLOG("notify detail is pointer, ignoring this event\n");
1094  return;
1095  }
1096 
1097  /* Floating windows should be refocused to ensure that they are on top of
1098  * other windows. */
1099  if (focused_id == event->event && !con_inside_floating(con)) {
1100  DLOG("focus matches the currently focused window, not doing anything\n");
1101  return;
1102  }
1103 
1104  /* Skip dock clients, they cannot get the i3 focus. */
1105  if (con->parent->type == CT_DOCKAREA) {
1106  DLOG("This is a dock client, not focusing.\n");
1107  return;
1108  }
1109 
1110  DLOG("focus is different / refocusing floating window: updating decorations\n");
1111 
1112  /* Get the currently focused workspace to check if the focus change also
1113  * involves changing workspaces. If so, we need to call workspace_show() to
1114  * correctly update state and send the IPC event. */
1115  Con *ws = con_get_workspace(con);
1116  if (ws != con_get_workspace(focused))
1117  workspace_show(ws);
1118 
1119  con_activate(con);
1120  /* We update focused_id because we don’t need to set focus again */
1121  focused_id = event->event;
1122  tree_render();
1123 }
1124 
1125 /*
1126  * Handles ConfigureNotify events for the root window, which are generated when
1127  * the monitor configuration changed.
1128  *
1129  */
1130 static void handle_configure_notify(xcb_configure_notify_event_t *event) {
1131  if (event->event != root) {
1132  DLOG("ConfigureNotify for non-root window 0x%08x, ignoring\n", event->event);
1133  return;
1134  }
1135  DLOG("ConfigureNotify for root window 0x%08x\n", event->event);
1136 
1137  if (force_xinerama) {
1138  return;
1139  }
1141 }
1142 
1143 /*
1144  * Handles the WM_CLASS property for assignments and criteria selection.
1145  *
1146  */
1147 static bool handle_class_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1148  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1149  Con *con;
1150  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
1151  return false;
1152 
1153  if (prop == NULL) {
1154  prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn, false, window, XCB_ATOM_WM_CLASS, XCB_ATOM_STRING, 0, 32),
1155  NULL);
1156 
1157  if (prop == NULL)
1158  return false;
1159  }
1160 
1161  window_update_class(con->window, prop, false);
1162 
1163  return true;
1164 }
1165 
1166 /*
1167  * Handles the _MOTIF_WM_HINTS property of specifing window deocration settings.
1168  *
1169  */
1170 static bool handle_motif_hints_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1171  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1172  Con *con;
1173  if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
1174  return false;
1175 
1176  if (prop == NULL) {
1177  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)),
1178  NULL);
1179 
1180  if (prop == NULL)
1181  return false;
1182  }
1183 
1184  border_style_t motif_border_style;
1185  window_update_motif_hints(con->window, prop, &motif_border_style);
1186 
1187  if (motif_border_style != con->border_style && motif_border_style != BS_NORMAL) {
1188  DLOG("Update border style of con %p to %d\n", con, motif_border_style);
1189  con_set_border_style(con, motif_border_style, con->current_border_width);
1190 
1192  }
1193 
1194  return true;
1195 }
1196 
1197 /*
1198  * Handles the _NET_WM_STRUT_PARTIAL property for allocating space for dock clients.
1199  *
1200  */
1201 static bool handle_strut_partial_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1202  xcb_atom_t name, xcb_get_property_reply_t *prop) {
1203  DLOG("strut partial change for window 0x%08x\n", window);
1204 
1205  Con *con;
1206  if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
1207  return false;
1208  }
1209 
1210  if (prop == NULL) {
1211  xcb_generic_error_t *err = NULL;
1212  xcb_get_property_cookie_t strut_cookie = xcb_get_property(conn, false, window, A__NET_WM_STRUT_PARTIAL,
1213  XCB_GET_PROPERTY_TYPE_ANY, 0, UINT32_MAX);
1214  prop = xcb_get_property_reply(conn, strut_cookie, &err);
1215 
1216  if (err != NULL) {
1217  DLOG("got error when getting strut partial property: %d\n", err->error_code);
1218  free(err);
1219  return false;
1220  }
1221 
1222  if (prop == NULL) {
1223  return false;
1224  }
1225  }
1226 
1227  DLOG("That is con %p / %s\n", con, con->name);
1228 
1229  window_update_strut_partial(con->window, prop);
1230 
1231  /* we only handle this change for dock clients */
1232  if (con->parent == NULL || con->parent->type != CT_DOCKAREA) {
1233  return true;
1234  }
1235 
1236  Con *search_at = croot;
1237  Con *output = con_get_output(con);
1238  if (output != NULL) {
1239  DLOG("Starting search at output %s\n", output->name);
1240  search_at = output;
1241  }
1242 
1243  /* find out the desired position of this dock window */
1244  if (con->window->reserved.top > 0 && con->window->reserved.bottom == 0) {
1245  DLOG("Top dock client\n");
1246  con->window->dock = W_DOCK_TOP;
1247  } else if (con->window->reserved.top == 0 && con->window->reserved.bottom > 0) {
1248  DLOG("Bottom dock client\n");
1249  con->window->dock = W_DOCK_BOTTOM;
1250  } else {
1251  DLOG("Ignoring invalid reserved edges (_NET_WM_STRUT_PARTIAL), using position as fallback:\n");
1252  if (con->geometry.y < (search_at->rect.height / 2)) {
1253  DLOG("geom->y = %d < rect.height / 2 = %d, it is a top dock client\n",
1254  con->geometry.y, (search_at->rect.height / 2));
1255  con->window->dock = W_DOCK_TOP;
1256  } else {
1257  DLOG("geom->y = %d >= rect.height / 2 = %d, it is a bottom dock client\n",
1258  con->geometry.y, (search_at->rect.height / 2));
1259  con->window->dock = W_DOCK_BOTTOM;
1260  }
1261  }
1262 
1263  /* find the dockarea */
1264  Con *dockarea = con_for_window(search_at, con->window, NULL);
1265  assert(dockarea != NULL);
1266 
1267  /* attach the dock to the dock area */
1268  con_detach(con);
1269  con->parent = dockarea;
1270  TAILQ_INSERT_HEAD(&(dockarea->focus_head), con, focused);
1271  TAILQ_INSERT_HEAD(&(dockarea->nodes_head), con, nodes);
1272 
1273  tree_render();
1274 
1275  return true;
1276 }
1277 
1278 /* Returns false if the event could not be processed (e.g. the window could not
1279  * be found), true otherwise */
1280 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);
1281 
1283  xcb_atom_t atom;
1284  uint32_t long_len;
1286 };
1287 
1289  {0, 128, handle_windowname_change},
1290  {0, UINT_MAX, handle_hints},
1292  {0, UINT_MAX, handle_normal_hints},
1293  {0, UINT_MAX, handle_clientleader_change},
1294  {0, UINT_MAX, handle_transient_for},
1295  {0, 128, handle_windowrole_change},
1296  {0, 128, handle_class_change},
1297  {0, UINT_MAX, handle_strut_partial_change},
1298  {0, UINT_MAX, handle_window_type},
1299  {0, 5 * sizeof(uint64_t), handle_motif_hints_change}};
1300 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
1301 
1302 /*
1303  * Sets the appropriate atoms for the property handlers after the atoms were
1304  * received from X11
1305  *
1306  */
1308  sn_monitor_context_new(sndisplay, conn_screen, startup_monitor_event, NULL, NULL);
1309 
1310  property_handlers[0].atom = A__NET_WM_NAME;
1311  property_handlers[1].atom = XCB_ATOM_WM_HINTS;
1312  property_handlers[2].atom = XCB_ATOM_WM_NAME;
1313  property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
1314  property_handlers[4].atom = A_WM_CLIENT_LEADER;
1315  property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
1316  property_handlers[6].atom = A_WM_WINDOW_ROLE;
1317  property_handlers[7].atom = XCB_ATOM_WM_CLASS;
1318  property_handlers[8].atom = A__NET_WM_STRUT_PARTIAL;
1319  property_handlers[9].atom = A__NET_WM_WINDOW_TYPE;
1320  property_handlers[10].atom = A__MOTIF_WM_HINTS;
1321 }
1322 
1323 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
1324  struct property_handler_t *handler = NULL;
1325  xcb_get_property_reply_t *propr = NULL;
1326 
1327  for (size_t c = 0; c < NUM_HANDLERS; c++) {
1328  if (property_handlers[c].atom != atom)
1329  continue;
1330 
1331  handler = &property_handlers[c];
1332  break;
1333  }
1334 
1335  if (handler == NULL) {
1336  //DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
1337  return;
1338  }
1339 
1340  if (state != XCB_PROPERTY_DELETE) {
1341  xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
1342  propr = xcb_get_property_reply(conn, cookie, 0);
1343  }
1344 
1345  /* the handler will free() the reply unless it returns false */
1346  if (!handler->cb(NULL, conn, state, window, atom, propr))
1347  FREE(propr);
1348 }
1349 
1350 /*
1351  * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
1352  * event type.
1353  *
1354  */
1355 void handle_event(int type, xcb_generic_event_t *event) {
1356  if (type != XCB_MOTION_NOTIFY)
1357  DLOG("event type %d, xkb_base %d\n", type, xkb_base);
1358 
1359  if (randr_base > -1 &&
1360  type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
1361  handle_screen_change(event);
1362  return;
1363  }
1364 
1365  if (xkb_base > -1 && type == xkb_base) {
1366  DLOG("xkb event, need to handle it.\n");
1367 
1368  xcb_xkb_state_notify_event_t *state = (xcb_xkb_state_notify_event_t *)event;
1369  if (state->xkbType == XCB_XKB_NEW_KEYBOARD_NOTIFY) {
1370  DLOG("xkb new keyboard notify, sequence %d, time %d\n", state->sequence, state->time);
1371  xcb_key_symbols_free(keysyms);
1372  keysyms = xcb_key_symbols_alloc(conn);
1373  if (((xcb_xkb_new_keyboard_notify_event_t *)event)->changed & XCB_XKB_NKN_DETAIL_KEYCODES)
1374  (void)load_keymap();
1378  } else if (state->xkbType == XCB_XKB_MAP_NOTIFY) {
1379  if (event_is_ignored(event->sequence, type)) {
1380  DLOG("Ignoring map notify event for sequence %d.\n", state->sequence);
1381  } else {
1382  DLOG("xkb map notify, sequence %d, time %d\n", state->sequence, state->time);
1383  add_ignore_event(event->sequence, type);
1384  xcb_key_symbols_free(keysyms);
1385  keysyms = xcb_key_symbols_alloc(conn);
1389  (void)load_keymap();
1390  }
1391  } else if (state->xkbType == XCB_XKB_STATE_NOTIFY) {
1392  DLOG("xkb state group = %d\n", state->group);
1393  if (xkb_current_group == state->group)
1394  return;
1395  xkb_current_group = state->group;
1398  }
1399 
1400  return;
1401  }
1402 
1403  if (shape_supported && type == shape_base + XCB_SHAPE_NOTIFY) {
1404  xcb_shape_notify_event_t *shape = (xcb_shape_notify_event_t *)event;
1405 
1406  DLOG("shape_notify_event for window 0x%08x, shape_kind = %d, shaped = %d\n",
1407  shape->affected_window, shape->shape_kind, shape->shaped);
1408 
1409  Con *con = con_by_window_id(shape->affected_window);
1410  if (con == NULL) {
1411  LOG("Not a managed window 0x%08x, ignoring shape_notify_event\n",
1412  shape->affected_window);
1413  return;
1414  }
1415 
1416  if (shape->shape_kind == XCB_SHAPE_SK_BOUNDING ||
1417  shape->shape_kind == XCB_SHAPE_SK_INPUT) {
1418  x_set_shape(con, shape->shape_kind, shape->shaped);
1419  }
1420 
1421  return;
1422  }
1423 
1424  switch (type) {
1425  case XCB_KEY_PRESS:
1426  case XCB_KEY_RELEASE:
1427  handle_key_press((xcb_key_press_event_t *)event);
1428  break;
1429 
1430  case XCB_BUTTON_PRESS:
1431  case XCB_BUTTON_RELEASE:
1432  handle_button_press((xcb_button_press_event_t *)event);
1433  break;
1434 
1435  case XCB_MAP_REQUEST:
1436  handle_map_request((xcb_map_request_event_t *)event);
1437  break;
1438 
1439  case XCB_UNMAP_NOTIFY:
1440  handle_unmap_notify_event((xcb_unmap_notify_event_t *)event);
1441  break;
1442 
1443  case XCB_DESTROY_NOTIFY:
1444  handle_destroy_notify_event((xcb_destroy_notify_event_t *)event);
1445  break;
1446 
1447  case XCB_EXPOSE:
1448  if (((xcb_expose_event_t *)event)->count == 0) {
1449  handle_expose_event((xcb_expose_event_t *)event);
1450  }
1451 
1452  break;
1453 
1454  case XCB_MOTION_NOTIFY:
1455  handle_motion_notify((xcb_motion_notify_event_t *)event);
1456  break;
1457 
1458  /* Enter window = user moved their mouse over the window */
1459  case XCB_ENTER_NOTIFY:
1460  handle_enter_notify((xcb_enter_notify_event_t *)event);
1461  break;
1462 
1463  /* Client message are sent to the root window. The only interesting
1464  * client message for us is _NET_WM_STATE, we honour
1465  * _NET_WM_STATE_FULLSCREEN and _NET_WM_STATE_DEMANDS_ATTENTION */
1466  case XCB_CLIENT_MESSAGE:
1467  handle_client_message((xcb_client_message_event_t *)event);
1468  break;
1469 
1470  /* Configure request = window tried to change size on its own */
1471  case XCB_CONFIGURE_REQUEST:
1472  handle_configure_request((xcb_configure_request_event_t *)event);
1473  break;
1474 
1475  /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1476  case XCB_MAPPING_NOTIFY:
1477  handle_mapping_notify((xcb_mapping_notify_event_t *)event);
1478  break;
1479 
1480  case XCB_FOCUS_IN:
1481  handle_focus_in((xcb_focus_in_event_t *)event);
1482  break;
1483 
1484  case XCB_PROPERTY_NOTIFY: {
1485  xcb_property_notify_event_t *e = (xcb_property_notify_event_t *)event;
1486  last_timestamp = e->time;
1487  property_notify(e->state, e->window, e->atom);
1488  break;
1489  }
1490 
1491  case XCB_CONFIGURE_NOTIFY:
1492  handle_configure_notify((xcb_configure_notify_event_t *)event);
1493  break;
1494 
1495  default:
1496  //DLOG("Unhandled event of type %d\n", type);
1497  break;
1498  }
1499 }
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:1598
int border_width
Definition: data.h:678
time_t added
Definition: data.h:218
#define XCB_NUM_LOCK
Definition: xcb.h:29
#define FREE(pointer)
Definition: util.h:47
void con_detach(Con *con)
Detaches the given container from its current parent.
Definition: con.c:206
xcb_window_t root
Definition: main.c:57
void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop)
Updates the TRANSIENT_FOR (logical parent window).
Definition: window.c:171
uint32_t height
Definition: data.h:161
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:1021
void floating_check_size(Con *floating_con, bool prefer_height)
Called when a floating window is created or resized.
Definition: floating.c:73
#define SLIST_FOREACH(var, head, field)
Definition: queue.h:114
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
void workspace_show(Con *workspace)
Switches to the given workspace.
Definition: workspace.c:412
static void handle_motion_notify(xcb_motion_notify_event_t *event)
Definition: handlers.c:196
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
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:263
static void check_crossing_screen_boundary(uint32_t x, uint32_t y)
Definition: handlers.c:90
int randr_base
Definition: handlers.c:20
void add_ignore_event(const int sequence, const int response_type)
Adds the given sequence to the list of events which are ignored.
uint32_t top
Definition: data.h:172
void window_update_class(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the WM_CLASS (consisting of the class and instance) for the given window. ...
Definition: window.c:29
void scratchpad_fix_resolution(void)
When starting i3 initially (and after each change to the connected outputs), this function fixes the ...
Definition: scratchpad.c:249
#define SLIST_NEXT(elm, field)
Definition: queue.h:112
uint32_t aio_get_mod_mask_for(uint32_t keysym, xcb_key_symbols_t *symbols)
All-in-one function which returns the modifier mask (XCB_MOD_MASK_*) for the given keysymbol...
#define _NET_WM_STATE_ADD
Definition: xcb.h:18
void ewmh_update_wm_desktop(void)
Updates _NET_WM_DESKTOP for all windows.
Definition: ewmh.c:182
bool shape_supported
Definition: main.c:92
struct Con * croot
Definition: tree.c:12
border_style_t
Definition: data.h:62
#define DLOG(fmt,...)
Definition: libi3.h:104
static void handle_expose_event(xcb_expose_event_t *event)
Definition: handlers.c:624
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
#define SLIST_REMOVE(head, elm, type, field)
Definition: queue.h:154
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
#define _NET_MOVERESIZE_WINDOW_X
Definition: handlers.c:654
Con * ewmh_get_workspace_by_index(uint32_t idx)
Returns the workspace container as enumerated by the EWMH desktop model.
Definition: ewmh.c:351
void * scalloc(size_t num, size_t size)
Safe-wrapper around calloc which exits if malloc returns NULL (meaning that there is no more memory a...
void x_push_changes(Con *con)
Pushes all changes (state of each node, see x_push_node() and the window stack) to X11...
Definition: x.c:1158
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:587
int handle_button_press(xcb_button_press_event_t *event)
The button press X callback.
Definition: click.c:333
xcb_connection_t * conn
XCB connection and root screen.
Definition: main.c:44
#define _NET_WM_MOVERESIZE_MOVE
Definition: handlers.c:649
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:1147
bool workspace_is_visible(Con *ws)
Returns true if the workspace is currently visible.
Definition: workspace.c:299
void con_focus(Con *con)
Sets input focus to the given container.
Definition: con.c:222
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:104
bool con_is_leaf(Con *con)
Returns true when this node is a leaf node (has no children)
Definition: con.c:302
layout_t
Container layouts.
Definition: data.h:91
void ewmh_update_sticky(xcb_window_t window, bool sticky)
Set or remove _NET_WM_STATE_STICKY on the window.
Definition: ewmh.c:277
static void handle_destroy_notify_event(xcb_destroy_notify_event_t *event)
Definition: handlers.c:534
void ipc_send_window_event(const char *property, Con *con)
For the window events we send, along the usual "change" field, also the window container, in "container".
Definition: ipc.c:1578
static SLIST_HEAD(ignore_head, Ignore_Event)
Definition: handlers.c:28
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.
void randr_query_outputs(void)
Initializes the specified output, assigning the specified workspace to it.
Definition: randr.c:822
enum Con::@20 type
int xkb_base
Definition: handlers.c:21
int shape_base
Definition: handlers.c:23
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:65
struct Con * parent
Definition: data.h:645
static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom)
Definition: handlers.c:1323
Con * con_inside_floating(Con *con)
Checks if the given container is either floating or inside some floating container.
Definition: con.c:564
void manage_window(xcb_window_t window, xcb_get_window_attributes_cookie_t cookie, bool needs_to_be_mapped)
Do some sanity checks and then reparent the window.
Definition: manage.c:81
Stores a rectangle, for example the size of a window, the child window etc.
Definition: data.h:157
void startup_monitor_event(SnMonitorEvent *event, void *userdata)
Called by libstartup-notification when something happens.
Definition: startup.c:215
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:612
A &#39;Window&#39; is a type which contains an xcb_window_t and all the related information (hints like _NET_...
Definition: data.h:410
uint32_t x
Definition: data.h:158
#define TAILQ_INSERT_HEAD(head, elm, field)
Definition: queue.h:366
static void handle_enter_notify(xcb_enter_notify_event_t *event)
Definition: handlers.c:124
bool force_xinerama
Definition: main.c:94
uint32_t long_len
Definition: handlers.c:1284
static void handle_unmap_notify_event(xcb_unmap_notify_event_t *event)
Definition: handlers.c:463
Con * con
Pointer to the Con which represents this output.
Definition: data.h:396
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:996
static void handle_focus_in(xcb_focus_in_event_t *event)
Definition: handlers.c:1071
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:940
bool disable_focus_follows_mouse
By default, focus follows mouse.
struct reservedpx reserved
Pixels the window reserves.
Definition: data.h:462
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:970
nodes_head
Definition: data.h:694
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_events
Definition: data.h:221
struct Rect rect
Definition: data.h:649
static struct property_handler_t property_handlers[]
Definition: handlers.c:1288
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:585
uint32_t width
Definition: data.h:129
xcb_window_t focused_id
Stores the X11 window ID of the currently focused window.
Definition: x.c:20
void con_toggle_fullscreen(Con *con, int fullscreen_mode)
Toggles fullscreen mode for the given container.
Definition: con.c:998
A &#39;Con&#39; represents everything from the X11 root window down to a single X11 window.
Definition: data.h:613
#define TAILQ_FIRST(head)
Definition: queue.h:336
Con * con_get_workspace(Con *con)
Gets the workspace container this node is on.
Definition: con.c:418
Con * con_get_output(Con *con)
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on...
Definition: con.c:404
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:425
int sequence
Definition: data.h:216
static cmdp_state state
void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt)
Updates the WM_WINDOW_ROLE.
Definition: window.c:221
bool con_is_floating(Con *con)
Returns true if the node is floating.
Definition: con.c:540
#define SLIST_FIRST(head)
Definition: queue.h:109
#define COPY_MASK_MEMBER(mask_member, event_member)
surface_t frame_buffer
Definition: data.h:629
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
uint8_t ignore_unmap
This counter contains the number of UnmapNotify events for this container (or, more precisely...
Definition: data.h:625
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:650
int current_border_width
Definition: data.h:679
focus_head
Definition: data.h:697
char * name
Definition: data.h:659
fullscreen_mode_t fullscreen_mode
Definition: data.h:702
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:1367
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:384
uint32_t y
Definition: data.h:159
int xkb_current_group
Definition: handlers.c:22
void con_set_urgency(Con *con, bool urgent)
Set urgency flag to the container, all the parent containers and the workspace.
Definition: con.c:2133
#define _NET_MOVERESIZE_WINDOW_Y
Definition: handlers.c:655
cb_property_handler_t cb
Definition: handlers.c:1285
bool scratchpad_show(Con *con)
Either shows the top-most scratchpad window (con == NULL) or shows the specified con (if it is scratc...
Definition: scratchpad.c:87
void property_handlers_init(void)
Sets the appropriate atoms for the property handlers after the atoms were received from X11...
Definition: handlers.c:1307
char * sstrdup(const char *str)
Safe-wrapper around strdup which exits if malloc returns NULL (meaning that there is no more memory a...
#define _NET_WM_MOVERESIZE_SIZE_LEFT
Definition: handlers.c:648
Definition: data.h:62
Definition: data.h:98
void output_push_sticky_windows(Con *old_focus)
Iterates over all outputs and pushes sticky windows to the currently visible workspace on that output...
Definition: output.c:75
bool con_is_internal(Con *con)
Returns true if the container is internal, such as __i3_scratch.
Definition: con.c:532
#define _NET_WM_STATE_REMOVE
Definition: xcb.h:17
xcb_key_symbols_t * keysyms
Definition: main.c:68
#define LOG(fmt,...)
Definition: libi3.h:94
Con * output_get_content(Con *output)
Returns the output container below the given output container.
Definition: output.c:16
uint32_t width
Definition: data.h:160
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:125
unsigned int xcb_numlock_mask
Definition: xcb.c:12
bool urgent
Definition: data.h:618
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:687
border_style_t border_style
Definition: data.h:724
An Output is a physical output on your graphics driver.
Definition: data.h:375
#define _NET_MOVERESIZE_WINDOW_HEIGHT
Definition: handlers.c:657
Definition: data.h:97
SnDisplay * sndisplay
Definition: main.c:49
Con * con_for_window(Con *con, i3Window *window, Match **store_match)
Returns the first container below &#39;con&#39; which wants to swallow this window TODO: priority.
Definition: con.c:792
struct Con * focused
Definition: tree.c:13
xcb_atom_t atom
Definition: handlers.c:1283
bool load_keymap(void)
Loads the XKB keymap from the X11 server and feeds it to xkbcommon.
Definition: bindings.c:931
#define NUM_HANDLERS
Definition: handlers.c:1300
static void handle_screen_change(xcb_generic_event_t *e)
Definition: handlers.c:435
Con * con_descend_focused(Con *con)
Returns the focused con inside this client, descending the tree as far as possible.
Definition: con.c:1491
struct Window * window
Definition: data.h:681
uint32_t height
Definition: data.h:130
static bool window_name_changed(i3Window *window, char *old_name)
Definition: handlers.c:545
uint32_t bottom
Definition: data.h:173
void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop)
Updates the CLIENT_LEADER (logical parent window).
Definition: window.c:146
bool tree_close_internal(Con *con, kill_window_t kill_window, bool dont_kill_parent)
Closes the given container including all children.
Definition: tree.c:191
void ipc_send_event(const char *event, uint32_t message_type, const char *payload)
Sends the specified event to all IPC clients which are currently connected and subscribed to this kin...
Definition: ipc.c:161
static void handle_map_request(xcb_map_request_event_t *event)
Definition: handlers.c:257
int response_type
Definition: data.h:217
Definition: data.h:92
struct Rect geometry
the geometry this window requested when getting mapped
Definition: data.h:657
const char * i3string_as_utf8(i3String *str)
Returns the UTF-8 encoded version of the i3String.
void sync_respond(xcb_window_t window, uint32_t rnd)
Definition: sync.c:12
A "match" is a data structure which acts like a mask or expression to match certain windows or not...
Definition: data.h:502
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:1047
#define ELOG(fmt,...)
Definition: libi3.h:99
#define NET_WM_DESKTOP_ALL
Definition: workspace.h:25
void translate_keysyms(void)
Translates keysymbols to keycodes for all bindings which use keysyms.
Definition: bindings.c:432
void con_set_border_style(Con *con, int border_style, int border_width)
Sets the given border style on con, correctly keeping the position/size of a floating window...
Definition: con.c:1701
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:953
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:1170
bool rect_contains(Rect rect, uint32_t x, uint32_t y)
Definition: util.c:35
static bool handle_windowrole_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop)
Definition: handlers.c:609
static void handle_client_message(xcb_client_message_event_t *event)
Definition: handlers.c:663
#define SLIST_INSERT_HEAD(head, elm, field)
Definition: queue.h:138
Definition: data.h:598
static void handle_configure_notify(xcb_configure_notify_event_t *event)
Definition: handlers.c:1130
int default_border_width
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:196
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:1454
void con_attach(Con *con, Con *parent, bool ignore_focus)
Attaches the given container to the given parent.
Definition: con.c:198
#define _NET_WM_STATE_TOGGLE
Definition: xcb.h:19
static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop)
Definition: handlers.c:560
int conn_screen
Definition: main.c:46
static bool handle_strut_partial_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window, xcb_atom_t name, xcb_get_property_reply_t *prop)
Definition: handlers.c:1201
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:1280
void con_activate(Con *con)
Sets input focus to the given container and raises it to the top.
Definition: con.c:263
xcb_timestamp_t last_timestamp
The last timestamp we got from X11 (timestamps are included in some events and are used for some thin...
Definition: main.c:54
static void handle_mapping_notify(xcb_mapping_notify_event_t *event)
Definition: handlers.c:238
void handle_key_press(xcb_key_press_event_t *event)
There was a key press.
Definition: key_press.c:18
i3String * name
The name of the window.
Definition: data.h:427
Config config
Definition: config.c:17
Output * get_output_containing(unsigned int x, unsigned int y)
Returns the active (!) output which contains the coordinates x, y or NULL if there is no output which...
Definition: randr.c:102
int render_deco_height(void)
Returns the height for the decorations.
Definition: render.c:25
#define SLIST_END(head)
Definition: queue.h:110
#define _NET_WM_MOVERESIZE_SIZE_TOPLEFT
Definition: handlers.c:641
bool sticky
Definition: data.h:707
static void handle_configure_request(xcb_configure_request_event_t *event)
Definition: handlers.c:276
uint32_t y
Definition: data.h:128
char * output_primary_name(Output *output)
Retrieves the primary name of an output.
Definition: output.c:51
surface_t frame
Definition: data.h:628
enum Config::@6 focus_on_window_activation
Behavior when a window sends a NET_ACTIVE_WINDOW message.
xcb_window_t id
Definition: data.h:411
void window_update_type(i3Window *window, xcb_get_property_reply_t *reply)
Updates the _NET_WM_WINDOW_TYPE property.
Definition: window.c:245
void ungrab_all_keys(xcb_connection_t *conn)
Ungrabs all keys, to be called before re-grabbing the keys because of a mapping_notify event or a con...
Definition: config.c:26
Con * con_get_fullscreen_covering_ws(Con *ws)
Returns the fullscreen node that covers the given workspace if it exists.
Definition: con.c:517
uint32_t x
Definition: data.h:127
#define _NET_MOVERESIZE_WINDOW_WIDTH
Definition: handlers.c:656
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
struct Rect deco_rect
Definition: data.h:655
layout_t layout
Definition: data.h:723
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:1355
enum Window::@13 dock
Whether the window says it is a dock window.