mirror of
https://github.com/swaywm/sway.git
synced 2024-11-24 08:51:27 +00:00
input/tablet: handle focusing NULL surface
Additionally, rename the function responsible for switching focus to
match its behavior better.
(cherry picked from commit 53c9a4a643
)
This commit is contained in:
parent
908d7db441
commit
41e473f8c0
|
@ -63,7 +63,7 @@ void sway_configure_tablet_pad(struct sway_tablet_pad *tablet_pad);
|
||||||
|
|
||||||
void sway_tablet_pad_destroy(struct sway_tablet_pad *tablet_pad);
|
void sway_tablet_pad_destroy(struct sway_tablet_pad *tablet_pad);
|
||||||
|
|
||||||
void sway_tablet_pad_notify_enter(struct sway_tablet_pad *tablet_pad,
|
void sway_tablet_pad_set_focus(struct sway_tablet_pad *tablet_pad,
|
||||||
struct wlr_surface *surface);
|
struct wlr_surface *surface);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -176,11 +176,11 @@ static void seat_keyboard_notify_enter(struct sway_seat *seat,
|
||||||
state->pressed_keycodes, state->npressed, &keyboard->modifiers);
|
state->pressed_keycodes, state->npressed, &keyboard->modifiers);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void seat_tablet_pads_notify_enter(struct sway_seat *seat,
|
static void seat_tablet_pads_set_focus(struct sway_seat *seat,
|
||||||
struct wlr_surface *surface) {
|
struct wlr_surface *surface) {
|
||||||
struct sway_seat_device *seat_device;
|
struct sway_seat_device *seat_device;
|
||||||
wl_list_for_each(seat_device, &seat->devices, link) {
|
wl_list_for_each(seat_device, &seat->devices, link) {
|
||||||
sway_tablet_pad_notify_enter(seat_device->tablet_pad, surface);
|
sway_tablet_pad_set_focus(seat_device->tablet_pad, surface);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ static void seat_send_focus(struct sway_node *node, struct sway_seat *seat) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
seat_keyboard_notify_enter(seat, view->surface);
|
seat_keyboard_notify_enter(seat, view->surface);
|
||||||
seat_tablet_pads_notify_enter(seat, view->surface);
|
seat_tablet_pads_set_focus(seat, view->surface);
|
||||||
sway_input_method_relay_set_focus(&seat->im_relay, view->surface);
|
sway_input_method_relay_set_focus(&seat->im_relay, view->surface);
|
||||||
|
|
||||||
struct wlr_pointer_constraint_v1 *constraint =
|
struct wlr_pointer_constraint_v1 *constraint =
|
||||||
|
@ -1313,7 +1313,7 @@ void seat_set_focus_surface(struct sway_seat *seat,
|
||||||
}
|
}
|
||||||
|
|
||||||
sway_input_method_relay_set_focus(&seat->im_relay, surface);
|
sway_input_method_relay_set_focus(&seat->im_relay, surface);
|
||||||
seat_tablet_pads_notify_enter(seat, surface);
|
seat_tablet_pads_set_focus(seat, surface);
|
||||||
}
|
}
|
||||||
|
|
||||||
void seat_set_focus_layer(struct sway_seat *seat,
|
void seat_set_focus_layer(struct sway_seat *seat,
|
||||||
|
|
|
@ -334,14 +334,10 @@ static void handle_pad_tablet_surface_destroy(struct wl_listener *listener,
|
||||||
struct sway_tablet_pad *tablet_pad =
|
struct sway_tablet_pad *tablet_pad =
|
||||||
wl_container_of(listener, tablet_pad, surface_destroy);
|
wl_container_of(listener, tablet_pad, surface_destroy);
|
||||||
|
|
||||||
wlr_tablet_v2_tablet_pad_notify_leave(tablet_pad->tablet_v2_pad,
|
sway_tablet_pad_set_focus(tablet_pad, NULL);
|
||||||
tablet_pad->current_surface);
|
|
||||||
wl_list_remove(&tablet_pad->surface_destroy.link);
|
|
||||||
wl_list_init(&tablet_pad->surface_destroy.link);
|
|
||||||
tablet_pad->current_surface = NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void sway_tablet_pad_notify_enter(struct sway_tablet_pad *tablet_pad,
|
void sway_tablet_pad_set_focus(struct sway_tablet_pad *tablet_pad,
|
||||||
struct wlr_surface *surface) {
|
struct wlr_surface *surface) {
|
||||||
if (!tablet_pad || !tablet_pad->tablet) {
|
if (!tablet_pad || !tablet_pad->tablet) {
|
||||||
return;
|
return;
|
||||||
|
@ -360,7 +356,8 @@ void sway_tablet_pad_notify_enter(struct sway_tablet_pad *tablet_pad,
|
||||||
tablet_pad->current_surface = NULL;
|
tablet_pad->current_surface = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wlr_surface_accepts_tablet_v2(tablet_pad->tablet->tablet_v2, surface)) {
|
if (surface == NULL ||
|
||||||
|
!wlr_surface_accepts_tablet_v2(tablet_pad->tablet->tablet_v2, surface)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -368,7 +365,6 @@ void sway_tablet_pad_notify_enter(struct sway_tablet_pad *tablet_pad,
|
||||||
tablet_pad->tablet->tablet_v2, surface);
|
tablet_pad->tablet->tablet_v2, surface);
|
||||||
|
|
||||||
tablet_pad->current_surface = surface;
|
tablet_pad->current_surface = surface;
|
||||||
wl_list_remove(&tablet_pad->surface_destroy.link);
|
|
||||||
tablet_pad->surface_destroy.notify = handle_pad_tablet_surface_destroy;
|
tablet_pad->surface_destroy.notify = handle_pad_tablet_surface_destroy;
|
||||||
wl_signal_add(&surface->events.destroy, &tablet_pad->surface_destroy);
|
wl_signal_add(&surface->events.destroy, &tablet_pad->surface_destroy);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue