2
3
4
5
6
7
10#include <pu/ui/elm/elm_Element.hpp>
12namespace pu::ui::
elm {
15
16
39 sdl2::Texture cnt_tex;
45 inline Color MakeBackgroundColor(
const u8 alpha) {
51
52
53
54
55
56
57
58 Toggle(
const i32 x,
const i32 y,
const std::string &content,
const u64 toggle_key,
const Color clr);
62 inline i32
GetX()
override {
67
68
69
70 inline void SetX(
const i32 x) {
74 inline i32
GetY()
override {
79
80
81
82 inline void SetY(
const i32 y) {
90
91
92
98
99
100
101
105
106
107
108
114
115
116
117
125 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 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