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