Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
elm_Toggle.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file elm_Toggle.hpp
4 * @brief Contains an element for toggling between two states.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/elm/elm_Element.hpp>
11
12namespace pu::ui::elm {
13
14 /**
15 * @brief Element for toggling between two states.
16 */
17 class Toggle : public Element {
18 public:
19 // Self-explanatory constants
20
21 static constexpr u32 DefaultContentHorizontalMargin = 30;
22 static constexpr u32 DefaultContentVerticalMargin = 20;
23
25
26 static constexpr u8 DefaultToggleAlphaIncrement = 48;
27
28 static constexpr Color DefaultBackgroundColor = { 130, 130, 130, 255 };
29
30 private:
31 i32 x;
32 i32 y;
33 u64 key;
34 bool checked;
35 Color clr;
36 std::string fnt_name;
37 i32 toggle_alpha;
38 std::string cnt;
39 sdl2::Texture cnt_tex;
40 u32 cnt_h_margin;
41 u32 cnt_v_margin;
42 u8 toggle_alpha_incr;
43 Color bg_clr;
44
45 inline Color MakeBackgroundColor(const u8 alpha) {
46 return this->bg_clr.WithAlpha(alpha);
47 }
48
49 public:
50 /**
51 * @brief Creates a new instance of a Toggle element.
52 * @param x X position of the Toggle.
53 * @param y Y position of the Toggle.
54 * @param content Content of the Toggle.
55 * @param toggle_key Key to toggle the state of the Toggle.
56 * @param clr Color of the Toggle.
57 */
58 Toggle(const i32 x, const i32 y, const std::string &content, const u64 toggle_key, const Color clr);
61
62 inline i32 GetX() override {
63 return this->x;
64 }
65
66 /**
67 * @brief Sets the X position of the Toggle.
68 * @param x New X position.
69 */
70 inline void SetX(const i32 x) {
71 this->x = x;
72 }
73
74 inline i32 GetY() override {
75 return this->y;
76 }
77
78 /**
79 * @brief Sets the Y position of the Toggle.
80 * @param y New Y position.
81 */
82 inline void SetY(const i32 y) {
83 this->y = y;
84 }
85
86 i32 GetWidth() override;
87 i32 GetHeight() override;
88
89 /**
90 * @brief Gets the content of the Toggle.
91 * @return Content of the Toggle.
92 */
93 inline std::string GetContent() {
94 return this->cnt;
95 }
96
97 /**
98 * @brief Sets the content of the Toggle.
99 * @param content New content.
100 * @note This will re-render the content of the Toggle.
101 */
102 void SetContent(const std::string &content);
103
104 /**
105 * @brief Gets the font name of the Toggle.
106 * @return Font name of the Toggle.
107 * @note This will re-render the content of the Toggle.
108 */
109 void SetFont(const std::string &font_name);
110
111 PU_CLASS_POD_GET(Color, clr, Color)
112
113 /**
114 * @brief Sets the color of the Toggle.
115 * @param clr New color.
116 * @note This will re-render the content of the Toggle.
117 */
118 void SetColor(const Color clr);
119
120 PU_CLASS_POD_GETSET(Key, key, u64)
121
122 PU_CLASS_POD_GET(Checked, checked, bool)
123
124 void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override;
125 void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) override;
126 };
127
128}
Base class for all UI elements in Plutonium, providing basic functionality for all of them.
Definition elm_Element.hpp:35
Element for toggling between two states.
Definition elm_Toggle.hpp:17
Toggle(const i32 x, const i32 y, const std::string &content, const u64 toggle_key, const Color clr)
Creates a new instance of a Toggle element.
void SetFont(const std::string &font_name)
Gets the font name of the Toggle.
void SetX(const i32 x)
Sets the X position of the Toggle.
Definition elm_Toggle.hpp:70
static constexpr Color DefaultBackgroundColor
Definition elm_Toggle.hpp:28
std::string GetContent()
Gets the content of the Toggle.
Definition elm_Toggle.hpp:93
void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override
Renders the Element on the screen.
i32 GetY() override
Gets the Y position of the Element.
Definition elm_Toggle.hpp:74
static constexpr u32 DefaultContentVerticalMargin
Definition elm_Toggle.hpp:22
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 SetColor(const Color clr)
Sets the color of the Toggle.
void SetContent(const std::string &content)
Sets the content of the Toggle.
i32 GetHeight() override
Gets the height of the Element.
static constexpr u8 DefaultToggleAlphaIncrement
Definition elm_Toggle.hpp:26
i32 GetWidth() override
Gets the width of the Element.
i32 GetX() override
Gets the X position of the Element.
Definition elm_Toggle.hpp:62
static constexpr u32 DefaultContentHorizontalMargin
Definition elm_Toggle.hpp:21
static constexpr DefaultFontSize DefaultContentFontSize
Definition elm_Toggle.hpp:24
void SetY(const i32 y)
Sets the Y position of the Toggle.
Definition elm_Toggle.hpp:82
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
Color WithAlpha(const u8 a)
Creates a new Color with this Color's RGB values and the specified alpha value.
Definition ui_Types.hpp:93
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