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