2
3
4
5
6
7
10#include <pu/ui/render/render_Renderer.hpp>
18namespace pu::ui::
elm {
33
34
44
45
51
52
53
57
58
59
63
64
65
69
70
71
75
76
77
78
79
80
84
85
86
87
88
89
90
91 virtual void OnInput(
const u64 keys_down,
const u64 keys_up,
const u64 keys_held,
const TouchPoint touch_pos) = 0;
94
95
96
102
103
104
105
111
112
113
119
120
121
127
128
129
135
136
137
143
144
145
146
152
153
154
155
159
160
161
162
Type containing a list of elements.
Definition ui_Container.hpp:19
Base class for all UI elements in Plutonium, providing basic functionality for all of them.
Definition elm_Element.hpp:35
virtual void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y)=0
Renders the Element on the screen.
virtual i32 GetY()=0
Gets the Y position of the Element.
i32 GetProcessedY()
Gets the actual Y position of the Element, considering the parent Container (depends on alignment).
HorizontalAlign h_align
Definition elm_Element.hpp:38
void SetVerticalAlign(const VerticalAlign align)
Sets the vertical alignment of the Element.
Definition elm_Element.hpp:130
Container * parent_container
Definition elm_Element.hpp:40
VerticalAlign GetVerticalAlign()
Gets the vertical alignment of the Element.
Definition elm_Element.hpp:138
i32 GetProcessedX()
Gets the actual X position of the Element, considering the parent Container (depends on alignment).
virtual ~Element()
Definition elm_Element.hpp:48
HorizontalAlign GetHorizontalAlign()
Gets the horizontal alignment of the Element.
Definition elm_Element.hpp:122
void SetVisible(const bool visible)
Sets whether the Element is visible.
Definition elm_Element.hpp:106
bool IsVisible()
Gets whether the Element is visible.
Definition elm_Element.hpp:97
virtual i32 GetX()=0
Gets the X position of the Element.
virtual i32 GetHeight()=0
Gets the height of the Element.
void SetHorizontalAlign(const HorizontalAlign align)
Sets the horizontal alignment of the Element.
Definition elm_Element.hpp:114
VerticalAlign v_align
Definition elm_Element.hpp:39
virtual i32 GetWidth()=0
Gets the width of the Element.
Element()
Creates a new instance of an Element.
Definition elm_Element.hpp:46
bool visible
Definition elm_Element.hpp:37
void SetParentContainer(Container *parent_container)
Sets the parent Container of the Element.
Definition elm_Element.hpp:147
virtual void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos)=0
Called before rendering the Element in order to handle input.
The main class dealing with rendering.
Definition render_Renderer.hpp:198
HorizontalAlign
Definition elm_Element.hpp:20
@ Center
Definition elm_Element.hpp:22
@ Right
Definition elm_Element.hpp:23
@ Left
Definition elm_Element.hpp:21
VerticalAlign
Definition elm_Element.hpp:26
@ Down
Definition elm_Element.hpp:29
@ Up
Definition elm_Element.hpp:27
@ Center
Definition elm_Element.hpp:28
Definition render_Renderer.hpp:15
Definition elm_Button.hpp:13
#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 touch point.
Definition ui_Types.hpp:120