summaryrefslogtreecommitdiffstats
path: root/include/input_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/input_state.h')
-rw-r--r--include/input_state.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/input_state.h b/include/input_state.h
index 782b4b19..27dd6cff 100644
--- a/include/input_state.h
+++ b/include/input_state.h
@@ -34,6 +34,10 @@ extern struct pointer_state {
34 bool drag; 34 bool drag;
35 bool resize; 35 bool resize;
36 } floating; 36 } floating;
37 struct pointer_tiling {
38 bool resize;
39 swayc_t *init_view;
40 } tiling;
37 struct pointer_lock { 41 struct pointer_lock {
38 bool left; 42 bool left;
39 bool right; 43 bool right;
@@ -44,6 +48,7 @@ extern struct pointer_state {
44 48
45void start_floating(swayc_t *view); 49void start_floating(swayc_t *view);
46void reset_floating(swayc_t *view); 50void reset_floating(swayc_t *view);
51void input_init(void);
47 52
48#endif 53#endif
49 54