mirror of
https://github.com/swaywm/sway.git
synced 2024-11-27 02:11:28 +00:00
clean up view destroy seat cleanup
This commit is contained in:
parent
6f7b33e691
commit
2aec85bf24
|
@ -58,6 +58,31 @@ static void seat_container_destroy(struct sway_seat_container *seat_con) {
|
||||||
free(seat_con);
|
free(seat_con);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void seat_send_focus(struct sway_seat *seat,
|
||||||
|
struct sway_container *con) {
|
||||||
|
if (con->type != C_VIEW) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
struct sway_view *view = con->sway_view;
|
||||||
|
if (view->type == SWAY_XWAYLAND_VIEW) {
|
||||||
|
struct wlr_xwayland *xwayland =
|
||||||
|
seat->input->server->xwayland;
|
||||||
|
wlr_xwayland_set_seat(xwayland, seat->wlr_seat);
|
||||||
|
}
|
||||||
|
view_set_activated(view, true);
|
||||||
|
struct wlr_keyboard *keyboard =
|
||||||
|
wlr_seat_get_keyboard(seat->wlr_seat);
|
||||||
|
if (keyboard) {
|
||||||
|
wlr_seat_keyboard_notify_enter(seat->wlr_seat,
|
||||||
|
view->surface, keyboard->keycodes,
|
||||||
|
keyboard->num_keycodes, &keyboard->modifiers);
|
||||||
|
} else {
|
||||||
|
wlr_seat_keyboard_notify_enter(
|
||||||
|
seat->wlr_seat, view->surface, NULL, 0, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
static void handle_seat_container_destroy(struct wl_listener *listener,
|
static void handle_seat_container_destroy(struct wl_listener *listener,
|
||||||
void *data) {
|
void *data) {
|
||||||
struct sway_seat_container *seat_con =
|
struct sway_seat_container *seat_con =
|
||||||
|
@ -74,7 +99,7 @@ static void handle_seat_container_destroy(struct wl_listener *listener,
|
||||||
|
|
||||||
seat_container_destroy(seat_con);
|
seat_container_destroy(seat_con);
|
||||||
|
|
||||||
if (set_focus && con->type != C_WORKSPACE) {
|
if (set_focus) {
|
||||||
struct sway_container *next_focus = NULL;
|
struct sway_container *next_focus = NULL;
|
||||||
while (next_focus == NULL) {
|
while (next_focus == NULL) {
|
||||||
next_focus = sway_seat_get_focus_by_type(seat, parent, C_VIEW);
|
next_focus = sway_seat_get_focus_by_type(seat, parent, C_VIEW);
|
||||||
|
@ -86,9 +111,15 @@ static void handle_seat_container_destroy(struct wl_listener *listener,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// the structure change might have caused it to move up to the top of
|
||||||
|
// the focus stack without sending focus notifications to the view
|
||||||
|
if (sway_seat_get_focus(seat) == next_focus) {
|
||||||
|
seat_send_focus(seat, next_focus);
|
||||||
|
} else {
|
||||||
sway_seat_set_focus(seat, next_focus);
|
sway_seat_set_focus(seat, next_focus);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static struct sway_seat_container *seat_container_from_container(
|
static struct sway_seat_container *seat_container_from_container(
|
||||||
struct sway_seat *seat, struct sway_container *con) {
|
struct sway_seat *seat, struct sway_container *con) {
|
||||||
|
@ -321,37 +352,11 @@ void sway_seat_configure_xcursor(struct sway_seat *seat) {
|
||||||
seat->cursor->cursor->y);
|
seat->cursor->cursor->y);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void seat_send_focus(struct sway_seat *seat,
|
|
||||||
struct sway_container *con) {
|
|
||||||
if (con->type != C_VIEW) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
struct sway_view *view = con->sway_view;
|
|
||||||
if (view->type == SWAY_XWAYLAND_VIEW) {
|
|
||||||
struct wlr_xwayland *xwayland =
|
|
||||||
seat->input->server->xwayland;
|
|
||||||
wlr_xwayland_set_seat(xwayland, seat->wlr_seat);
|
|
||||||
}
|
|
||||||
view_set_activated(view, true);
|
|
||||||
struct wlr_keyboard *keyboard =
|
|
||||||
wlr_seat_get_keyboard(seat->wlr_seat);
|
|
||||||
if (keyboard) {
|
|
||||||
wlr_seat_keyboard_notify_enter(seat->wlr_seat,
|
|
||||||
view->surface, keyboard->keycodes,
|
|
||||||
keyboard->num_keycodes, &keyboard->modifiers);
|
|
||||||
} else {
|
|
||||||
wlr_seat_keyboard_notify_enter(
|
|
||||||
seat->wlr_seat, view->surface, NULL, 0, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void sway_seat_set_focus_warp(struct sway_seat *seat,
|
void sway_seat_set_focus_warp(struct sway_seat *seat,
|
||||||
struct sway_container *container, bool warp) {
|
struct sway_container *container, bool warp) {
|
||||||
struct sway_container *last_focus = sway_seat_get_focus(seat);
|
struct sway_container *last_focus = sway_seat_get_focus(seat);
|
||||||
|
|
||||||
if (container && last_focus == container) {
|
if (container && last_focus == container) {
|
||||||
seat_send_focus(seat, container);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue