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