The Battle for Wesnoth  1.19.0-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 
25 /**
26  * @ingroup GUIWindowDefinitionWML
27  *
28  * Dialog with a checkbox list for choosing installed add-ons to remove.
29  * Key |Type |Mandatory|Description
30  * ------------------|---------------|---------|-----------
31  * addons_list | @ref listbox |yes |A listbox containing add-on selection entries.
32  * checkbox | toggle_button |yes |A toggle button allowing the user to mark/unmark the add-on.
33  * name | control |no |The name of the add-on.
34  */
36 {
37 public:
38  /**
39  * Constructor.
40  *
41  * @param addon_titles_map
42  * Internal id <-> user-visible title mappings for
43  * the add-ons to display.
44  */
46  const std::map<std::string, std::string>& addon_titles_map)
48  , titles_map_(addon_titles_map), ids_(), selections_()
49  {
50  }
51 
52  std::vector<std::string> selected_addons() const;
53 
54 private:
55  std::map<std::string, std::string> titles_map_;
56  std::vector<std::string> ids_;
57  std::map<std::string, bool> selections_;
58 
59  virtual const std::string& window_id() const override;
60 
61  virtual void pre_show(window& window) override;
62 
63  virtual void post_show(window& window) override;
64 };
65 
66 } // namespace dialogs
Dialog with a checkbox list for choosing installed add-ons to remove.
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:63