aboutsummaryrefslogtreecommitdiff
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 {
bool drag;
bool resize;
} floating;
+ struct pointer_tiling {
+ bool resize;
+ swayc_t *init_view;
+ } tiling;
struct pointer_lock {
bool left;
bool right;
@@ -44,6 +48,7 @@ extern struct pointer_state {
void start_floating(swayc_t *view);
void reset_floating(swayc_t *view);
+void input_init(void);
#endif