2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
10 #include <xcb/randr.h>
12 #include <X11/XKBlib.h>
18 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
19 since it’d trigger an infinite loop of switching between the different windows when
20 changing workspaces */
21 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
24 * Adds the given sequence to the list of events which are ignored.
25 * If this ignore should only affect a specific response_type, pass
26 * response_type, otherwise, pass -1.
28 * Every ignored sequence number gets garbage collected after 5 seconds.
31 void add_ignore_event(const int sequence, const int response_type) {
32 struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
34 event->sequence = sequence;
35 event->response_type = response_type;
36 event->added = time(NULL);
38 SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
42 * Checks if the given sequence is ignored and returns true if so.
45 bool event_is_ignored(const int sequence, const int response_type) {
46 struct Ignore_Event *event;
47 time_t now = time(NULL);
48 for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
49 if ((now - event->added) > 5) {
50 struct Ignore_Event *save = event;
51 event = SLIST_NEXT(event, ignore_events);
52 SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
54 } else event = SLIST_NEXT(event, ignore_events);
57 SLIST_FOREACH(event, &ignore_events, ignore_events) {
58 if (event->sequence != sequence)
61 if (event->response_type != -1 &&
62 event->response_type != response_type)
65 /* instead of removing a sequence number we better wait until it gets
66 * garbage collected. it may generate multiple events (there are multiple
67 * enter_notifies for one configure_request, for example). */
68 //SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
78 * There was a key press. We compare this key code with our bindings table and pass
79 * the bound action to parse_command().
82 static int handle_key_press(xcb_key_press_event_t *event) {
83 DLOG("Keypress %d, state raw = %d\n", event->detail, event->state);
85 /* Remove the numlock bit, all other bits are modifiers we can bind to */
86 uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
87 DLOG("(removed numlock, state = %d)\n", state_filtered);
88 /* Only use the lower 8 bits of the state (modifier masks) so that mouse
89 * button masks are filtered out */
90 state_filtered &= 0xFF;
91 DLOG("(removed upper 8 bits, state = %d)\n", state_filtered);
93 if (xkb_current_group == XkbGroup2Index)
94 state_filtered |= BIND_MODE_SWITCH;
96 DLOG("(checked mode_switch, state %d)\n", state_filtered);
98 /* Find the binding */
99 Binding *bind = get_binding(state_filtered, event->detail);
101 /* No match? Then the user has Mode_switch enabled but does not have a
102 * specific keybinding. Fall back to the default keybindings (without
103 * Mode_switch). Makes it much more convenient for users of a hybrid
104 * layout (like us, ru). */
106 state_filtered &= ~(BIND_MODE_SWITCH);
107 DLOG("no match, new state_filtered = %d\n", state_filtered);
108 if ((bind = get_binding(state_filtered, event->detail)) == NULL) {
109 ELOG("Could not lookup key binding (modifiers %d, keycode %d)\n",
110 state_filtered, event->detail);
115 char *json_result = parse_cmd(bind->command);
121 * Called with coordinates of an enter_notify event or motion_notify event
122 * to check if the user crossed virtual screen boundaries and adjust the
123 * current workspace, if so.
126 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
129 /* If the user disable focus follows mouse, we have nothing to do here */
130 if (config.disable_focus_follows_mouse)
133 if ((output = get_output_containing(x, y)) == NULL) {
134 ELOG("ERROR: No such screen\n");
138 if (output->con == NULL) {
139 ELOG("ERROR: The screen is not recognized by i3 (no container associated)\n");
143 /* Focus the output on which the user moved his cursor */
144 Con *old_focused = focused;
145 con_focus(con_descend_focused(output_get_content(output->con)));
147 /* If the focus changed, we re-render to get updated decorations */
148 if (old_focused != focused)
153 * When the user moves the mouse pointer onto a window, this callback gets called.
156 static int handle_enter_notify(xcb_enter_notify_event_t *event) {
159 DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n",
160 event->event, event->mode, event->detail, event->sequence);
161 DLOG("coordinates %d, %d\n", event->event_x, event->event_y);
162 if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
163 DLOG("This was not a normal notify, ignoring\n");
166 /* Some events are not interesting, because they were not generated
167 * actively by the user, but by reconfiguration of windows */
168 if (event_is_ignored(event->sequence, XCB_ENTER_NOTIFY)) {
169 DLOG("Event ignored\n");
173 bool enter_child = false;
174 /* Get container by frame or by child window */
175 if ((con = con_by_frame_id(event->event)) == NULL) {
176 con = con_by_window_id(event->event);
180 /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
182 DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
183 check_crossing_screen_boundary(event->root_x, event->root_y);
187 if (con->parent->type == CT_DOCKAREA) {
188 DLOG("Ignoring, this is a dock client\n");
192 /* see if the user entered the window on a certain window decoration */
193 int layout = (enter_child ? con->parent->layout : con->layout);
194 if (layout == L_DEFAULT) {
196 TAILQ_FOREACH(child, &(con->nodes_head), nodes)
197 if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
198 LOG("using child %p / %s instead!\n", child, child->name);
205 if (client->workspace != c_ws && client->workspace->output == c_ws->output) {
206 /* This can happen when a client gets assigned to a different workspace than
207 * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
208 * an enter_notify will follow. */
209 DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
214 if (config.disable_focus_follows_mouse)
217 con_focus(con_descend_focused(con));
224 * When the user moves the mouse but does not change the active window
225 * (e.g. when having no windows opened but moving mouse on the root screen
226 * and crossing virtual screen boundaries), this callback gets called.
229 static int handle_motion_notify(xcb_motion_notify_event_t *event) {
230 /* Skip events where the pointer was over a child window, we are only
231 * interested in events on the root window. */
232 if (event->child != 0)
236 if ((con = con_by_frame_id(event->event)) == NULL) {
237 check_crossing_screen_boundary(event->root_x, event->root_y);
241 if (config.disable_focus_follows_mouse)
244 if (con->layout != L_DEFAULT)
247 /* see over which rect the user is */
249 TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
250 if (!rect_contains(current->deco_rect, event->event_x, event->event_y))
253 /* We found the rect, let’s see if this window is focused */
254 if (TAILQ_FIRST(&(con->focus_head)) == current)
258 x_push_changes(croot);
266 * Called when the keyboard mapping changes (for example by using Xmodmap),
267 * we need to update our key bindings then (re-translate symbols).
270 static int handle_mapping_notify(xcb_mapping_notify_event_t *event) {
271 if (event->request != XCB_MAPPING_KEYBOARD &&
272 event->request != XCB_MAPPING_MODIFIER)
275 DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
276 xcb_refresh_keyboard_mapping(keysyms, event);
278 xcb_get_numlock_mask(conn);
280 ungrab_all_keys(conn);
282 grab_all_keys(conn, false);
288 * A new window appeared on the screen (=was mapped), so let’s manage it.
291 static int handle_map_request(xcb_map_request_event_t *event) {
292 xcb_get_window_attributes_cookie_t cookie;
294 cookie = xcb_get_window_attributes_unchecked(conn, event->window);
296 DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
297 add_ignore_event(event->sequence, -1);
299 manage_window(event->window, cookie, false);
300 x_push_changes(croot);
305 * Configure requests are received when the application wants to resize windows on their own.
307 * We generate a synthethic configure notify event to signalize the client its "new" position.
310 static int handle_configure_request(xcb_configure_request_event_t *event) {
313 DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
314 event->window, event->x, event->y, event->width, event->height);
316 /* For unmanaged windows, we just execute the configure request. As soon as
317 * it gets mapped, we will take over anyways. */
318 if ((con = con_by_window_id(event->window)) == NULL) {
319 DLOG("Configure request for unmanaged window, can do that.\n");
324 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
325 if (event->value_mask & mask_member) { \
326 mask |= mask_member; \
327 values[c++] = event->event_member; \
331 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
332 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
333 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
334 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
335 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
336 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
337 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
339 xcb_configure_window(conn, event->window, mask, values);
345 DLOG("Configure request!\n");
346 if (con_is_floating(con) && con_is_leaf(con)) {
347 /* find the height for the decorations */
348 int deco_height = config.font.height + 5;
349 /* we actually need to apply the size/position changes to the *parent*
351 Rect bsr = con_border_style_rect(con);
352 if (con->border_style == BS_NORMAL) {
353 bsr.y += deco_height;
354 bsr.height -= deco_height;
356 Con *floatingcon = con->parent;
357 DLOG("Container is a floating leaf node, will do that.\n");
358 if (event->value_mask & XCB_CONFIG_WINDOW_X) {
359 floatingcon->rect.x = event->x + (-1) * bsr.x;
360 DLOG("proposed x = %d, new x is %d\n", event->x, floatingcon->rect.x);
362 if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
363 floatingcon->rect.y = event->y + (-1) * bsr.y;
364 DLOG("proposed y = %d, new y is %d\n", event->y, floatingcon->rect.y);
366 if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
367 floatingcon->rect.width = event->width + (-1) * bsr.width;
368 floatingcon->rect.width += con->border_width * 2;
369 DLOG("proposed width = %d, new width is %d (x11 border %d)\n", event->width, floatingcon->rect.width, con->border_width);
371 if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
372 floatingcon->rect.height = event->height + (-1) * bsr.height;
373 floatingcon->rect.height += con->border_width * 2;
374 DLOG("proposed height = %d, new height is %d (x11 border %d)\n", event->height, floatingcon->rect.height, con->border_width);
376 floating_maybe_reassign_ws(floatingcon);
380 /* Dock windows can be reconfigured in their height */
381 if (con->parent && con->parent->type == CT_DOCKAREA) {
382 DLOG("Dock window, only height reconfiguration allowed\n");
383 if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
384 DLOG("Height given, changing\n");
386 con->geometry.height = event->height;
391 fake_absolute_configure_notify(con);
398 * Configuration notifies are only handled because we need to set up ignore for
399 * the following enter notify events.
402 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
403 DLOG("configure_event, sequence %d\n", event->sequence);
404 /* We ignore this sequence twice because events for child and frame should be ignored */
405 add_ignore_event(event->sequence);
406 add_ignore_event(event->sequence);
413 * Gets triggered upon a RandR screen change event, that is when the user
414 * changes the screen configuration in any way (mode, position, …)
417 static int handle_screen_change(xcb_generic_event_t *e) {
418 DLOG("RandR screen change\n");
420 randr_query_outputs();
422 ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
428 * Our window decorations were unmapped. That means, the window will be killed
429 * now, so we better clean up before.
432 static int handle_unmap_notify_event(xcb_unmap_notify_event_t *event) {
433 // XXX: this is commented out because in src/x.c we disable EnterNotify events
434 /* we need to ignore EnterNotify events which will be generated because a
435 * different window is visible now */
436 //add_ignore_event(event->sequence, XCB_ENTER_NOTIFY);
438 DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
439 Con *con = con_by_window_id(event->window);
441 /* This could also be an UnmapNotify for the frame. We need to
442 * decrement the ignore_unmap counter. */
443 con = con_by_frame_id(event->window);
445 LOG("Not a managed window, ignoring UnmapNotify event\n");
448 if (con->ignore_unmap > 0)
450 DLOG("ignore_unmap = %d for frame of container %p\n", con->ignore_unmap, con);
454 if (con->ignore_unmap > 0) {
455 DLOG("ignore_unmap = %d, dec\n", con->ignore_unmap);
460 tree_close(con, DONT_KILL_WINDOW, false);
462 x_push_changes(croot);
466 if (client == NULL) {
467 DLOG("not a managed window. Ignoring.\n");
469 /* This was most likely the destroyed frame of a client which is
470 * currently being unmapped, so we add this sequence (again!) to
471 * the ignore list (enter_notify events will get sent for both,
472 * the child and its frame). */
473 add_ignore_event(event->sequence);
481 /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
482 bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
483 bool workspace_focused = (c_ws == client->workspace);
484 Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
486 /* If this workspace is currently visible, we don’t delete it */
487 if (workspace_is_visible(client->workspace))
488 workspace_empty = false;
490 if (workspace_empty) {
491 client->workspace->output = NULL;
492 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
495 /* Remove the urgency flag if set */
496 client->urgent = false;
497 workspace_update_urgent_flag(client->workspace);
506 * A destroy notify event is sent when the window is not unmapped, but
507 * immediately destroyed (for example when starting a window and immediately
508 * killing the program which started it).
510 * We just pass on the event to the unmap notify handler (by copying the
511 * important fields in the event data structure).
514 static int handle_destroy_notify_event(xcb_destroy_notify_event_t *event) {
515 DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
517 xcb_unmap_notify_event_t unmap;
518 unmap.sequence = event->sequence;
519 unmap.event = event->event;
520 unmap.window = event->window;
522 return handle_unmap_notify_event(&unmap);
526 * Called when a window changes its title
529 static bool handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
530 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
532 if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
535 window_update_name(con->window, prop, false);
537 x_push_changes(croot);
543 * Handles legacy window name updates (WM_NAME), see also src/window.c,
544 * window_update_name_legacy().
547 static bool handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
548 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
550 if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
553 window_update_name_legacy(con->window, prop, false);
555 x_push_changes(croot);
562 * Updates the client’s WM_CLASS property
565 static int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
566 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
568 if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
571 window_update_class(con->window, prop, false);
578 * Expose event means we should redraw our windows (= title bar)
581 static int handle_expose_event(xcb_expose_event_t *event) {
584 /* event->count is the number of minimum remaining expose events for this
585 * window, so we skip all events but the last one */
586 if (event->count != 0)
589 DLOG("window = %08x\n", event->window);
591 if ((parent = con_by_frame_id(event->window)) == NULL) {
592 LOG("expose event for unknown window, ignoring\n");
596 /* re-render the parent (recursively, if it’s a split con) */
597 x_deco_recurse(parent);
604 * Handle client messages (EWMH)
607 static int handle_client_message(xcb_client_message_event_t *event) {
608 LOG("ClientMessage for window 0x%08x\n", event->window);
609 if (event->type == A__NET_WM_STATE) {
610 if (event->format != 32 || event->data.data32[1] != A__NET_WM_STATE_FULLSCREEN) {
611 DLOG("atom in clientmessage is %d, fullscreen is %d\n",
612 event->data.data32[1], A__NET_WM_STATE_FULLSCREEN);
613 DLOG("not about fullscreen atom\n");
617 Con *con = con_by_window_id(event->window);
619 DLOG("Could not get window for client message\n");
623 /* Check if the fullscreen state should be toggled */
624 if ((con->fullscreen_mode != CF_NONE &&
625 (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
626 event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
627 (con->fullscreen_mode == CF_NONE &&
628 (event->data.data32[0] == _NET_WM_STATE_ADD ||
629 event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
630 DLOG("toggling fullscreen\n");
631 con_toggle_fullscreen(con, CF_OUTPUT);
635 x_push_changes(croot);
637 ELOG("unhandled clientmessage\n");
645 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
646 xcb_atom_t atom, xcb_get_property_reply_t *property) {
647 /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
648 before changing this property. */
649 ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
655 * Handles the size hints set by a window, but currently only the part necessary for displaying
656 * clients proportionally inside their frames (mplayer for example)
658 * See ICCCM 4.1.2.3 for more details
661 static bool handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
662 xcb_atom_t name, xcb_get_property_reply_t *reply) {
663 Con *con = con_by_window_id(window);
665 DLOG("Received WM_NORMAL_HINTS for unknown client\n");
669 xcb_size_hints_t size_hints;
671 //CLIENT_LOG(client);
673 /* If the hints were already in this event, use them, if not, request them */
675 xcb_icccm_get_wm_size_hints_from_reply(&size_hints, reply);
677 xcb_icccm_get_wm_normal_hints_reply(conn, xcb_icccm_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
679 if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE)) {
680 // TODO: Minimum size is not yet implemented
681 DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
684 bool changed = false;
685 if ((size_hints.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC)) {
686 if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
687 if (con->width_increment != size_hints.width_inc) {
688 con->width_increment = size_hints.width_inc;
691 if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
692 if (con->height_increment != size_hints.height_inc) {
693 con->height_increment = size_hints.height_inc;
698 DLOG("resize increments changed\n");
701 int base_width = 0, base_height = 0;
703 /* base_width/height are the desired size of the window.
704 We check if either the program-specified size or the program-specified
705 min-size is available */
706 if (size_hints.flags & XCB_ICCCM_SIZE_HINT_BASE_SIZE) {
707 base_width = size_hints.base_width;
708 base_height = size_hints.base_height;
709 } else if (size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE) {
710 /* TODO: is this right? icccm says not */
711 base_width = size_hints.min_width;
712 base_height = size_hints.min_height;
715 if (base_width != con->base_width ||
716 base_height != con->base_height) {
717 con->base_width = base_width;
718 con->base_height = base_height;
719 DLOG("client's base_height changed to %d\n", base_height);
720 DLOG("client's base_width changed to %d\n", base_width);
724 /* If no aspect ratio was set or if it was invalid, we ignore the hints */
725 if (!(size_hints.flags & XCB_ICCCM_SIZE_HINT_P_ASPECT) ||
726 (size_hints.min_aspect_num <= 0) ||
727 (size_hints.min_aspect_den <= 0)) {
728 goto render_and_return;
731 /* XXX: do we really use rect here, not window_rect? */
732 double width = con->rect.width - base_width;
733 double height = con->rect.height - base_height;
734 /* Convert numerator/denominator to a double */
735 double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
736 double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
738 DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
739 DLOG("width = %f, height = %f\n", width, height);
741 /* Sanity checks, this is user-input, in a way */
742 if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
743 goto render_and_return;
745 /* Check if we need to set proportional_* variables using the correct ratio */
746 if ((width / height) < min_aspect) {
747 if (con->proportional_width != width ||
748 con->proportional_height != (width / min_aspect)) {
749 con->proportional_width = width;
750 con->proportional_height = width / min_aspect;
753 } else if ((width / height) > max_aspect) {
754 if (con->proportional_width != width ||
755 con->proportional_height != (width / max_aspect)) {
756 con->proportional_width = width;
757 con->proportional_height = width / max_aspect;
760 } else goto render_and_return;
770 * Handles the WM_HINTS property for extracting the urgency state of the window.
773 static bool handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
774 xcb_atom_t name, xcb_get_property_reply_t *reply) {
775 Con *con = con_by_window_id(window);
777 DLOG("Received WM_HINTS for unknown client\n");
781 xcb_icccm_wm_hints_t hints;
784 if (!xcb_icccm_get_wm_hints_from_reply(&hints, reply))
787 if (!xcb_icccm_get_wm_hints_reply(conn, xcb_icccm_get_wm_hints_unchecked(conn, con->window->id), &hints, NULL))
791 if (!con->urgent && focused == con) {
792 DLOG("Ignoring urgency flag for current client\n");
797 /* Update the flag on the client directly */
798 con->urgent = (xcb_icccm_wm_hints_get_urgency(&hints) != 0);
800 LOG("Urgency flag changed to %d\n", con->urgent);
803 /* Set the urgency flag on the workspace, if a workspace could be found
804 * (for dock clients, that is not the case). */
805 if ((ws = con_get_workspace(con)) != NULL)
806 workspace_update_urgent_flag(ws);
811 /* If the workspace this client is on is not visible, we need to redraw
812 * the workspace bar */
813 if (!workspace_is_visible(client->workspace)) {
814 Output *output = client->workspace->output;
815 render_workspace(conn, output, output->current_workspace);
825 * Handles the transient for hints set by a window, signalizing that this window is a popup window
826 * for some other window.
828 * See ICCCM 4.1.2.6 for more details
831 static bool handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
832 xcb_atom_t name, xcb_get_property_reply_t *prop) {
835 if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
836 DLOG("No such window\n");
841 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
842 false, window, XCB_ATOM_WM_TRANSIENT_FOR, XCB_ATOM_WINDOW, 0, 32), NULL);
847 window_update_transient_for(con->window, prop);
849 // TODO: put window in floating mode if con->window->transient_for != XCB_NONE:
851 if (client->floating == FLOATING_AUTO_OFF) {
852 DLOG("This is a popup window, putting into floating\n");
853 toggle_floating_mode(conn, client, true);
861 * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
862 * toolwindow (or similar) and to which window it belongs (logical parent).
865 static bool handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
866 xcb_atom_t name, xcb_get_property_reply_t *prop) {
868 if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
872 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
873 false, window, A_WM_CLIENT_LEADER, XCB_ATOM_WINDOW, 0, 32), NULL);
878 window_update_leader(con->window, prop);
884 * Handles FocusIn events which are generated by clients (i3’s focus changes
885 * don’t generate FocusIn events due to a different EventMask) and updates the
886 * decorations accordingly.
889 static int handle_focus_in(xcb_focus_in_event_t *event) {
890 DLOG("focus change in, for window 0x%08x\n", event->event);
892 if ((con = con_by_window_id(event->event)) == NULL || con->window == NULL)
894 DLOG("That is con %p / %s\n", con, con->name);
896 if (event->mode == XCB_NOTIFY_MODE_GRAB ||
897 event->mode == XCB_NOTIFY_MODE_UNGRAB) {
898 DLOG("FocusIn event for grab/ungrab, ignoring\n");
902 if (event->detail == XCB_NOTIFY_DETAIL_POINTER) {
903 DLOG("notify detail is pointer, ignoring this event\n");
907 if (focused_id == event->event) {
908 DLOG("focus matches the currently focused window, not doing anything\n");
912 DLOG("focus is different, updating decorations\n");
914 /* We update focused_id because we don’t need to set focus again */
915 focused_id = event->event;
916 x_push_changes(croot);
920 /* Returns false if the event could not be processed (e.g. the window could not
921 * be found), true otherwise */
922 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);
924 struct property_handler_t {
927 cb_property_handler_t cb;
930 static struct property_handler_t property_handlers[] = {
931 { 0, 128, handle_windowname_change },
932 { 0, UINT_MAX, handle_hints },
933 { 0, 128, handle_windowname_change_legacy },
934 { 0, UINT_MAX, handle_normal_hints },
935 { 0, UINT_MAX, handle_clientleader_change },
936 { 0, UINT_MAX, handle_transient_for }
938 #define NUM_HANDLERS (sizeof(property_handlers) / sizeof(struct property_handler_t))
941 * Sets the appropriate atoms for the property handlers after the atoms were
945 void property_handlers_init() {
946 property_handlers[0].atom = A__NET_WM_NAME;
947 property_handlers[1].atom = XCB_ATOM_WM_HINTS;
948 property_handlers[2].atom = XCB_ATOM_WM_NAME;
949 property_handlers[3].atom = XCB_ATOM_WM_NORMAL_HINTS;
950 property_handlers[4].atom = A_WM_CLIENT_LEADER;
951 property_handlers[5].atom = XCB_ATOM_WM_TRANSIENT_FOR;
954 static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom) {
955 struct property_handler_t *handler = NULL;
956 xcb_get_property_reply_t *propr = NULL;
958 for (int c = 0; c < sizeof(property_handlers) / sizeof(struct property_handler_t); c++) {
959 if (property_handlers[c].atom != atom)
962 handler = &property_handlers[c];
966 if (handler == NULL) {
967 DLOG("Unhandled property notify for atom %d (0x%08x)\n", atom, atom);
971 if (state != XCB_PROPERTY_DELETE) {
972 xcb_get_property_cookie_t cookie = xcb_get_property(conn, 0, window, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, handler->long_len);
973 propr = xcb_get_property_reply(conn, cookie, 0);
976 /* the handler will free() the reply unless it returns false */
977 if (!handler->cb(NULL, conn, state, window, atom, propr))
982 * Takes an xcb_generic_event_t and calls the appropriate handler, based on the
986 void handle_event(int type, xcb_generic_event_t *event) {
987 if (randr_base > -1 &&
988 type == randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY) {
989 handle_screen_change(event);
995 handle_key_press((xcb_key_press_event_t*)event);
998 case XCB_BUTTON_PRESS:
999 handle_button_press((xcb_button_press_event_t*)event);
1002 case XCB_MAP_REQUEST:
1003 handle_map_request((xcb_map_request_event_t*)event);
1006 case XCB_UNMAP_NOTIFY:
1007 handle_unmap_notify_event((xcb_unmap_notify_event_t*)event);
1010 case XCB_DESTROY_NOTIFY:
1011 handle_destroy_notify_event((xcb_destroy_notify_event_t*)event);
1015 handle_expose_event((xcb_expose_event_t*)event);
1018 case XCB_MOTION_NOTIFY:
1019 handle_motion_notify((xcb_motion_notify_event_t*)event);
1022 /* Enter window = user moved his mouse over the window */
1023 case XCB_ENTER_NOTIFY:
1024 handle_enter_notify((xcb_enter_notify_event_t*)event);
1027 /* Client message are sent to the root window. The only interesting
1028 * client message for us is _NET_WM_STATE, we honour
1029 * _NET_WM_STATE_FULLSCREEN */
1030 case XCB_CLIENT_MESSAGE:
1031 handle_client_message((xcb_client_message_event_t*)event);
1034 /* Configure request = window tried to change size on its own */
1035 case XCB_CONFIGURE_REQUEST:
1036 handle_configure_request((xcb_configure_request_event_t*)event);
1039 /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
1040 case XCB_MAPPING_NOTIFY:
1041 handle_mapping_notify((xcb_mapping_notify_event_t*)event);
1045 handle_focus_in((xcb_focus_in_event_t*)event);
1048 case XCB_PROPERTY_NOTIFY:
1049 DLOG("Property notify\n");
1050 xcb_property_notify_event_t *e = (xcb_property_notify_event_t*)event;
1051 property_notify(e->state, e->window, e->atom);
1055 DLOG("Unhandled event of type %d\n", type);