2
3
4
5
6
7
11#include <pu/ui/elm/elm_Element.hpp>
13namespace pu::ui::
elm {
16
17
21
22
23 using OnClickCallback = std::function<
void()>;
42 sdl2::Texture cnt_tex;
43 OnClickCallback on_click_cb;
47 u8 darker_color_factor;
48 u8 hover_alpha_incr_steps;
50 inline Color MakeHoverBackgroundColor(
const i32 alpha) {
51 i32 base_r =
this->bg_clr
.r -
this->darker_color_factor;
55 i32 base_g =
this->bg_clr
.g -
this->darker_color_factor;
59 i32 base_b =
this->bg_clr
.b -
this->darker_color_factor;
64 auto base_a =
this->bg_clr
.a;
66 base_a =
static_cast<u8>(alpha);
69 return { static_cast<u8>(base_r)
, static_cast<u8>(base_g)
, static_cast<u8>(base_b)
, base_a
};
74
75
76
77
78
79
80
81
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);
87 inline i32
GetX()
override {
92
93
94
95 inline void SetX(
const i32 x) {
99 inline i32
GetY()
override {
104
105
106
107 inline void SetY(
const i32 y) {
116
117
118
128
129
130
136
137
138
144
145
146
152
153
154
160
161
162
166
167
168
170 this->on_click_cb = on_click_cb;
174 void OnInput(
const u64 keys_down,
const u64 keys_up,
const u64 keys_held,
const TouchPoint touch_pos)
override;
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
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