]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
xcb: use predefined XCB_ATOM_ atoms, don’t request them
[i3/i3] / src / handlers.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include <time.h>
9
10 #include <xcb/randr.h>
11
12 #include <X11/XKBlib.h>
13
14 #include "all.h"
15
16 int randr_base = -1;
17
18 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
19    since it’d trigger an infinite loop of switching between the different windows when
20    changing workspaces */
21 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
22
23 /*
24  * Adds the given sequence to the list of events which are ignored.
25  * If this ignore should only affect a specific response_type, pass
26  * response_type, otherwise, pass -1.
27  *
28  * Every ignored sequence number gets garbage collected after 5 seconds.
29  *
30  */
31 void add_ignore_event(const int sequence, const int response_type) {
32     struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
33
34     event->sequence = sequence;
35     event->response_type = response_type;
36     event->added = time(NULL);
37
38     SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
39 }
40
41 /*
42  * Checks if the given sequence is ignored and returns true if so.
43  *
44  */
45 bool event_is_ignored(const int sequence, const int response_type) {
46     struct Ignore_Event *event;
47     time_t now = time(NULL);
48     for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
49         if ((now - event->added) > 5) {
50             struct Ignore_Event *save = event;
51             event = SLIST_NEXT(event, ignore_events);
52             SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
53             free(save);
54         } else event = SLIST_NEXT(event, ignore_events);
55     }
56
57     SLIST_FOREACH(event, &ignore_events, ignore_events) {
58         if (event->sequence != sequence)
59             continue;
60
61         if (event->response_type != -1 &&
62             event->response_type != response_type)
63             continue;
64
65         /* instead of removing a sequence number we better wait until it gets
66          * garbage collected. it may generate multiple events (there are multiple
67          * enter_notifies for one configure_request, for example). */
68         //SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
69         //free(event);
70         return true;
71     }
72
73     return false;
74 }
75
76
77 /*
78  * There was a key press. We compare this key code with our bindings table and pass
79  * the bound action to parse_command().
80  *
81  */
82 static int handle_key_press(xcb_key_press_event_t *event) {
83     DLOG("Keypress %d, state raw = %d\n", event->detail, event->state);
84
85     /* Remove the numlock bit, all other bits are modifiers we can bind to */
86     uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
87     DLOG("(removed numlock, state = %d)\n", state_filtered);
88     /* Only use the lower 8 bits of the state (modifier masks) so that mouse
89      * button masks are filtered out */
90     state_filtered &= 0xFF;
91     DLOG("(removed upper 8 bits, state = %d)\n", state_filtered);
92
93     if (xkb_current_group == XkbGroup2Index)
94         state_filtered |= BIND_MODE_SWITCH;
95
96     DLOG("(checked mode_switch, state %d)\n", state_filtered);
97
98     /* Find the binding */
99     Binding *bind = get_binding(state_filtered, event->detail);
100
101     /* No match? Then the user has Mode_switch enabled but does not have a
102      * specific keybinding. Fall back to the default keybindings (without
103      * Mode_switch). Makes it much more convenient for users of a hybrid
104      * layout (like us, ru). */
105     if (bind == NULL) {
106         state_filtered &= ~(BIND_MODE_SWITCH);
107         DLOG("no match, new state_filtered = %d\n", state_filtered);
108         if ((bind = get_binding(state_filtered, event->detail)) == NULL) {
109             ELOG("Could not lookup key binding (modifiers %d, keycode %d)\n",
110                  state_filtered, event->detail);
111             return 1;
112         }
113     }
114
115     char *json_result = parse_cmd(bind->command);
116     FREE(json_result);
117     return 1;
118 }
119
120 /*
121  * Called with coordinates of an enter_notify event or motion_notify event
122  * to check if the user crossed virtual screen boundaries and adjust the
123  * current workspace, if so.
124  *
125  */
126 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
127     Output *output;
128
129     /* If the user disable focus follows mouse, we have nothing to do here */
130     if (config.disable_focus_follows_mouse)
131         return;
132
133     if ((output = get_output_containing(x, y)) == NULL) {
134         ELOG("ERROR: No such screen\n");
135         return;
136     }
137
138     if (output->con == NULL) {
139         ELOG("ERROR: The screen is not recognized by i3 (no container associated)\n");
140         return;
141     }
142
143     /* Focus the output on which the user moved his cursor */
144     Con *old_focused = focused;
145     con_focus(con_descend_focused(output_get_content(output->con)));
146
147     /* If the focus changed, we re-render to get updated decorations */
148     if (old_focused != focused)
149         tree_render();
150 }
151
152 /*
153  * When the user moves the mouse pointer onto a window, this callback gets called.
154  *
155  */
156 static int handle_enter_notify(xcb_enter_notify_event_t *event) {
157     Con *con;
158
159     DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n",
160          event->event, event->mode, event->detail, event->sequence);
161     DLOG("coordinates %d, %d\n", event->event_x, event->event_y);
162     if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
163         DLOG("This was not a normal notify, ignoring\n");
164         return 1;
165     }
166     /* Some events are not interesting, because they were not generated
167      * actively by the user, but by reconfiguration of windows */
168     if (event_is_ignored(event->sequence, XCB_ENTER_NOTIFY)) {
169         DLOG("Event ignored\n");
170         return 1;
171     }
172
173     bool enter_child = false;
174     /* Get container by frame or by child window */
175     if ((con = con_by_frame_id(event->event)) == NULL) {
176         con = con_by_window_id(event->event);
177         enter_child = true;
178     }
179
180     /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
181     if (con == NULL) {
182         DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
183         check_crossing_screen_boundary(event->root_x, event->root_y);
184         return 1;
185     }
186
187     if (con->parent->type == CT_DOCKAREA) {
188         DLOG("Ignoring, this is a dock client\n");
189         return 1;
190     }
191
192     /* see if the user entered the window on a certain window decoration */
193     int layout = (enter_child ? con->parent->layout : con->layout);
194     if (layout == L_DEFAULT) {
195         Con *child;
196         TAILQ_FOREACH(child, &(con->nodes_head), nodes)
197             if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
198                 LOG("using child %p / %s instead!\n", child, child->name);
199                 con = child;
200                 break;
201             }
202     }
203
204 #if 0
205     if (client->workspace != c_ws && client->workspace->output == c_ws->output) {
206             /* This can happen when a client gets assigned to a different workspace than
207              * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
208              * an enter_notify will follow. */
209             DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
210             return 1;
211     }
212 #endif
213
214     if (config.disable_focus_follows_mouse)
215         return 1;
216
217     con_focus(con_descend_focused(con));
218     tree_render();
219
220     return 1;
221 }
222
223 /*
224  * When the user moves the mouse but does not change the active window
225  * (e.g. when having no windows opened but moving mouse on the root screen
226  * and crossing virtual screen boundaries), this callback gets called.
227  *
228  */
229 static int handle_motion_notify(xcb_motion_notify_event_t *event) {
230     /* Skip events where the pointer was over a child window, we are only
231      * interested in events on the root window. */
232     if (event->child != 0)
233         return 1;
234
235     Con *con;
236     if ((con = con_by_frame_id(event->event)) == NULL) {
237         check_crossing_screen_boundary(event->root_x, event->root_y);
238         return 1;
239     }
240
241     if (config.disable_focus_follows_mouse)
242         return 1;
243
244     if (con->layout != L_DEFAULT)
245         return 1;
246
247     /* see over which rect the user is */
248     Con *current;
249     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
250         if (!rect_contains(current->deco_rect, event->event_x, event->event_y))
251             continue;
252
253         /* We found the rect, let’s see if this window is focused */
254         if (TAILQ_FIRST(&(con->focus_head)) == current)
255             return 1;
256
257         con_focus(current);
258         x_push_changes(croot);
259         return 1;
260     }
261
262     return 1;
263 }
264
265 /*
266  * Called when the keyboard mapping changes (for example by using Xmodmap),
267  * we need to update our key bindings then (re-translate symbols).
268  *
269  */
270 static int handle_mapping_notify(xcb_mapping_notify_event_t *event) {
271     if (event->request != XCB_MAPPING_KEYBOARD &&
272         event->request != XCB_MAPPING_MODIFIER)
273         return 0;
274
275     DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
276     xcb_refresh_keyboard_mapping(keysyms, event);
277
278     xcb_get_numlock_mask(conn);
279
280     ungrab_all_keys(conn);
281     translate_keysyms();
282     grab_all_keys(conn, false);
283
284     return 0;
285 }
286
287 /*
288  * A new window appeared on the screen (=was mapped), so let’s manage it.
289  *
290  */
291 static int handle_map_request(xcb_map_request_event_t *event) {
292     xcb_get_window_attributes_cookie_t cookie;
293
294     cookie = xcb_get_window_attributes_unchecked(conn, event->window);
295
296     DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
297     add_ignore_event(event->sequence, -1);
298
299     manage_window(event->window, cookie, false);
300     x_push_changes(croot);
301     return 1;
302 }
303
304 /*
305  * Configure requests are received when the application wants to resize windows on their own.
306  *
307  * We generate a synthethic configure notify event to signalize the client its "new" position.
308  *
309  */
310 static int handle_configure_request(xcb_configure_request_event_t *event) {
311     Con *con;
312
313     DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
314         event->window, event->x, event->y, event->width, event->height);
315
316     /* For unmanaged windows, we just execute the configure request. As soon as
317      * it gets mapped, we will take over anyways. */
318     if ((con = con_by_window_id(event->window)) == NULL) {
319         DLOG("Configure request for unmanaged window, can do that.\n");
320
321         uint32_t mask = 0;
322         uint32_t values[7];
323         int c = 0;
324 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
325         if (event->value_mask & mask_member) { \
326             mask |= mask_member; \
327             values[c++] = event->event_member; \
328         } \
329 } while (0)
330
331         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
332         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
333         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
334         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
335         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
336         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
337         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
338
339         xcb_configure_window(conn, event->window, mask, values);
340         xcb_flush(conn);
341
342         return 1;
343     }
344
345     DLOG("Configure request!\n");
346     if (con_is_floating(con) && con_is_leaf(con)) {
347         /* find the height for the decorations */
348         int deco_height = config.font.height + 5;
349         /* we actually need to apply the size/position changes to the *parent*
350          * container */
351         Rect bsr = con_border_style_rect(con);
352         if (con->border_style == BS_NORMAL) {
353             bsr.y += deco_height;
354             bsr.height -= deco_height;
355         }
356         con = con->parent;
357         DLOG("Container is a floating leaf node, will do that.\n");
358         if (event->value_mask & XCB_CONFIG_WINDOW_X) {
359             con->rect.x = event->x + (-1) * bsr.x;
360             DLOG("proposed x = %d, new x is %d\n", event->x, con->rect.x);
361         }
362         if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
363             con->rect.y = event->y + (-1) * bsr.y;
364             DLOG("proposed y = %d, new y is %d\n", event->y, con->rect.y);
365         }
366         if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
367             con->rect.width = event->width + (-1) * bsr.width;
368             DLOG("proposed width = %d, new width is %d\n", event->width, con->rect.width);
369         }
370         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
371             con->rect.height = event->height + (-1) * bsr.height;
372             DLOG("proposed height = %d, new height is %d\n", event->height, con->rect.height);
373         }
374         tree_render();
375     }
376
377     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 bool 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 false;
551
552     window_update_name(con->window, prop, false);
553
554     x_push_changes(croot);
555
556     return true;
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 bool 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 false;
569
570     window_update_name_legacy(con->window, prop, false);
571
572     x_push_changes(croot);
573
574     return true;
575 }
576
577 #if 0
578 /*
579  * Updates the client’s WM_CLASS property
580  *
581  */
582 static int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
583                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
584     Con *con;
585     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
586         return 1;
587
588     window_update_class(con->window, prop, false);
589
590     return 0;
591 }
592 #endif
593
594 /*
595  * Expose event means we should redraw our windows (= title bar)
596  *
597  */
598 static int handle_expose_event(xcb_expose_event_t *event) {
599     Con *parent;
600
601     /* event->count is the number of minimum remaining expose events for this
602      * window, so we skip all events but the last one */
603     if (event->count != 0)
604         return 1;
605
606     DLOG("window = %08x\n", event->window);
607
608     if ((parent = con_by_frame_id(event->window)) == NULL) {
609         LOG("expose event for unknown window, ignoring\n");
610         return 1;
611     }
612
613     /* re-render the parent (recursively, if it’s a split con) */
614     x_deco_recurse(parent);
615     xcb_flush(conn);
616
617     return 1;
618 }
619
620 /*
621  * Handle client messages (EWMH)
622  *
623  */
624 static int handle_client_message(xcb_client_message_event_t *event) {
625     LOG("ClientMessage for window 0x%08x\n", event->window);
626     if (event->type == A__NET_WM_STATE) {
627         if (event->format != 32 || event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN) {
628             DLOG("atom in clientmessage is %d, fullscreen is %d\n",
629                     event->data.data32[1], A__NET_WM_STATE_FULLSCREEN);
630             DLOG("not about fullscreen atom\n");
631             return 0;
632         }
633
634         Con *con = con_by_window_id(event->window);
635         if (con == NULL) {
636             DLOG("Could not get window for client message\n");
637             return 0;
638         }
639
640         /* Check if the fullscreen state should be toggled */
641         if ((con->fullscreen_mode != CF_NONE &&
642              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
643               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
644             (con->fullscreen_mode == CF_NONE &&
645              (event->data.data32[0] == _NET_WM_STATE_ADD ||
646               event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
647             DLOG("toggling fullscreen\n");
648             con_toggle_fullscreen(con, CF_OUTPUT);
649         }
650
651         tree_render();
652         x_push_changes(croot);
653     } else {
654         ELOG("unhandled clientmessage\n");
655         return 0;
656     }
657
658     return 1;
659 }
660
661 #if 0
662 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
663                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
664         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
665          before changing this property. */
666         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
667         return 0;
668 }
669 #endif
670
671 /*
672  * Handles the size hints set by a window, but currently only the part necessary for displaying
673  * clients proportionally inside their frames (mplayer for example)
674  *
675  * See ICCCM 4.1.2.3 for more details
676  *
677  */
678 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
679                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
680     Con *con = con_by_window_id(window);
681     if (con == NULL) {
682         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
683         return false;
684     }
685
686     xcb_size_hints_t size_hints;
687
688         //CLIENT_LOG(client);
689
690     /* If the hints were already in this event, use them, if not, request them */
691     if (reply != NULL)
692         xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
693     else
694         xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
695
696     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
697         // TODO: Minimum size is not yet implemented
698         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
699     }
700
701     bool changed = false;
702     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
703         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
704             if (con->width_increment != size_hints.width_inc) {
705                 con->width_increment = size_hints.width_inc;
706                 changed = true;
707             }
708         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
709             if (con->height_increment != size_hints.height_inc) {
710                 con->height_increment = size_hints.height_inc;
711                 changed = true;
712             }
713
714         if (changed)
715             DLOG("resize increments changed\n");
716     }
717
718     int base_width = 0, base_height = 0;
719
720     /* base_width/height are the desired size of the window.
721        We check if either the program-specified size or the program-specified
722        min-size is available */
723     if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
724         base_width = size_hints.base_width;
725         base_height = size_hints.base_height;
726     } else if (size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
727         /* TODO: is this right? icccm says not */
728         base_width = size_hints.min_width;
729         base_height = size_hints.min_height;
730     }
731
732     if (base_width != con->base_width ||
733         base_height != con->base_height) {
734         con->base_width = base_width;
735         con->base_height = base_height;
736         DLOG("client's base_height changed to %d\n", base_height);
737         DLOG("client's base_width changed to %d\n", base_width);
738         changed = true;
739     }
740
741     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
742     if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
743         (size_hints.min_aspect_num <= 0) ||
744         (size_hints.min_aspect_den <= 0)) {
745         goto render_and_return;
746     }
747
748     /* XXX: do we really use rect here, not window_rect? */
749     double width = con->rect.width - base_width;
750     double height = con->rect.height - base_height;
751     /* Convert numerator/denominator to a double */
752     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
753     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
754
755     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
756     DLOG("width = %f, height = %f\n", width, height);
757
758     /* Sanity checks, this is user-input, in a way */
759     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
760         goto render_and_return;
761
762     /* Check if we need to set proportional_* variables using the correct ratio */
763     if ((width / height) < min_aspect) {
764         if (con->proportional_width != width ||
765             con->proportional_height != (width / min_aspect)) {
766             con->proportional_width = width;
767             con->proportional_height = width / min_aspect;
768             changed = true;
769         }
770     } else if ((width / height) > max_aspect) {
771         if (con->proportional_width != width ||
772             con->proportional_height != (width / max_aspect)) {
773             con->proportional_width = width;
774             con->proportional_height = width / max_aspect;
775             changed = true;
776         }
777     } else goto render_and_return;
778
779 render_and_return:
780     if (changed)
781         tree_render();
782     FREE(reply);
783     return true;
784 }
785
786 /*
787  * Handles the WM_HINTS property for extracting the urgency state of the window.
788  *
789  */
790 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
791                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
792     Con *con = con_by_window_id(window);
793     if (con == NULL) {
794         DLOG("Received WM_HINTS for unknown client\n");
795         return false;
796     }
797
798     xcb_icccm_wm_hints_t hints;
799
800     if (reply != NULL) {
801         if (!xcb_icccm_get_wm_hints_from_reply(&hints, reply))
802             return false;
803     } else {
804         if (!xcb_icccm_get_wm_hints_reply(conn, xcb_icccm_get_wm_hints_unchecked(conn, con->window->id), &hints, NULL))
805             return false;
806     }
807
808     if (!con->urgent && focused == con) {
809         DLOG("Ignoring urgency flag for current client\n");
810         FREE(reply);
811         return true;
812     }
813
814     /* Update the flag on the client directly */
815     con->urgent = (xcb_icccm_wm_hints_get_urgency(&hints) != 0);
816     //CLIENT_LOG(con);
817     LOG("Urgency flag changed to %d\n", con->urgent);
818
819     Con *ws;
820     /* Set the urgency flag on the workspace, if a workspace could be found
821      * (for dock clients, that is not the case). */
822     if ((ws = con_get_workspace(con)) != NULL)
823         workspace_update_urgent_flag(ws);
824
825     tree_render();
826
827 #if 0
828     /* If the workspace this client is on is not visible, we need to redraw
829      * the workspace bar */
830     if (!workspace_is_visible(client->workspace)) {
831             Output *output = client->workspace->output;
832             render_workspace(conn, output, output->current_workspace);
833             xcb_flush(conn);
834     }
835 #endif
836
837     FREE(reply);
838     return true;
839 }
840
841 /*
842  * Handles the transient for hints set by a window, signalizing that this window is a popup window
843  * for some other window.
844  *
845  * See ICCCM 4.1.2.6 for more details
846  *
847  */
848 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
849                          xcb_atom_t name, xcb_get_property_reply_t *prop) {
850     Con *con;
851
852     if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
853         DLOG("No such window\n");
854         return false;
855     }
856
857     if (prop == NULL) {
858         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
859                                 false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32), NULL);
860         if (prop == NULL)
861             return false;
862     }
863
864     window_update_transient_for(con->window, prop);
865
866     // TODO: put window in floating mode if con->window->transient_for != XCB_NONE:
867 #if 0
868     if (client->floating == FLOATING_AUTO_OFF) {
869         DLOG("This is a popup window, putting into floating\n");
870         toggle_floating_mode(conn, client, true);
871     }
872 #endif
873
874     return true;
875 }
876
877 /*
878  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
879  * toolwindow (or similar) and to which window it belongs (logical parent).
880  *
881  */
882 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
883                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
884     Con *con;
885     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
886         return false;
887
888     if (prop == NULL) {
889         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
890                                 false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32), NULL);
891         if (prop == NULL)
892             return false;
893     }
894
895     window_update_leader(con->window, prop);
896
897     return true;
898 }
899
900 /*
901  * Handles FocusIn events which are generated by clients (i3’s focus changes
902  * don’t generate FocusIn events due to a different EventMask) and updates the
903  * decorations accordingly.
904  *
905  */
906 static int handle_focus_in(xcb_focus_in_event_t *event) {
907     DLOG("focus change in, for window 0x%08x\n", event->event);
908     Con *con;
909     if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
910         return 1;
911     DLOG("That is con %p / %s\n", con, con->name);
912
913     if (event->mode == XCB_NOTIFY_MODE_GRAB ||
914         event->mode == XCB_NOTIFY_MODE_UNGRAB) {
915         DLOG("FocusIn event for grab/ungrab, ignoring\n");
916         return 1;
917     }
918
919     if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
920         DLOG("notify detail is pointer, ignoring this event\n");
921         return 1;
922     }
923
924     if (focused_id == event->event) {
925         DLOG("focus matches the currently focused window, not doing anything\n");
926         return 1;
927     }
928
929     DLOG("focus is different, updating decorations\n");
930     con_focus(con);
931     /* We update focused_id because we don’t need to set focus again */
932     focused_id = event->event;
933     x_push_changes(croot);
934     return 1;
935 }
936
937 /* Returns false if the event could not be processed (e.g. the window could not
938  * be found), true otherwise */
939 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);
940
941 struct property_handler_t {
942     xcb_atom_t atom;
943     uint32_t long_len;
944     cb_property_handler_t cb;
945 };
946
947 static struct property_handler_t property_handlers[] = {
948     { 0, 128, handle_windowname_change },
949     { 0, UINT_MAX, handle_hints },
950     { 0, 128, handle_windowname_change_legacy },
951     { 0, UINT_MAX, handle_normal_hints },
952     { 0, UINT_MAX, handle_clientleader_change },
953     { 0, UINT_MAX, handle_transient_for }
954 };
955 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
956
957 /*
958  * Sets the appropriate atoms for the property handlers after the atoms were
959  * received from X11
960  *
961  */
962 void property_handlers_init() {
963     property_handlers[0].atom = A__NET_WM_NAME;
964     property_handlers[1].atom = XCB_ATOM_WM_HINTS;
965     property_handlers[2].atom = XCB_ATOM_WM_NAME;
966     property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
967     property_handlers[4].atom = A_WM_CLIENT_LEADER;
968     property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
969 }
970
971 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
972     struct property_handler_t *handler = NULL;
973     xcb_get_property_reply_t *propr = NULL;
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;
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     /* the handler will free() the reply unless it returns false */
994     if (!handler->cb(NULL, conn, state, window, atom, propr))
995         FREE(propr);
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 }