mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
xwm: handle focus in
This commit is contained in:
parent
930ab06857
commit
32b848bd46
1 changed files with 18 additions and 0 deletions
|
@ -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
|
/* This is in xcb/xcb_event.h, but pulling xcb-util just for a constant
|
||||||
* others redefine anyway is meh
|
* 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:
|
case XCB_CLIENT_MESSAGE:
|
||||||
handle_client_message(xwm, (xcb_client_message_event_t *)event);
|
handle_client_message(xwm, (xcb_client_message_event_t *)event);
|
||||||
break;
|
break;
|
||||||
|
case XCB_FOCUS_IN:
|
||||||
|
handle_focus_in(xwm, (xcb_focus_in_event_t *)event);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
wlr_log(L_DEBUG, "X11 event: %d",
|
wlr_log(L_DEBUG, "X11 event: %d",
|
||||||
event->response_type & XCB_EVENT_RESPONSE_TYPE_MASK);
|
event->response_type & XCB_EVENT_RESPONSE_TYPE_MASK);
|
||||||
|
|
Loading…
Reference in a new issue