aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/tiling_layout.h
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-09-26 12:23:19 +0200
committersrdusr <trevorgray@srdusr.com>2025-09-26 12:23:19 +0200
commite4a0432383331e013808a97b7c24707e4ddc4726 (patch)
tree3ef4465be03bc7b92a0b048f02f76475045404b6 /src/layouts/tiling_layout.h
parent105732dde10b317a81d5a10a3f66b315d6f85015 (diff)
downloadsrdwm-e4a0432383331e013808a97b7c24707e4ddc4726.tar.gz
srdwm-e4a0432383331e013808a97b7c24707e4ddc4726.zip
Initial Commit
Diffstat (limited to 'src/layouts/tiling_layout.h')
-rw-r--r--src/layouts/tiling_layout.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/layouts/tiling_layout.h b/src/layouts/tiling_layout.h
new file mode 100644
index 0000000..333950a
--- /dev/null
+++ b/src/layouts/tiling_layout.h
@@ -0,0 +1,17 @@
+#ifndef SRDWM_TILING_LAYOUT_H
+#define SRDWM_TILING_LAYOUT_H
+
+#include "layout.h"
+#include <iostream>
+#include <vector>
+
+class TilingLayout : public Layout {
+public:
+ TilingLayout();
+ ~TilingLayout();
+
+ // Implement the pure virtual method from the base class
+ void arrange_windows(const std::vector<SRDWindow*>& windows, const Monitor& monitor) override;
+};
+
+#endif // SRDWM_TILING_LAYOUT_H