Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
elm_Image.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file elm_Image.hpp
4 * @brief Contains an element for image 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 image rendering.
16 */
17 class Image : public Element {
18 private:
19 std::string img_path;
20 sdl2::TextureHandle::Ref img_tex;
22 i32 x;
23 i32 y;
24
25 public:
26 /**
27 * @brief Creates a new instance of an Image element.
28 * @param x X position of the Image.
29 * @param y Y position of the Image.
30 * @param image Path to the image to render.
31 */
32 Image(const i32 x, const i32 y, sdl2::TextureHandle::Ref image);
34
35 inline i32 GetX() override {
36 return this->x;
37 }
38
39 /**
40 * @brief Sets the X position of the Image.
41 * @param x New X position.
42 */
43 inline void SetX(const i32 x) {
44 this->x = x;
45 }
46
47 inline i32 GetY() override {
48 return this->y;
49 }
50
51 /**
52 * @brief Sets the Y position of the Image.
53 * @param y New Y position.
54 */
55 inline void SetY(const i32 y) {
56 this->y = y;
57 }
58
59 inline i32 GetWidth() override {
60 return this->rend_opts.width;
61 }
62
63 /**
64 * @brief Sets the width of the Image.
65 * @param width New width.
66 */
67 inline void SetWidth(const i32 width) {
68 this->rend_opts.width = width;
69 }
70
71 inline i32 GetHeight() override {
72 return this->rend_opts.height;
73 }
74
75 /**
76 * @brief Sets the height of the Image.
77 * @param height New height.
78 */
79 inline void SetHeight(const i32 height) {
80 this->rend_opts.height = height;
81 }
82
83 PU_CLASS_POD_GETSET(RotationAngle, rend_opts.rot_angle, float)
84
85 /**
86 * @brief Sets the image to render.
87 * @param image Path to the image to render.
88 */
89 void SetImage(sdl2::TextureHandle::Ref image);
90
91 /**
92 * @brief Gets the image being rendered.
93 * @return Path to the image being rendered.
94 */
95 inline bool IsImageValid() {
96 return this->img_tex != nullptr;
97 }
98
99 void OnRender(render::Renderer::Ref &drawer, const i32 x, const i32 y) override;
100 void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos) override {}
101 };
102
103}
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