mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 11:25:59 +01:00
32 lines
No EOL
876 B
C++
32 lines
No EOL
876 B
C++
#pragma once
|
|
|
|
#include "IHyprWindowDecoration.hpp"
|
|
#include <deque>
|
|
|
|
class CHyprGroupBarDecoration : public IHyprWindowDecoration {
|
|
public:
|
|
CHyprGroupBarDecoration(CWindow*);
|
|
virtual ~CHyprGroupBarDecoration();
|
|
|
|
virtual SWindowDecorationExtents getWindowDecorationExtents();
|
|
|
|
virtual void draw(CMonitor*, float a, const Vector2D& offset);
|
|
|
|
virtual eDecorationType getDecorationType();
|
|
|
|
virtual void updateWindow(CWindow*);
|
|
|
|
virtual void damageEntire();
|
|
|
|
virtual SWindowDecorationExtents getWindowDecorationReservedArea();
|
|
|
|
private:
|
|
SWindowDecorationExtents m_seExtents;
|
|
|
|
CWindow* m_pWindow = nullptr;
|
|
|
|
Vector2D m_vLastWindowPos;
|
|
Vector2D m_vLastWindowSize;
|
|
|
|
std::deque<CWindow*> m_dwGroupMembers;
|
|
}; |