Hyprland/src/layout/IHyprLayout.hpp

13 lines
278 B
C++
Raw Normal View History

#pragma once
#include "../defines.hpp"
#include "../Window.hpp"
interface IHyprLayout {
public:
virtual void onWindowCreated(CWindow*) = 0;
virtual void onWindowRemoved(CWindow*) = 0;
2022-03-19 20:56:19 +01:00
virtual void recalculateMonitor(const int&) = 0;
};