diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-26 11:54:39 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-10-26 11:54:39 -0400 |
commit | 32b848bd467537767001f5da28e32f02d4b7c8dc (patch) | |
tree | 0aa24bb91bcb9446cc75977f582727de5384c60b /xwayland/xwm.c | |
parent | 930ab0685738a150c6e23b6030877f479accf50f (diff) |
xwm: handle focus in
Diffstat (limited to 'xwayland/xwm.c')
-rw-r--r-- | xwayland/xwm.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/xwayland/xwm.c b/xwayland/xwm.c index afbc1387..01d09768 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -746,6 +746,21 @@ static void handle_client_message(struct wlr_xwm *xwm, } } +static void handle_focus_in(struct wlr_xwm *xwm, + xcb_focus_in_event_t *ev) { + // Do not interfere with grabs + if (ev->mode == XCB_NOTIFY_MODE_GRAB || + ev->mode == XCB_NOTIFY_MODE_UNGRAB) { + return; + } + + // Do not let X clients change the focus behind the compositor's + // back. Reset the focus to the old one if it changed. + if (!xwm->focus_surface || ev->event != xwm->focus_surface->window_id) { + xwm_send_focus_window(xwm, xwm->focus_surface); + } +} + /* This is in xcb/xcb_event.h, but pulling xcb-util just for a constant * others redefine anyway is meh */ @@ -786,6 +801,9 @@ static int x11_event_handler(int fd, uint32_t mask, void *data) { case XCB_CLIENT_MESSAGE: handle_client_message(xwm, (xcb_client_message_event_t *)event); break; + case XCB_FOCUS_IN: + handle_focus_in(xwm, (xcb_focus_in_event_t *)event); + break; default: wlr_log(L_DEBUG, "X11 event: %d", event->response_type & XCB_EVENT_RESPONSE_TYPE_MASK); |