#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; }; }