The Battle for Wesnoth  1.19.2+dev
uninstall_list.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2011 - 2024
3  by Iris Morelle <shadowm2006@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 
19 
20 #include <map>
21 
22 namespace gui2::dialogs
23 {
24 
26 {
27 public:
28  /**
29  * Constructor.
30  *
31  * @param addon_titles_map
32  * Internal id <-> user-visible title mappings for
33  * the add-ons to display.
34  */
36  const std::map<std::string, std::string>& addon_titles_map)
38  , titles_map_(addon_titles_map), ids_(), selections_()
39  {
40  }
41 
42  std::vector<std::string> selected_addons() const;
43 
44 private:
45  std::map<std::string, std::string> titles_map_;
46  std::vector<std::string> ids_;
47  std::map<std::string, bool> selections_;
48 
49  virtual const std::string& window_id() const override;
50 
51  virtual void pre_show(window& window) override;
52 
53  virtual void post_show(window& window) override;
54 };
55 
56 } // namespace dialogs
addon_uninstall_list(const std::map< std::string, std::string > &addon_titles_map)
Constructor.
std::map< std::string, bool > selections_
std::vector< std::string > selected_addons() const
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
std::vector< std::string > ids_
std::map< std::string, std::string > titles_map_
virtual const std::string & window_id() const override
The ID of the window to build.
virtual void post_show(window &window) override
Actions to be taken after the window has been shown.
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:61