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