Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
ui_Layout.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file ui_Layout.hpp
4 * @brief Layout class header.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/ui_Container.hpp>
11#include <functional>
12
13namespace pu::ui {
14
15 /**
16 * @brief Class that represents a layout, the core UI container in the library.
17 * @note The layout covers the entire screen, has a background and it renders all its children elements over it.
18 */
19 class Layout : public Container {
20 public:
21 /**
22 * @brief Callback type used for input handling.
23 * @note This callback is called every loop.
24 * @param keys_down Keys that were pressed in this frame.
25 * @param keys_up Keys that were released in this frame.
26 * @param keys_held Keys that are being held in this frame.
27 * @param touch_pos Touch position in this frame.
28 */
29 using OnInputCallback = std::function<void(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos)>;
30
31 /**
32 * @brief Callback type used for rendering.
33 * @note This callback is called every loop, so it may be used in a similar fashion to main loop handling.
34 */
35 using RenderCallback = std::function<void()>;
36
37 /**
38 * @brief Default background color for Layouts (white-ish).
39 */
40 static constexpr Color DefaultBackgroundColor = { 0xE1, 0xE1, 0xE1, 0xFF };
41
42 private:
43 bool has_image;
44 Color over_bg_color;
45 TouchPoint sim_touch_pos;
46 sdl2::TextureHandle::Ref over_bg_tex;
47 OnInputCallback on_ipt;
48 std::vector<RenderCallback> render_cbs;
49
50 public:
51 /**
52 * @brief Creates a new Layout with the default background (white-ish).
53 */
54 Layout() : Container(0, 0, render::ScreenWidth, render::ScreenHeight), has_image(false), over_bg_color(DefaultBackgroundColor), sim_touch_pos(), over_bg_tex(), on_ipt(), render_cbs() {}
56 virtual ~Layout();
57
58 /**
59 * @brief Checks whether the Layout has any children.
60 * @return Whether the Layout has children.
61 */
62 inline bool HasChildren() {
63 return !this->elems.empty();
64 }
65
66 /**
67 * @brief Sets the input callback for the Layout.
68 * @param on_ipt_cb Input callback to set.
69 */
70 inline void SetOnInput(OnInputCallback on_ipt_cb) {
71 this->on_ipt = on_ipt_cb;
72 }
73
74 /**
75 * @brief Gets the input callback for the Layout.
76 * @return The input callback for the Layout.
77 */
78 inline OnInputCallback GetOnInput() {
79 return this->on_ipt;
80 }
81
82 /**
83 * @brief Adds a render callback to the Layout.
84 * @param render_cb Render callback to add.
85 */
86 inline void AddRenderCallback(RenderCallback render_cb) {
87 this->render_cbs.push_back(render_cb);
88 }
89
90 /**
91 * @brief Gets all render callbacks from the Layout.
92 * @return All render callbacks from the Layout.
93 */
95 return this->render_cbs;
96 }
97
98 /**
99 * @brief Checks whether the Layout has a background image.
100 * @return Whether the Layout has a background image.
101 */
102 inline bool HasBackgroundImage() {
103 return this->over_bg_tex != nullptr;
104 }
105
106 /**
107 * @brief Gets the background image texture of the Layout.
108 * @return The background image texture of the Layout.
109 */
111 return this->over_bg_tex;
112 }
113
114 /**
115 * @brief Gets the background color of the Layout.
116 * @return The background color of the Layout.
117 */
119 return this->over_bg_color;
120 }
121
122 /**
123 * @brief Sets the background image of the Layout.
124 * @note This will override the background color.
125 * @param bg_tex Background image texture to set.
126 */
128
129 /**
130 * @brief Resets the background image of the Layout.
131 * @note If the Layout has no background image, its background color will be visible instead.
132 */
134
135 /**
136 * @brief Sets the background color of the Layout.
137 * @param clr Background color to set.
138 */
139 void SetBackgroundColor(const Color clr);
140
141 /**
142 * @brief Simulates a (fake) touch for the Layout.
143 * @param sim_touch_pos Touch position to simulate.
144 */
145 inline void SimulateTouchPosition(const TouchPoint sim_touch_pos) {
146 this->sim_touch_pos = sim_touch_pos;
147 }
148
149 /**
150 * @brief Consumes (gets and then resets) the simulated touch position.
151 * @return The simulated touch position.
152 */
154 };
155
156}
High-level handle wrapper to a texture in SDL2.
Definition sdl2_Types.hpp:47
Type containing a list of elements.
Definition ui_Container.hpp:19
Container(const i32 x, const i32 y, const i32 width, const i32 height)
Creates a new Container with the specified position and size.
Definition ui_Container.hpp:35
Class that represents a layout, the core UI container in the library.
Definition ui_Layout.hpp:19
void AddRenderCallback(RenderCallback render_cb)
Adds a render callback to the Layout.
Definition ui_Layout.hpp:86
bool HasBackgroundImage()
Checks whether the Layout has a background image.
Definition ui_Layout.hpp:102
void SetBackgroundImage(sdl2::TextureHandle::Ref bg_tex)
Sets the background image of the Layout.
void SetOnInput(OnInputCallback on_ipt_cb)
Sets the input callback for the Layout.
Definition ui_Layout.hpp:70
TouchPoint ConsumeSimulatedTouchPosition()
Consumes (gets and then resets) the simulated touch position.
void ResetBackgroundImage()
Resets the background image of the Layout.
bool HasChildren()
Checks whether the Layout has any children.
Definition ui_Layout.hpp:62
void SetBackgroundColor(const Color clr)
Sets the background color of the Layout.
virtual ~Layout()
Color GetBackgroundColor()
Gets the background color of the Layout.
Definition ui_Layout.hpp:118
std::vector< RenderCallback > & GetRenderCallbacks()
Gets all render callbacks from the Layout.
Definition ui_Layout.hpp:94
static constexpr Color DefaultBackgroundColor
Default background color for Layouts (white-ish).
Definition ui_Layout.hpp:40
void SimulateTouchPosition(const TouchPoint sim_touch_pos)
Simulates a (fake) touch for the Layout.
Definition ui_Layout.hpp:145
sdl2::TextureHandle::Ref & GetBackgroundImageTexture()
Gets the background image texture of the Layout.
Definition ui_Layout.hpp:110
Layout()
Creates a new Layout with the default background (white-ish).
Definition ui_Layout.hpp:54
OnInputCallback GetOnInput()
Gets the input callback for the Layout.
Definition ui_Layout.hpp:78
Definition sdl2_Types.hpp:17
Definition render_Renderer.hpp:15
constexpr u32 ScreenWidth
Definition render_Renderer.hpp:20
constexpr u32 ScreenHeight
Definition render_Renderer.hpp:21
#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
constexpr Color(const u8 r, const u8 g, const u8 b, const u8 a)
Creates a new Color with the specified values.
Definition ui_Types.hpp:79
Type encoding a touch point.
Definition ui_Types.hpp:120
constexpr TouchPoint()
Creates a new, invalid TouchPoint (with both coordinates set to -1).
Definition ui_Types.hpp:127