Merge pull request #223 from versusvoid/xwayland-activate
Activate only active xwayland views
This commit is contained in:
commit
6aafc2f61a
|
@ -137,11 +137,14 @@ static void set_view_focus(struct roots_input *input,
|
|||
size_t index = 0;
|
||||
for (size_t i = 0; i < desktop->views->length; ++i) {
|
||||
struct roots_view *_view = desktop->views->items[i];
|
||||
view_activate(_view, _view == view);
|
||||
if (_view != view) {
|
||||
view_activate(_view, false);
|
||||
}
|
||||
if (view == _view) {
|
||||
index = i;
|
||||
}
|
||||
}
|
||||
view_activate(view, true);
|
||||
// TODO: list_swap
|
||||
list_del(desktop->views, index);
|
||||
list_add(desktop->views, view);
|
||||
|
|
|
@ -39,8 +39,12 @@ static void handle_request_configure(struct wl_listener *listener, void *data) {
|
|||
}
|
||||
|
||||
static void activate(struct roots_view *view, bool active) {
|
||||
wlr_xwayland_surface_activate(view->desktop->xwayland,
|
||||
view->xwayland_surface);
|
||||
if (active) {
|
||||
wlr_xwayland_surface_activate(view->desktop->xwayland,
|
||||
view->xwayland_surface);
|
||||
} else {
|
||||
wlr_xwayland_surface_activate(view->desktop->xwayland, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
void handle_xwayland_surface(struct wl_listener *listener, void *data) {
|
||||
|
|
|
@ -705,19 +705,25 @@ static void xcb_init_wm(struct wlr_xwm *xwm) {
|
|||
void wlr_xwayland_surface_activate(struct wlr_xwayland *wlr_xwayland,
|
||||
struct wlr_xwayland_surface *surface) {
|
||||
struct wlr_xwm *xwm = wlr_xwayland->xwm;
|
||||
xcb_client_message_event_t m = {0};
|
||||
m.response_type = XCB_CLIENT_MESSAGE;
|
||||
m.format = 32;
|
||||
m.window = surface->window_id;
|
||||
m.type = xwm->atoms[WM_PROTOCOLS];
|
||||
m.data.data32[0] = xwm->atoms[WM_TAKE_FOCUS];
|
||||
m.data.data32[1] = XCB_TIME_CURRENT_TIME;
|
||||
xcb_send_event_checked(xwm->xcb_conn, 0, surface->window_id,
|
||||
XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, (char*)&m);
|
||||
xcb_set_input_focus_checked(xwm->xcb_conn, XCB_INPUT_FOCUS_POINTER_ROOT,
|
||||
surface->window_id, XCB_CURRENT_TIME);
|
||||
xcb_configure_window_checked(xwm->xcb_conn, surface->window_id,
|
||||
XCB_CONFIG_WINDOW_STACK_MODE, (uint32_t[]){XCB_STACK_MODE_ABOVE});
|
||||
if (surface) {
|
||||
xcb_client_message_event_t m = {0};
|
||||
m.response_type = XCB_CLIENT_MESSAGE;
|
||||
m.format = 32;
|
||||
m.window = surface->window_id;
|
||||
m.type = xwm->atoms[WM_PROTOCOLS];
|
||||
m.data.data32[0] = xwm->atoms[WM_TAKE_FOCUS];
|
||||
m.data.data32[1] = XCB_TIME_CURRENT_TIME;
|
||||
xcb_send_event_checked(xwm->xcb_conn, 0, surface->window_id,
|
||||
XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, (char*)&m);
|
||||
xcb_set_input_focus_checked(xwm->xcb_conn, XCB_INPUT_FOCUS_POINTER_ROOT,
|
||||
surface->window_id, XCB_CURRENT_TIME);
|
||||
xcb_configure_window_checked(xwm->xcb_conn, surface->window_id,
|
||||
XCB_CONFIG_WINDOW_STACK_MODE, (uint32_t[]){XCB_STACK_MODE_ABOVE});
|
||||
} else {
|
||||
wlr_log(L_DEBUG, "Deactivating xwayland");
|
||||
xcb_set_input_focus_checked(xwm->xcb_conn, XCB_INPUT_FOCUS_NONE,
|
||||
-1, XCB_CURRENT_TIME);
|
||||
}
|
||||
xcb_flush(xwm->xcb_conn);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue