2022-05-28 20:46:20 +02:00
|
|
|
#include "IHyprWindowDecoration.hpp"
|
|
|
|
|
|
|
|
#include "../../Window.hpp"
|
|
|
|
|
2023-08-30 17:39:22 +02:00
|
|
|
IHyprWindowDecoration::IHyprWindowDecoration(CWindow* pWindow) {
|
|
|
|
m_pWindow = pWindow;
|
|
|
|
}
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
IHyprWindowDecoration::~IHyprWindowDecoration() {}
|
2023-02-28 20:36:36 +01:00
|
|
|
|
2023-12-28 23:54:41 +01:00
|
|
|
bool IHyprWindowDecoration::onInputOnDeco(const eInputType, const Vector2D&, std::any) {
|
|
|
|
return false;
|
2023-11-04 14:10:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
eDecorationLayer IHyprWindowDecoration::getDecorationLayer() {
|
|
|
|
return DECORATION_LAYER_UNDER;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t IHyprWindowDecoration::getDecorationFlags() {
|
|
|
|
return 0;
|
2023-12-28 16:38:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string IHyprWindowDecoration::getDisplayName() {
|
|
|
|
return "Unknown Decoration";
|
|
|
|
}
|