aboutsummaryrefslogtreecommitdiff
path: root/sway/input
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2019-01-27 12:59:46 +0100
committeremersion <contact@emersion.fr>2019-01-27 12:59:46 +0100
commita452f8f8221a3b9db1917c5471412ac8a67dfcbc (patch)
tree772421706647ddb1406dabb4f4fadf60cda5aba7 /sway/input
parent5f45a4bbc195400dd28e086c2e0e2f479b86e4eb (diff)
Update for swaywm/wlroots#1503
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/cursor.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index bf9bf2da..af2799ce 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -821,6 +821,12 @@ static void handle_cursor_axis(struct wl_listener *listener, void *data) {
transaction_commit_dirty();
}
+static void handle_cursor_frame(struct wl_listener *listener, void *data) {
+ struct sway_cursor *cursor = wl_container_of(listener, cursor, frame);
+ cursor_handle_activity(cursor);
+ wlr_seat_pointer_notify_frame(cursor->seat->wlr_seat);
+}
+
static void handle_touch_down(struct wl_listener *listener, void *data) {
struct sway_cursor *cursor = wl_container_of(listener, cursor, touch_down);
wlr_idle_notify_activity(server.idle, cursor->seat->wlr_seat);
@@ -1063,6 +1069,19 @@ void sway_cursor_destroy(struct sway_cursor *cursor) {
wl_event_source_remove(cursor->hide_source);
+ wl_list_remove(&cursor->motion.link);
+ wl_list_remove(&cursor->motion_absolute.link);
+ wl_list_remove(&cursor->button.link);
+ wl_list_remove(&cursor->axis.link);
+ wl_list_remove(&cursor->frame.link);
+ wl_list_remove(&cursor->touch_down.link);
+ wl_list_remove(&cursor->touch_up.link);
+ wl_list_remove(&cursor->touch_motion.link);
+ wl_list_remove(&cursor->tool_axis.link);
+ wl_list_remove(&cursor->tool_tip.link);
+ wl_list_remove(&cursor->tool_button.link);
+ wl_list_remove(&cursor->request_set_cursor.link);
+
wlr_xcursor_manager_destroy(cursor->xcursor_manager);
wlr_cursor_destroy(cursor->cursor);
free(cursor);
@@ -1103,6 +1122,9 @@ struct sway_cursor *sway_cursor_create(struct sway_seat *seat) {
wl_signal_add(&wlr_cursor->events.axis, &cursor->axis);
cursor->axis.notify = handle_cursor_axis;
+ wl_signal_add(&wlr_cursor->events.frame, &cursor->frame);
+ cursor->frame.notify = handle_cursor_frame;
+
wl_signal_add(&wlr_cursor->events.touch_down, &cursor->touch_down);
cursor->touch_down.notify = handle_touch_down;
@@ -1133,7 +1155,6 @@ struct sway_cursor *sway_cursor_create(struct sway_seat *seat) {
cursor->cursor = wlr_cursor;
return cursor;
-
}
/**