Make horizontal edge-borders hidable too

This commit is contained in:
Axel Wagner
2012-08-05 21:41:36 +02:00
committed by Michael Stapelberg
parent 1b2d222449
commit 57effd65b2
7 changed files with 63 additions and 28 deletions

View File

@ -62,8 +62,10 @@ typedef enum { DONT_KILL_WINDOW = 0, KILL_WINDOW = 1, KILL_CLIENT = 2 } kill_win
/** describes if the window is adjacent to the output (physical screen) edges. */
typedef enum { ADJ_NONE = 0,
ADJ_LEFT_SCREEN_EDGE = 1,
ADJ_RIGHT_SCREEN_EDGE = 2} adjacent_t;
ADJ_LEFT_SCREEN_EDGE = (1 << 0),
ADJ_RIGHT_SCREEN_EDGE = (1 << 1),
ADJ_UPPER_SCREEN_EDGE = (1 << 2),
ADJ_LOWER_SCREEN_EDGE = (1 << 4)} adjacent_t;
enum {
BIND_NONE = 0,