Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
elm_TextBlock.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file elm_TextBlock.hpp
4 * @brief Contains an element for text rendering.
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 text rendering.
16 */
17 class TextBlock : public Element {
18 public:
19 // Self-explanatory constants
20
21 static constexpr Color DefaultColor = { 0, 0, 0, 0xFF };
22 static constexpr i32 DefaultClampSpeedSteps = 3;
23 static constexpr i32 DefaultClampStaticDelaySteps = 20;
24 static constexpr i32 NoClamp = -1;
25
26 private:
27 i32 x;
28 i32 y;
29 Color clr;
30 std::string text;
31 sdl2::Texture text_tex;
32 std::string fnt_name;
33 i32 clamp_w;
34 i32 clamp_speed;
35 i32 clamp_delay;
36 i32 clamp_cur_x;
37 i32 clamp_cur_delay;
38
39 public:
40 /**
41 * @brief Creates a new instance of a TextBlock element.
42 * @param x X position of the TextBlock.
43 * @param y Y position of the TextBlock.
44 * @param text Text to render.
45 */
46 TextBlock(const i32 x, const i32 y, const std::string &text);
49
50 inline i32 GetX() override {
51 return this->x;
52 }
53
54 /**
55 * @brief Sets the X position of the TextBlock.
56 * @param x New X position.
57 */
58 inline void SetX(const i32 x) {
59 this->x = x;
60 }
61
62 inline i32 GetY() override {
63 return this->y;
64 }
65
66 /**
67 * @brief Sets the Y position of the TextBlock.
68 * @param y New Y position.
69 */
70 inline void SetY(const i32 y) {
71 this->y = y;
72 }
73
74 i32 GetWidth() override;
75 i32 GetHeight() override;
76
77 /**
78 * @brief Gets the text of the TextBlock.
79 * @return Text of the TextBlock.
80 */
81 inline std::string GetText() {
82 return this->text;
83 }
84
85 /**
86 * @brief Sets the text of the TextBlock.
87 * @param text New text.
88 * @note This will re-render the text.
89 */
90 void SetText(const std::string &text);
91
92 /**
93 * @brief Gets the font name of the TextBlock.
94 * @return Font name of the TextBlock.
95 * @note This will re-render the text.
96 */
97 void SetFont(const std::string &font_name);
98
99 PU_CLASS_POD_GET(Color, clr, Color)
100
101 /**
102 * @brief Sets the color of the TextBlock.
103 * @param clr New color.
104 * @note This will re-render the text.
105 */
106 void SetColor(const Color clr);
107
108 PU_CLASS_POD_GETSET(ClampWidth, clamp_w, i32)
109 PU_CLASS_POD_GETSET(ClampSpeed, clamp_speed, i32)
110 PU_CLASS_POD_GETSET(ClampDelay, clamp_delay, i32)
111
112 /**
113 * @brief Resets the clamping of the TextBlock.
114 */
115 inline void ResetClamp() {
116 this->clamp_cur_x = 0;
117 this->clamp_cur_delay = 0;
118 }
119
120 void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override;
121 void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) override {}
122 };
123
124}
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