mirror of
https://github.com/swaywm/sway.git
synced 2025-04-05 03:47:54 +03:00
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.
This commit is contained in:
parent
b90af33570
commit
7be309710d
7 changed files with 86 additions and 114 deletions
|
@ -7,15 +7,6 @@
|
|||
#include <wlr/types/wlr_output_layout.h>
|
||||
#include <xkbcommon/xkbcommon.h>
|
||||
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue