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