Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
elm_Rectangle.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file elm_Rectangle.hpp
4 * @brief Contains an element for rendering rectangles.
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 rendering rectangles.
16 */
17 class Rectangle : public Element {
18 private:
19 i32 x;
20 i32 y;
21 i32 w;
22 i32 h;
23 Color clr;
24 i32 border_radius;
25
26 public:
27 /**
28 * @brief Creates a new instance of a Rectangle element.
29 * @param x X position of the Rectangle.
30 * @param y Y position of the Rectangle.
31 * @param width Width of the Rectangle.
32 * @param height Height of the Rectangle.
33 * @param clr Color of the Rectangle.
34 * @param border_radius Radius of the Rectangle's corners, or 0 for no rounded corners.
35 */
36 Rectangle(const i32 x, const i32 y, const i32 width, const i32 height, const Color clr, const i32 border_radius = 0) : Element(), x(x), y(y), w(width), h(height), clr(clr), border_radius(border_radius) {}
38
39 inline i32 GetX() override {
40 return this->x;
41 }
42
43 /**
44 * @brief Sets the X position of the Rectangle.
45 * @param x New X position.
46 */
47 inline void SetX(const i32 x) {
48 this->x = x;
49 }
50
51 inline i32 GetY() override {
52 return this->y;
53 }
54
55 /**
56 * @brief Sets the Y position of the Rectangle.
57 * @param y New Y position.
58 */
59 inline void SetY(const i32 y) {
60 this->y = y;
61 }
62
63 inline i32 GetWidth() override {
64 return this->w;
65 }
66
67 /**
68 * @brief Sets the width of the Rectangle.
69 * @param width New width.
70 */
71 inline void SetWidth(const i32 width) {
72 this->w = width;
73 }
74
75 inline i32 GetHeight() override {
76 return this->h;
77 }
78
79 /**
80 * @brief Sets the height of the Rectangle.
81 * @param height New height.
82 */
83 inline void SetHeight(const i32 height) {
84 this->h = height;
85 }
86
87 PU_CLASS_POD_GETSET(BorderRadius, border_radius, i32)
88 PU_CLASS_POD_GETSET(Color, clr, Color)
89
90 void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override;
91 void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) override {}
92 };
93
94}
Base class for all UI elements in Plutonium, providing basic functionality for all of them.
Definition elm_Element.hpp:35
Element()
Creates a new instance of an Element.
Definition elm_Element.hpp:46
Element for rendering rectangles.
Definition elm_Rectangle.hpp:17
void SetX(const i32 x)
Sets the X position of the Rectangle.
Definition elm_Rectangle.hpp:47
void SetY(const i32 y)
Sets the Y position of the Rectangle.
Definition elm_Rectangle.hpp:59
i32 GetY() override
Gets the Y position of the Element.
Definition elm_Rectangle.hpp:51
i32 GetX() override
Gets the X position of the Element.
Definition elm_Rectangle.hpp:39
void SetWidth(const i32 width)
Sets the width of the Rectangle.
Definition elm_Rectangle.hpp:71
i32 GetWidth() override
Gets the width of the Element.
Definition elm_Rectangle.hpp:63
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_Rectangle.hpp:91
void SetHeight(const i32 height)
Sets the height of the Rectangle.
Definition elm_Rectangle.hpp:83
void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override
Renders the Element on the screen.
Rectangle(const i32 x, const i32 y, const i32 width, const i32 height, const Color clr, const i32 border_radius=0)
Creates a new instance of a Rectangle element.
Definition elm_Rectangle.hpp:36
i32 GetHeight() override
Gets the height of the Element.
Definition elm_Rectangle.hpp:75
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
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61
Type encoding a touch point.
Definition ui_Types.hpp:120