Hyprland/src/render/decorations/IHyprWindowDecoration.hpp

32 lines
643 B
C++
Raw Normal View History

#pragma once
#include "../../defines.hpp"
enum eDecorationType {
DECORATION_NONE = -1,
2022-06-25 20:28:40 +02:00
DECORATION_GROUPBAR,
DECORATION_SHADOW
};
struct SWindowDecorationExtents {
Vector2D topLeft;
Vector2D bottomRight;
};
class CWindow;
2022-07-27 12:36:56 +02:00
class CMonitor;
2022-06-30 12:09:05 +02:00
interface IHyprWindowDecoration {
public:
virtual ~IHyprWindowDecoration() = 0;
virtual SWindowDecorationExtents getWindowDecorationExtents() = 0;
virtual void draw(CMonitor*, float a, const Vector2D& offset = Vector2D()) = 0;
virtual eDecorationType getDecorationType() = 0;
virtual void updateWindow(CWindow*) = 0;
virtual void damageEntire() = 0;
};