From e4a0432383331e013808a97b7c24707e4ddc4726 Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 12:23:19 +0200 Subject: Initial Commit --- src/layouts/tiling_layout.cc | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/layouts/tiling_layout.cc (limited to 'src/layouts/tiling_layout.cc') diff --git a/src/layouts/tiling_layout.cc b/src/layouts/tiling_layout.cc new file mode 100644 index 0000000..440c95a --- /dev/null +++ b/src/layouts/tiling_layout.cc @@ -0,0 +1,38 @@ +#include "tiling_layout.h" +#include + +TilingLayout::TilingLayout() { + // Constructor implementation +} + +TilingLayout::~TilingLayout() { + // Destructor implementation +} + +void TilingLayout::arrange_windows(const std::vector& windows, const Monitor& monitor) { + std::cout << "TilingLayout::arrange_windows called for monitor:" << std::endl; + std::cout << " Position: (" << monitor.x << ", " << monitor.y << "), Dimensions: (" << monitor.width << ", " << monitor.height << ")" << std::endl; + std::cout << " Number of windows: " << windows.size() << std::endl; + + // Basic placeholder tiling logic (e.g., splitting the screen vertically) + if (!windows.empty()) { + int window_width = monitor.width / windows.size(); + int current_x = monitor.x; + + for (size_t i = 0; i < windows.size(); ++i) { + SRDWindow* window = windows[i]; + // In a real implementation, you would calculate the desired + // position and size for the window based on the tiling algorithm + // and then call a method on the window object (which would + // internally use the platform backend) to apply these changes. + std::cout << " SRDWindow " << window->getId() << ": Placeholder position (" << current_x << ", " << monitor.y << "), size (" << window_width << ", " << monitor.height << ")" << std::endl; + + // Update the window's properties in the SRDWindow object + window->setPosition(current_x, monitor.y); + window->setDimensions(current_x, monitor.y, window_width, monitor.height); + + + current_x += window_width; + } + } +} -- cgit v1.2.3