2
3
4
5
6
7
10#include <pu/ui/ui_Container.hpp>
16
17
18
22
23
24
25
26
27
28
29 using OnInputCallback = std::function<
void(
const u64 keys_down,
const u64 keys_up,
const u64 keys_held,
const TouchPoint touch_pos)>;
32
33
34
35 using RenderCallback = std::function<
void()>;
38
39
47 OnInputCallback on_ipt;
48 std::vector<RenderCallback> render_cbs;
52
53
59
60
61
63 return !
this->elems.empty();
67
68
69
71 this->on_ipt = on_ipt_cb;
75
76
77
83
84
85
87 this->render_cbs.push_back(render_cb);
91
92
93
95 return this->render_cbs;
99
100
101
103 return this->over_bg_tex !=
nullptr;
107
108
109
111 return this->over_bg_tex;
115
116
117
119 return this->over_bg_color;
123
124
125
126
130
131
132
136
137
138
142
143
144
146 this->sim_touch_pos = sim_touch_pos;
150
151
152
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.
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