2022-05-28 20:46:20 +02:00
|
|
|
#include "IHyprWindowDecoration.hpp"
|
|
|
|
|
|
|
|
|
|
#include "../../Window.hpp"
|
|
|
|
|
|
2022-12-16 17:17:31 +00:00
|
|
|
IHyprWindowDecoration::~IHyprWindowDecoration() {}
|
2023-02-28 19:36:36 +00:00
|
|
|
|
|
|
|
|
SWindowDecorationExtents IHyprWindowDecoration::getWindowDecorationReservedArea() {
|
|
|
|
|
return SWindowDecorationExtents{};
|
|
|
|
|
}
|
2023-02-28 22:32:42 +00:00
|
|
|
|
|
|
|
|
bool IHyprWindowDecoration::allowsInput() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|