aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-01-27 11:44:09 -0500
committerGitHub <noreply@github.com>2019-01-27 11:44:09 -0500
commit897250c65fb4d7123361dc6f77c2824179ed8885 (patch)
tree3018c4f13aa4826a905161f741602b90c446aa3e /sway
parentcd22d555e8a665c3f2a8e2c07e7d54beb6ac254c (diff)
parenta452f8f8221a3b9db1917c5471412ac8a67dfcbc (diff)
Merge pull request #3519 from emersion/pointer-frame
Update for swaywm/wlroots#1503
Diffstat (limited to 'sway')
-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;
-
}
/**