]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
Bugfix: Don’t allow ConfigureRequests while in fullscreen (Thanks Piotr)
[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
378     Con *workspace = con_get_workspace(con),
379         *fullscreen = NULL;
380
381     /* There might not be a corresponding workspace for dock cons, therefore we
382      * have to be careful here. */
383     if (workspace) {
384         fullscreen = con_get_fullscreen_con(workspace, CF_OUTPUT);
385         if (!fullscreen)
386             fullscreen = con_get_fullscreen_con(workspace, CF_GLOBAL);
387     }
388
389     if (fullscreen != con && con_is_floating(con) && con_is_leaf(con)) {
390         /* find the height for the decorations */
391         int deco_height = config.font.height + 5;
392         /* we actually need to apply the size/position changes to the *parent*
393          * container */
394         Rect bsr = con_border_style_rect(con);
395         if (con->border_style == BS_NORMAL) {
396             bsr.y += deco_height;
397             bsr.height -= deco_height;
398         }
399         Con *floatingcon = con->parent;
400
401         Rect newrect = floatingcon->rect;
402
403         if (event->value_mask & XCB_CONFIG_WINDOW_X) {
404             newrect.x = event->x + (-1) * bsr.x;
405             DLOG("proposed x = %d, new x is %d\n", event->x, newrect.x);
406         }
407         if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
408             newrect.y = event->y + (-1) * bsr.y;
409             DLOG("proposed y = %d, new y is %d\n", event->y, newrect.y);
410         }
411         if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
412             newrect.width = event->width + (-1) * bsr.width;
413             newrect.width += con->border_width * 2;
414             DLOG("proposed width = %d, new width is %d (x11 border %d)\n",
415                  event->width, newrect.width, con->border_width);
416         }
417         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
418             newrect.height = event->height + (-1) * bsr.height;
419             newrect.height += con->border_width * 2;
420             DLOG("proposed height = %d, new height is %d (x11 border %d)\n",
421                  event->height, newrect.height, con->border_width);
422         }
423
424         DLOG("Container is a floating leaf node, will do that.\n");
425         floating_reposition(floatingcon, newrect);
426         return;
427     }
428
429     /* Dock windows can be reconfigured in their height */
430     if (con->parent && con->parent->type == CT_DOCKAREA) {
431         DLOG("Dock window, only height reconfiguration allowed\n");
432         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
433             DLOG("Height given, changing\n");
434
435             con->geometry.height = event->height;
436             tree_render();
437         }
438     }
439
440     fake_absolute_configure_notify(con);
441
442     return;
443 }
444 #if 0
445
446 /*
447  * Configuration notifies are only handled because we need to set up ignore for
448  * the following enter notify events.
449  *
450  */
451 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
452     DLOG("configure_event, sequence %d\n", event->sequence);
453         /* We ignore this sequence twice because events for child and frame should be ignored */
454         add_ignore_event(event->sequence);
455         add_ignore_event(event->sequence);
456
457         return 1;
458 }
459 #endif
460
461 /*
462  * Gets triggered upon a RandR screen change event, that is when the user
463  * changes the screen configuration in any way (mode, position, …)
464  *
465  */
466 static void handle_screen_change(xcb_generic_event_t *e) {
467     DLOG("RandR screen change\n");
468
469     randr_query_outputs();
470
471     ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
472
473     return;
474 }
475
476 /*
477  * Our window decorations were unmapped. That means, the window will be killed
478  * now, so we better clean up before.
479  *
480  */
481 static void handle_unmap_notify_event(xcb_unmap_notify_event_t *event) {
482     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
483     xcb_get_input_focus_cookie_t cookie;
484     Con *con = con_by_window_id(event->window);
485     if (con == NULL) {
486         /* This could also be an UnmapNotify for the frame. We need to
487          * decrement the ignore_unmap counter. */
488         con = con_by_frame_id(event->window);
489         if (con == NULL) {
490             LOG("Not a managed window, ignoring UnmapNotify event\n");
491             return;
492         }
493
494         if (con->ignore_unmap > 0)
495             con->ignore_unmap--;
496         /* See the end of this function. */
497         cookie = xcb_get_input_focus(conn);
498         DLOG("ignore_unmap = %d for frame of container %p\n", con->ignore_unmap, con);
499         goto ignore_end;
500     }
501
502     /* See the end of this function. */
503     cookie = xcb_get_input_focus(conn);
504
505     if (con->ignore_unmap > 0) {
506         DLOG("ignore_unmap = %d, dec\n", con->ignore_unmap);
507         con->ignore_unmap--;
508         goto ignore_end;
509     }
510
511     tree_close(con, DONT_KILL_WINDOW, false, false);
512     tree_render();
513     x_push_changes(croot);
514
515 ignore_end:
516     /* If the client (as opposed to i3) destroyed or unmapped a window, an
517      * EnterNotify event will follow (indistinguishable from an EnterNotify
518      * event caused by moving your mouse), causing i3 to set focus to whichever
519      * window is now visible.
520      *
521      * In a complex stacked or tabbed layout (take two v-split containers in a
522      * tabbed container), when the bottom window in tab2 is closed, the bottom
523      * window of tab1 is visible instead. X11 will thus send an EnterNotify
524      * event for the bottom window of tab1, while the focus should be set to
525      * the remaining window of tab2.
526      *
527      * Therefore, we ignore all EnterNotify events which have the same sequence
528      * as an UnmapNotify event. */
529     add_ignore_event(event->sequence, XCB_ENTER_NOTIFY);
530
531     /* Since we just ignored the sequence of this UnmapNotify, we want to make
532      * sure that following events use a different sequence. When putting xterm
533      * into fullscreen and moving the pointer to a different window, without
534      * using GetInputFocus, subsequent (legitimate) EnterNotify events arrived
535      * with the same sequence and thus were ignored (see ticket #609). */
536     free(xcb_get_input_focus_reply(conn, cookie, NULL));
537 }
538
539 /*
540  * A destroy notify event is sent when the window is not unmapped, but
541  * immediately destroyed (for example when starting a window and immediately
542  * killing the program which started it).
543  *
544  * We just pass on the event to the unmap notify handler (by copying the
545  * important fields in the event data structure).
546  *
547  */
548 static void handle_destroy_notify_event(xcb_destroy_notify_event_t *event) {
549     DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
550
551     xcb_unmap_notify_event_t unmap;
552     unmap.sequence = event->sequence;
553     unmap.event = event->event;
554     unmap.window = event->window;
555
556     handle_unmap_notify_event(&unmap);
557 }
558
559 /*
560  * Called when a window changes its title
561  *
562  */
563 static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
564                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
565     Con *con;
566     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
567         return false;
568
569     window_update_name(con->window, prop, false);
570
571     x_push_changes(croot);
572
573     return true;
574 }
575
576 /*
577  * Handles legacy window name updates (WM_NAME), see also src/window.c,
578  * window_update_name_legacy().
579  *
580  */
581 static bool handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
582                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
583     Con *con;
584     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
585         return false;
586
587     window_update_name_legacy(con->window, prop, false);
588
589     x_push_changes(croot);
590
591     return true;
592 }
593
594 /*
595  * Called when a window changes its WM_WINDOW_ROLE.
596  *
597  */
598 static bool handle_windowrole_change(void *data, xcb_connection_t *conn, uint8_t state,
599                                      xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
600     Con *con;
601     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
602         return false;
603
604     window_update_role(con->window, prop, false);
605
606     return true;
607 }
608
609 #if 0
610 /*
611  * Updates the client’s WM_CLASS property
612  *
613  */
614 static int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
615                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
616     Con *con;
617     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
618         return 1;
619
620     window_update_class(con->window, prop, false);
621
622     return 0;
623 }
624 #endif
625
626 /*
627  * Expose event means we should redraw our windows (= title bar)
628  *
629  */
630 static void handle_expose_event(xcb_expose_event_t *event) {
631     Con *parent;
632
633     DLOG("window = %08x\n", event->window);
634
635     if ((parent = con_by_frame_id(event->window)) == NULL) {
636         LOG("expose event for unknown window, ignoring\n");
637         return;
638     }
639
640     /* Since we render to our pixmap on every change anyways, expose events
641      * only tell us that the X server lost (parts of) the window contents. We
642      * can handle that by copying the appropriate part from our pixmap to the
643      * window. */
644     xcb_copy_area(conn, parent->pixmap, parent->frame, parent->pm_gc,
645                   event->x, event->y, event->x, event->y,
646                   event->width, event->height);
647     xcb_flush(conn);
648
649     return;
650 }
651
652 /*
653  * Handle client messages (EWMH)
654  *
655  */
656 static void handle_client_message(xcb_client_message_event_t *event) {
657     /* If this is a startup notification ClientMessage, the library will handle
658      * it and call our monitor_event() callback. */
659     if (sn_xcb_display_process_event(sndisplay, (xcb_generic_event_t*)event))
660         return;
661
662     LOG("ClientMessage for window 0x%08x\n", event->window);
663     if (event->type == A__NET_WM_STATE) {
664         if (event->format != 32 || event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN) {
665             DLOG("atom in clientmessage is %d, fullscreen is %d\n",
666                     event->data.data32[1], A__NET_WM_STATE_FULLSCREEN);
667             DLOG("not about fullscreen atom\n");
668             return;
669         }
670
671         Con *con = con_by_window_id(event->window);
672         if (con == NULL) {
673             DLOG("Could not get window for client message\n");
674             return;
675         }
676
677         /* Check if the fullscreen state should be toggled */
678         if ((con->fullscreen_mode != CF_NONE &&
679              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
680               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
681             (con->fullscreen_mode == CF_NONE &&
682              (event->data.data32[0] == _NET_WM_STATE_ADD ||
683               event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
684             DLOG("toggling fullscreen\n");
685             con_toggle_fullscreen(con, CF_OUTPUT);
686         }
687
688         tree_render();
689         x_push_changes(croot);
690     } else if (event->type == A_I3_SYNC) {
691         DLOG("i3 sync, yay\n");
692         xcb_window_t window = event->data.data32[0];
693         uint32_t rnd = event->data.data32[1];
694         DLOG("Sending random value %d back to X11 window 0x%08x\n", rnd, window);
695
696         void *reply = scalloc(32);
697         xcb_client_message_event_t *ev = reply;
698
699         ev->response_type = XCB_CLIENT_MESSAGE;
700         ev->window = window;
701         ev->type = A_I3_SYNC;
702         ev->format = 32;
703         ev->data.data32[0] = window;
704         ev->data.data32[1] = rnd;
705
706         xcb_send_event(conn, false, window, XCB_EVENT_MASK_NO_EVENT, (char*)ev);
707         xcb_flush(conn);
708         free(reply);
709     } else {
710         DLOG("unhandled clientmessage\n");
711         return;
712     }
713 }
714
715 #if 0
716 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
717                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
718         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
719          before changing this property. */
720         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
721         return 0;
722 }
723 #endif
724
725 /*
726  * Handles the size hints set by a window, but currently only the part necessary for displaying
727  * clients proportionally inside their frames (mplayer for example)
728  *
729  * See ICCCM 4.1.2.3 for more details
730  *
731  */
732 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
733                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
734     Con *con = con_by_window_id(window);
735     if (con == NULL) {
736         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
737         return false;
738     }
739
740     xcb_size_hints_t size_hints;
741
742         //CLIENT_LOG(client);
743
744     /* If the hints were already in this event, use them, if not, request them */
745     if (reply != NULL)
746         xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
747     else
748         xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
749
750     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
751         // TODO: Minimum size is not yet implemented
752         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
753     }
754
755     bool changed = false;
756     if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
757         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
758             if (con->width_increment != size_hints.width_inc) {
759                 con->width_increment = size_hints.width_inc;
760                 changed = true;
761             }
762         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
763             if (con->height_increment != size_hints.height_inc) {
764                 con->height_increment = size_hints.height_inc;
765                 changed = true;
766             }
767
768         if (changed)
769             DLOG("resize increments changed\n");
770     }
771
772     int base_width = 0, base_height = 0;
773
774     /* base_width/height are the desired size of the window.
775        We check if either the program-specified size or the program-specified
776        min-size is available */
777     if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
778         base_width = size_hints.base_width;
779         base_height = size_hints.base_height;
780     } else if (size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
781         /* TODO: is this right? icccm says not */
782         base_width = size_hints.min_width;
783         base_height = size_hints.min_height;
784     }
785
786     if (base_width != con->base_width ||
787         base_height != con->base_height) {
788         con->base_width = base_width;
789         con->base_height = base_height;
790         DLOG("client's base_height changed to %d\n", base_height);
791         DLOG("client's base_width changed to %d\n", base_width);
792         changed = true;
793     }
794
795     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
796     if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
797         (size_hints.min_aspect_num <= 0) ||
798         (size_hints.min_aspect_den <= 0)) {
799         goto render_and_return;
800     }
801
802     /* XXX: do we really use rect here, not window_rect? */
803     double width = con->rect.width - base_width;
804     double height = con->rect.height - base_height;
805     /* Convert numerator/denominator to a double */
806     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
807     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
808
809     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
810     DLOG("width = %f, height = %f\n", width, height);
811
812     /* Sanity checks, this is user-input, in a way */
813     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
814         goto render_and_return;
815
816     /* Check if we need to set proportional_* variables using the correct ratio */
817     if ((width / height) < min_aspect) {
818         if (con->proportional_width != width ||
819             con->proportional_height != (width / min_aspect)) {
820             con->proportional_width = width;
821             con->proportional_height = width / min_aspect;
822             changed = true;
823         }
824     } else if ((width / height) > max_aspect) {
825         if (con->proportional_width != width ||
826             con->proportional_height != (width / max_aspect)) {
827             con->proportional_width = width;
828             con->proportional_height = width / max_aspect;
829             changed = true;
830         }
831     } else goto render_and_return;
832
833 render_and_return:
834     if (changed)
835         tree_render();
836     FREE(reply);
837     return true;
838 }
839
840 /*
841  * Handles the WM_HINTS property for extracting the urgency state of the window.
842  *
843  */
844 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
845                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
846     Con *con = con_by_window_id(window);
847     if (con == NULL) {
848         DLOG("Received WM_HINTS for unknown client\n");
849         return false;
850     }
851
852     xcb_icccm_wm_hints_t hints;
853
854     if (reply == NULL)
855         if (!(reply = xcb_get_property_reply(conn, xcb_icccm_get_wm_hints(conn, window), NULL)))
856             return false;
857
858     if (!xcb_icccm_get_wm_hints_from_reply(&hints, reply))
859         return false;
860
861     if (!con->urgent && focused == con) {
862         DLOG("Ignoring urgency flag for current client\n");
863         con->window->urgent.tv_sec = 0;
864         con->window->urgent.tv_usec = 0;
865         goto end;
866     }
867
868     /* Update the flag on the client directly */
869     con->urgent = (xcb_icccm_wm_hints_get_urgency(&hints) != 0);
870     //CLIENT_LOG(con);
871     if (con->window) {
872         if (con->urgent) {
873             gettimeofday(&con->window->urgent, NULL);
874         } else {
875             con->window->urgent.tv_sec = 0;
876             con->window->urgent.tv_usec = 0;
877         }
878     }
879     LOG("Urgency flag changed to %d\n", con->urgent);
880
881     Con *ws;
882     /* Set the urgency flag on the workspace, if a workspace could be found
883      * (for dock clients, that is not the case). */
884     if ((ws = con_get_workspace(con)) != NULL)
885         workspace_update_urgent_flag(ws);
886
887     tree_render();
888
889 end:
890     if (con->window)
891         window_update_hints(con->window, reply);
892     else free(reply);
893     return true;
894 }
895
896 /*
897  * Handles the transient for hints set by a window, signalizing that this window is a popup window
898  * for some other window.
899  *
900  * See ICCCM 4.1.2.6 for more details
901  *
902  */
903 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
904                          xcb_atom_t name, xcb_get_property_reply_t *prop) {
905     Con *con;
906
907     if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
908         DLOG("No such window\n");
909         return false;
910     }
911
912     if (prop == NULL) {
913         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
914                                 false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32), NULL);
915         if (prop == NULL)
916             return false;
917     }
918
919     window_update_transient_for(con->window, prop);
920
921     return true;
922 }
923
924 /*
925  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
926  * toolwindow (or similar) and to which window it belongs (logical parent).
927  *
928  */
929 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
930                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
931     Con *con;
932     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
933         return false;
934
935     if (prop == NULL) {
936         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
937                                 false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32), NULL);
938         if (prop == NULL)
939             return false;
940     }
941
942     window_update_leader(con->window, prop);
943
944     return true;
945 }
946
947 /*
948  * Handles FocusIn events which are generated by clients (i3’s focus changes
949  * don’t generate FocusIn events due to a different EventMask) and updates the
950  * decorations accordingly.
951  *
952  */
953 static void handle_focus_in(xcb_focus_in_event_t *event) {
954     DLOG("focus change in, for window 0x%08x\n", event->event);
955     Con *con;
956     if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
957         return;
958     DLOG("That is con %p / %s\n", con, con->name);
959
960     if (event->mode == XCB_NOTIFY_MODE_GRAB ||
961         event->mode == XCB_NOTIFY_MODE_UNGRAB) {
962         DLOG("FocusIn event for grab/ungrab, ignoring\n");
963         return;
964     }
965
966     if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
967         DLOG("notify detail is pointer, ignoring this event\n");
968         return;
969     }
970
971     if (focused_id == event->event) {
972         DLOG("focus matches the currently focused window, not doing anything\n");
973         return;
974     }
975
976     /* Skip dock clients, they cannot get the i3 focus. */
977     if (con->parent->type == CT_DOCKAREA) {
978         DLOG("This is a dock client, not focusing.\n");
979         return;
980     }
981
982     DLOG("focus is different, updating decorations\n");
983
984     /* Get the currently focused workspace to check if the focus change also
985      * involves changing workspaces. If so, we need to call workspace_show() to
986      * correctly update state and send the IPC event. */
987     Con *ws = con_get_workspace(con);
988     if (ws != con_get_workspace(focused))
989         workspace_show(ws);
990
991     con_focus(con);
992     /* We update focused_id because we don’t need to set focus again */
993     focused_id = event->event;
994     x_push_changes(croot);
995     return;
996 }
997
998 /* Returns false if the event could not be processed (e.g. the window could not
999  * be found), true otherwise */
1000 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);
1001
1002 struct property_handler_t {
1003     xcb_atom_t atom;
1004     uint32_t long_len;
1005     cb_property_handler_t cb;
1006 };
1007
1008 static struct property_handler_t property_handlers[] = {
1009     { 0, 128, handle_windowname_change },
1010     { 0, UINT_MAX, handle_hints },
1011     { 0, 128, handle_windowname_change_legacy },
1012     { 0, UINT_MAX, handle_normal_hints },
1013     { 0, UINT_MAX, handle_clientleader_change },
1014     { 0, UINT_MAX, handle_transient_for },
1015     { 0, 128, handle_windowrole_change }
1016 };
1017 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
1018
1019 /*
1020  * Sets the appropriate atoms for the property handlers after the atoms were
1021  * received from X11
1022  *
1023  */
1024 void property_handlers_init(void) {
1025
1026     sn_monitor_context_new(sndisplay, conn_screen, startup_monitor_event, NULL, NULL);
1027
1028     property_handlers[0].atom = A__NET_WM_NAME;
1029     property_handlers[1].atom = XCB_ATOM_WM_HINTS;
1030     property_handlers[2].atom = XCB_ATOM_WM_NAME;
1031     property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
1032     property_handlers[4].atom = A_WM_CLIENT_LEADER;
1033     property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
1034     property_handlers[6].atom = A_WM_WINDOW_ROLE;
1035 }
1036
1037 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
1038     struct property_handler_t *handler = NULL;
1039     xcb_get_property_reply_t *propr = NULL;
1040
1041     for (int c = 0; c < sizeof(property_handlers) / sizeof(struct property_handler_t); c++) {
1042         if (property_handlers[c].atom != atom)
1043             continue;
1044
1045         handler = &property_handlers[c];
1046         break;
1047     }
1048
1049     if (handler == NULL) {
1050         //DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
1051         return;
1052     }
1053
1054     if (state != XCB_PROPERTY_DELETE) {
1055         xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
1056         propr = xcb_get_property_reply(conn, cookie, 0);
1057     }
1058
1059     /* the handler will free() the reply unless it returns false */
1060     if (!handler->cb(NULL, conn, state, window, atom, propr))
1061         FREE(propr);
1062 }
1063
1064 /*
1065  * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
1066  * event type.
1067  *
1068  */
1069 void handle_event(int type, xcb_generic_event_t *event) {
1070     if (randr_base > -1 &&
1071         type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
1072         handle_screen_change(event);
1073         return;
1074     }
1075
1076     switch (type) {
1077         case XCB_KEY_PRESS:
1078             handle_key_press((xcb_key_press_event_t*)event);
1079             break;
1080
1081         case XCB_BUTTON_PRESS:
1082             handle_button_press((xcb_button_press_event_t*)event);
1083             break;
1084
1085         case XCB_MAP_REQUEST:
1086             handle_map_request((xcb_map_request_event_t*)event);
1087             break;
1088
1089         case XCB_UNMAP_NOTIFY:
1090             handle_unmap_notify_event((xcb_unmap_notify_event_t*)event);
1091             break;
1092
1093         case XCB_DESTROY_NOTIFY:
1094             handle_destroy_notify_event((xcb_destroy_notify_event_t*)event);
1095             break;
1096
1097         case XCB_EXPOSE:
1098             handle_expose_event((xcb_expose_event_t*)event);
1099             break;
1100
1101         case XCB_MOTION_NOTIFY:
1102             handle_motion_notify((xcb_motion_notify_event_t*)event);
1103             break;
1104
1105         /* Enter window = user moved his mouse over the window */
1106         case XCB_ENTER_NOTIFY:
1107             handle_enter_notify((xcb_enter_notify_event_t*)event);
1108             break;
1109
1110         /* Client message are sent to the root window. The only interesting
1111          * client message for us is _NET_WM_STATE, we honour
1112          * _NET_WM_STATE_FULLSCREEN */
1113         case XCB_CLIENT_MESSAGE:
1114             handle_client_message((xcb_client_message_event_t*)event);
1115             break;
1116
1117         /* Configure request = window tried to change size on its own */
1118         case XCB_CONFIGURE_REQUEST:
1119             handle_configure_request((xcb_configure_request_event_t*)event);
1120             break;
1121
1122         /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1123         case XCB_MAPPING_NOTIFY:
1124             handle_mapping_notify((xcb_mapping_notify_event_t*)event);
1125             break;
1126
1127         case XCB_FOCUS_IN:
1128             handle_focus_in((xcb_focus_in_event_t*)event);
1129             break;
1130
1131         case XCB_PROPERTY_NOTIFY: {
1132             xcb_property_notify_event_t *e = (xcb_property_notify_event_t*)event;
1133             last_timestamp = e->time;
1134             property_notify(e->state, e->window, e->atom);
1135             break;
1136         }
1137
1138         default:
1139             //DLOG("Unhandled event of type %d\n", type);
1140             break;
1141     }
1142 }