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