2
3
4
5
6
7
10#include <pu/ui/render/render_Renderer.hpp>
18
19
20
63 std::string title_font_name;
64 std::string cnt_font_name;
65 std::string opt_font_name;
68 sdl2::Texture title_tex;
69 sdl2::Texture cnt_tex;
70 std::vector<std::string> opts;
71 std::string cancel_opt;
73 i32 selected_opt_over_alpha;
75 i32 prev_selected_opt_idx;
76 i32 prev_selected_opt_over_alpha;
83 u32 dialog_border_radius;
84 u32 space_between_options;
85 u32 space_between_option_rows;
86 u32 title_extra_width;
88 u32 space_between_cnt_and_options;
94 u32 opts_base_h_margin;
97 u32 opt_border_radius;
98 u32 opt_bottom_margin;
99 u8 max_screen_fade_alpha;
103 u8 over_alpha_incr_steps;
104 u8 fade_alpha_incr_steps;
106 inline Color MakeDialogColor(
const u8 alpha) {
110 inline Color MakeOverColor(
const u8 alpha) {
120
121
122
123
124 Dialog(
const std::string &title,
const std::string &content);
129
130
131
135
136
137
138
139
141 this->cancel_opt = opt_name;
145
146
152
153
154
156 return !
this->cancel_opt.empty();
162
163
164
168
169
170
176
177
178
182
183
184
213
214
215
219
220
221
223 return this->icon_tex !=
nullptr;
227
228
229
230
231
235
236
237
238
240 return this->user_cancelled;
244
245
246
247
249 if(
this->user_cancelled) {
High-level handle wrapper to a texture in SDL2.
Definition sdl2_Types.hpp:47
Type that represents the basic object in this library, the general context for UI and rendering.
Definition ui_Application.hpp:20
Class that represents a dialog, which is a simple way to show a message and various options to the us...
Definition ui_Dialog.hpp:21
static constexpr u32 DefaultIconMargin
Definition ui_Dialog.hpp:54
static constexpr Color DefaultTitleColor
Definition ui_Dialog.hpp:25
constexpr bool UserCancelled()
Gets whether the user cancelled the Dialog.
Definition ui_Dialog.hpp:239
void SetCancelOption(const std::string &opt_name)
Sets the option that will cancel the Dialog.
Definition ui_Dialog.hpp:140
bool HasCancelOption()
Checks whether the Dialog has a cancel option.
Definition ui_Dialog.hpp:155
static constexpr u32 DefaultContentX
Definition ui_Dialog.hpp:41
static constexpr Color DefaultDialogColor
Definition ui_Dialog.hpp:59
void SetContentColor(const Color clr)
Sets the color of the content.
static constexpr Color DefaultContentColor
Definition ui_Dialog.hpp:26
static constexpr u32 DefaultTitleTopMargin
Definition ui_Dialog.hpp:37
static constexpr u32 DefaultOptionBorderRadius
Definition ui_Dialog.hpp:49
static constexpr u32 DefaultTitleExtraWidth
Definition ui_Dialog.hpp:34
i32 Show(Application *app_ref)
Shows the Dialog to the user.
static constexpr u8 DefaultOverAlphaIncrementSteps
Definition ui_Dialog.hpp:56
static constexpr u32 DefaultOptionHorizontalMargin
Definition ui_Dialog.hpp:48
static constexpr u32 DefaultDialogBorderRadius
Definition ui_Dialog.hpp:29
static constexpr u32 DefaultSpaceBetweenContentAndOptions
Definition ui_Dialog.hpp:36
static constexpr u32 DefaultOptionsBaseHorizontalMargin
Definition ui_Dialog.hpp:46
void SetContent(const std::string &new_content)
Sets the content of the Dialog.
void SetTitle(const std::string &new_title)
Sets the title of the Dialog.
void SetTitleColor(const Color clr)
Sets the color of the title.
static constexpr u8 DefaultMaxScreenFadeAlpha
Definition ui_Dialog.hpp:52
void RemoveCancelOption()
Removes the cancel option from the Dialog.
Definition ui_Dialog.hpp:147
static constexpr Color DefaultOverColor
Definition ui_Dialog.hpp:60
static constexpr u32 DefaultOptionBottomMargin
Definition ui_Dialog.hpp:50
static constexpr u32 DefaultSpaceBetweenOptions
Definition ui_Dialog.hpp:31
void AddOption(const std::string &opt_name)
Adds an option to the Dialog.
static constexpr u32 DefaultTitleX
Definition ui_Dialog.hpp:39
static constexpr u32 DefaultSpaceBetweenOptionRows
Definition ui_Dialog.hpp:32
static constexpr u32 DefaultIconExtraHeight
Definition ui_Dialog.hpp:44
static constexpr u32 DefaultContentY
Definition ui_Dialog.hpp:42
bool HasIcon()
Checks whether the Dialog has an icon.
Definition ui_Dialog.hpp:222
void SetIcon(sdl2::TextureHandle::Ref tex)
Sets the icon of the Dialog.
static constexpr Color DefaultOptionColor
Definition ui_Dialog.hpp:27
static constexpr u32 DefaultOptionHeight
Definition ui_Dialog.hpp:47
static constexpr u32 DefaultContentExtraWidth
Definition ui_Dialog.hpp:35
bool IsOk()
Gets whether the Dialog has been shown and the user selected an option.
Definition ui_Dialog.hpp:248
static constexpr u32 DefaultTitleY
Definition ui_Dialog.hpp:40
static constexpr u8 DefaultFadeAlphaIncrementSteps
Definition ui_Dialog.hpp:57
Dialog(const std::string &title, const std::string &content)
Creates a new Dialog with the specified title and content.
Type used to vary a value, from an initial value to a final one, following the shape of a sigmoid fun...
Definition ui_Types.hpp:166
Definition sdl2_Types.hpp:17
#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
#define PU_CLASS_POD_GET(fn_name, var_name, type)
Automatically defines a getter function for a POD variable.
Definition pu_Include.hpp:29
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61
Color WithAlpha(const u8 a)
Creates a new Color with this Color's RGB values and the specified alpha value.
Definition ui_Types.hpp:93
constexpr Color(const u8 r, const u8 g, const u8 b, const u8 a)
Creates a new Color with the specified values.
Definition ui_Types.hpp:79