rootston: fix multiseat focus

This commit is contained in:
Tony Crisci 2017-11-10 08:27:45 -05:00
parent 1472dbda74
commit 27a3a810ab
3 changed files with 26 additions and 25 deletions

View File

@ -26,4 +26,6 @@ void input_destroy(struct roots_input *input);
struct roots_seat *input_seat_from_wlr_seat(struct roots_input *input,
struct wlr_seat *seat);
bool input_view_has_focus(struct roots_input *input, struct roots_view *view);
#endif

View File

@ -108,3 +108,17 @@ struct roots_seat *input_seat_from_wlr_seat(struct roots_input *input,
}
return seat;
}
bool input_view_has_focus(struct roots_input *input, struct roots_view *view) {
if (!view) {
return false;
}
struct roots_seat *seat;
wl_list_for_each(seat, &input->seats, link) {
if (seat->focus == view) {
return true;
}
}
return false;
}

View File

@ -503,36 +503,21 @@ void roots_seat_focus_view(struct roots_seat *seat, struct roots_view *view) {
return;
}
// unfocus the old view if it is not focused by some other seat
// TODO probably should be an input function
if (seat->focus) {
bool has_other_focus = false;
struct roots_seat *iter_seat;
wl_list_for_each(iter_seat, &seat->input->seats, link) {
if (iter_seat == seat) {
continue;
}
if (iter_seat->focus == seat->focus) {
has_other_focus = true;
break;
}
}
if (!has_other_focus) {
view_activate(seat->focus, false);
}
}
if (!view) {
seat->focus = NULL;
seat->cursor->mode = ROOTS_CURSOR_PASSTHROUGH;
if (view && view->type == ROOTS_XWAYLAND_VIEW &&
view->xwayland_surface->override_redirect) {
return;
}
struct roots_view *prev_focus = seat->focus;
seat->focus = view;
if (view->type == ROOTS_XWAYLAND_VIEW &&
view->xwayland_surface->override_redirect) {
// unfocus the old view if it is not focused by some other seat
if (prev_focus && !input_view_has_focus(seat->input, prev_focus)) {
view_activate(prev_focus, false);
}
if (!seat->focus) {
seat->cursor->mode = ROOTS_CURSOR_PASSTHROUGH;
return;
}