]> 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 /*
532  * Called when a window changes its title
533  *
534  */
535 static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
536                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
537     Con *con;
538     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
539         return false;
540
541     window_update_name(con->window, prop, false);
542
543     x_push_changes(croot);
544
545     return true;
546 }
547
548 /*
549  * Handles legacy window name updates (WM_NAME), see also src/window.c,
550  * window_update_name_legacy().
551  *
552  */
553 static bool handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
554                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
555     Con *con;
556     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
557         return false;
558
559     window_update_name_legacy(con->window, prop, false);
560
561     x_push_changes(croot);
562
563     return true;
564 }
565
566 /*
567  * Called when a window changes its WM_WINDOW_ROLE.
568  *
569  */
570 static bool handle_windowrole_change(void *data, xcb_connection_t *conn, uint8_t state,
571                                      xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
572     Con *con;
573     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
574         return false;
575
576     window_update_role(con->window, prop, false);
577
578     return true;
579 }
580
581 #if 0
582 /*
583  * Updates the client’s WM_CLASS property
584  *
585  */
586 static int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
587                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
588     Con *con;
589     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
590         return 1;
591
592     window_update_class(con->window, prop, false);
593
594     return 0;
595 }
596 #endif
597
598 /*
599  * Expose event means we should redraw our windows (= title bar)
600  *
601  */
602 static void handle_expose_event(xcb_expose_event_t *event) {
603     Con *parent;
604
605     DLOG("window = %08x\n", event->window);
606
607     if ((parent = con_by_frame_id(event->window)) == NULL) {
608         LOG("expose event for unknown window, ignoring\n");
609         return;
610     }
611
612     /* Since we render to our pixmap on every change anyways, expose events
613      * only tell us that the X server lost (parts of) the window contents. We
614      * can handle that by copying the appropriate part from our pixmap to the
615      * window. */
616     xcb_copy_area(conn, parent->pixmap, parent->frame, parent->pm_gc,
617                   event->x, event->y, event->x, event->y,
618                   event->width, event->height);
619     xcb_flush(conn);
620
621     return;
622 }
623
624 /*
625  * Handle client messages (EWMH)
626  *
627  */
628 static void handle_client_message(xcb_client_message_event_t *event) {
629     /* If this is a startup notification ClientMessage, the library will handle
630      * it and call our monitor_event() callback. */
631     if (sn_xcb_display_process_event(sndisplay, (xcb_generic_event_t*)event))
632         return;
633
634     LOG("ClientMessage for window 0x%08x\n", event->window);
635     if (event->type == A__NET_WM_STATE) {
636         if (event->format != 32 ||
637             (event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN &&
638              event->data.data32[1] != A__NET_WM_STATE_DEMANDS_ATTENTION)) {
639             DLOG("Unknown atom in clientmessage of type %d\n", event->data.data32[1]);
640             return;
641         }
642
643         Con *con = con_by_window_id(event->window);
644         if (con == NULL) {
645             DLOG("Could not get window for client message\n");
646             return;
647         }
648
649         if (event->data.data32[1] == A__NET_WM_STATE_FULLSCREEN) {
650             /* Check if the fullscreen state should be toggled */
651             if ((con->fullscreen_mode != CF_NONE &&
652                  (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
653                   event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
654                 (con->fullscreen_mode == CF_NONE &&
655                  (event->data.data32[0] == _NET_WM_STATE_ADD ||
656                   event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
657                 DLOG("toggling fullscreen\n");
658                 con_toggle_fullscreen(con, CF_OUTPUT);
659             }
660         } else if (event->data.data32[1] == A__NET_WM_STATE_DEMANDS_ATTENTION) {
661             /* Check if the urgent flag must be set or not */
662             if (event->data.data32[0] == _NET_WM_STATE_ADD)
663                 con_set_urgency(con, true);
664             else if (event->data.data32[0] == _NET_WM_STATE_REMOVE)
665                 con_set_urgency(con, false);
666             else if (event->data.data32[0] == _NET_WM_STATE_TOGGLE)
667                 con_set_urgency(con, !con->urgent);
668         }
669
670         tree_render();
671     } else if (event->type == A__NET_ACTIVE_WINDOW) {
672         DLOG("_NET_ACTIVE_WINDOW: Window 0x%08x should be activated\n", event->window);
673         Con *con = con_by_window_id(event->window);
674         if (con == NULL) {
675             DLOG("Could not get window for client message\n");
676             return;
677         }
678
679         Con *ws = con_get_workspace(con);
680         if (!workspace_is_visible(ws)) {
681             DLOG("Workspace not visible, ignoring _NET_ACTIVE_WINDOW\n");
682             return;
683         }
684
685         if (ws != con_get_workspace(focused))
686             workspace_show(ws);
687
688         con_focus(con);
689         tree_render();
690     } else if (event->type == A_I3_SYNC) {
691         xcb_window_t window = event->data.data32[0];
692         uint32_t rnd = event->data.data32[1];
693         DLOG("[i3 sync protocol] Sending random value %d back to X11 window 0x%08x\n", rnd, window);
694
695         void *reply = scalloc(32);
696         xcb_client_message_event_t *ev = reply;
697
698         ev->response_type = XCB_CLIENT_MESSAGE;
699         ev->window = window;
700         ev->type = A_I3_SYNC;
701         ev->format = 32;
702         ev->data.data32[0] = window;
703         ev->data.data32[1] = rnd;
704
705         xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)ev);
706         xcb_flush(conn);
707         free(reply);
708     } else if (event->type == A__NET_REQUEST_FRAME_EXTENTS) {
709         /*
710          * A client can request an estimate for the frame size which the window
711          * manager will put around it before actually mapping its window. Java
712          * does this (as of openjdk-7).
713          *
714          * Note that the calculation below is not entirely accurate — once you
715          * set a different border type, it’s off. We _could_ request all the
716          * window properties (which have to be set up at this point according
717          * to EWMH), but that seems rather elaborate. The standard explicitly
718          * says the application must cope with an estimate that is not entirely
719          * accurate.
720          */
721         DLOG("_NET_REQUEST_FRAME_EXTENTS for window 0x%08x\n", event->window);
722
723         /* The reply data: approximate frame size */
724         Rect r = {
725             config.default_border_width, /* left */
726             config.default_border_width, /* right */
727             config.font.height + 5, /* top */
728             config.default_border_width /* bottom */
729         };
730         xcb_change_property(
731                 conn,
732                 XCB_PROP_MODE_REPLACE,
733                 event->window,
734                 A__NET_FRAME_EXTENTS,
735                 XCB_ATOM_CARDINAL, 32, 4,
736                 &r);
737         xcb_flush(conn);
738     } else {
739         DLOG("unhandled clientmessage\n");
740         return;
741     }
742 }
743
744 #if 0
745 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
746                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
747         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
748          before changing this property. */
749         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
750         return 0;
751 }
752 #endif
753
754 /*
755  * Handles the size hints set by a window, but currently only the part necessary for displaying
756  * clients proportionally inside their frames (mplayer for example)
757  *
758  * See ICCCM 4.1.2.3 for more details
759  *
760  */
761 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
762                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
763     Con *con = con_by_window_id(window);
764     if (con == NULL) {
765         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
766         return false;
767     }
768
769     xcb_size_hints_t size_hints;
770
771         //CLIENT_LOG(client);
772
773     /* If the hints were already in this event, use them, if not, request them */
774     if (reply != NULL)
775         xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
776     else
777         xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
778
779     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
780         // TODO: Minimum size is not yet implemented
781         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
782     }
783
784     bool changed = false;
785     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
786         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
787             if (con->width_increment != size_hints.width_inc) {
788                 con->width_increment = size_hints.width_inc;
789                 changed = true;
790             }
791         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
792             if (con->height_increment != size_hints.height_inc) {
793                 con->height_increment = size_hints.height_inc;
794                 changed = true;
795             }
796
797         if (changed)
798             DLOG("resize increments changed\n");
799     }
800
801     int base_width = 0, base_height = 0;
802
803     /* base_width/height are the desired size of the window.
804        We check if either the program-specified size or the program-specified
805        min-size is available */
806     if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
807         base_width = size_hints.base_width;
808         base_height = size_hints.base_height;
809     } else if (size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
810         /* TODO: is this right? icccm says not */
811         base_width = size_hints.min_width;
812         base_height = size_hints.min_height;
813     }
814
815     if (base_width != con->base_width ||
816         base_height != con->base_height) {
817         con->base_width = base_width;
818         con->base_height = base_height;
819         DLOG("client's base_height changed to %d\n", base_height);
820         DLOG("client's base_width changed to %d\n", base_width);
821         changed = true;
822     }
823
824     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
825     if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
826         (size_hints.min_aspect_num <= 0) ||
827         (size_hints.min_aspect_den <= 0)) {
828         goto render_and_return;
829     }
830
831     /* XXX: do we really use rect here, not window_rect? */
832     double width = con->rect.width - base_width;
833     double height = con->rect.height - base_height;
834     /* Convert numerator/denominator to a double */
835     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
836     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
837
838     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
839     DLOG("width = %f, height = %f\n", width, height);
840
841     /* Sanity checks, this is user-input, in a way */
842     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
843         goto render_and_return;
844
845     /* Check if we need to set proportional_* variables using the correct ratio */
846     double aspect_ratio = 0.0;
847     if ((width / height) < min_aspect) {
848         aspect_ratio = min_aspect;
849     } else if ((width / height) > max_aspect) {
850         aspect_ratio = max_aspect;
851     } else goto render_and_return;
852
853     if (fabs(con->aspect_ratio - aspect_ratio) > DBL_EPSILON) {
854         con->aspect_ratio = aspect_ratio;
855         changed = true;
856     }
857
858 render_and_return:
859     if (changed)
860         tree_render();
861     FREE(reply);
862     return true;
863 }
864
865 /*
866  * Handles the WM_HINTS property for extracting the urgency state of the window.
867  *
868  */
869 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
870                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
871     Con *con = con_by_window_id(window);
872     if (con == NULL) {
873         DLOG("Received WM_HINTS for unknown client\n");
874         return false;
875     }
876
877     bool urgency_hint;
878     if (reply == NULL)
879         reply = xcb_get_property_reply(conn, xcb_icccm_get_wm_hints(conn, window), NULL);
880     window_update_hints(con->window, reply, &urgency_hint);
881     con_set_urgency(con, urgency_hint);
882     tree_render();
883
884     return true;
885 }
886
887 /*
888  * Handles the transient for hints set by a window, signalizing that this window is a popup window
889  * for some other window.
890  *
891  * See ICCCM 4.1.2.6 for more details
892  *
893  */
894 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
895                          xcb_atom_t name, xcb_get_property_reply_t *prop) {
896     Con *con;
897
898     if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
899         DLOG("No such window\n");
900         return false;
901     }
902
903     if (prop == NULL) {
904         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
905                                 false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32), NULL);
906         if (prop == NULL)
907             return false;
908     }
909
910     window_update_transient_for(con->window, prop);
911
912     return true;
913 }
914
915 /*
916  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
917  * toolwindow (or similar) and to which window it belongs (logical parent).
918  *
919  */
920 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
921                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
922     Con *con;
923     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
924         return false;
925
926     if (prop == NULL) {
927         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
928                                 false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32), NULL);
929         if (prop == NULL)
930             return false;
931     }
932
933     window_update_leader(con->window, prop);
934
935     return true;
936 }
937
938 /*
939  * Handles FocusIn events which are generated by clients (i3’s focus changes
940  * don’t generate FocusIn events due to a different EventMask) and updates the
941  * decorations accordingly.
942  *
943  */
944 static void handle_focus_in(xcb_focus_in_event_t *event) {
945     DLOG("focus change in, for window 0x%08x\n", event->event);
946     Con *con;
947     if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
948         return;
949     DLOG("That is con %p / %s\n", con, con->name);
950
951     if (event->mode == XCB_NOTIFY_MODE_GRAB ||
952         event->mode == XCB_NOTIFY_MODE_UNGRAB) {
953         DLOG("FocusIn event for grab/ungrab, ignoring\n");
954         return;
955     }
956
957     if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
958         DLOG("notify detail is pointer, ignoring this event\n");
959         return;
960     }
961
962     if (focused_id == event->event) {
963         DLOG("focus matches the currently focused window, not doing anything\n");
964         return;
965     }
966
967     /* Skip dock clients, they cannot get the i3 focus. */
968     if (con->parent->type == CT_DOCKAREA) {
969         DLOG("This is a dock client, not focusing.\n");
970         return;
971     }
972
973     DLOG("focus is different, updating decorations\n");
974
975     /* Get the currently focused workspace to check if the focus change also
976      * involves changing workspaces. If so, we need to call workspace_show() to
977      * correctly update state and send the IPC event. */
978     Con *ws = con_get_workspace(con);
979     if (ws != con_get_workspace(focused))
980         workspace_show(ws);
981
982     con_focus(con);
983     /* We update focused_id because we don’t need to set focus again */
984     focused_id = event->event;
985     x_push_changes(croot);
986     return;
987 }
988
989 /* Returns false if the event could not be processed (e.g. the window could not
990  * be found), true otherwise */
991 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);
992
993 struct property_handler_t {
994     xcb_atom_t atom;
995     uint32_t long_len;
996     cb_property_handler_t cb;
997 };
998
999 static struct property_handler_t property_handlers[] = {
1000     { 0, 128, handle_windowname_change },
1001     { 0, UINT_MAX, handle_hints },
1002     { 0, 128, handle_windowname_change_legacy },
1003     { 0, UINT_MAX, handle_normal_hints },
1004     { 0, UINT_MAX, handle_clientleader_change },
1005     { 0, UINT_MAX, handle_transient_for },
1006     { 0, 128, handle_windowrole_change }
1007 };
1008 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
1009
1010 /*
1011  * Sets the appropriate atoms for the property handlers after the atoms were
1012  * received from X11
1013  *
1014  */
1015 void property_handlers_init(void) {
1016
1017     sn_monitor_context_new(sndisplay, conn_screen, startup_monitor_event, NULL, NULL);
1018
1019     property_handlers[0].atom = A__NET_WM_NAME;
1020     property_handlers[1].atom = XCB_ATOM_WM_HINTS;
1021     property_handlers[2].atom = XCB_ATOM_WM_NAME;
1022     property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
1023     property_handlers[4].atom = A_WM_CLIENT_LEADER;
1024     property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
1025     property_handlers[6].atom = A_WM_WINDOW_ROLE;
1026 }
1027
1028 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
1029     struct property_handler_t *handler = NULL;
1030     xcb_get_property_reply_t *propr = NULL;
1031
1032     for (int c = 0; c < sizeof(property_handlers) / sizeof(struct property_handler_t); c++) {
1033         if (property_handlers[c].atom != atom)
1034             continue;
1035
1036         handler = &property_handlers[c];
1037         break;
1038     }
1039
1040     if (handler == NULL) {
1041         //DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
1042         return;
1043     }
1044
1045     if (state != XCB_PROPERTY_DELETE) {
1046         xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
1047         propr = xcb_get_property_reply(conn, cookie, 0);
1048     }
1049
1050     /* the handler will free() the reply unless it returns false */
1051     if (!handler->cb(NULL, conn, state, window, atom, propr))
1052         FREE(propr);
1053 }
1054
1055 /*
1056  * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
1057  * event type.
1058  *
1059  */
1060 void handle_event(int type, xcb_generic_event_t *event) {
1061     if (randr_base > -1 &&
1062         type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
1063         handle_screen_change(event);
1064         return;
1065     }
1066
1067     switch (type) {
1068         case XCB_KEY_PRESS:
1069         case XCB_KEY_RELEASE:
1070             handle_key_press((xcb_key_press_event_t*)event);
1071             break;
1072
1073         case XCB_BUTTON_PRESS:
1074             handle_button_press((xcb_button_press_event_t*)event);
1075             break;
1076
1077         case XCB_MAP_REQUEST:
1078             handle_map_request((xcb_map_request_event_t*)event);
1079             break;
1080
1081         case XCB_UNMAP_NOTIFY:
1082             handle_unmap_notify_event((xcb_unmap_notify_event_t*)event);
1083             break;
1084
1085         case XCB_DESTROY_NOTIFY:
1086             handle_destroy_notify_event((xcb_destroy_notify_event_t*)event);
1087             break;
1088
1089         case XCB_EXPOSE:
1090             handle_expose_event((xcb_expose_event_t*)event);
1091             break;
1092
1093         case XCB_MOTION_NOTIFY:
1094             handle_motion_notify((xcb_motion_notify_event_t*)event);
1095             break;
1096
1097         /* Enter window = user moved his mouse over the window */
1098         case XCB_ENTER_NOTIFY:
1099             handle_enter_notify((xcb_enter_notify_event_t*)event);
1100             break;
1101
1102         /* Client message are sent to the root window. The only interesting
1103          * client message for us is _NET_WM_STATE, we honour
1104          * _NET_WM_STATE_FULLSCREEN and _NET_WM_STATE_DEMANDS_ATTENTION */
1105         case XCB_CLIENT_MESSAGE:
1106             handle_client_message((xcb_client_message_event_t*)event);
1107             break;
1108
1109         /* Configure request = window tried to change size on its own */
1110         case XCB_CONFIGURE_REQUEST:
1111             handle_configure_request((xcb_configure_request_event_t*)event);
1112             break;
1113
1114         /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1115         case XCB_MAPPING_NOTIFY:
1116             handle_mapping_notify((xcb_mapping_notify_event_t*)event);
1117             break;
1118
1119         case XCB_FOCUS_IN:
1120             handle_focus_in((xcb_focus_in_event_t*)event);
1121             break;
1122
1123         case XCB_PROPERTY_NOTIFY: {
1124             xcb_property_notify_event_t *e = (xcb_property_notify_event_t*)event;
1125             last_timestamp = e->time;
1126             property_notify(e->state, e->window, e->atom);
1127             break;
1128         }
1129
1130         default:
1131             //DLOG("Unhandled event of type %d\n", type);
1132             break;
1133     }
1134 }