aboutsummaryrefslogtreecommitdiff
path: root/include/movement.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/movement.h')
-rw-r--r--include/movement.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/movement.h b/include/movement.h
new file mode 100644
index 00000000..dd701877
--- /dev/null
+++ b/include/movement.h
@@ -0,0 +1,17 @@
+#ifndef _SWAY_MOVEMENT_H
+#define _SWAY_MOVEMENT_H
+
+#include <wlc/wlc.h>
+#include "list.h"
+
+enum movement_direction {
+ MOVE_LEFT,
+ MOVE_RIGHT,
+ MOVE_UP,
+ MOVE_DOWN,
+ MOVE_PARENT
+};
+
+bool move_focus(enum movement_direction direction);
+
+#endif