Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
pu::ui::Container Class Reference

Type containing a list of elements. More...

#include <ui_Container.hpp>

Inheritance diagram for pu::ui::Container:
pu::ui::Layout pu::ui::Overlay pu::ui::extras::Toast

Public Member Functions

 Container (const i32 x, const i32 y, const i32 width, const i32 height)
 Creates a new Container with the specified position and size.
 
void Add (elm::Element::Ref elem)
 Adds an Element to the Container.
 
std::vector< elm::Element::Ref > & GetElements ()
 Gets the list of Elements in the Container.
 
bool Has (elm::Element::Ref &elem)
 Gets whether the Container has the specified Element.
 
void Clear ()
 Removes all elements from the Container.
 
void PreRender ()
 Function to be invoked before rendering the Container.
 

Protected Attributes

i32 x
 
i32 y
 
i32 w
 
i32 h
 
std::vector< elm::Element::Ref > elems
 

Detailed Description

Type containing a list of elements.

Constructor & Destructor Documentation

◆ Container()

pu::ui::Container::Container ( const i32 x,
const i32 y,
const i32 width,
const i32 height )
inline

Creates a new Container with the specified position and size.

Parameters
xThe X position of the Container.
yThe Y position of the Container.
widthThe width of the Container.
heightThe height of the Container.

Member Function Documentation

◆ Add()

void pu::ui::Container::Add ( elm::Element::Ref elem)
inline

Adds an Element to the Container.

Parameters
elemThe Element to add.

◆ Clear()

void pu::ui::Container::Clear ( )
inline

Removes all elements from the Container.

◆ GetElements()

std::vector< elm::Element::Ref > & pu::ui::Container::GetElements ( )
inline

Gets the list of Elements in the Container.

Returns
The list of Elements in the Container.

◆ Has()

bool pu::ui::Container::Has ( elm::Element::Ref & elem)
inline

Gets whether the Container has the specified Element.

Parameters
elemThe Element to check.
Returns
Whether the Container has the specified Element.

◆ PreRender()

void pu::ui::Container::PreRender ( )

Function to be invoked before rendering the Container.

Note
This function is not meant to be called by the user. Application will call it internally.

Member Data Documentation

◆ elems

std::vector<elm::Element::Ref> pu::ui::Container::elems
protected

◆ h

i32 pu::ui::Container::h
protected

◆ w

i32 pu::ui::Container::w
protected

◆ x

i32 pu::ui::Container::x
protected

◆ y

i32 pu::ui::Container::y
protected

The documentation for this class was generated from the following file: