aboutsummaryrefslogtreecommitdiffstats
path: root/sway/movement.h
blob: dd70187703cca5e61c92e946990735586367230c (plain) (blame)
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
};

bool move_focus(enum movement_direction direction);

#endif