24#ifndef GAMP_WTWINMNGR_HPP_
25#define GAMP_WTWINMNGR_HPP_
60 }
catch (std::exception &err) {
61 ERR_PRINT(
"WindowManager::dispatch: %s: Caught exception %s", evt.
toString().c_str(), err.what());
71 kl->windowResized(evt, winSize, surfSize);
break;
72 }
catch (std::exception &err) {
73 ERR_PRINT(
"WindowManager::dispatch: %s: Caught exception %s", evt.
toString().c_str(), err.what());
83 kl->windowMoved(evt, winPos);
break;
84 }
catch (std::exception &err) {
85 ERR_PRINT(
"WindowManager::dispatch: %s: Caught exception %s", evt.
toString().c_str(), err.what());
94 return m_windowListener.erase_matching(l,
true,
99 const size_t count = m_windowListener.size();
100 m_windowListener.clear(
true);
constexpr uint16_t type() const noexcept
constexpr bool consumed() const noexcept
Consumed events will stop traversing through listener.
void dispatchMoved(const jau::fraction_timespec &when, const WindowRef &source, const jau::math::Vec2i &winPos) noexcept
void dispatchResize(const jau::fraction_timespec &when, const WindowRef &source, const jau::math::Vec2i &winSize, const jau::math::Vec2i &surfSize) noexcept
void dispatch(uint16_t type, const jau::fraction_timespec &when, const WindowRef &source, bool value=true) noexcept
void addListener(const WindowListenerRef &l)
size_t removeAllListener()
size_t listenerCount() const noexcept
size_t removeListener(const WindowListenerRef &l)
std::string toString() const noexcept
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 uint16_t EVENT_WINDOW_RESIZED
std::shared_ptr< WindowListener > WindowListenerRef
static constexpr uint16_t EVENT_WINDOW_MOVED
static constexpr uint16_t EVENT_WINDOW_DESTROY_NOTIFY
static constexpr uint16_t EVENT_WINDOW_DESTROYED
static constexpr uint16_t EVENT_WINDOW_REPAINT
std::shared_ptr< Window > WindowRef
static constexpr uint16_t EVENT_WINDOW_FOCUS_CHANGED
static constexpr uint16_t EVENT_WINDOW_VISIBILITY_CHANGED
Timespec structure using int64_t for its components in analogy to struct timespec_t on 64-bit platfor...