2
3
4
5
6
7
10#include <pu/ui/elm/elm_Element.hpp>
12namespace pu::ui::
elm {
15
16
27
28
29
30
31
35 inline i32
GetX()
override {
40
41
42
43 inline void SetX(
const i32 x) {
47 inline i32
GetY()
override {
52
53
54
55 inline void SetY(
const i32 y) {
60 return this->rend_opts
.width;
64
65
66
68 this->rend_opts
.width = width;
76
77
78
80 this->rend_opts
.height = height;
86
87
88
92
93
94
96 return this->img_tex !=
nullptr;
100 void OnInput(
const u64 keys_down,
const u64 keys_up,
const u64 keys_held,
const TouchPoint touch_pos)
override {}
High-level handle wrapper to a texture in SDL2.
Definition sdl2_Types.hpp:47
Base class for all UI elements in Plutonium, providing basic functionality for all of them.
Definition elm_Element.hpp:35
Element for image rendering.
Definition elm_Image.hpp:17
void SetX(const i32 x)
Sets the X position of the Image.
Definition elm_Image.hpp:43
void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override
Renders the Element on the screen.
i32 GetHeight() override
Gets the height of the Element.
Definition elm_Image.hpp:71
bool IsImageValid()
Gets the image being rendered.
Definition elm_Image.hpp:95
i32 GetWidth() override
Gets the width of the Element.
Definition elm_Image.hpp:59
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_Image.hpp:100
void SetWidth(const i32 width)
Sets the width of the Image.
Definition elm_Image.hpp:67
void SetY(const i32 y)
Sets the Y position of the Image.
Definition elm_Image.hpp:55
void SetImage(sdl2::TextureHandle::Ref image)
Sets the image to render.
void SetHeight(const i32 height)
Sets the height of the Image.
Definition elm_Image.hpp:79
i32 GetX() override
Gets the X position of the Element.
Definition elm_Image.hpp:35
Image(const i32 x, const i32 y, sdl2::TextureHandle::Ref image)
Creates a new instance of an Image element.
i32 GetY() override
Gets the Y position of the Element.
Definition elm_Image.hpp:47
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
Type encoding a touch point.
Definition ui_Types.hpp:120
Represents the options for rendering a texture.
Definition render_Renderer.hpp:163
float rot_angle
Definition render_Renderer.hpp:167
i32 width
Definition render_Renderer.hpp:165
i32 height
Definition render_Renderer.hpp:166