The Battle for Wesnoth
1.17.23+dev
gui
dialogs
addon
install_dependencies.cpp
Go to the documentation of this file.
1
/*
2
Copyright (C) 2016 - 2023
3
by Jyrki Vesterinen <sandgtx@gmail.com>
4
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5
6
This program is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
10
This program is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY.
12
13
See the COPYING file for more details.
14
*/
15
16
#include "
install_dependencies.hpp
"
17
18
#include "
gettext.hpp
"
19
#include "
gui/auxiliary/find_widget.hpp
"
20
#include "
gui/widgets/addon_list.hpp
"
21
#include "
gui/widgets/label.hpp
"
22
#include "
gui/widgets/settings.hpp
"
23
#include "
gui/widgets/window.hpp
"
24
#include "
tstring.hpp
"
25
26
namespace
gui2::dialogs
27
{
28
29
REGISTER_DIALOG
(install_dependencies)
30
31
void
install_dependencies
::pre_show(
window
&
window
)
32
{
33
find_widget<label>(&
window
,
"label"
,
false
).
set_label
(
t_string
(
34
_n
(
35
"The selected add-on has the following dependency, which is outdated or not currently installed. Do you wish to install it before continuing?"
,
36
"The selected add-on has the following dependencies, which are outdated or not currently installed. Do you wish to install them before continuing?"
,
37
addons_.size())
38
));
39
40
find_widget<addon_list>(&
window
,
"dependencies"
,
false
).set_addons(addons_);
41
}
42
43
}
addon_list.hpp
gui2::dialogs::install_dependencies
Definition:
install_dependencies.hpp:26
gui2::styled_widget::set_label
virtual void set_label(const t_string &label)
Definition:
styled_widget.cpp:323
gui2::window
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition:
window.hpp:67
t_string
Definition:
tstring.hpp:129
find_widget.hpp
gettext.hpp
_n
static std::string _n(const char *str1, const char *str2, int n)
Definition:
gettext.hpp:97
label.hpp
window.hpp
This file contains the window object, this object is a top level container which has the event manage...
install_dependencies.hpp
REGISTER_DIALOG
#define REGISTER_DIALOG(window_id)
Wrapper for REGISTER_DIALOG2.
Definition:
modal_dialog.hpp:89
gui2::dialogs
Definition:
achievements_dialog.cpp:37
settings.hpp
This file contains the settings handling of the widget library.
tstring.hpp
Generated by
1.9.1