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