2022-05-28 20:46:20 +02:00
|
|
|
#include "IHyprWindowDecoration.hpp"
|
|
|
|
|
|
2024-03-20 01:44:51 +00:00
|
|
|
class CWindow;
|
2022-05-28 20:46:20 +02:00
|
|
|
|
2024-04-27 12:43:12 +01:00
|
|
|
IHyprWindowDecoration::IHyprWindowDecoration(PHLWINDOW pWindow) {
|
2023-08-30 15:39:22 +00:00
|
|
|
m_pWindow = pWindow;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-16 17:17:31 +00:00
|
|
|
IHyprWindowDecoration::~IHyprWindowDecoration() {}
|
2023-02-28 19:36:36 +00:00
|
|
|
|
2023-12-28 22:54:41 +00:00
|
|
|
bool IHyprWindowDecoration::onInputOnDeco(const eInputType, const Vector2D&, std::any) {
|
|
|
|
|
return false;
|
2023-11-04 13:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eDecorationLayer IHyprWindowDecoration::getDecorationLayer() {
|
|
|
|
|
return DECORATION_LAYER_UNDER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint64_t IHyprWindowDecoration::getDecorationFlags() {
|
|
|
|
|
return 0;
|
2023-12-28 15:38:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string IHyprWindowDecoration::getDisplayName() {
|
|
|
|
|
return "Unknown Decoration";
|
|
|
|
|
}
|