summaryrefslogtreecommitdiff
path: root/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'structs.h')
-rw-r--r--structs.h48
1 files changed, 0 insertions, 48 deletions
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 <X11/Xlib.h>
-
-#include <X11/extensions/Xrandr.h>
-#include <string>
-#include <vector>
-
-#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<int> subFrameIDs;
- bool isRoot;
- std::vector<int> floatingFrameIDs;
- //int whichChildFocused = 0;
-};
-
-struct ScreenInfo
-{
- std::string name;
- int x, y, w, h;
-};