2
3
4
5
6
7
10#include <pu/ui/elm/elm_Element.hpp>
12namespace pu::ui::
elm {
15
16
37
38
39
40
41
42
43
44 ProgressBar(
const i32 x,
const i32 y,
const i32 width,
const i32 height,
const double max_val);
47 inline i32
GetX()
override {
52
53
54
55 inline void SetX(
const i32 x) {
55 inline void SetX(
const i32 x) {
…}
59 inline i32
GetY()
override {
64
65
66
67 inline void SetY(
const i32 y) {
67 inline void SetY(
const i32 y) {
…}
76
77
78
88
89
90
102
103
104
108
109
110
116
117
118
126
127
133
134
140
141
142
144 return this->val ==
this->max_val;
148 void OnInput(
const u64 keys_down,
const u64 keys_up,
const u64 keys_held,
const TouchPoint touch_pos)
override {}
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