aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/rootston/input.h2
-rw-r--r--include/wlr/types/wlr_seat.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/include/rootston/input.h b/include/rootston/input.h
index ae3e3b80..4b9bd1dd 100644
--- a/include/rootston/input.h
+++ b/include/rootston/input.h
@@ -105,6 +105,8 @@ struct roots_input {
struct wl_listener cursor_axis;
struct wl_listener cursor_tool_axis;
struct wl_listener cursor_tool_tip;
+
+ struct wl_listener pointer_grab_end;
};
struct roots_input *input_create(struct roots_server *server,
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h
index ad120d6e..6b66fd69 100644
--- a/include/wlr/types/wlr_seat.h
+++ b/include/wlr/types/wlr_seat.h
@@ -94,6 +94,9 @@ struct wlr_seat {
struct {
struct wl_signal client_bound;
struct wl_signal client_unbound;
+
+ struct wl_signal pointer_grab_begin;
+ struct wl_signal pointer_grab_end;
} events;
void *data;