]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
Feature: improve active window request handling
[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-2012 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * handlers.c: Small handlers for various events (keypresses, focus changes,
10  *             …).
11  *
12  */
13 #include "all.h"
14
15 #include <time.h>
16 #include <float.h>
17 #include <sys/time.h>
18 #include <xcb/randr.h>
19 #include <X11/XKBlib.h>
20 #define SN_API_NOT_YET_FROZEN 1
21 #include <libsn/sn-monitor.h>
22
23 int randr_base = -1;
24
25 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
26    since it’d trigger an infinite loop of switching between the different windows when
27    changing workspaces */
28 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
29
30 /*
31  * Adds the given sequence to the list of events which are ignored.
32  * If this ignore should only affect a specific response_type, pass
33  * response_type, otherwise, pass -1.
34  *
35  * Every ignored sequence number gets garbage collected after 5 seconds.
36  *
37  */
38 void add_ignore_event(const int sequence, const int response_type) {
39     struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
40
41     event->sequence = sequence;
42     event->response_type = response_type;
43     event->added = time(NULL);
44
45     SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
46 }
47
48 /*
49  * Checks if the given sequence is ignored and returns true if so.
50  *
51  */
52 bool event_is_ignored(const int sequence, const int response_type) {
53     struct Ignore_Event *event;
54     time_t now = time(NULL);
55     for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
56         if ((now - event->added) > 5) {
57             struct Ignore_Event *save = event;
58             event = SLIST_NEXT(event, ignore_events);
59             SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
60             free(save);
61         } else 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 his 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 not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
150     if (con == NULL) {
151         DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
152         check_crossing_screen_boundary(event->root_x, event->root_y);
153         return;
154     }
155
156     if (con->parent->type == CT_DOCKAREA) {
157         DLOG("Ignoring, this is a dock client\n");
158         return;
159     }
160
161     /* see if the user entered the window on a certain window decoration */
162     layout_t layout = (enter_child ? con->parent->layout : con->layout);
163     if (layout == L_DEFAULT) {
164         Con *child;
165         TAILQ_FOREACH(child, &(con->nodes_head), nodes)
166             if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
167                 LOG("using child %p / %s instead!\n", child, child->name);
168                 con = child;
169                 break;
170             }
171     }
172
173 #if 0
174     if (client->workspace != c_ws && client->workspace->output == c_ws->output) {
175             /* This can happen when a client gets assigned to a different workspace than
176              * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
177              * an enter_notify will follow. */
178             DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
179             return 1;
180     }
181 #endif
182
183     if (config.disable_focus_follows_mouse)
184         return;
185
186     /* Get the currently focused workspace to check if the focus change also
187      * involves changing workspaces. If so, we need to call workspace_show() to
188      * correctly update state and send the IPC event. */
189     Con *ws = con_get_workspace(con);
190     if (ws != con_get_workspace(focused))
191         workspace_show(ws);
192
193     focused_id = XCB_NONE;
194     con_focus(con_descend_focused(con));
195     tree_render();
196
197     return;
198 }
199
200 /*
201  * When the user moves the mouse but does not change the active window
202  * (e.g. when having no windows opened but moving mouse on the root screen
203  * and crossing virtual screen boundaries), this callback gets called.
204  *
205  */
206 static void handle_motion_notify(xcb_motion_notify_event_t *event) {
207
208     last_timestamp = event->time;
209
210     /* Skip events where the pointer was over a child window, we are only
211      * interested in events on the root window. */
212     if (event->child != 0)
213         return;
214
215     Con *con;
216     if ((con = con_by_frame_id(event->event)) == NULL) {
217         DLOG("MotionNotify for an unknown container, checking if it crosses screen boundaries.\n");
218         check_crossing_screen_boundary(event->root_x, event->root_y);
219         return;
220     }
221
222     if (config.disable_focus_follows_mouse)
223         return;
224
225     if (con->layout != L_DEFAULT)
226         return;
227
228     /* see over which rect the user is */
229     Con *current;
230     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
231         if (!rect_contains(current->deco_rect, event->event_x, event->event_y))
232             continue;
233
234         /* We found the rect, let’s see if this window is focused */
235         if (TAILQ_FIRST(&(con->focus_head)) == current)
236             return;
237
238         con_focus(current);
239         x_push_changes(croot);
240         return;
241     }
242
243     return;
244 }
245
246 /*
247  * Called when the keyboard mapping changes (for example by using Xmodmap),
248  * we need to update our key bindings then (re-translate symbols).
249  *
250  */
251 static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
252     if (event->request != XCB_MAPPING_KEYBOARD &&
253         event->request != XCB_MAPPING_MODIFIER)
254         return;
255
256     DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
257     xcb_refresh_keyboard_mapping(keysyms, event);
258
259     xcb_numlock_mask = aio_get_mod_mask_for(XCB_NUM_LOCK, keysyms);
260
261     ungrab_all_keys(conn);
262     translate_keysyms();
263     grab_all_keys(conn, false);
264
265     return;
266 }
267
268 /*
269  * A new window appeared on the screen (=was mapped), so let’s manage it.
270  *
271  */
272 static void handle_map_request(xcb_map_request_event_t *event) {
273     xcb_get_window_attributes_cookie_t cookie;
274
275     cookie = xcb_get_window_attributes_unchecked(conn, event->window);
276
277     DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
278     add_ignore_event(event->sequence, -1);
279
280     manage_window(event->window, cookie, false);
281     x_push_changes(croot);
282     return;
283 }
284
285 /*
286  * Configure requests are received when the application wants to resize windows
287  * on their own.
288  *
289  * We generate a synthethic configure notify event to signalize the client its
290  * "new" position.
291  *
292  */
293 static void handle_configure_request(xcb_configure_request_event_t *event) {
294     Con *con;
295
296     DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
297         event->window, event->x, event->y, event->width, event->height);
298
299     /* For unmanaged windows, we just execute the configure request. As soon as
300      * it gets mapped, we will take over anyways. */
301     if ((con = con_by_window_id(event->window)) == NULL) {
302         DLOG("Configure request for unmanaged window, can do that.\n");
303
304         uint32_t mask = 0;
305         uint32_t values[7];
306         int c = 0;
307 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
308         if (event->value_mask & mask_member) { \
309             mask |= mask_member; \
310             values[c++] = event->event_member; \
311         } \
312 } while (0)
313
314         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
315         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
316         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
317         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
318         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
319         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
320         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
321
322         xcb_configure_window(conn, event->window, mask, values);
323         xcb_flush(conn);
324
325         return;
326     }
327
328     DLOG("Configure request!\n");
329
330     Con *workspace = con_get_workspace(con),
331         *fullscreen = NULL;
332
333     /* There might not be a corresponding workspace for dock cons, therefore we
334      * have to be careful here. */
335     if (workspace) {
336         fullscreen = con_get_fullscreen_con(workspace, CF_OUTPUT);
337         if (!fullscreen)
338             fullscreen = con_get_fullscreen_con(workspace, CF_GLOBAL);
339     }
340
341     if (fullscreen != con && con_is_floating(con) && con_is_leaf(con)) {
342         /* find the height for the decorations */
343         int deco_height = con->deco_rect.height;
344         /* we actually need to apply the size/position changes to the *parent*
345          * container */
346         Rect bsr = con_border_style_rect(con);
347         if (con->border_style == BS_NORMAL) {
348             bsr.y += deco_height;
349             bsr.height -= deco_height;
350         }
351         Con *floatingcon = con->parent;
352
353         if (strcmp(con_get_workspace(floatingcon)->name, "__i3_scratch") == 0) {
354             DLOG("This is a scratchpad container, ignoring ConfigureRequest\n");
355             return;
356         }
357
358         Rect newrect = floatingcon->rect;
359
360         if (event->value_mask & XCB_CONFIG_WINDOW_X) {
361             newrect.x = event->x + (-1) * bsr.x;
362             DLOG("proposed x = %d, new x is %d\n", event->x, newrect.x);
363         }
364         if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
365             newrect.y = event->y + (-1) * bsr.y;
366             DLOG("proposed y = %d, new y is %d\n", event->y, newrect.y);
367         }
368         if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
369             newrect.width = event->width + (-1) * bsr.width;
370             newrect.width += con->border_width * 2;
371             DLOG("proposed width = %d, new width is %d (x11 border %d)\n",
372                  event->width, newrect.width, con->border_width);
373         }
374         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
375             newrect.height = event->height + (-1) * bsr.height;
376             newrect.height += con->border_width * 2;
377             DLOG("proposed height = %d, new height is %d (x11 border %d)\n",
378                  event->height, newrect.height, con->border_width);
379         }
380
381         DLOG("Container is a floating leaf node, will do that.\n");
382         floating_reposition(floatingcon, newrect);
383         return;
384     }
385
386     /* Dock windows can be reconfigured in their height */
387     if (con->parent && con->parent->type == CT_DOCKAREA) {
388         DLOG("Dock window, only height reconfiguration allowed\n");
389         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
390             DLOG("Height given, changing\n");
391
392             con->geometry.height = event->height;
393             tree_render();
394         }
395     }
396
397     fake_absolute_configure_notify(con);
398
399     return;
400 }
401 #if 0
402
403 /*
404  * Configuration notifies are only handled because we need to set up ignore for
405  * the following enter notify events.
406  *
407  */
408 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
409     DLOG("configure_event, sequence %d\n", event->sequence);
410         /* We ignore this sequence twice because events for child and frame should be ignored */
411         add_ignore_event(event->sequence);
412         add_ignore_event(event->sequence);
413
414         return 1;
415 }
416 #endif
417
418 /*
419  * Gets triggered upon a RandR screen change event, that is when the user
420  * changes the screen configuration in any way (mode, position, …)
421  *
422  */
423 static void handle_screen_change(xcb_generic_event_t *e) {
424     DLOG("RandR screen change\n");
425
426     /* The geometry of the root window is used for “fullscreen global” and
427      * changes when new outputs are added. */
428     xcb_get_geometry_cookie_t cookie = xcb_get_geometry(conn, root);
429     xcb_get_geometry_reply_t *reply = xcb_get_geometry_reply(conn, cookie, NULL);
430     if (reply == NULL) {
431         ELOG("Could not get geometry of the root window, exiting\n");
432         exit(1);
433     }
434     DLOG("root geometry reply: (%d, %d) %d x %d\n", reply->x, reply->y, reply->width, reply->height);
435
436     croot->rect.width = reply->width;
437     croot->rect.height = reply->height;
438
439     randr_query_outputs();
440
441     scratchpad_fix_resolution();
442
443     ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
444
445     return;
446 }
447
448 /*
449  * Our window decorations were unmapped. That means, the window will be killed
450  * now, so we better clean up before.
451  *
452  */
453 static void handle_unmap_notify_event(xcb_unmap_notify_event_t *event) {
454     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
455     xcb_get_input_focus_cookie_t cookie;
456     Con *con = con_by_window_id(event->window);
457     if (con == NULL) {
458         /* This could also be an UnmapNotify for the frame. We need to
459          * decrement the ignore_unmap counter. */
460         con = con_by_frame_id(event->window);
461         if (con == NULL) {
462             LOG("Not a managed window, ignoring UnmapNotify event\n");
463             return;
464         }
465
466         if (con->ignore_unmap > 0)
467             con->ignore_unmap--;
468         /* See the end of this function. */
469         cookie = xcb_get_input_focus(conn);
470         DLOG("ignore_unmap = %d for frame of container %p\n", con->ignore_unmap, con);
471         goto ignore_end;
472     }
473
474     /* See the end of this function. */
475     cookie = xcb_get_input_focus(conn);
476
477     if (con->ignore_unmap > 0) {
478         DLOG("ignore_unmap = %d, dec\n", con->ignore_unmap);
479         con->ignore_unmap--;
480         goto ignore_end;
481     }
482
483     tree_close(con, DONT_KILL_WINDOW, false, false);
484     tree_render();
485     x_push_changes(croot);
486
487 ignore_end:
488     /* If the client (as opposed to i3) destroyed or unmapped a window, an
489      * EnterNotify event will follow (indistinguishable from an EnterNotify
490      * event caused by moving your mouse), causing i3 to set focus to whichever
491      * window is now visible.
492      *
493      * In a complex stacked or tabbed layout (take two v-split containers in a
494      * tabbed container), when the bottom window in tab2 is closed, the bottom
495      * window of tab1 is visible instead. X11 will thus send an EnterNotify
496      * event for the bottom window of tab1, while the focus should be set to
497      * the remaining window of tab2.
498      *
499      * Therefore, we ignore all EnterNotify events which have the same sequence
500      * as an UnmapNotify event. */
501     add_ignore_event(event->sequence, XCB_ENTER_NOTIFY);
502
503     /* Since we just ignored the sequence of this UnmapNotify, we want to make
504      * sure that following events use a different sequence. When putting xterm
505      * into fullscreen and moving the pointer to a different window, without
506      * using GetInputFocus, subsequent (legitimate) EnterNotify events arrived
507      * with the same sequence and thus were ignored (see ticket #609). */
508     free(xcb_get_input_focus_reply(conn, cookie, NULL));
509 }
510
511 /*
512  * A destroy notify event is sent when the window is not unmapped, but
513  * immediately destroyed (for example when starting a window and immediately
514  * killing the program which started it).
515  *
516  * We just pass on the event to the unmap notify handler (by copying the
517  * important fields in the event data structure).
518  *
519  */
520 static void handle_destroy_notify_event(xcb_destroy_notify_event_t *event) {
521     DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
522
523     xcb_unmap_notify_event_t unmap;
524     unmap.sequence = event->sequence;
525     unmap.event = event->event;
526     unmap.window = event->window;
527
528     handle_unmap_notify_event(&unmap);
529 }
530
531 static bool window_name_changed(i3Window *window, char *old_name) {
532     if ((old_name == NULL) && (window->name == NULL))
533         return false;
534
535     /* Either the old or the new one is NULL, but not both. */
536     if ((old_name == NULL) ^ (window->name == NULL))
537         return true;
538
539     return (strcmp(old_name, i3string_as_utf8(window->name)) != 0);
540 }
541
542 /*
543  * Called when a window changes its title
544  *
545  */
546 static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
547                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
548     Con *con;
549     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
550         return false;
551
552     char *old_name = (con->window->name != NULL ? sstrdup(i3string_as_utf8(con->window->name)) : NULL);
553
554     window_update_name(con->window, prop, false);
555
556     x_push_changes(croot);
557
558     if (window_name_changed(con->window, old_name))
559         ipc_send_window_event("title", con);
560
561     FREE(old_name);
562
563     return true;
564 }
565
566 /*
567  * Handles legacy window name updates (WM_NAME), see also src/window.c,
568  * window_update_name_legacy().
569  *
570  */
571 static bool handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
572                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
573     Con *con;
574     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
575         return false;
576
577     char *old_name = (con->window->name != NULL ? sstrdup(i3string_as_utf8(con->window->name)) : NULL);
578
579     window_update_name_legacy(con->window, prop, false);
580
581     x_push_changes(croot);
582
583     if (window_name_changed(con->window, old_name))
584         ipc_send_window_event("title", con);
585
586     FREE(old_name);
587
588     return true;
589 }
590
591 /*
592  * Called when a window changes its WM_WINDOW_ROLE.
593  *
594  */
595 static bool handle_windowrole_change(void *data, xcb_connection_t *conn, uint8_t state,
596                                      xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
597     Con *con;
598     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
599         return false;
600
601     window_update_role(con->window, prop, false);
602
603     return true;
604 }
605
606 #if 0
607 /*
608  * Updates the client’s WM_CLASS property
609  *
610  */
611 static int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
612                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
613     Con *con;
614     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
615         return 1;
616
617     window_update_class(con->window, prop, false);
618
619     return 0;
620 }
621 #endif
622
623 /*
624  * Expose event means we should redraw our windows (= title bar)
625  *
626  */
627 static void handle_expose_event(xcb_expose_event_t *event) {
628     Con *parent;
629
630     DLOG("window = %08x\n", event->window);
631
632     if ((parent = con_by_frame_id(event->window)) == NULL) {
633         LOG("expose event for unknown window, ignoring\n");
634         return;
635     }
636
637     /* Since we render to our pixmap on every change anyways, expose events
638      * only tell us that the X server lost (parts of) the window contents. We
639      * can handle that by copying the appropriate part from our pixmap to the
640      * window. */
641     xcb_copy_area(conn, parent->pixmap, parent->frame, parent->pm_gc,
642                   event->x, event->y, event->x, event->y,
643                   event->width, event->height);
644     xcb_flush(conn);
645
646     return;
647 }
648
649 /*
650  * Handle client messages (EWMH)
651  *
652  */
653 static void handle_client_message(xcb_client_message_event_t *event) {
654     /* If this is a startup notification ClientMessage, the library will handle
655      * it and call our monitor_event() callback. */
656     if (sn_xcb_display_process_event(sndisplay, (xcb_generic_event_t*)event))
657         return;
658
659     LOG("ClientMessage for window 0x%08x\n", event->window);
660     if (event->type == A__NET_WM_STATE) {
661         if (event->format != 32 ||
662             (event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN &&
663              event->data.data32[1] != A__NET_WM_STATE_DEMANDS_ATTENTION)) {
664             DLOG("Unknown atom in clientmessage of type %d\n", event->data.data32[1]);
665             return;
666         }
667
668         Con *con = con_by_window_id(event->window);
669         if (con == NULL) {
670             DLOG("Could not get window for client message\n");
671             return;
672         }
673
674         if (event->data.data32[1] == A__NET_WM_STATE_FULLSCREEN) {
675             /* Check if the fullscreen state should be toggled */
676             if ((con->fullscreen_mode != CF_NONE &&
677                  (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
678                   event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
679                 (con->fullscreen_mode == CF_NONE &&
680                  (event->data.data32[0] == _NET_WM_STATE_ADD ||
681                   event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
682                 DLOG("toggling fullscreen\n");
683                 con_toggle_fullscreen(con, CF_OUTPUT);
684             }
685         } else if (event->data.data32[1] == A__NET_WM_STATE_DEMANDS_ATTENTION) {
686             /* Check if the urgent flag must be set or not */
687             if (event->data.data32[0] == _NET_WM_STATE_ADD)
688                 con_set_urgency(con, true);
689             else if (event->data.data32[0] == _NET_WM_STATE_REMOVE)
690                 con_set_urgency(con, false);
691             else if (event->data.data32[0] == _NET_WM_STATE_TOGGLE)
692                 con_set_urgency(con, !con->urgent);
693         }
694
695         tree_render();
696     } else if (event->type == A__NET_ACTIVE_WINDOW) {
697         if (event->format != 32)
698             return;
699
700         DLOG("_NET_ACTIVE_WINDOW: Window 0x%08x should be activated\n", event->window);
701
702         Con *con = con_by_window_id(event->window);
703         if (con == NULL) {
704             DLOG("Could not get window for client message\n");
705             return;
706         }
707
708         Con *ws = con_get_workspace(con);
709
710         if (ws == NULL) {
711             DLOG("Window is not being managed, ignoring _NET_ACTIVE_WINDOW\n");
712             return;
713         }
714
715         if (con_is_internal(ws)) {
716             DLOG("Workspace is internal, ignoring _NET_ACTIVE_WINDOW\n");
717             return;
718         }
719
720         /* data32[0] indicates the source of the request (application or pager) */
721         if (event->data.data32[0] == 2) {
722             /* Always focus the con if it is from a pager, because this is most
723              * likely from some user action */
724             DLOG("This request came from a pager. Focusing con = %p\n", con);
725             workspace_show(ws);
726             con_focus(con);
727         } else {
728             /* If the request is from an application, only focus if the
729              * workspace is visible. Otherwise set the urgency hint. */
730             if (workspace_is_visible(ws)) {
731                 DLOG("Request to focus con on a visible workspace. Focusing con = %p\n", con);
732                 workspace_show(ws);
733                 con_focus(con);
734             } else {
735                 DLOG("Request to focus con on a hidden workspace. Setting urgent con = %p\n", con);
736                 con_set_urgency(con, true);
737             }
738         }
739
740         tree_render();
741     } else if (event->type == A_I3_SYNC) {
742         xcb_window_t window = event->data.data32[0];
743         uint32_t rnd = event->data.data32[1];
744         DLOG("[i3 sync protocol] Sending random value %d back to X11 window 0x%08x\n", rnd, window);
745
746         void *reply = scalloc(32);
747         xcb_client_message_event_t *ev = reply;
748
749         ev->response_type = XCB_CLIENT_MESSAGE;
750         ev->window = window;
751         ev->type = A_I3_SYNC;
752         ev->format = 32;
753         ev->data.data32[0] = window;
754         ev->data.data32[1] = rnd;
755
756         xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)ev);
757         xcb_flush(conn);
758         free(reply);
759     } else if (event->type == A__NET_REQUEST_FRAME_EXTENTS) {
760         /*
761          * A client can request an estimate for the frame size which the window
762          * manager will put around it before actually mapping its window. Java
763          * does this (as of openjdk-7).
764          *
765          * Note that the calculation below is not entirely accurate — once you
766          * set a different border type, it’s off. We _could_ request all the
767          * window properties (which have to be set up at this point according
768          * to EWMH), but that seems rather elaborate. The standard explicitly
769          * says the application must cope with an estimate that is not entirely
770          * accurate.
771          */
772         DLOG("_NET_REQUEST_FRAME_EXTENTS for window 0x%08x\n", event->window);
773
774         /* The reply data: approximate frame size */
775         Rect r = {
776             config.default_border_width, /* left */
777             config.default_border_width, /* right */
778             config.font.height + 5, /* top */
779             config.default_border_width /* bottom */
780         };
781         xcb_change_property(
782                 conn,
783                 XCB_PROP_MODE_REPLACE,
784                 event->window,
785                 A__NET_FRAME_EXTENTS,
786                 XCB_ATOM_CARDINAL, 32, 4,
787                 &r);
788         xcb_flush(conn);
789     } else {
790         DLOG("unhandled clientmessage\n");
791         return;
792     }
793 }
794
795 #if 0
796 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
797                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
798         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
799          before changing this property. */
800         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
801         return 0;
802 }
803 #endif
804
805 /*
806  * Handles the size hints set by a window, but currently only the part necessary for displaying
807  * clients proportionally inside their frames (mplayer for example)
808  *
809  * See ICCCM 4.1.2.3 for more details
810  *
811  */
812 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
813                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
814     Con *con = con_by_window_id(window);
815     if (con == NULL) {
816         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
817         return false;
818     }
819
820     xcb_size_hints_t size_hints;
821
822         //CLIENT_LOG(client);
823
824     /* If the hints were already in this event, use them, if not, request them */
825     if (reply != NULL)
826         xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
827     else
828         xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
829
830     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
831         // TODO: Minimum size is not yet implemented
832         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
833     }
834
835     bool changed = false;
836     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
837         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
838             if (con->width_increment != size_hints.width_inc) {
839                 con->width_increment = size_hints.width_inc;
840                 changed = true;
841             }
842         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
843             if (con->height_increment != size_hints.height_inc) {
844                 con->height_increment = size_hints.height_inc;
845                 changed = true;
846             }
847
848         if (changed)
849             DLOG("resize increments changed\n");
850     }
851
852     int base_width = 0, base_height = 0;
853
854     /* base_width/height are the desired size of the window.
855        We check if either the program-specified size or the program-specified
856        min-size is available */
857     if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
858         base_width = size_hints.base_width;
859         base_height = size_hints.base_height;
860     } else if (size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
861         /* TODO: is this right? icccm says not */
862         base_width = size_hints.min_width;
863         base_height = size_hints.min_height;
864     }
865
866     if (base_width != con->base_width ||
867         base_height != con->base_height) {
868         con->base_width = base_width;
869         con->base_height = base_height;
870         DLOG("client's base_height changed to %d\n", base_height);
871         DLOG("client's base_width changed to %d\n", base_width);
872         changed = true;
873     }
874
875     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
876     if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
877         (size_hints.min_aspect_num <= 0) ||
878         (size_hints.min_aspect_den <= 0)) {
879         goto render_and_return;
880     }
881
882     /* XXX: do we really use rect here, not window_rect? */
883     double width = con->rect.width - base_width;
884     double height = con->rect.height - base_height;
885     /* Convert numerator/denominator to a double */
886     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
887     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
888
889     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
890     DLOG("width = %f, height = %f\n", width, height);
891
892     /* Sanity checks, this is user-input, in a way */
893     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
894         goto render_and_return;
895
896     /* Check if we need to set proportional_* variables using the correct ratio */
897     double aspect_ratio = 0.0;
898     if ((width / height) < min_aspect) {
899         aspect_ratio = min_aspect;
900     } else if ((width / height) > max_aspect) {
901         aspect_ratio = max_aspect;
902     } else goto render_and_return;
903
904     if (fabs(con->aspect_ratio - aspect_ratio) > DBL_EPSILON) {
905         con->aspect_ratio = aspect_ratio;
906         changed = true;
907     }
908
909 render_and_return:
910     if (changed)
911         tree_render();
912     FREE(reply);
913     return true;
914 }
915
916 /*
917  * Handles the WM_HINTS property for extracting the urgency state of the window.
918  *
919  */
920 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
921                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
922     Con *con = con_by_window_id(window);
923     if (con == NULL) {
924         DLOG("Received WM_HINTS for unknown client\n");
925         return false;
926     }
927
928     bool urgency_hint;
929     if (reply == NULL)
930         reply = xcb_get_property_reply(conn, xcb_icccm_get_wm_hints(conn, window), NULL);
931     window_update_hints(con->window, reply, &urgency_hint);
932     con_set_urgency(con, urgency_hint);
933     tree_render();
934
935     return true;
936 }
937
938 /*
939  * Handles the transient for hints set by a window, signalizing that this window is a popup window
940  * for some other window.
941  *
942  * See ICCCM 4.1.2.6 for more details
943  *
944  */
945 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
946                          xcb_atom_t name, xcb_get_property_reply_t *prop) {
947     Con *con;
948
949     if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
950         DLOG("No such window\n");
951         return false;
952     }
953
954     if (prop == NULL) {
955         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
956                                 false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32), NULL);
957         if (prop == NULL)
958             return false;
959     }
960
961     window_update_transient_for(con->window, prop);
962
963     return true;
964 }
965
966 /*
967  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
968  * toolwindow (or similar) and to which window it belongs (logical parent).
969  *
970  */
971 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
972                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
973     Con *con;
974     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
975         return false;
976
977     if (prop == NULL) {
978         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
979                                 false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32), NULL);
980         if (prop == NULL)
981             return false;
982     }
983
984     window_update_leader(con->window, prop);
985
986     return true;
987 }
988
989 /*
990  * Handles FocusIn events which are generated by clients (i3’s focus changes
991  * don’t generate FocusIn events due to a different EventMask) and updates the
992  * decorations accordingly.
993  *
994  */
995 static void handle_focus_in(xcb_focus_in_event_t *event) {
996     DLOG("focus change in, for window 0x%08x\n", event->event);
997     Con *con;
998     if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
999         return;
1000     DLOG("That is con %p / %s\n", con, con->name);
1001
1002     if (event->mode == XCB_NOTIFY_MODE_GRAB ||
1003         event->mode == XCB_NOTIFY_MODE_UNGRAB) {
1004         DLOG("FocusIn event for grab/ungrab, ignoring\n");
1005         return;
1006     }
1007
1008     if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
1009         DLOG("notify detail is pointer, ignoring this event\n");
1010         return;
1011     }
1012
1013     if (focused_id == event->event) {
1014         DLOG("focus matches the currently focused window, not doing anything\n");
1015         return;
1016     }
1017
1018     /* Skip dock clients, they cannot get the i3 focus. */
1019     if (con->parent->type == CT_DOCKAREA) {
1020         DLOG("This is a dock client, not focusing.\n");
1021         return;
1022     }
1023
1024     DLOG("focus is different, updating decorations\n");
1025
1026     /* Get the currently focused workspace to check if the focus change also
1027      * involves changing workspaces. If so, we need to call workspace_show() to
1028      * correctly update state and send the IPC event. */
1029     Con *ws = con_get_workspace(con);
1030     if (ws != con_get_workspace(focused))
1031         workspace_show(ws);
1032
1033     con_focus(con);
1034     /* We update focused_id because we don’t need to set focus again */
1035     focused_id = event->event;
1036     x_push_changes(croot);
1037     return;
1038 }
1039
1040 /* Returns false if the event could not be processed (e.g. the window could not
1041  * be found), true otherwise */
1042 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);
1043
1044 struct property_handler_t {
1045     xcb_atom_t atom;
1046     uint32_t long_len;
1047     cb_property_handler_t cb;
1048 };
1049
1050 static struct property_handler_t property_handlers[] = {
1051     { 0, 128, handle_windowname_change },
1052     { 0, UINT_MAX, handle_hints },
1053     { 0, 128, handle_windowname_change_legacy },
1054     { 0, UINT_MAX, handle_normal_hints },
1055     { 0, UINT_MAX, handle_clientleader_change },
1056     { 0, UINT_MAX, handle_transient_for },
1057     { 0, 128, handle_windowrole_change }
1058 };
1059 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
1060
1061 /*
1062  * Sets the appropriate atoms for the property handlers after the atoms were
1063  * received from X11
1064  *
1065  */
1066 void property_handlers_init(void) {
1067
1068     sn_monitor_context_new(sndisplay, conn_screen, startup_monitor_event, NULL, NULL);
1069
1070     property_handlers[0].atom = A__NET_WM_NAME;
1071     property_handlers[1].atom = XCB_ATOM_WM_HINTS;
1072     property_handlers[2].atom = XCB_ATOM_WM_NAME;
1073     property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
1074     property_handlers[4].atom = A_WM_CLIENT_LEADER;
1075     property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
1076     property_handlers[6].atom = A_WM_WINDOW_ROLE;
1077 }
1078
1079 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
1080     struct property_handler_t *handler = NULL;
1081     xcb_get_property_reply_t *propr = NULL;
1082
1083     for (size_t c = 0; c < sizeof(property_handlers) / sizeof(struct property_handler_t); c++) {
1084         if (property_handlers[c].atom != atom)
1085             continue;
1086
1087         handler = &property_handlers[c];
1088         break;
1089     }
1090
1091     if (handler == NULL) {
1092         //DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
1093         return;
1094     }
1095
1096     if (state != XCB_PROPERTY_DELETE) {
1097         xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
1098         propr = xcb_get_property_reply(conn, cookie, 0);
1099     }
1100
1101     /* the handler will free() the reply unless it returns false */
1102     if (!handler->cb(NULL, conn, state, window, atom, propr))
1103         FREE(propr);
1104 }
1105
1106 /*
1107  * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
1108  * event type.
1109  *
1110  */
1111 void handle_event(int type, xcb_generic_event_t *event) {
1112     if (randr_base > -1 &&
1113         type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
1114         handle_screen_change(event);
1115         return;
1116     }
1117
1118     switch (type) {
1119         case XCB_KEY_PRESS:
1120         case XCB_KEY_RELEASE:
1121             handle_key_press((xcb_key_press_event_t*)event);
1122             break;
1123
1124         case XCB_BUTTON_PRESS:
1125             handle_button_press((xcb_button_press_event_t*)event);
1126             break;
1127
1128         case XCB_MAP_REQUEST:
1129             handle_map_request((xcb_map_request_event_t*)event);
1130             break;
1131
1132         case XCB_UNMAP_NOTIFY:
1133             handle_unmap_notify_event((xcb_unmap_notify_event_t*)event);
1134             break;
1135
1136         case XCB_DESTROY_NOTIFY:
1137             handle_destroy_notify_event((xcb_destroy_notify_event_t*)event);
1138             break;
1139
1140         case XCB_EXPOSE:
1141             handle_expose_event((xcb_expose_event_t*)event);
1142             break;
1143
1144         case XCB_MOTION_NOTIFY:
1145             handle_motion_notify((xcb_motion_notify_event_t*)event);
1146             break;
1147
1148         /* Enter window = user moved his mouse over the window */
1149         case XCB_ENTER_NOTIFY:
1150             handle_enter_notify((xcb_enter_notify_event_t*)event);
1151             break;
1152
1153         /* Client message are sent to the root window. The only interesting
1154          * client message for us is _NET_WM_STATE, we honour
1155          * _NET_WM_STATE_FULLSCREEN and _NET_WM_STATE_DEMANDS_ATTENTION */
1156         case XCB_CLIENT_MESSAGE:
1157             handle_client_message((xcb_client_message_event_t*)event);
1158             break;
1159
1160         /* Configure request = window tried to change size on its own */
1161         case XCB_CONFIGURE_REQUEST:
1162             handle_configure_request((xcb_configure_request_event_t*)event);
1163             break;
1164
1165         /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1166         case XCB_MAPPING_NOTIFY:
1167             handle_mapping_notify((xcb_mapping_notify_event_t*)event);
1168             break;
1169
1170         case XCB_FOCUS_IN:
1171             handle_focus_in((xcb_focus_in_event_t*)event);
1172             break;
1173
1174         case XCB_PROPERTY_NOTIFY: {
1175             xcb_property_notify_event_t *e = (xcb_property_notify_event_t*)event;
1176             last_timestamp = e->time;
1177             property_notify(e->state, e->window, e->atom);
1178             break;
1179         }
1180
1181         default:
1182             //DLOG("Unhandled event of type %d\n", type);
1183             break;
1184     }
1185 }