aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/input/cursor.h1
-rw-r--r--include/sway/input/input-manager.h2
-rw-r--r--include/sway/input/seat.h2
3 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h
index 2f70cf4b..a16b793b 100644
--- a/include/sway/input/cursor.h
+++ b/include/sway/input/cursor.h
@@ -25,6 +25,7 @@ struct sway_cursor {
struct wl_listener request_set_cursor;
};
+void sway_cursor_destroy(struct sway_cursor *cursor);
struct sway_cursor *sway_cursor_create(struct sway_seat *seat);
#endif
diff --git a/include/sway/input/input-manager.h b/include/sway/input/input-manager.h
index 2bf297ce..63806b8e 100644
--- a/include/sway/input/input-manager.h
+++ b/include/sway/input/input-manager.h
@@ -46,4 +46,6 @@ void sway_input_manager_apply_seat_config(struct sway_input_manager *input,
struct sway_seat *sway_input_manager_get_default_seat(
struct sway_input_manager *input);
+struct sway_seat *input_manager_get_seat(struct sway_input_manager *input,
+ const char *seat_name);
#endif
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index d703f94c..b21cbccb 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -29,6 +29,8 @@ struct sway_seat {
struct sway_seat *sway_seat_create(struct sway_input_manager *input,
const char *seat_name);
+void sway_seat_destroy(struct sway_seat *seat);
+
void sway_seat_add_device(struct sway_seat *seat,
struct sway_input_device *device);