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