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