From 7be309710dcd679e0b570bc2f076ac00ae9ad65d Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Tue, 30 Oct 2018 23:27:49 +1000 Subject: Remove enum movement_direction There's no point having both movement_direction and wlr_direction. This replaces the former with the latter. As movement_direction also contained MOVE_PARENT and MOVE_CHILD items, these are now checked specifically in the focus command and handled in separate functions, just like the other focus variants. --- include/util.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'include/util.h') diff --git a/include/util.h b/include/util.h index 19d2e7cf..c39c92b1 100644 --- a/include/util.h +++ b/include/util.h @@ -7,15 +7,6 @@ #include #include -enum movement_direction { - MOVE_LEFT, - MOVE_RIGHT, - MOVE_UP, - MOVE_DOWN, - MOVE_PARENT, - MOVE_CHILD, -}; - /** * Wrap i into the range [0, max[ */ @@ -77,6 +68,4 @@ bool parse_boolean(const char *boolean, bool current); */ char* resolve_path(const char* path); -bool sway_dir_to_wlr(enum movement_direction dir, enum wlr_direction *out); - #endif -- cgit v1.2.3