The Battle for Wesnoth  1.19.0-dev
install_dependencies.hpp
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 #pragma once
17 
18 #include "addon/info.hpp"
20 #include <string>
21 
22 namespace gui2::dialogs
23 {
24 
26 {
27 public:
28  explicit install_dependencies(const addons_list& addons)
29  : modal_dialog(window_id()), addons_(addons)
30  {}
31 
33 
34 private:
35  virtual const std::string& window_id() const override;
36 
37  virtual void pre_show(window& window) override;
38 
40 };
41 
42 }
virtual const std::string & window_id() const override
The ID of the window to build.
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
install_dependencies(const addons_list &addons)
Abstract base class for all modal dialogs.
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
std::map< std::string, addon_info > addons_list
Definition: info.hpp:27
#define DEFINE_SIMPLE_EXECUTE_WRAPPER(dialog)
Adds a bare-bonesstatic execute function to a dialog class that immediately invokes and return the re...