Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
extras_Toast.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file extras_Toast.hpp
4 * @brief Toast class to show simple messages on the screen.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/ui_Overlay.hpp>
11#include <pu/ui/elm/elm_TextBlock.hpp>
12
13namespace pu::ui::extras {
14
15 /**
16 * @brief Overlay implementation that represents a simple message that appears on the screen.
17 */
18 class Toast final : public Overlay {
19 public:
20 // Self-explanatory constants
21
22 static constexpr i32 DefaultY = 550;
23 static constexpr i32 DefaulHeightAndTextHeightFactor = 3;
24 static constexpr i32 DefaulHorizontalMargin = 50;
25 static constexpr u8 DefaulBaseAlpha = 200;
26
27 private:
28 pu::ui::elm::TextBlock::Ref text;
29 i32 height_and_text_height_factor;
30 i32 h_margin;
31 u8 base_alpha;
32
33 void AdjustDimensions();
34
35 public:
36 /**
37 * @brief Creates a new instance of a Toast.
38 * @param text_block TextBlock to use for the Toast.
39 * @param bg_clr Background color of the Toast.
40 */
41 Toast(elm::TextBlock::Ref &text_block, const Color bg_clr);
42 PU_SMART_CTOR(Toast)
43
44 PU_CLASS_POD_GETSET(HeightAndTextHeightFactor, height_and_text_height_factor, i32)
45 PU_CLASS_POD_GETSET(HorizontalMargin, h_margin, i32)
46 PU_CLASS_POD_GETSET(BaseAlpha, base_alpha, u8)
47
48 /**
49 * @brief Sets the text of the Toast.
50 * @param text New text to set.
51 */
52 void SetText(const std::string &text);
53
54 void OnPreRender(render::Renderer::Ref &drawer) override;
55 void OnPostRender(render::Renderer::Ref &drawer) override;
56 };
57
58}
Class that represents an overlay, which is a container that is rendered over the current Layout.
Definition ui_Overlay.hpp:18
Element for text rendering.
Definition elm_TextBlock.hpp:17
static constexpr i32 DefaultY
Definition extras_Toast.hpp:22
static constexpr i32 DefaulHeightAndTextHeightFactor
Definition extras_Toast.hpp:23
void SetText(const std::string &text)
Sets the text of the Toast.
static constexpr i32 DefaulHorizontalMargin
Definition extras_Toast.hpp:24
static constexpr u8 DefaulBaseAlpha
Definition extras_Toast.hpp:25
Toast(elm::TextBlock::Ref &text_block, const Color bg_clr)
Creates a new instance of a Toast.
void OnPostRender(render::Renderer::Ref &drawer) override
Function called after the overlay is rendered. You may use it to configure additional effects,...
void OnPreRender(render::Renderer::Ref &drawer) override
Function called before the overlay is rendered. You may use it to configure additional effects,...
The main class dealing with rendering.
Definition render_Renderer.hpp:198
Definition extras_Toast.hpp:13
Definition render_Renderer.hpp:15
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
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61