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