18 lines
No EOL
327 B
C++
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;
|
|
};
|
|
} |