Hyprland/src/render/decorations/CHyprDropShadowDecoration.hpp

31 lines
858 B
C++
Raw Normal View History

2022-06-25 20:28:40 +02:00
#pragma once
#include "IHyprWindowDecoration.hpp"
class CHyprDropShadowDecoration : public IHyprWindowDecoration {
public:
2022-06-25 20:28:40 +02:00
CHyprDropShadowDecoration(CWindow*);
virtual ~CHyprDropShadowDecoration();
virtual SWindowDecorationExtents getWindowDecorationExtents();
virtual void draw(CMonitor*, float a, const Vector2D& offset);
2022-06-25 20:28:40 +02:00
virtual eDecorationType getDecorationType();
2022-06-25 20:28:40 +02:00
virtual void updateWindow(CWindow*);
2022-06-25 20:28:40 +02:00
virtual void damageEntire();
2022-06-25 20:28:40 +02:00
virtual eDecorationLayer getDecorationLayer();
private:
SWindowDecorationExtents m_seExtents;
2022-06-25 20:28:40 +02:00
CWindow* m_pWindow = nullptr;
2022-06-25 20:28:40 +02:00
Vector2D m_vLastWindowPos;
Vector2D m_vLastWindowSize;
wlr_box m_bLastWindowBox = {0};
2022-06-25 20:28:40 +02:00
};