added a layoutmanager and basic dwindle
This commit is contained in:
parent
e664b0b692
commit
61e10e2048
12 changed files with 308 additions and 16 deletions
12
src/layout/IHyprLayout.hpp
Normal file
12
src/layout/IHyprLayout.hpp
Normal 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;
|
||||
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue