aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/layout/IHyprLayout.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/layout/IHyprLayout.hpp')
-rw-r--r--src/layout/IHyprLayout.hpp18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/layout/IHyprLayout.hpp b/src/layout/IHyprLayout.hpp
index f9e2de0d..f1659ccd 100644
--- a/src/layout/IHyprLayout.hpp
+++ b/src/layout/IHyprLayout.hpp
@@ -18,11 +18,19 @@ struct SLayoutMessageHeader {
enum eFullscreenMode : int8_t;
enum eRectCorner {
- CORNER_NONE = 0,
- CORNER_TOPLEFT,
- CORNER_TOPRIGHT,
- CORNER_BOTTOMRIGHT,
- CORNER_BOTTOMLEFT
+ CORNER_NONE = 0,
+ CORNER_TOPLEFT = (1 << 0),
+ CORNER_TOPRIGHT = (1 << 1),
+ CORNER_BOTTOMRIGHT = (1 << 2),
+ CORNER_BOTTOMLEFT = (1 << 3),
+};
+
+enum eSnapEdge {
+ SNAP_INVALID = 0,
+ SNAP_UP = (1 << 0),
+ SNAP_DOWN = (1 << 1),
+ SNAP_LEFT = (1 << 2),
+ SNAP_RIGHT = (1 << 3),
};
enum eDirection {