Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
WinEventMngr.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com>
3 * Copyright (c) 2025 Gothel Software e.K.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24#ifndef GAMP_WTWINMNGR_HPP_
25#define GAMP_WTWINMNGR_HPP_
26
27#include <jau/bitfield.hpp>
28#include <jau/int_types.hpp>
29#include <jau/enum_util.hpp>
30#include <jau/int_math_ct.hpp>
31#include <jau/fraction_type.hpp>
32#include <jau/cow_darray.hpp>
33
36
37namespace gamp::wt::event {
38 /** \addtogroup Gamp_WT
39 *
40 * @{
41 */
42
44 private:
46
47 public:
48 void dispatch(uint16_t type, const jau::fraction_timespec& when, const WindowRef& source, bool value=true) noexcept {
49 WindowEvent evt(type, when, source);
50 for(const WindowListenerRef& kl : *m_windowListener.snapshot()) {
51 try {
52 switch(evt.type()) {
53 case EVENT_WINDOW_DESTROY_NOTIFY: kl->windowDestroyNotify(evt); break;
54 case EVENT_WINDOW_DESTROYED: kl->windowDestroyed(evt); break;
55 case EVENT_WINDOW_FOCUS_CHANGED: kl->windowFocusChanged(evt, value); break;
56 case EVENT_WINDOW_REPAINT: kl->windowRepaint(evt); break;
57 case EVENT_WINDOW_VISIBILITY_CHANGED: kl->windowVisibilityChanged(evt, value); break;
58 default: break;
59 }
60 } catch (std::exception &err) {
61 ERR_PRINT("WindowManager::dispatch: %s: Caught exception %s", evt.toString().c_str(), err.what());
62 }
63 if( evt.consumed() ) { break; }
64 }
65 }
66 void dispatchResize(const jau::fraction_timespec& when, const WindowRef& source,
67 const jau::math::Vec2i& winSize, const jau::math::Vec2i& surfSize) noexcept {
68 WindowEvent evt(EVENT_WINDOW_RESIZED, when, source);
69 for(const WindowListenerRef& kl : *m_windowListener.snapshot()) {
70 try {
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());
74 }
75 if( evt.consumed() ) { break; }
76 }
77 }
78 void dispatchMoved(const jau::fraction_timespec& when, const WindowRef& source,
79 const jau::math::Vec2i& winPos) noexcept {
80 WindowEvent evt(EVENT_WINDOW_MOVED, when, source);
81 for(const WindowListenerRef& kl : *m_windowListener.snapshot()) {
82 try {
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());
86 }
87 if( evt.consumed() ) { break; }
88 }
89 }
90
91 void addListener(const WindowListenerRef& l) { m_windowListener.push_back(l); }
92
94 return m_windowListener.erase_matching(l, true,
95 [](const WindowListenerRef& a, const WindowListenerRef& b) noexcept -> bool { return a.get() == b.get(); } );
96 }
97
99 const size_t count = m_windowListener.size();
100 m_windowListener.clear(true);
101 return count;
102 }
103
104 size_t listenerCount() const noexcept { return m_windowListener.size(); }
105 };
106
107 /**@}*/
108}
109
110#endif /* GAMP_WTWINMNGR_HPP_ */
constexpr uint16_t type() const noexcept
Definition Event.hpp:83
constexpr bool consumed() const noexcept
Consumed events will stop traversing through listener.
Definition Event.hpp:88
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 listenerCount() const noexcept
size_t removeListener(const WindowListenerRef &l)
std::string toString() const noexcept
Definition WinEvent.hpp:63
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: '.
Definition debug.hpp:112
static constexpr uint16_t EVENT_WINDOW_RESIZED
Definition Event.hpp:48
std::shared_ptr< WindowListener > WindowListenerRef
Definition WinEvent.hpp:113
static constexpr uint16_t EVENT_WINDOW_MOVED
Definition Event.hpp:49
static constexpr uint16_t EVENT_WINDOW_DESTROY_NOTIFY
Definition Event.hpp:50
static constexpr uint16_t EVENT_WINDOW_DESTROYED
Definition Event.hpp:53
static constexpr uint16_t EVENT_WINDOW_REPAINT
Definition Event.hpp:52
std::shared_ptr< Window > WindowRef
Definition Event.hpp:36
static constexpr uint16_t EVENT_WINDOW_FOCUS_CHANGED
Definition Event.hpp:51
static constexpr uint16_t EVENT_WINDOW_VISIBILITY_CHANGED
Definition Event.hpp:54
Vector2I< int > Vec2i
Definition vec2i.hpp:328
Timespec structure using int64_t for its components in analogy to struct timespec_t on 64-bit platfor...