* declare dtor once + DMABBUF typo fix * dup include + clang moment * linux-dmabuf: last minute nit change
23 lines
522 B
C++
23 lines
522 B
C++
#include "IHyprWindowDecoration.hpp"
|
|
|
|
class CWindow;
|
|
|
|
IHyprWindowDecoration::IHyprWindowDecoration(PHLWINDOW pWindow) : m_pWindow(pWindow) {
|
|
;
|
|
}
|
|
|
|
bool IHyprWindowDecoration::onInputOnDeco(const eInputType, const Vector2D&, std::any) {
|
|
return false;
|
|
}
|
|
|
|
eDecorationLayer IHyprWindowDecoration::getDecorationLayer() {
|
|
return DECORATION_LAYER_UNDER;
|
|
}
|
|
|
|
uint64_t IHyprWindowDecoration::getDecorationFlags() {
|
|
return 0;
|
|
}
|
|
|
|
std::string IHyprWindowDecoration::getDisplayName() {
|
|
return "Unknown Decoration";
|
|
}
|