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