The Battle for Wesnoth  1.19.0-dev
install_dependencies.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2016 - 2024
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"
21 #include "gui/widgets/label.hpp"
22 #include "gui/widgets/window.hpp"
23 #include "tstring.hpp"
24 
25 namespace gui2::dialogs
26 {
27 
28 REGISTER_DIALOG(install_dependencies)
29 
31 {
32  find_widget<label>(&window, "label", false).set_label(t_string(
33  _n(
34  "The selected add-on has the following dependency, which is outdated or not currently installed. Do you wish to install it before continuing?",
35  "The selected add-on has the following dependencies, which are outdated or not currently installed. Do you wish to install them before continuing?",
36  addons_.size())
37  ));
38 
39  find_widget<addon_list>(&window, "dependencies", false).set_addons(addons_);
40 }
41 
42 }
virtual void set_label(const t_string &text)
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
static std::string _n(const char *str1, const char *str2, int n)
Definition: gettext.hpp:97
This file contains the window object, this object is a top level container which has the event manage...
REGISTER_DIALOG(tod_new_schedule)