2
3
4
5
6
7
10#include <pu/ui/elm/elm_Element.hpp>
12namespace pu::ui::
elm {
15
16
31 sdl2::Texture text_tex;
41
42
43
44
45
46 TextBlock(
const i32 x,
const i32 y,
const std::string &text);
50 inline i32
GetX()
override {
55
56
57
58 inline void SetX(
const i32 x) {
62 inline i32
GetY()
override {
67
68
69
70 inline void SetY(
const i32 y) {
78
79
80
86
87
88
89
93
94
95
96
97 void SetFont(
const std::string &font_name);
102
103
104
105
113
114
116 this->clamp_cur_x = 0;
117 this->clamp_cur_delay = 0;
121 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 text rendering.
Definition elm_TextBlock.hpp:17
static constexpr i32 DefaultClampStaticDelaySteps
Definition elm_TextBlock.hpp:23
static constexpr Color DefaultColor
Definition elm_TextBlock.hpp:21
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_TextBlock.hpp:121
void SetX(const i32 x)
Sets the X position of the TextBlock.
Definition elm_TextBlock.hpp:58
TextBlock(const i32 x, const i32 y, const std::string &text)
Creates a new instance of a TextBlock element.
void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override
Renders the Element on the screen.
static constexpr i32 NoClamp
Definition elm_TextBlock.hpp:24
std::string GetText()
Gets the text of the TextBlock.
Definition elm_TextBlock.hpp:81
i32 GetHeight() override
Gets the height of the Element.
void SetText(const std::string &text)
Sets the text of the TextBlock.
void SetColor(const Color clr)
Sets the color of the TextBlock.
void ResetClamp()
Resets the clamping of the TextBlock.
Definition elm_TextBlock.hpp:115
i32 GetY() override
Gets the Y position of the Element.
Definition elm_TextBlock.hpp:62
void SetFont(const std::string &font_name)
Gets the font name of the TextBlock.
i32 GetWidth() override
Gets the width of the Element.
void SetY(const i32 y)
Sets the Y position of the TextBlock.
Definition elm_TextBlock.hpp:70
i32 GetX() override
Gets the X position of the Element.
Definition elm_TextBlock.hpp:50
static constexpr i32 DefaultClampSpeedSteps
Definition elm_TextBlock.hpp:22
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
#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