Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
elm_Element.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file elm_Element.hpp
4 * @brief Base class for all UI elements in Plutonium, providing basic functionality for all of them.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/render/render_Renderer.hpp>
11
12namespace pu::ui {
13
14 class Container;
15
16}
17
18namespace pu::ui::elm {
19
25
26 enum class VerticalAlign {
30 };
31
32 /**
33 * @brief Base class for all UI elements in Plutonium, providing basic functionality for all of them.
34 */
35 class Element {
36 protected:
37 bool visible;
41
42 public:
43 /**
44 * @brief Creates a new instance of an Element.
45 */
48 virtual ~Element() {}
49
50 /**
51 * @brief Gets the X position of the Element.
52 * @return X position of the Element.
53 */
54 virtual i32 GetX() = 0;
55
56 /**
57 * @brief Gets the Y position of the Element.
58 * @return Y position of the Element.
59 */
60 virtual i32 GetY() = 0;
61
62 /**
63 * @brief Gets the width of the Element.
64 * @return Width of the Element.
65 */
66 virtual i32 GetWidth() = 0;
67
68 /**
69 * @brief Gets the height of the Element.
70 * @return Height of the Element.
71 */
72 virtual i32 GetHeight() = 0;
73
74 /**
75 * @brief Renders the Element on the screen.
76 * @param drawer Renderer to use for rendering.
77 * @param x X position to render the Element.
78 * @param y Y position to render the Element.
79 * @note This method is called by the Application. It should not be called manually.
80 */
81 virtual void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) = 0;
82
83 /**
84 * @brief Called before rendering the Element in order to handle input.
85 * @param keys_down Keys that are currently being pressed.
86 * @param keys_up Keys that are currently being released.
87 * @param keys_held Keys that are currently held.
88 * @param touch_pos Position of the touch on the screen.
89 * @note This method is called by the Application. It should not be called manually.
90 */
91 virtual void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) = 0;
92
93 /**
94 * @brief Gets whether the Element is visible.
95 * @return Whether the Element is visible.
96 */
97 inline bool IsVisible() {
98 return this->visible;
99 }
100
101 /**
102 * @brief Sets whether the Element is visible.
103 * @param visible Whether the Element should be visible.
104 * @note If the Element is not visible, it will not be rendered and input will not be handled.
105 */
106 inline void SetVisible(const bool visible) {
107 this->visible = visible;
108 }
109
110 /**
111 * @brief Sets the horizontal alignment of the Element.
112 * @param align New horizontal alignment to set.
113 */
114 inline void SetHorizontalAlign(const HorizontalAlign align) {
115 this->h_align = align;
116 }
117
118 /**
119 * @brief Gets the horizontal alignment of the Element.
120 * @return Horizontal alignment of the Element.
121 */
123 return this->h_align;
124 }
125
126 /**
127 * @brief Sets the vertical alignment of the Element.
128 * @param align New vertical alignment to set.
129 */
130 inline void SetVerticalAlign(const VerticalAlign align) {
131 this->v_align = align;
132 }
133
134 /**
135 * @brief Gets the vertical alignment of the Element.
136 * @return Vertical alignment of the Element.
137 */
139 return this->v_align;
140 }
141
142 /**
143 * @brief Sets the parent Container of the Element.
144 * @param parent_container New parent Container to set.
145 * @note This method is called by the underlying Application when rendering. It should not be called manually.
146 */
147 inline void SetParentContainer(Container *parent_container) {
148 this->parent_container = parent_container;
149 }
150
151 /**
152 * @brief Gets the actual X position of the Element, considering the parent Container (depends on alignment).
153 * @return Actual X position of the Element.
154 * @note This is the X value actually used for rendering.
155 */
157
158 /**
159 * @brief Gets the actual Y position of the Element, considering the parent Container (depends on alignment).
160 * @return Actual Y position of the Element.
161 * @note This is the Y value actually used for rendering.
162 */
164 };
165
166}
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