aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-07 07:31:49 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-07 07:35:10 -0500
commit21ce20885a6a6e9e7178778513b09fea9354c603 (patch)
treeb7d763380f5b4df177ae0b8e0ca455e163bdad19 /include
parentinput skeleton (diff)
downloadsway-21ce20885a6a6e9e7178778513b09fea9354c603.tar.gz
sway-21ce20885a6a6e9e7178778513b09fea9354c603.tar.zst
sway-21ce20885a6a6e9e7178778513b09fea9354c603.zip
rename input to input-manager
Diffstat (limited to 'include')
-rw-r--r--include/sway/input-manager.h (renamed from include/sway/input.h)5
-rw-r--r--include/sway/server.h2
2 files changed, 4 insertions, 3 deletions
diff --git a/include/sway/input.h b/include/sway/input-manager.h
index 21ed61c5..a3662f7b 100644
--- a/include/sway/input.h
+++ b/include/sway/input-manager.h
@@ -5,7 +5,7 @@
5#include "config.h" 5#include "config.h"
6#include "list.h" 6#include "list.h"
7 7
8struct sway_input { 8struct sway_input_manager {
9 list_t *input_devices; 9 list_t *input_devices;
10}; 10};
11 11
@@ -13,6 +13,7 @@ struct input_config *new_input_config(const char* identifier);
13 13
14char* libinput_dev_unique_id(struct libinput_device *dev); 14char* libinput_dev_unique_id(struct libinput_device *dev);
15 15
16struct sway_input *sway_input_create(struct sway_server *server); 16struct sway_input_manager *sway_input_manager_create(
17 struct sway_server *server);
17 18
18#endif 19#endif
diff --git a/include/sway/server.h b/include/sway/server.h
index 3fa72e84..76a05476 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -22,7 +22,7 @@ struct sway_server {
22 struct wlr_compositor *compositor; 22 struct wlr_compositor *compositor;
23 struct wlr_data_device_manager *data_device_manager; 23 struct wlr_data_device_manager *data_device_manager;
24 24
25 struct sway_input *input; 25 struct sway_input_manager *input;
26 26
27 struct wl_listener output_add; 27 struct wl_listener output_add;
28 struct wl_listener output_remove; 28 struct wl_listener output_remove;