From a34c161a6643f184348f42235bcda46352b68da0 Mon Sep 17 00:00:00 2001 From: BossCode45 Date: Sun, 18 Sep 2022 14:38:41 +1200 Subject: Starting work on multiple monitors --- structs.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'structs.h') diff --git a/structs.h b/structs.h index c238413..f58a8cd 100644 --- a/structs.h +++ b/structs.h @@ -2,6 +2,8 @@ #include +#include +#include #include #define noID -1 @@ -36,3 +38,9 @@ struct Frame bool isRoot; std::vector floatingFrameIDs; }; + +struct ScreenInfo +{ + std::string name; + int x, y, w, h; +}; -- cgit v1.2.3 From 7ec43dd82b8507e1cc4d1b8b1ab1af2298c77c84 Mon Sep 17 00:00:00 2001 From: BossCode45 Date: Wed, 14 Dec 2022 20:02:16 +1300 Subject: Final commit before merge --- structs.h | 1 + 1 file changed, 1 insertion(+) (limited to 'structs.h') diff --git a/structs.h b/structs.h index f58a8cd..0ace524 100644 --- a/structs.h +++ b/structs.h @@ -37,6 +37,7 @@ struct Frame std::vector subFrameIDs; bool isRoot; std::vector floatingFrameIDs; + //int whichChildFocused = 0; }; struct ScreenInfo -- cgit v1.2.3