Modules/Widgets/public/FloatSpaceWidget.hpp
2024-06-26 22:54:10 +03:00

18 lines
No EOL
327 B
C++

#include "FloatingWidget.hpp"
namespace tp {
class FloatSpaceWidget : public Widget {
public:
FloatSpaceWidget();
void eventProcess(const Events& events) override;
[[nodiscard]] bool handlesEvent() const;
private:
void updateActiveWindow(const tp::Events& events);
private:
bool mIsPassThrough = false;
};
}