2022-05-28 20:46:20 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../../defines.hpp"
|
|
|
|
|
|
|
|
enum eDecorationType {
|
|
|
|
DECORATION_NONE = -1,
|
2022-06-25 20:28:40 +02:00
|
|
|
DECORATION_GROUPBAR,
|
|
|
|
DECORATION_SHADOW
|
2022-05-28 20:46:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SWindowDecorationExtents {
|
|
|
|
Vector2D topLeft;
|
|
|
|
Vector2D bottomRight;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CWindow;
|
|
|
|
struct SMonitor;
|
|
|
|
|
|
|
|
class IHyprWindowDecoration {
|
|
|
|
public:
|
|
|
|
virtual ~IHyprWindowDecoration() = 0;
|
|
|
|
|
|
|
|
virtual SWindowDecorationExtents getWindowDecorationExtents() = 0;
|
|
|
|
|
2022-06-25 20:31:54 +02:00
|
|
|
virtual void draw(SMonitor*, float a) = 0;
|
2022-05-28 20:46:20 +02:00
|
|
|
|
|
|
|
virtual eDecorationType getDecorationType() = 0;
|
|
|
|
|
|
|
|
virtual void updateWindow(CWindow*) = 0;
|
|
|
|
|
|
|
|
virtual void damageEntire() = 0;
|
|
|
|
};
|