added a layoutmanager and basic dwindle

This commit is contained in:
vaxerski
2022-03-19 15:59:53 +01:00
parent e664b0b692
commit 61e10e2048
12 changed files with 308 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include "../defines.hpp"
#include "../Window.hpp"
interface IHyprLayout {
public:
virtual void onWindowCreated(CWindow*) = 0;
virtual void onWindowRemoved(CWindow*) = 0;
};