24#ifndef GAMP_WTPOINTERMNNGR_HPP_
25#define GAMP_WTPOINTERMNNGR_HPP_
49 std::vector<InputButton> m_buttonDown;
62 m_buttonDown.push_back(button);
64 std::erase(m_buttonDown, button);
70 PointerEvent evt(type, when, source, mods, ptype,
id, pos, clickCount, button, rotation, rotationScale);
75 kl->pointerClicked(evt);
break;
77 kl->pointerEntered(evt);
break;
79 kl->pointerExited(evt);
break;
81 kl->pointerPressed(evt);
break;
83 kl->pointerReleased(evt);
break;
85 kl->pointerMoved(evt);
break;
87 kl->pointerDragged(evt);
break;
89 kl->pointerWheelMoved(evt);
break;
92 }
catch (std::exception &err) {
93 ERR_PRINT(
"PointerManager::dispatch: %s: Caught exception %s", evt.
toString().c_str(), err.what());
102 return m_pointerListener.erase_matching(l,
true,
107 const size_t count = m_pointerListener.size();
108 m_pointerListener.clear(
true);
size_t listenerCount() const noexcept
size_t removeAllListener()
size_t removeListener(const PointerListenerRef &l)
void addListener(const PointerListenerRef &l)
void dispatch(uint16_t type, const jau::fraction_timespec &when, const WindowRef &source, InputModifier mods, PointerType ptype, uint16_t id, jau::math::Vec2i pos, uint16_t clickCount, InputButton button, jau::math::Vec3f rotation, float rotationScale) noexcept
Pointer event of type PointerType.
std::string toString() const noexcept
constexpr bool consumed() const noexcept
Consumed events will stop traversing through listener.
Implementation of a Copy-On-Write (CoW) using jau::darray as the underlying storage,...
#define ERR_PRINT(...)
Use for unconditional error messages, prefix '[elapsed_time] Error @ FILE:LINE FUNC: '.
static constexpr short EVENT_POINTER_WHEEL
static constexpr short EVENT_POINTER_PRESSED
std::shared_ptr< PointerListener > PointerListenerRef
static constexpr short EVENT_POINTER_RELEASED
static constexpr short EVENT_POINTER_CLICKED
static constexpr short EVENT_POINTER_EXITED
Only generated for PointerType::mouse.
PointerType
Type of pointer devices.
static constexpr short EVENT_POINTER_DRAGGED
std::shared_ptr< Window > WindowRef
static constexpr short EVENT_POINTER_MOVED
static constexpr short EVENT_POINTER_ENTERED
Only generated for PointerType::mouse.
Timespec structure using int64_t for its components in analogy to struct timespec_t on 64-bit platfor...