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