Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
|
Main UI types header. More...
#include <pu/pu_Include.hpp>
Go to the source code of this file.
Classes | |
struct | pu::ui::Color |
Type encoding a RGBA-8888 color. More... | |
struct | pu::ui::TouchPoint |
Type encoding a touch point. More... | |
class | pu::ui::SigmoidIncrementer< T > |
Type used to vary a value, from an initial value to a final one, following the shape of a sigmoid function. More... | |
Namespaces | |
namespace | pu |
namespace | pu::ui |
Enumerations | |
enum class | pu::ui::DefaultFontSize : u32 { pu::ui::Small , pu::ui::Medium , pu::ui::MediumLarge , pu::ui::Large , pu::ui::Count } |
Enum containing the default font sizes used by Plutonium components. More... | |
Functions | |
std::string | pu::ui::MakeDefaultFontName (const u32 font_size) |
Makes a default font name with the specified font size. | |
constexpr u32 | pu::ui::GetDefaultFontSize (const DefaultFontSize kind) |
Gets the default font size value for the specified DefaultFontSize. | |
std::string | pu::ui::GetDefaultFont (const DefaultFontSize kind) |
Gets the default font name for the specified DefaultFontSize. | |
static constexpr bool | pu::ui::TouchHitsRegion (const i32 touch_x, const i32 touch_y, const i32 region_x, const i32 region_y, const i32 region_w, const i32 region_h) |
Helper function to check whether a touch point hits a rectangle region. | |
Variables | |
constexpr u32 | pu::ui::DefaultFontSizes [static_cast< u32 >(DefaultFontSize::Count)] = { 27, 30, 37, 45 } |
Array containing the default font size values used by Plutonium components, for all DefaultFontSize values. | |
constexpr u64 | pu::ui::TouchPseudoKey = 1 << 29 |
Input key value used internally by Plutonium to represent the presence of a touch input. | |
Main UI types header.
Plutonium library