Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
ui_Container.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file ui_Container.hpp
4 * @brief Contains pu::ui::Container class
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/elm/elm_Element.hpp>
11#include <vector>
12#include <bits/stdc++.h>
13
14namespace pu::ui {
15
16 /**
17 * @brief Type containing a list of elements.
18 */
19 class Container {
20 protected:
21 i32 x;
22 i32 y;
23 i32 w;
24 i32 h;
26
27 public:
28 /**
29 * @brief Creates a new Container with the specified position and size.
30 * @param x The X position of the Container.
31 * @param y The Y position of the Container.
32 * @param width The width of the Container.
33 * @param height The height of the Container.
34 */
35 Container(const i32 x, const i32 y, const i32 width, const i32 height) : x(x), y(y), w(width), h(height), elems() {}
37
38 /**
39 * @brief Adds an Element to the Container.
40 * @param elem The Element to add.
41 */
42 inline void Add(elm::Element::Ref elem) {
43 this->elems.push_back(elem);
44 }
45
46 /**
47 * @brief Gets the list of Elements in the Container.
48 * @return The list of Elements in the Container.
49 */
51 return this->elems;
52 }
53
54 /**
55 * @brief Gets whether the Container has the specified Element.
56 * @param elem The Element to check.
57 * @return Whether the Container has the specified Element.
58 */
59 inline bool Has(elm::Element::Ref &elem) {
60 return std::find(this->elems.begin(), this->elems.end(), elem) != this->elems.end();
61 }
62
63 /**
64 * @brief Removes all elements from the Container.
65 */
66 inline void Clear() {
67 this->elems.clear();
68 }
69
70 PU_CLASS_POD_GETSET(X, x, i32)
71 PU_CLASS_POD_GETSET(Y, y, i32)
72 PU_CLASS_POD_GETSET(Width, w, i32)
73 PU_CLASS_POD_GETSET(Height, h, i32)
74
75 /**
76 * @brief Function to be invoked before rendering the Container.
77 * @note This function is not meant to be called by the user. Application will call it internally.
78 */
79 void PreRender();
80 };
81
82}
Type containing a list of elements.
Definition ui_Container.hpp:19
i32 x
Definition ui_Container.hpp:21
std::vector< elm::Element::Ref > elems
Definition ui_Container.hpp:25
i32 w
Definition ui_Container.hpp:23
bool Has(elm::Element::Ref &elem)
Gets whether the Container has the specified Element.
Definition ui_Container.hpp:59
void Clear()
Removes all elements from the Container.
Definition ui_Container.hpp:66
std::vector< elm::Element::Ref > & GetElements()
Gets the list of Elements in the Container.
Definition ui_Container.hpp:50
Container(const i32 x, const i32 y, const i32 width, const i32 height)
Creates a new Container with the specified position and size.
Definition ui_Container.hpp:35
i32 y
Definition ui_Container.hpp:22
i32 h
Definition ui_Container.hpp:24
void PreRender()
Function to be invoked before rendering the Container.
void Add(elm::Element::Ref elem)
Adds an Element to the Container.
Definition ui_Container.hpp:42
Base class for all UI elements in Plutonium, providing basic functionality for all of them.
Definition elm_Element.hpp:35
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