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