From 915532bf8fbda9ba2a36e04fcd6acc67c6c68fa5 Mon Sep 17 00:00:00 2001 From: BossCode45 Date: Tue, 1 Oct 2024 14:54:37 +1300 Subject: Restructure --- structs.h | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 structs.h (limited to 'structs.h') diff --git a/structs.h b/structs.h deleted file mode 100644 index 8215bf5..0000000 --- a/structs.h +++ /dev/null @@ -1,48 +0,0 @@ -#pragma once - -#include - -#include -#include -#include - -#define noID -1 - -struct Client -{ - int ID; - Window w; - bool floating; - bool fullscreen; -}; - -enum TileDir -{ - horizontal, - vertical, - noDir -}; - -struct Frame -{ - int ID; - int pID; - - bool isClient; - - //If its a client (window) - int cID; - - //If it isn't a client - TileDir dir; - std::vector subFrameIDs; - bool isRoot; - std::vector floatingFrameIDs; - //int whichChildFocused = 0; -}; - -struct ScreenInfo -{ - std::string name; - int x, y, w, h; -}; -- cgit v1.2.3