Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
elm_ProgressBar.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file elm_ProgressBar.hpp
4 * @brief Contains an element for creating UI progress bars.
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 creating UI progress bars.
16 */
17 class ProgressBar : public Element {
18 public:
19 static constexpr Color DefaultProgressColor = { 139, 195, 74, 255 };
20 static constexpr Color DefaultBackgroundColor = { 140, 140, 140, 255 };
21
22 static constexpr double DefaultHeightRadiusFactor = 0.333;
23
24 private:
25 i32 x;
26 i32 y;
27 i32 w;
28 i32 h;
29 double val;
30 double max_val;
31 u32 radius;
32 Color progress_clr;
33 Color bg_clr;
34
35 public:
36 /**
37 * @brief Creates a new instance of a ProgressBar.
38 * @param x X position of the ProgressBar.
39 * @param y Y position of the ProgressBar.
40 * @param width Width of the ProgressBar.
41 * @param height Height of the ProgressBar.
42 * @param max_val Maximum value of the ProgressBar.
43 */
44 ProgressBar(const i32 x, const i32 y, const i32 width, const i32 height, const double max_val);
46
47 inline i32 GetX() override {
48 return this->x;
49 }
50
51 /**
52 * @brief Sets the X position of the ProgressBar.
53 * @param x New X position.
54 */
55 inline void SetX(const i32 x) {
56 this->x = x;
57 }
58
59 inline i32 GetY() override {
60 return this->y;
61 }
62
63 /**
64 * @brief Sets the Y position of the ProgressBar.
65 * @param y New Y position.
66 */
67 inline void SetY(const i32 y) {
68 this->y = y;
69 }
70
71 inline i32 GetWidth() override {
72 return this->w;
73 }
74
75 /**
76 * @brief Sets the width of the ProgressBar.
77 * @param width New width.
78 */
79 inline void SetWidth(const i32 width) {
80 this->w = width;
81 }
82
83 inline i32 GetHeight() override {
84 return this->h;
85 }
86
87 /**
88 * @brief Sets the height of the ProgressBar.
89 * @param height New height.
90 */
91 inline void SetHeight(const i32 height) {
92 this->h = height;
93 }
94
95 PU_CLASS_POD_GETSET(Radius, radius, u32)
96 PU_CLASS_POD_GETSET(ProgressColor, progress_clr, Color)
97 PU_CLASS_POD_GETSET(BackgroundColor, bg_clr, Color)
98
99 PU_CLASS_POD_GET(Progress, val, double)
100
101 /**
102 * @brief Sets the progress of the ProgressBar.
103 * @param progress Progress to set, with respect to the maximum value.
104 */
105 void SetProgress(const double progress);
106
107 /**
108 * @brief Increments the progress of the ProgressBar.
109 * @param extra_progress Extra progress to add, with respect to the maximum value.
110 */
111 inline void IncrementProgress(const double extra_progress) {
112 this->SetProgress(this->val + extra_progress);
113 }
114
115 /**
116 * @brief Decrements the progress of the ProgressBar.
117 * @param extra_progress Extra progress to subtract, with respect to the maximum value.
118 */
119 inline void DecrementProgress(const double extra_progress) {
120 this->SetProgress(this->val - extra_progress);
121 }
122
123 PU_CLASS_POD_GETSET(MaxProgress, max_val, double)
124
125 /**
126 * @brief Fills the ProgressBar up to the maximum value.
127 */
128 inline void FillProgress() {
129 this->SetProgress(this->max_val);
130 }
131
132 /**
133 * @brief Clears the ProgressBar progress.
134 */
135 inline void ClearProgress() {
136 this->SetProgress(0);
137 }
138
139 /**
140 * @brief Gets whether the ProgressBar is completed.
141 * @return Whether the ProgressBar is completed, that is, the progress is equal to the maximum value.
142 */
143 inline bool IsCompleted() {
144 return this->val == this->max_val;
145 }
146
147 void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override;
148 void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) override {}
149 };
150
151}
Base class for all UI elements in Plutonium, providing basic functionality for all of them.
Definition elm_Element.hpp:35
Element for creating UI progress bars.
Definition elm_ProgressBar.hpp:17
void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override
Renders the Element on the screen.
i32 GetX() override
Gets the X position of the Element.
Definition elm_ProgressBar.hpp:47
i32 GetWidth() override
Gets the width of the Element.
Definition elm_ProgressBar.hpp:71
void SetHeight(const i32 height)
Sets the height of the ProgressBar.
Definition elm_ProgressBar.hpp:91
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.
Definition elm_ProgressBar.hpp:148
void ClearProgress()
Clears the ProgressBar progress.
Definition elm_ProgressBar.hpp:135
static constexpr double DefaultHeightRadiusFactor
Definition elm_ProgressBar.hpp:22
void SetProgress(const double progress)
Sets the progress of the ProgressBar.
ProgressBar(const i32 x, const i32 y, const i32 width, const i32 height, const double max_val)
Creates a new instance of a ProgressBar.
void IncrementProgress(const double extra_progress)
Increments the progress of the ProgressBar.
Definition elm_ProgressBar.hpp:111
bool IsCompleted()
Gets whether the ProgressBar is completed.
Definition elm_ProgressBar.hpp:143
void DecrementProgress(const double extra_progress)
Decrements the progress of the ProgressBar.
Definition elm_ProgressBar.hpp:119
static constexpr Color DefaultProgressColor
Definition elm_ProgressBar.hpp:19
void FillProgress()
Fills the ProgressBar up to the maximum value.
Definition elm_ProgressBar.hpp:128
static constexpr Color DefaultBackgroundColor
Definition elm_ProgressBar.hpp:20
void SetY(const i32 y)
Sets the Y position of the ProgressBar.
Definition elm_ProgressBar.hpp:67
void SetX(const i32 x)
Sets the X position of the ProgressBar.
Definition elm_ProgressBar.hpp:55
i32 GetY() override
Gets the Y position of the Element.
Definition elm_ProgressBar.hpp:59
void SetWidth(const i32 width)
Sets the width of the ProgressBar.
Definition elm_ProgressBar.hpp:79
i32 GetHeight() override
Gets the height of the Element.
Definition elm_ProgressBar.hpp:83
The main class dealing with rendering.
Definition render_Renderer.hpp:198
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
#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
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