mirror of
https://github.com/hyprwm/Hyprland
synced 2025-12-28 17:10:05 +01:00
* Window storage rework - part 1 * format * remove useless include * fix pch * format * fix crash in dwindle * fix vram leak * prefer .expired() for bool checks
25 lines
572 B
C++
25 lines
572 B
C++
#include "IHyprWindowDecoration.hpp"
|
|
|
|
class CWindow;
|
|
|
|
IHyprWindowDecoration::IHyprWindowDecoration(PHLWINDOW pWindow) {
|
|
m_pWindow = pWindow;
|
|
}
|
|
|
|
IHyprWindowDecoration::~IHyprWindowDecoration() {}
|
|
|
|
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";
|
|
}
|