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