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