]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
Bugfix: Correctly handle ConfigureRequests for floating windows in multi-monitor...
[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         floating_maybe_reassign_ws(con);
375         tree_render();
376     }
377
378     /* Dock windows can be reconfigured in their height */
379     if (con->parent && con->parent->type == CT_DOCKAREA) {
380         DLOG("Dock window, only height reconfiguration allowed\n");
381         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
382             DLOG("Height given, changing\n");
383
384             con->geometry.height = event->height;
385             tree_render();
386         }
387     }
388
389     fake_absolute_configure_notify(con);
390
391     return 1;
392 }
393 #if 0
394
395 /*
396  * Configuration notifies are only handled because we need to set up ignore for
397  * the following enter notify events.
398  *
399  */
400 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
401     DLOG("configure_event, sequence %d\n", event->sequence);
402         /* We ignore this sequence twice because events for child and frame should be ignored */
403         add_ignore_event(event->sequence);
404         add_ignore_event(event->sequence);
405
406         return 1;
407 }
408 #endif
409
410 /*
411  * Gets triggered upon a RandR screen change event, that is when the user
412  * changes the screen configuration in any way (mode, position, …)
413  *
414  */
415 static int handle_screen_change(xcb_generic_event_t *e) {
416     DLOG("RandR screen change\n");
417
418     randr_query_outputs();
419
420     ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
421
422     return 1;
423 }
424
425 /*
426  * Our window decorations were unmapped. That means, the window will be killed
427  * now, so we better clean up before.
428  *
429  */
430 static int handle_unmap_notify_event(xcb_unmap_notify_event_t *event) {
431     // XXX: this is commented out because in src/x.c we disable EnterNotify events
432     /* we need to ignore EnterNotify events which will be generated because a
433      * different window is visible now */
434     //add_ignore_event(event->sequence, XCB_ENTER_NOTIFY);
435
436     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
437     Con *con = con_by_window_id(event->window);
438     if (con == NULL) {
439         /* This could also be an UnmapNotify for the frame. We need to
440          * decrement the ignore_unmap counter. */
441         con = con_by_frame_id(event->window);
442         if (con == NULL) {
443             LOG("Not a managed window, ignoring UnmapNotify event\n");
444             return 1;
445         }
446         if (con->ignore_unmap > 0)
447             con->ignore_unmap--;
448         DLOG("ignore_unmap = %d for frame of container %p\n", con->ignore_unmap, con);
449         return 1;
450     }
451
452     if (con->ignore_unmap > 0) {
453         DLOG("ignore_unmap = %d, dec\n", con->ignore_unmap);
454         con->ignore_unmap--;
455         return 1;
456     }
457
458     tree_close(con, DONT_KILL_WINDOW, false);
459     tree_render();
460     x_push_changes(croot);
461     return 1;
462
463 #if 0
464         if (client == NULL) {
465                 DLOG("not a managed window. Ignoring.\n");
466
467                 /* This was most likely the destroyed frame of a client which is
468                  * currently being unmapped, so we add this sequence (again!) to
469                  * the ignore list (enter_notify events will get sent for both,
470                  * the child and its frame). */
471                 add_ignore_event(event->sequence);
472
473                 return 0;
474         }
475 #endif
476
477
478 #if 0
479         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
480         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
481         bool workspace_focused = (c_ws == client->workspace);
482         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
483
484         /* If this workspace is currently visible, we don’t delete it */
485         if (workspace_is_visible(client->workspace))
486                 workspace_empty = false;
487
488         if (workspace_empty) {
489                 client->workspace->output = NULL;
490                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
491         }
492
493         /* Remove the urgency flag if set */
494         client->urgent = false;
495         workspace_update_urgent_flag(client->workspace);
496
497         render_layout(conn);
498 #endif
499
500         return 1;
501 }
502
503 /*
504  * A destroy notify event is sent when the window is not unmapped, but
505  * immediately destroyed (for example when starting a window and immediately
506  * killing the program which started it).
507  *
508  * We just pass on the event to the unmap notify handler (by copying the
509  * important fields in the event data structure).
510  *
511  */
512 static int handle_destroy_notify_event(xcb_destroy_notify_event_t *event) {
513     DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
514
515     xcb_unmap_notify_event_t unmap;
516     unmap.sequence = event->sequence;
517     unmap.event = event->event;
518     unmap.window = event->window;
519
520     return handle_unmap_notify_event(&unmap);
521 }
522
523 /*
524  * Called when a window changes its title
525  *
526  */
527 static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
528                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
529     Con *con;
530     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
531         return false;
532
533     window_update_name(con->window, prop, false);
534
535     x_push_changes(croot);
536
537     return true;
538 }
539
540 /*
541  * Handles legacy window name updates (WM_NAME), see also src/window.c,
542  * window_update_name_legacy().
543  *
544  */
545 static bool handle_windowname_change_legacy(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_legacy(con->window, prop, false);
552
553     x_push_changes(croot);
554
555     return true;
556 }
557
558 #if 0
559 /*
560  * Updates the client’s WM_CLASS property
561  *
562  */
563 static int handle_windowclass_change(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 1;
568
569     window_update_class(con->window, prop, false);
570
571     return 0;
572 }
573 #endif
574
575 /*
576  * Expose event means we should redraw our windows (= title bar)
577  *
578  */
579 static int handle_expose_event(xcb_expose_event_t *event) {
580     Con *parent;
581
582     /* event->count is the number of minimum remaining expose events for this
583      * window, so we skip all events but the last one */
584     if (event->count != 0)
585         return 1;
586
587     DLOG("window = %08x\n", event->window);
588
589     if ((parent = con_by_frame_id(event->window)) == NULL) {
590         LOG("expose event for unknown window, ignoring\n");
591         return 1;
592     }
593
594     /* re-render the parent (recursively, if it’s a split con) */
595     x_deco_recurse(parent);
596     xcb_flush(conn);
597
598     return 1;
599 }
600
601 /*
602  * Handle client messages (EWMH)
603  *
604  */
605 static int handle_client_message(xcb_client_message_event_t *event) {
606     LOG("ClientMessage for window 0x%08x\n", event->window);
607     if (event->type == A__NET_WM_STATE) {
608         if (event->format != 32 || event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN) {
609             DLOG("atom in clientmessage is %d, fullscreen is %d\n",
610                     event->data.data32[1], A__NET_WM_STATE_FULLSCREEN);
611             DLOG("not about fullscreen atom\n");
612             return 0;
613         }
614
615         Con *con = con_by_window_id(event->window);
616         if (con == NULL) {
617             DLOG("Could not get window for client message\n");
618             return 0;
619         }
620
621         /* Check if the fullscreen state should be toggled */
622         if ((con->fullscreen_mode != CF_NONE &&
623              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
624               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
625             (con->fullscreen_mode == CF_NONE &&
626              (event->data.data32[0] == _NET_WM_STATE_ADD ||
627               event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
628             DLOG("toggling fullscreen\n");
629             con_toggle_fullscreen(con, CF_OUTPUT);
630         }
631
632         tree_render();
633         x_push_changes(croot);
634     } else {
635         ELOG("unhandled clientmessage\n");
636         return 0;
637     }
638
639     return 1;
640 }
641
642 #if 0
643 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
644                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
645         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
646          before changing this property. */
647         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
648         return 0;
649 }
650 #endif
651
652 /*
653  * Handles the size hints set by a window, but currently only the part necessary for displaying
654  * clients proportionally inside their frames (mplayer for example)
655  *
656  * See ICCCM 4.1.2.3 for more details
657  *
658  */
659 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
660                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
661     Con *con = con_by_window_id(window);
662     if (con == NULL) {
663         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
664         return false;
665     }
666
667     xcb_size_hints_t size_hints;
668
669         //CLIENT_LOG(client);
670
671     /* If the hints were already in this event, use them, if not, request them */
672     if (reply != NULL)
673         xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
674     else
675         xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
676
677     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
678         // TODO: Minimum size is not yet implemented
679         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
680     }
681
682     bool changed = false;
683     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
684         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
685             if (con->width_increment != size_hints.width_inc) {
686                 con->width_increment = size_hints.width_inc;
687                 changed = true;
688             }
689         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
690             if (con->height_increment != size_hints.height_inc) {
691                 con->height_increment = size_hints.height_inc;
692                 changed = true;
693             }
694
695         if (changed)
696             DLOG("resize increments changed\n");
697     }
698
699     int base_width = 0, base_height = 0;
700
701     /* base_width/height are the desired size of the window.
702        We check if either the program-specified size or the program-specified
703        min-size is available */
704     if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
705         base_width = size_hints.base_width;
706         base_height = size_hints.base_height;
707     } else if (size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
708         /* TODO: is this right? icccm says not */
709         base_width = size_hints.min_width;
710         base_height = size_hints.min_height;
711     }
712
713     if (base_width != con->base_width ||
714         base_height != con->base_height) {
715         con->base_width = base_width;
716         con->base_height = base_height;
717         DLOG("client's base_height changed to %d\n", base_height);
718         DLOG("client's base_width changed to %d\n", base_width);
719         changed = true;
720     }
721
722     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
723     if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
724         (size_hints.min_aspect_num <= 0) ||
725         (size_hints.min_aspect_den <= 0)) {
726         goto render_and_return;
727     }
728
729     /* XXX: do we really use rect here, not window_rect? */
730     double width = con->rect.width - base_width;
731     double height = con->rect.height - base_height;
732     /* Convert numerator/denominator to a double */
733     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
734     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
735
736     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
737     DLOG("width = %f, height = %f\n", width, height);
738
739     /* Sanity checks, this is user-input, in a way */
740     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
741         goto render_and_return;
742
743     /* Check if we need to set proportional_* variables using the correct ratio */
744     if ((width / height) < min_aspect) {
745         if (con->proportional_width != width ||
746             con->proportional_height != (width / min_aspect)) {
747             con->proportional_width = width;
748             con->proportional_height = width / min_aspect;
749             changed = true;
750         }
751     } else if ((width / height) > max_aspect) {
752         if (con->proportional_width != width ||
753             con->proportional_height != (width / max_aspect)) {
754             con->proportional_width = width;
755             con->proportional_height = width / max_aspect;
756             changed = true;
757         }
758     } else goto render_and_return;
759
760 render_and_return:
761     if (changed)
762         tree_render();
763     FREE(reply);
764     return true;
765 }
766
767 /*
768  * Handles the WM_HINTS property for extracting the urgency state of the window.
769  *
770  */
771 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
772                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
773     Con *con = con_by_window_id(window);
774     if (con == NULL) {
775         DLOG("Received WM_HINTS for unknown client\n");
776         return false;
777     }
778
779     xcb_icccm_wm_hints_t hints;
780
781     if (reply != NULL) {
782         if (!xcb_icccm_get_wm_hints_from_reply(&hints, reply))
783             return false;
784     } else {
785         if (!xcb_icccm_get_wm_hints_reply(conn, xcb_icccm_get_wm_hints_unchecked(conn, con->window->id), &hints, NULL))
786             return false;
787     }
788
789     if (!con->urgent && focused == con) {
790         DLOG("Ignoring urgency flag for current client\n");
791         FREE(reply);
792         return true;
793     }
794
795     /* Update the flag on the client directly */
796     con->urgent = (xcb_icccm_wm_hints_get_urgency(&hints) != 0);
797     //CLIENT_LOG(con);
798     LOG("Urgency flag changed to %d\n", con->urgent);
799
800     Con *ws;
801     /* Set the urgency flag on the workspace, if a workspace could be found
802      * (for dock clients, that is not the case). */
803     if ((ws = con_get_workspace(con)) != NULL)
804         workspace_update_urgent_flag(ws);
805
806     tree_render();
807
808 #if 0
809     /* If the workspace this client is on is not visible, we need to redraw
810      * the workspace bar */
811     if (!workspace_is_visible(client->workspace)) {
812             Output *output = client->workspace->output;
813             render_workspace(conn, output, output->current_workspace);
814             xcb_flush(conn);
815     }
816 #endif
817
818     FREE(reply);
819     return true;
820 }
821
822 /*
823  * Handles the transient for hints set by a window, signalizing that this window is a popup window
824  * for some other window.
825  *
826  * See ICCCM 4.1.2.6 for more details
827  *
828  */
829 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
830                          xcb_atom_t name, xcb_get_property_reply_t *prop) {
831     Con *con;
832
833     if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
834         DLOG("No such window\n");
835         return false;
836     }
837
838     if (prop == NULL) {
839         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
840                                 false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32), NULL);
841         if (prop == NULL)
842             return false;
843     }
844
845     window_update_transient_for(con->window, prop);
846
847     // TODO: put window in floating mode if con->window->transient_for != XCB_NONE:
848 #if 0
849     if (client->floating == FLOATING_AUTO_OFF) {
850         DLOG("This is a popup window, putting into floating\n");
851         toggle_floating_mode(conn, client, true);
852     }
853 #endif
854
855     return true;
856 }
857
858 /*
859  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
860  * toolwindow (or similar) and to which window it belongs (logical parent).
861  *
862  */
863 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
864                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
865     Con *con;
866     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
867         return false;
868
869     if (prop == NULL) {
870         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
871                                 false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32), NULL);
872         if (prop == NULL)
873             return false;
874     }
875
876     window_update_leader(con->window, prop);
877
878     return true;
879 }
880
881 /*
882  * Handles FocusIn events which are generated by clients (i3’s focus changes
883  * don’t generate FocusIn events due to a different EventMask) and updates the
884  * decorations accordingly.
885  *
886  */
887 static int handle_focus_in(xcb_focus_in_event_t *event) {
888     DLOG("focus change in, for window 0x%08x\n", event->event);
889     Con *con;
890     if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
891         return 1;
892     DLOG("That is con %p / %s\n", con, con->name);
893
894     if (event->mode == XCB_NOTIFY_MODE_GRAB ||
895         event->mode == XCB_NOTIFY_MODE_UNGRAB) {
896         DLOG("FocusIn event for grab/ungrab, ignoring\n");
897         return 1;
898     }
899
900     if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
901         DLOG("notify detail is pointer, ignoring this event\n");
902         return 1;
903     }
904
905     if (focused_id == event->event) {
906         DLOG("focus matches the currently focused window, not doing anything\n");
907         return 1;
908     }
909
910     DLOG("focus is different, updating decorations\n");
911     con_focus(con);
912     /* We update focused_id because we don’t need to set focus again */
913     focused_id = event->event;
914     x_push_changes(croot);
915     return 1;
916 }
917
918 /* Returns false if the event could not be processed (e.g. the window could not
919  * be found), true otherwise */
920 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);
921
922 struct property_handler_t {
923     xcb_atom_t atom;
924     uint32_t long_len;
925     cb_property_handler_t cb;
926 };
927
928 static struct property_handler_t property_handlers[] = {
929     { 0, 128, handle_windowname_change },
930     { 0, UINT_MAX, handle_hints },
931     { 0, 128, handle_windowname_change_legacy },
932     { 0, UINT_MAX, handle_normal_hints },
933     { 0, UINT_MAX, handle_clientleader_change },
934     { 0, UINT_MAX, handle_transient_for }
935 };
936 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
937
938 /*
939  * Sets the appropriate atoms for the property handlers after the atoms were
940  * received from X11
941  *
942  */
943 void property_handlers_init() {
944     property_handlers[0].atom = A__NET_WM_NAME;
945     property_handlers[1].atom = XCB_ATOM_WM_HINTS;
946     property_handlers[2].atom = XCB_ATOM_WM_NAME;
947     property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
948     property_handlers[4].atom = A_WM_CLIENT_LEADER;
949     property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
950 }
951
952 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
953     struct property_handler_t *handler = NULL;
954     xcb_get_property_reply_t *propr = NULL;
955
956     for (int c = 0; c < sizeof(property_handlers) / sizeof(struct property_handler_t); c++) {
957         if (property_handlers[c].atom != atom)
958             continue;
959
960         handler = &property_handlers[c];
961         break;
962     }
963
964     if (handler == NULL) {
965         DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
966         return;
967     }
968
969     if (state != XCB_PROPERTY_DELETE) {
970         xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
971         propr = xcb_get_property_reply(conn, cookie, 0);
972     }
973
974     /* the handler will free() the reply unless it returns false */
975     if (!handler->cb(NULL, conn, state, window, atom, propr))
976         FREE(propr);
977 }
978
979 /*
980  * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
981  * event type.
982  *
983  */
984 void handle_event(int type, xcb_generic_event_t *event) {
985     if (randr_base > -1 &&
986         type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
987         handle_screen_change(event);
988         return;
989     }
990
991     switch (type) {
992         case XCB_KEY_PRESS:
993             handle_key_press((xcb_key_press_event_t*)event);
994             break;
995
996         case XCB_BUTTON_PRESS:
997             handle_button_press((xcb_button_press_event_t*)event);
998             break;
999
1000         case XCB_MAP_REQUEST:
1001             handle_map_request((xcb_map_request_event_t*)event);
1002             break;
1003
1004         case XCB_UNMAP_NOTIFY:
1005             handle_unmap_notify_event((xcb_unmap_notify_event_t*)event);
1006             break;
1007
1008         case XCB_DESTROY_NOTIFY:
1009             handle_destroy_notify_event((xcb_destroy_notify_event_t*)event);
1010             break;
1011
1012         case XCB_EXPOSE:
1013             handle_expose_event((xcb_expose_event_t*)event);
1014             break;
1015
1016         case XCB_MOTION_NOTIFY:
1017             handle_motion_notify((xcb_motion_notify_event_t*)event);
1018             break;
1019
1020         /* Enter window = user moved his mouse over the window */
1021         case XCB_ENTER_NOTIFY:
1022             handle_enter_notify((xcb_enter_notify_event_t*)event);
1023             break;
1024
1025         /* Client message are sent to the root window. The only interesting
1026          * client message for us is _NET_WM_STATE, we honour
1027          * _NET_WM_STATE_FULLSCREEN */
1028         case XCB_CLIENT_MESSAGE:
1029             handle_client_message((xcb_client_message_event_t*)event);
1030             break;
1031
1032         /* Configure request = window tried to change size on its own */
1033         case XCB_CONFIGURE_REQUEST:
1034             handle_configure_request((xcb_configure_request_event_t*)event);
1035             break;
1036
1037         /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1038         case XCB_MAPPING_NOTIFY:
1039             handle_mapping_notify((xcb_mapping_notify_event_t*)event);
1040             break;
1041
1042         case XCB_FOCUS_IN:
1043             handle_focus_in((xcb_focus_in_event_t*)event);
1044             break;
1045
1046         case XCB_PROPERTY_NOTIFY:
1047             DLOG("Property notify\n");
1048             xcb_property_notify_event_t *e = (xcb_property_notify_event_t*)event;
1049             property_notify(e->state, e->window, e->atom);
1050             break;
1051
1052         default:
1053             DLOG("Unhandled event of type %d\n", type);
1054             break;
1055     }
1056 }