2
3
4
5
6
7
10#include <pu/ui/elm/elm_Element.hpp>
12namespace pu::ui::
elm {
15
16
28
29
30
31
32
33
34
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) {}
39 inline i32
GetX()
override {
44
45
46
47 inline void SetX(
const i32 x) {
51 inline i32
GetY()
override {
56
57
58
59 inline void SetY(
const i32 y) {
68
69
70
80
81
82
91 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()
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