2
3
4
5
6
7
10#include <pu/ui/ui_Container.hpp>
15
16
17
21
22
26
27
31
32
41 u8 fade_alpha_variation;
45
46
47
48
49
50
51
52 Overlay(
const i32 x,
const i32 y,
const i32 width,
const i32 height,
const Color bg_clr) :
Container(x
, y
, width
, height
), fade_a(0), bg_clr(bg_clr), rad(
DefaultRadius), is_ending(
false), max_fade_alpha(
DefaultMaxFadeAlpha), fade_alpha_variation(
DefaultFadeAlphaVariation) {}
58
59
60
70
71
72
76
77
78
82
83
87
88
89
90
92 this->is_ending = ending;
Type containing a list of elements.
Definition ui_Container.hpp:19
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
Class that represents an overlay, which is a container that is rendered over the current Layout.
Definition ui_Overlay.hpp:18
void NotifyEnding(const bool ending)
Notifies the overlay that it is ending (fading out).
Definition ui_Overlay.hpp:91
virtual void OnPostRender(render::Renderer::Ref &drawer)
Function called after the overlay is rendered. You may use it to configure additional effects,...
Definition ui_Overlay.hpp:79
bool Render(render::Renderer::Ref &drawer)
Rendering callback of the overlay.
Overlay(const i32 x, const i32 y, const i32 width, const i32 height, const Color bg_clr)
Creates a new Overlay with the specified position, size, and background color.
Definition ui_Overlay.hpp:52
static constexpr i32 DefaultRadius
Default radius of the overlay rectangle.
Definition ui_Overlay.hpp:23
bool HasRadius()
Checks whether the overlay has a radius for its background rectangle.
Definition ui_Overlay.hpp:61
static constexpr u8 DefaultFadeAlphaVariation
Default alpha variation (increment) for the overlay fade effect.
Definition ui_Overlay.hpp:33
static constexpr u8 DefaultMaxFadeAlpha
Default maximum alpha value for the overlay fade effect.
Definition ui_Overlay.hpp:28
virtual void OnPreRender(render::Renderer::Ref &drawer)
Function called before the overlay is rendered. You may use it to configure additional effects,...
Definition ui_Overlay.hpp:73
The main class dealing with rendering.
Definition render_Renderer.hpp:198
Definition render_Renderer.hpp:15
#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 RGBA-8888 color.
Definition ui_Types.hpp:61