2
3
4
5
6
7
10#include <pu/ui/elm/elm_Element.hpp>
12#include <bits/stdc++.h>
17
18
29
30
31
32
33
34
35 Container(
const i32 x,
const i32 y,
const i32 width,
const i32 height) :
x(x),
y(y),
w(width),
h(height),
elems() {}
39
40
41
43 this->elems.push_back(elem);
47
48
49
55
56
57
58
60 return std::find(
this->elems.begin(),
this->elems.end(), elem) !=
this->elems.end();
64
65
76
77
78
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