The Battle for Wesnoth  1.19.0-dev
uninstall_list.cpp
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 
17 
19 #include "gui/widgets/grid.hpp"
20 #include "gui/widgets/listbox.hpp"
22 #include "gui/widgets/window.hpp"
23 
24 
25 namespace gui2::dialogs
26 {
27 
28 REGISTER_DIALOG(addon_uninstall_list)
29 
31 {
32  listbox& list = find_widget<listbox>(&window, "addons_list", false);
33  window.keyboard_capture(&list);
34 
35  this->selections_.clear();
36 
37  for(const auto & entry : titles_map_)
38  {
39  const std::string& id = entry.first;
40  const std::string& title = entry.second;
41 
42  this->ids_.push_back(id);
43  this->selections_[id] = false;
44 
46  widget_item column;
47 
48  column["label"] = title;
49  data.emplace("name", column);
50 
51  list.add_row(data);
52  }
53 }
54 
56 {
57  const listbox& list = find_widget<listbox>(&window, "addons_list", false);
58  const unsigned rows = list.get_item_count();
59 
60  assert(rows == this->ids_.size() && rows == this->titles_map_.size());
61 
62  if(!rows || get_retval() != retval::OK) {
63  return;
64  }
65 
66  for(unsigned k = 0; k < rows; ++k) {
67  grid const* g = list.get_row_grid(k);
68  const toggle_button& checkbox
69  = find_widget<const toggle_button>(g, "checkbox", false);
70  this->selections_[this->ids_[k]] = checkbox.get_value_bool();
71  }
72 }
73 
74 std::vector<std::string> addon_uninstall_list::selected_addons() const
75 {
76  std::vector<std::string> retv;
77 
78  for(const auto & entry : selections_)
79  {
80  if(entry.second) {
81  retv.push_back(entry.first);
82  }
83  }
84 
85  return retv;
86 }
87 
88 } // namespace dialogs
double g
Definition: astarsearch.cpp:63
Dialog with a checkbox list for choosing installed add-ons to remove.
std::map< std::string, bool > selections_
std::vector< std::string > selected_addons() const
std::vector< std::string > ids_
virtual void post_show(window &window) override
Actions to be taken after the window has been shown.
int get_retval() const
Returns the cached window exit code.
Base container class.
Definition: grid.hpp:32
The listbox class.
Definition: listbox.hpp:43
grid & add_row(const widget_item &item, const int index=-1)
When an item in the list is selected by the user we need to update the state.
Definition: listbox.cpp:59
const grid * get_row_grid(const unsigned row) const
Returns the grid of the wanted row.
Definition: listbox.cpp:230
unsigned get_item_count() const
Returns the number of items in the listbox.
Definition: listbox.cpp:124
Class for a toggle button.
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
void keyboard_capture(widget *widget)
Definition: window.cpp:1215
std::string id
Text to match against addon_info.tags()
Definition: manager.cpp:207
This file contains the window object, this object is a top level container which has the event manage...
REGISTER_DIALOG(tod_new_schedule)
std::map< std::string, widget_item > widget_data
Definition: widget.hpp:34
std::map< std::string, t_string > widget_item
Definition: widget.hpp:31
@ OK
Dialog was closed with the OK button.
Definition: retval.hpp:35
std::string_view data
Definition: picture.cpp:194