floating windows support
This commit is contained in:
parent
a4d69a15b3
commit
a4b026df2b
12 changed files with 123 additions and 12 deletions
|
|
@ -6,8 +6,13 @@
|
|||
interface IHyprLayout {
|
||||
public:
|
||||
|
||||
virtual void onWindowCreated(CWindow*) = 0;
|
||||
virtual void onWindowRemoved(CWindow*) = 0;
|
||||
virtual void recalculateMonitor(const int&) = 0;
|
||||
virtual void onWindowCreated(CWindow*) = 0;
|
||||
virtual void onWindowRemoved(CWindow*) = 0;
|
||||
virtual void recalculateMonitor(const int&) = 0;
|
||||
|
||||
// Floating windows
|
||||
virtual void changeWindowFloatingMode(CWindow*) = 0;
|
||||
virtual void onBeginDragWindow() = 0;
|
||||
virtual void onMouseMove(const Vector2D&) = 0;
|
||||
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue