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