X-Git-Url: https://repo.or.cz/w/wmaker-crm.git/blobdiff_plain/7857f297eae5c487a43d7fb525bf2ed7a8010ad4..cf62d1591f5aef1e6760a8c0881a6de97ae26e92:/src/actions.h diff --git a/src/actions.h b/src/actions.h index caff53fa..7069ff51 100644 --- a/src/actions.h +++ b/src/actions.h @@ -24,12 +24,13 @@ #include "window.h" -#define MAX_HORIZONTAL 1 -#define MAX_VERTICAL 2 -#define MAX_LEFTHALF 4 -#define MAX_RIGHTHALF 8 -#define MAX_IGNORE_XINERAMA 16 -#define MAX_KEYBOARD 32 +#define MAX_HORIZONTAL (1 << 0) +#define MAX_VERTICAL (1 << 1) +#define MAX_LEFTHALF (1 << 2) +#define MAX_RIGHTHALF (1 << 3) +#define MAX_MAXIMUS (1 << 4) +#define MAX_IGNORE_XINERAMA (1 << 5) +#define MAX_KEYBOARD (1 << 6) void wSetFocusTo(WScreen *scr, WWindow *wwin);