Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
elm_Button.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file elm_Button.hpp
4 * @brief Represents a simple button that can be clicked and interacted with.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <functional>
11#include <pu/ui/elm/elm_Element.hpp>
12
13namespace pu::ui::elm {
14
15 /**
16 * @brief Represents a simple button that can be clicked and interacted with.
17 */
18 class Button : public Element {
19 public:
20 /**
21 * @brief Callback that is called when the Button is clicked.
22 */
23 using OnClickCallback = std::function<void()>;
24
25 // Self-explanatory constants
26
27 static constexpr u8 DefaultDarkerColorFactor = 70;
28
29 static constexpr u8 DefaultHoverAlphaIncrementSteps = 48;
30
32
33 private:
34 i32 x;
35 i32 y;
36 i32 w;
37 i32 h;
38 std::string fnt_name;
39 Color bg_clr;
40 Color cnt_clr;
41 std::string cnt;
42 sdl2::Texture cnt_tex;
43 OnClickCallback on_click_cb;
44 bool hover;
45 i32 hover_alpha;
46 SigmoidIncrementer<i32> hover_alpha_incr;
47 u8 darker_color_factor;
48 u8 hover_alpha_incr_steps;
49
50 inline Color MakeHoverBackgroundColor(const i32 alpha) {
51 i32 base_r = this->bg_clr.r - this->darker_color_factor;
52 if(base_r < 0) {
53 base_r = 0;
54 }
55 i32 base_g = this->bg_clr.g - this->darker_color_factor;
56 if(base_g < 0) {
57 base_g = 0;
58 }
59 i32 base_b = this->bg_clr.b - this->darker_color_factor;
60 if(base_b < 0) {
61 base_b = 0;
62 }
63
64 auto base_a = this->bg_clr.a;
65 if(alpha >= 0) {
66 base_a = static_cast<u8>(alpha);
67 }
68
69 return { static_cast<u8>(base_r), static_cast<u8>(base_g), static_cast<u8>(base_b), base_a };
70 }
71
72 public:
73 /**
74 * @brief Creates a new instance of a Button.
75 * @param x X position of the Button.
76 * @param y Y position of the Button.
77 * @param width Width of the Button.
78 * @param height Height of the Button.
79 * @param content Content of the Button.
80 * @param content_clr Color of the content of the Button.
81 * @param bg_clr Background color of the Button.
82 */
83 Button(const i32 x, const i32 y, const i32 width, const i32 height, const std::string &content, const Color content_clr, const Color bg_clr);
86
87 inline i32 GetX() override {
88 return this->x;
89 }
90
91 /**
92 * @brief Sets the X position of the Button.
93 * @param x New X position to set.
94 */
95 inline void SetX(const i32 x) {
96 this->x = x;
97 }
98
99 inline i32 GetY() override {
100 return this->y;
101 }
102
103 /**
104 * @brief Sets the Y position of the Button.
105 * @param y New Y position to set.
106 */
107 inline void SetY(const i32 y) {
108 this->y = y;
109 }
110
111 inline i32 GetWidth() override {
112 return this->w;
113 }
114
115 /**
116 * @brief Sets the width of the Button.
117 * @param width New width to set.
118 */
119 inline void SetWidth(const i32 width) {
120 this->w = width;
121 }
122
123 inline i32 GetHeight() override {
124 return this->h;
125 }
126
127 /**
128 * @brief Sets the height of the Button.
129 * @param height New height to set.
130 */
131 inline void SetHeight(const i32 height) {
132 this->h = height;
133 }
134
135 /**
136 * @brief Gets the content of the Button.
137 * @return Content of the Button.
138 */
139 inline std::string GetContent() {
140 return this->cnt;
141 }
142
143 /**
144 * @brief Sets the content of the Button.
145 * @param content New content to set.
146 */
147 void SetContent(const std::string &content);
148
149 PU_CLASS_POD_GET(ContentColor, cnt_clr, Color)
150
151 /**
152 * @brief Sets the color of the content of the Button.
153 * @param content_clr New color to set.
154 */
155 void SetContentColor(const Color content_clr);
156
157 PU_CLASS_POD_GETSET(BackgroundColor, bg_clr, Color)
158
159 /**
160 * @brief Sets the background color of the Button.
161 * @param bg_clr New background color to set.
162 */
163 void SetContentFont(const std::string &font_name);
164
165 /**
166 * @brief Sets the font of the content of the Button.
167 * @param font_name New font to set.
168 */
169 inline void SetOnClick(OnClickCallback on_click_cb) {
170 this->on_click_cb = on_click_cb;
171 }
172
173 void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override;
174 void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) override;
175 };
176
177}
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
Represents a simple button that can be clicked and interacted with.
Definition elm_Button.hpp:18
void SetOnClick(OnClickCallback on_click_cb)
Sets the font of the content of the Button.
Definition elm_Button.hpp:169
void SetHeight(const i32 height)
Sets the height of the Button.
Definition elm_Button.hpp:131
static constexpr u8 DefaultHoverAlphaIncrementSteps
Definition elm_Button.hpp:29
void SetContent(const std::string &content)
Sets the content of the Button.
void SetY(const i32 y)
Sets the Y position of the Button.
Definition elm_Button.hpp:107
i32 GetY() override
Gets the Y position of the Element.
Definition elm_Button.hpp:99
static constexpr u8 DefaultDarkerColorFactor
Definition elm_Button.hpp:27
void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override
Renders the Element on the screen.
std::string GetContent()
Gets the content of the Button.
Definition elm_Button.hpp:139
Button(const i32 x, const i32 y, const i32 width, const i32 height, const std::string &content, const Color content_clr, const Color bg_clr)
Creates a new instance of a Button.
void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) override
Called before rendering the Element in order to handle input.
void SetX(const i32 x)
Sets the X position of the Button.
Definition elm_Button.hpp:95
void SetContentColor(const Color content_clr)
Sets the color of the content of the Button.
static constexpr DefaultFontSize DefaultContentFontSize
Definition elm_Button.hpp:31
void SetContentFont(const std::string &font_name)
Sets the background color of the Button.
void SetWidth(const i32 width)
Sets the width of the Button.
Definition elm_Button.hpp:119
i32 GetX() override
Gets the X position of the Element.
Definition elm_Button.hpp:87
i32 GetHeight() override
Gets the height of the Element.
Definition elm_Button.hpp:123
i32 GetWidth() override
Gets the width of the Element.
Definition elm_Button.hpp:111
Base class for all UI elements in Plutonium, providing basic functionality for all of them.
Definition elm_Element.hpp:35
The main class dealing with rendering.
Definition render_Renderer.hpp:198
Definition sdl2_Types.hpp:17
Definition render_Renderer.hpp:15
Definition elm_Button.hpp:13
DefaultFontSize
Enum containing the default font sizes used by Plutonium components.
Definition ui_Types.hpp:17
@ MediumLarge
Definition ui_Types.hpp:20
#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
#define PU_CLASS_POD_GETSET(fn_name, var_name, type)
Automatically defines a getter and setter function for a POD variable.
Definition pu_Include.hpp:45
#define PU_CLASS_POD_GET(fn_name, var_name, type)
Automatically defines a getter function for a POD variable.
Definition pu_Include.hpp:29
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61
u8 g
Definition ui_Types.hpp:63
u8 a
Definition ui_Types.hpp:65
u8 r
Definition ui_Types.hpp:62
u8 b
Definition ui_Types.hpp:64
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