2
3
4
5
6
7
10#include <pu/ui/ui_Dialog.hpp>
11#include <pu/ui/ui_Layout.hpp>
12#include <pu/ui/ui_Overlay.hpp>
18
19
23
24
25 using DialogPrepareCallback = std::function<
void(
Dialog::Ref&)>;
28
29
30
31
32
33
34 using OnInputCallback = std::function<
void(
const u64 keys_down,
const u64 keys_up,
const u64 keys_held,
const TouchPoint touch_pos)>;
37
38
39 using RenderCallback = std::function<
void()>;
42
43
44
45
76
77
78
84
85
86
92
93
94
95
98 static_assert(std::is_base_of_v<ui::
Layout, L>);
99 return std::static_pointer_cast<L>(
this->lyt);
103
104
105
106
110
111
112
116
117
118
120 this->render_cbs.push_back(render_cb);
124
125
126
128 this->on_ipt_cb = on_ipt_cb;
132
133
134
135
137 return dialog->Show(
this);
141
142
143
144
145
146
147
148
149
150 i32
CreateShowDialog(
const std::string &title,
const std::string &content,
const std::vector<std::string> &opts,
const bool use_last_opt_as_cancel,
sdl2::
TextureHandle::Ref icon = {}, DialogPrepareCallback prepare_cb =
nullptr);
153
154
155
157 if(
this->ovl ==
nullptr) {
163
164
165
166
170
171
175
176
177
178
182
183
184
185
192
193
194
200
201
202
203
205 return this->loaded && (
this->lyt !=
nullptr);
209
210
211
212
216
217
218
219
220
224
225
231
232
238
239
240
244
245
246
250
251
252
258
259
260
266
267
268
269
273
274
275
279
280
281
283 return this->fade_bg_tex;
287
288
289
291 return this->fade_bg_tex !=
nullptr;
295
296
297
298
299
303
304
305
306
307 void Close(
const bool do_exit =
false);
310
311
312
313
320
321
322
324 return this->renderer->GetButtonsDown();
328
329
330
332 return this->renderer->GetButtonsUp();
336
337
338
340 return this->renderer->GetButtonsHeld();
344
345
346
348 HidTouchScreenState state = {};
349 hidGetTouchScreenStates(&state, 1);
High-level handle wrapper to a texture in SDL2.
Definition sdl2_Types.hpp:47
Type that represents the basic object in this library, the general context for UI and rendering.
Definition ui_Application.hpp:20
bool IsShown()
Gets whether the Application is currently shown.
Definition ui_Application.hpp:195
bool is_shown
Definition ui_Application.hpp:59
sdl2::TextureHandle::Ref fade_bg_tex
Definition ui_Application.hpp:63
std::vector< RenderCallback > render_cbs
Definition ui_Application.hpp:69
HidTouchScreenState GetTouchState()
Gets the currently pressed touch position.
Definition ui_Application.hpp:347
virtual void OnLoad()=0
Function to be implemented by child classes, called when the Application is loaded.
bool CallForRender()
Calls for rendering the Application.
OnInputCallback on_ipt_cb
Definition ui_Application.hpp:70
Application(render::Renderer::Ref renderer)
Creates a new Application with the specified Renderer.
Result Load()
Loads the Application.
static constexpr u8 DefaultFadeAlphaIncrementSteps
Definition ui_Application.hpp:50
SigmoidIncrementer< i32 > fade_alpha_incr
Definition ui_Application.hpp:61
u8 fade_alpha_increment_steps
Definition ui_Application.hpp:60
Layout::Ref lyt
Definition ui_Application.hpp:65
void StartOverlay(Overlay::Ref ovl)
Starts an Overlay.
Definition ui_Application.hpp:156
void SetFadeBackgroundColor(const Color clr)
Sets the background color for the fade effect.
void StartOverlayWithTimeout(Overlay::Ref ovl, const u64 ms)
Starts an Overlay with a timeout.
u64 GetButtonsDown()
Gets the currently pressed button keys.
Definition ui_Application.hpp:323
void LockRender()
Locks the rendering mutex.
Definition ui_Application.hpp:226
u64 GetButtonsUp()
Gets the currently released button keys.
Definition ui_Application.hpp:331
u64 GetButtonsHeld()
Gets the currently held button keys.
Definition ui_Application.hpp:339
bool CanBeShown()
Gets whether the Application can be shown.
Definition ui_Application.hpp:204
void FadeOut()
Starts and waits for a fade-out effect.
void FadeIn()
Starts and waits for a fade-in effect.
void AddRenderCallback(RenderCallback render_cb)
Adds a RenderCallback to the Application.
Definition ui_Application.hpp:119
void ShowWithFadeIn()
Shows the Application with a fade-in effect.
Definition ui_Application.hpp:186
void CloseWithFadeOut(const bool do_exit=false)
Closes the Application with a fade-out effect.
Definition ui_Application.hpp:314
void SetFadeBackgroundImage(sdl2::TextureHandle::Ref bg_tex)
Sets the target background image for the fade effect.
void EndOverlay()
Ends the current Overlay.
bool in_render_over
Definition ui_Application.hpp:57
i32 fade_alpha
Definition ui_Application.hpp:62
bool HasFadeBackgroundImage()
Gets whether the fade effect is using a background image.
Definition ui_Application.hpp:290
bool IsFadingOrFadedIn()
Gets whether the Application is currently fading in or already faded in.
Definition ui_Application.hpp:253
void ResetFadeBackgroundImage()
Resets the background image used for the fade effect.
void SetOnInput(OnInputCallback on_ipt_cb)
Sets the OnInputCallback for the Application.
Definition ui_Application.hpp:127
RMutex render_lock
Definition ui_Application.hpp:72
bool loaded
Definition ui_Application.hpp:56
void SetFadeAlphaIncrementStepCount(const u8 fade_alpha_increment_steps)
Sets the number of steps for the fade-in and fade-out effects.
Definition ui_Application.hpp:261
std::shared_ptr< L > GetLayout()
Gets the current Layout (of the specified type).
Definition ui_Application.hpp:97
Color fade_bg_clr
Definition ui_Application.hpp:64
void Close(const bool do_exit=false)
Closes the Application.
Overlay::Ref ovl
Definition ui_Application.hpp:66
RenderOverFunction render_over_fn
Definition ui_Application.hpp:58
u64 ovl_timeout_ms
Definition ui_Application.hpp:67
i32 CreateShowDialog(const std::string &title, const std::string &content, const std::vector< std::string > &opts, const bool use_last_opt_as_cancel, sdl2::TextureHandle::Ref icon={}, DialogPrepareCallback prepare_cb=nullptr)
Wrapper function that creates a Dialog with the specified parameters and shows it.
bool CallForRenderWithRenderOver(RenderOverFunction render_over_fn)
Calls for rendering the Application with a custom RenderOverFunction.
render::Renderer::Ref renderer
Definition ui_Application.hpp:71
sdl2::TextureHandle::Ref & GetFadeBackgroundImageTexture()
Gets the background image used for the fade effect.
Definition ui_Application.hpp:282
void LoadLayout(Layout::Ref lyt)
Loads the Layout to be used by the Application.
Definition ui_Application.hpp:87
i32 ShowDialog(Dialog::Ref &dialog)
Shows a Dialog and waits for the user to interact with it.
Definition ui_Application.hpp:136
void Show()
Shows the Application.
void UnlockRender()
Unlocks the rendering mutex.
Definition ui_Application.hpp:233
std::chrono::steady_clock::time_point ovl_start_time
Definition ui_Application.hpp:68
Class that represents a dialog, which is a simple way to show a message and various options to the us...
Definition ui_Dialog.hpp:21
Class that represents a layout, the core UI container in the library.
Definition ui_Layout.hpp:19
Class that represents an overlay, which is a container that is rendered over the current Layout.
Definition ui_Overlay.hpp:18
Type used to vary a value, from an initial value to a final one, following the shape of a sigmoid fun...
Definition ui_Types.hpp:166
The main class dealing with rendering.
Definition render_Renderer.hpp:198
Definition sdl2_Types.hpp:17
Definition render_Renderer.hpp:15
#define PU_SMART_CTOR(type)
Defines a static function (::New(...)) as a constructor for smart ptrs, also defines a custom type (:...
Definition pu_Include.hpp:19
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61
Type encoding a touch point.
Definition ui_Types.hpp:120