1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 }; int move_focus(enum movement_direction direction); #endif