summaryrefslogtreecommitdiffstats
path: root/include/settings.h
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-05-09 13:53:45 +0200
committerDave Davenport <qball@gmpclient.org>2017-05-09 13:53:45 +0200
commitcf8796ccd3cf04b4ab1029f3da32c7784443e1d1 (patch)
tree581c3fcba5eb2e6bc72749db5caf43fe8a1cd5b1 /include/settings.h
parent2a381856aa554965d6d1b18bbded6c60c0b41ed4 (diff)
Move position parsing to bison file.
Diffstat (limited to 'include/settings.h')
-rw-r--r--include/settings.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/settings.h b/include/settings.h
index 572ebd6b..b0506f64 100644
--- a/include/settings.h
+++ b/include/settings.h
@@ -56,22 +56,22 @@ typedef enum
{
/** Center */
WL_CENTER = 0,
- /** Left top corner. */
- WL_NORTH_WEST = 1,
/** Top middle */
- WL_NORTH = 2,
- /** Top right */
- WL_NORTH_EAST = 3,
+ WL_NORTH = 1,
/** Middle right */
- WL_EAST = 4,
- /** Bottom right */
- WL_SOUTH_EAST = 5,
+ WL_EAST = 2,
/** Bottom middle */
- WL_SOUTH = 6,
- /** Bottom left */
- WL_SOUTH_WEST = 7,
+ WL_SOUTH = 4,
/** Middle left */
- WL_WEST = 8
+ WL_WEST = 8,
+ /** Left top corner. */
+ WL_NORTH_WEST = WL_NORTH|WL_WEST,
+ /** Top right */
+ WL_NORTH_EAST = WL_NORTH|WL_EAST,
+ /** Bottom right */
+ WL_SOUTH_EAST = WL_SOUTH|WL_EAST,
+ /** Bottom left */
+ WL_SOUTH_WEST = WL_SOUTH|WL_WEST,
} WindowLocation;
/**