]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
Merge branch 'master' into next
[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         DLOG("_NET_ACTIVE_WINDOW: Window 0x%08x should be activated\n", event->window);
698         Con *con = con_by_window_id(event->window);
699         if (con == NULL) {
700             DLOG("Could not get window for client message\n");
701             return;
702         }
703
704         Con *ws = con_get_workspace(con);
705         if (!workspace_is_visible(ws)) {
706             DLOG("Workspace not visible, ignoring _NET_ACTIVE_WINDOW\n");
707             return;
708         }
709
710         if (con_is_internal(ws)) {
711             DLOG("Workspace is internal, ignoring _NET_ACTIVE_WINDOW\n");
712             return;
713         }
714
715         if (ws != con_get_workspace(focused))
716             workspace_show(ws);
717
718         con_focus(con);
719         tree_render();
720     } else if (event->type == A_I3_SYNC) {
721         xcb_window_t window = event->data.data32[0];
722         uint32_t rnd = event->data.data32[1];
723         DLOG("[i3 sync protocol] Sending random value %d back to X11 window 0x%08x\n", rnd, window);
724
725         void *reply = scalloc(32);
726         xcb_client_message_event_t *ev = reply;
727
728         ev->response_type = XCB_CLIENT_MESSAGE;
729         ev->window = window;
730         ev->type = A_I3_SYNC;
731         ev->format = 32;
732         ev->data.data32[0] = window;
733         ev->data.data32[1] = rnd;
734
735         xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)ev);
736         xcb_flush(conn);
737         free(reply);
738     } else if (event->type == A__NET_REQUEST_FRAME_EXTENTS) {
739         /*
740          * A client can request an estimate for the frame size which the window
741          * manager will put around it before actually mapping its window. Java
742          * does this (as of openjdk-7).
743          *
744          * Note that the calculation below is not entirely accurate — once you
745          * set a different border type, it’s off. We _could_ request all the
746          * window properties (which have to be set up at this point according
747          * to EWMH), but that seems rather elaborate. The standard explicitly
748          * says the application must cope with an estimate that is not entirely
749          * accurate.
750          */
751         DLOG("_NET_REQUEST_FRAME_EXTENTS for window 0x%08x\n", event->window);
752
753         /* The reply data: approximate frame size */
754         Rect r = {
755             config.default_border_width, /* left */
756             config.default_border_width, /* right */
757             config.font.height + 5, /* top */
758             config.default_border_width /* bottom */
759         };
760         xcb_change_property(
761                 conn,
762                 XCB_PROP_MODE_REPLACE,
763                 event->window,
764                 A__NET_FRAME_EXTENTS,
765                 XCB_ATOM_CARDINAL, 32, 4,
766                 &r);
767         xcb_flush(conn);
768     } else {
769         DLOG("unhandled clientmessage\n");
770         return;
771     }
772 }
773
774 #if 0
775 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
776                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
777         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
778          before changing this property. */
779         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
780         return 0;
781 }
782 #endif
783
784 /*
785  * Handles the size hints set by a window, but currently only the part necessary for displaying
786  * clients proportionally inside their frames (mplayer for example)
787  *
788  * See ICCCM 4.1.2.3 for more details
789  *
790  */
791 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
792                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
793     Con *con = con_by_window_id(window);
794     if (con == NULL) {
795         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
796         return false;
797     }
798
799     xcb_size_hints_t size_hints;
800
801         //CLIENT_LOG(client);
802
803     /* If the hints were already in this event, use them, if not, request them */
804     if (reply != NULL)
805         xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
806     else
807         xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
808
809     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
810         // TODO: Minimum size is not yet implemented
811         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
812     }
813
814     bool changed = false;
815     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
816         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
817             if (con->width_increment != size_hints.width_inc) {
818                 con->width_increment = size_hints.width_inc;
819                 changed = true;
820             }
821         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
822             if (con->height_increment != size_hints.height_inc) {
823                 con->height_increment = size_hints.height_inc;
824                 changed = true;
825             }
826
827         if (changed)
828             DLOG("resize increments changed\n");
829     }
830
831     int base_width = 0, base_height = 0;
832
833     /* base_width/height are the desired size of the window.
834        We check if either the program-specified size or the program-specified
835        min-size is available */
836     if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
837         base_width = size_hints.base_width;
838         base_height = size_hints.base_height;
839     } else if (size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
840         /* TODO: is this right? icccm says not */
841         base_width = size_hints.min_width;
842         base_height = size_hints.min_height;
843     }
844
845     if (base_width != con->base_width ||
846         base_height != con->base_height) {
847         con->base_width = base_width;
848         con->base_height = base_height;
849         DLOG("client's base_height changed to %d\n", base_height);
850         DLOG("client's base_width changed to %d\n", base_width);
851         changed = true;
852     }
853
854     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
855     if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
856         (size_hints.min_aspect_num <= 0) ||
857         (size_hints.min_aspect_den <= 0)) {
858         goto render_and_return;
859     }
860
861     /* XXX: do we really use rect here, not window_rect? */
862     double width = con->rect.width - base_width;
863     double height = con->rect.height - base_height;
864     /* Convert numerator/denominator to a double */
865     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
866     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
867
868     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
869     DLOG("width = %f, height = %f\n", width, height);
870
871     /* Sanity checks, this is user-input, in a way */
872     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
873         goto render_and_return;
874
875     /* Check if we need to set proportional_* variables using the correct ratio */
876     double aspect_ratio = 0.0;
877     if ((width / height) < min_aspect) {
878         aspect_ratio = min_aspect;
879     } else if ((width / height) > max_aspect) {
880         aspect_ratio = max_aspect;
881     } else goto render_and_return;
882
883     if (fabs(con->aspect_ratio - aspect_ratio) > DBL_EPSILON) {
884         con->aspect_ratio = aspect_ratio;
885         changed = true;
886     }
887
888 render_and_return:
889     if (changed)
890         tree_render();
891     FREE(reply);
892     return true;
893 }
894
895 /*
896  * Handles the WM_HINTS property for extracting the urgency state of the window.
897  *
898  */
899 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
900                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
901     Con *con = con_by_window_id(window);
902     if (con == NULL) {
903         DLOG("Received WM_HINTS for unknown client\n");
904         return false;
905     }
906
907     bool urgency_hint;
908     if (reply == NULL)
909         reply = xcb_get_property_reply(conn, xcb_icccm_get_wm_hints(conn, window), NULL);
910     window_update_hints(con->window, reply, &urgency_hint);
911     con_set_urgency(con, urgency_hint);
912     tree_render();
913
914     return true;
915 }
916
917 /*
918  * Handles the transient for hints set by a window, signalizing that this window is a popup window
919  * for some other window.
920  *
921  * See ICCCM 4.1.2.6 for more details
922  *
923  */
924 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
925                          xcb_atom_t name, xcb_get_property_reply_t *prop) {
926     Con *con;
927
928     if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
929         DLOG("No such window\n");
930         return false;
931     }
932
933     if (prop == NULL) {
934         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
935                                 false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32), NULL);
936         if (prop == NULL)
937             return false;
938     }
939
940     window_update_transient_for(con->window, prop);
941
942     return true;
943 }
944
945 /*
946  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
947  * toolwindow (or similar) and to which window it belongs (logical parent).
948  *
949  */
950 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
951                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
952     Con *con;
953     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
954         return false;
955
956     if (prop == NULL) {
957         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
958                                 false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32), NULL);
959         if (prop == NULL)
960             return false;
961     }
962
963     window_update_leader(con->window, prop);
964
965     return true;
966 }
967
968 /*
969  * Handles FocusIn events which are generated by clients (i3’s focus changes
970  * don’t generate FocusIn events due to a different EventMask) and updates the
971  * decorations accordingly.
972  *
973  */
974 static void handle_focus_in(xcb_focus_in_event_t *event) {
975     DLOG("focus change in, for window 0x%08x\n", event->event);
976     Con *con;
977     if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
978         return;
979     DLOG("That is con %p / %s\n", con, con->name);
980
981     if (event->mode == XCB_NOTIFY_MODE_GRAB ||
982         event->mode == XCB_NOTIFY_MODE_UNGRAB) {
983         DLOG("FocusIn event for grab/ungrab, ignoring\n");
984         return;
985     }
986
987     if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
988         DLOG("notify detail is pointer, ignoring this event\n");
989         return;
990     }
991
992     if (focused_id == event->event) {
993         DLOG("focus matches the currently focused window, not doing anything\n");
994         return;
995     }
996
997     /* Skip dock clients, they cannot get the i3 focus. */
998     if (con->parent->type == CT_DOCKAREA) {
999         DLOG("This is a dock client, not focusing.\n");
1000         return;
1001     }
1002
1003     DLOG("focus is different, updating decorations\n");
1004
1005     /* Get the currently focused workspace to check if the focus change also
1006      * involves changing workspaces. If so, we need to call workspace_show() to
1007      * correctly update state and send the IPC event. */
1008     Con *ws = con_get_workspace(con);
1009     if (ws != con_get_workspace(focused))
1010         workspace_show(ws);
1011
1012     con_focus(con);
1013     /* We update focused_id because we don’t need to set focus again */
1014     focused_id = event->event;
1015     x_push_changes(croot);
1016     return;
1017 }
1018
1019 /* Returns false if the event could not be processed (e.g. the window could not
1020  * be found), true otherwise */
1021 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);
1022
1023 struct property_handler_t {
1024     xcb_atom_t atom;
1025     uint32_t long_len;
1026     cb_property_handler_t cb;
1027 };
1028
1029 static struct property_handler_t property_handlers[] = {
1030     { 0, 128, handle_windowname_change },
1031     { 0, UINT_MAX, handle_hints },
1032     { 0, 128, handle_windowname_change_legacy },
1033     { 0, UINT_MAX, handle_normal_hints },
1034     { 0, UINT_MAX, handle_clientleader_change },
1035     { 0, UINT_MAX, handle_transient_for },
1036     { 0, 128, handle_windowrole_change }
1037 };
1038 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
1039
1040 /*
1041  * Sets the appropriate atoms for the property handlers after the atoms were
1042  * received from X11
1043  *
1044  */
1045 void property_handlers_init(void) {
1046
1047     sn_monitor_context_new(sndisplay, conn_screen, startup_monitor_event, NULL, NULL);
1048
1049     property_handlers[0].atom = A__NET_WM_NAME;
1050     property_handlers[1].atom = XCB_ATOM_WM_HINTS;
1051     property_handlers[2].atom = XCB_ATOM_WM_NAME;
1052     property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
1053     property_handlers[4].atom = A_WM_CLIENT_LEADER;
1054     property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
1055     property_handlers[6].atom = A_WM_WINDOW_ROLE;
1056 }
1057
1058 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
1059     struct property_handler_t *handler = NULL;
1060     xcb_get_property_reply_t *propr = NULL;
1061
1062     for (size_t c = 0; c < sizeof(property_handlers) / sizeof(struct property_handler_t); c++) {
1063         if (property_handlers[c].atom != atom)
1064             continue;
1065
1066         handler = &property_handlers[c];
1067         break;
1068     }
1069
1070     if (handler == NULL) {
1071         //DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
1072         return;
1073     }
1074
1075     if (state != XCB_PROPERTY_DELETE) {
1076         xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
1077         propr = xcb_get_property_reply(conn, cookie, 0);
1078     }
1079
1080     /* the handler will free() the reply unless it returns false */
1081     if (!handler->cb(NULL, conn, state, window, atom, propr))
1082         FREE(propr);
1083 }
1084
1085 /*
1086  * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
1087  * event type.
1088  *
1089  */
1090 void handle_event(int type, xcb_generic_event_t *event) {
1091     if (randr_base > -1 &&
1092         type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
1093         handle_screen_change(event);
1094         return;
1095     }
1096
1097     switch (type) {
1098         case XCB_KEY_PRESS:
1099         case XCB_KEY_RELEASE:
1100             handle_key_press((xcb_key_press_event_t*)event);
1101             break;
1102
1103         case XCB_BUTTON_PRESS:
1104             handle_button_press((xcb_button_press_event_t*)event);
1105             break;
1106
1107         case XCB_MAP_REQUEST:
1108             handle_map_request((xcb_map_request_event_t*)event);
1109             break;
1110
1111         case XCB_UNMAP_NOTIFY:
1112             handle_unmap_notify_event((xcb_unmap_notify_event_t*)event);
1113             break;
1114
1115         case XCB_DESTROY_NOTIFY:
1116             handle_destroy_notify_event((xcb_destroy_notify_event_t*)event);
1117             break;
1118
1119         case XCB_EXPOSE:
1120             handle_expose_event((xcb_expose_event_t*)event);
1121             break;
1122
1123         case XCB_MOTION_NOTIFY:
1124             handle_motion_notify((xcb_motion_notify_event_t*)event);
1125             break;
1126
1127         /* Enter window = user moved his mouse over the window */
1128         case XCB_ENTER_NOTIFY:
1129             handle_enter_notify((xcb_enter_notify_event_t*)event);
1130             break;
1131
1132         /* Client message are sent to the root window. The only interesting
1133          * client message for us is _NET_WM_STATE, we honour
1134          * _NET_WM_STATE_FULLSCREEN and _NET_WM_STATE_DEMANDS_ATTENTION */
1135         case XCB_CLIENT_MESSAGE:
1136             handle_client_message((xcb_client_message_event_t*)event);
1137             break;
1138
1139         /* Configure request = window tried to change size on its own */
1140         case XCB_CONFIGURE_REQUEST:
1141             handle_configure_request((xcb_configure_request_event_t*)event);
1142             break;
1143
1144         /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1145         case XCB_MAPPING_NOTIFY:
1146             handle_mapping_notify((xcb_mapping_notify_event_t*)event);
1147             break;
1148
1149         case XCB_FOCUS_IN:
1150             handle_focus_in((xcb_focus_in_event_t*)event);
1151             break;
1152
1153         case XCB_PROPERTY_NOTIFY: {
1154             xcb_property_notify_event_t *e = (xcb_property_notify_event_t*)event;
1155             last_timestamp = e->time;
1156             property_notify(e->state, e->window, e->atom);
1157             break;
1158         }
1159
1160         default:
1161             //DLOG("Unhandled event of type %d\n", type);
1162             break;
1163     }
1164 }