The Battle for Wesnoth
1.19.5+dev
gui
dialogs
prompt.cpp
Go to the documentation of this file.
1
/*
2
Copyright (C) 2023 - 2024
3
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4
5
This program is free software; you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation; either version 2 of the License, or
8
(at your option) any later version.
9
This program is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY.
11
12
See the COPYING file for more details.
13
*/
14
15
#define GETTEXT_DOMAIN "wesnoth-lib"
16
17
#include "
gui/dialogs/prompt.hpp
"
18
19
#include "
gui/widgets/text_box.hpp
"
20
21
namespace
gui2::dialogs
22
{
23
24
REGISTER_DIALOG
(prompt)
25
26
prompt
::
prompt
(std::
string
& value)
27
:
modal_dialog
(window_id())
28
, value_(value)
29
{
30
find_widget<text_box>(
"prompt_box"
).set_value(value);
31
}
32
33
void
prompt::pre_show
()
34
{
35
text_box
* prompt_box = find_widget<text_box>(
"prompt_box"
,
false
,
true
);
36
keyboard_capture
(prompt_box);
37
}
38
39
void
prompt::post_show
()
40
{
41
value_
= find_widget<text_box>(
"prompt_box"
).get_value();
42
}
43
44
}
// namespace gui2::dialogs
gui2::dialogs::modal_dialog
Abstract base class for all modal dialogs.
Definition:
modal_dialog.hpp:146
gui2::dialogs::prompt
Definition:
prompt.hpp:26
gui2::dialogs::prompt::value_
std::string & value_
Definition:
prompt.hpp:39
gui2::dialogs::prompt::pre_show
virtual void pre_show() override
The execute function.
Definition:
prompt.cpp:33
gui2::dialogs::prompt::post_show
virtual void post_show() override
Actions to be taken after the window has been shown.
Definition:
prompt.cpp:39
gui2::text_box
A widget that allows the user to input text in single line.
Definition:
text_box.hpp:125
gui2::window::keyboard_capture
void keyboard_capture(widget *widget)
Definition:
window.cpp:1207
gui2::dialogs
Definition:
achievements_dialog.cpp:36
gui2::dialogs::REGISTER_DIALOG
REGISTER_DIALOG(editor_edit_unit)
prompt.hpp
text_box.hpp
Generated by
1.9.1