You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
241 B
18 lines
241 B
9 years ago
|
#ifndef _SWAY_MOVEMENT_H
|
||
|
#define _SWAY_MOVEMENT_H
|
||
|
|
||
|
#include <wlc/wlc.h>
|
||
|
#include "list.h"
|
||
|
|
||
9 years ago
|
enum movement_direction {
|
||
|
MOVE_LEFT,
|
||
|
MOVE_RIGHT,
|
||
|
MOVE_UP,
|
||
|
MOVE_DOWN,
|
||
|
MOVE_PARENT
|
||
9 years ago
|
};
|
||
|
|
||
9 years ago
|
bool move_focus(enum movement_direction direction);
|
||
9 years ago
|
|
||
|
#endif
|