The Battle for Wesnoth  1.19.5+dev
drop_down_menu.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 - 2024
3  by Mark de Wever <koraq@xs4all.nl>
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 #define GETTEXT_DOMAIN "wesnoth-lib"
17 
19 
22 #include "gui/widgets/image.hpp"
23 #include "gui/widgets/listbox.hpp"
28 #include "gui/widgets/window.hpp"
29 
30 #include "sdl/rect.hpp"
31 #include <functional>
32 
33 namespace gui2::dialogs
34 {
35 REGISTER_DIALOG(drop_down_menu)
36 
38  : checkbox()
39  , icon(cfg["icon"].str())
40  , image()
41  , label(cfg["label"].t_str())
42  , details()
43  , tooltip(cfg["tooltip"].t_str())
44 {
45  // Checkboxes take precedence in column 1
46  if(cfg.has_attribute("checkbox")) {
47  checkbox = cfg["checkbox"].to_bool(false);
48  }
49 
50  // Images take precedence in column 2
51  if(cfg.has_attribute("image")) {
52  image = cfg["image"].str();
53  }
54 
55  if(cfg.has_attribute("details")) {
56  details = cfg["details"].t_str();
57  }
58 }
59 
60 namespace
61 {
62  void callback_flip_embedded_toggle(window& window)
63  {
64  listbox& list = window.find_widget<listbox>("list", true);
65 
66  /* If the currently selected row has a toggle button, toggle it.
67  * Note this cannot be handled in mouse_up_callback since at that point the new row selection has not registered,
68  * meaning the currently selected row's button is toggled.
69  */
70  grid* row_grid = list.get_row_grid(list.get_selected_row());
71  if(toggle_button* checkbox = row_grid->find_widget<toggle_button>("checkbox", false, false)) {
72  checkbox->set_value_bool(!checkbox->get_value_bool(), true);
73  }
74  }
75 
76  void resize_callback(window& window)
77  {
79  }
80 }
81 
82 drop_down_menu::drop_down_menu(styled_widget* parent, const std::vector<config>& items, int selected_item, bool keep_open)
83  : modal_dialog(window_id())
84  , parent_(parent)
85  , items_(items.begin(), items.end())
86  , button_pos_(parent->get_rectangle())
87  , selected_item_(selected_item)
88  , use_markup_(parent->get_use_markup())
89  , keep_open_(keep_open)
90  , mouse_down_happened_(false)
91 {
92 }
93 
94 drop_down_menu::drop_down_menu(SDL_Rect button_pos, const std::vector<config>& items, int selected_item, bool use_markup, bool keep_open)
95  : modal_dialog(window_id())
96  , parent_(nullptr)
97  , items_(items.begin(), items.end())
98  , button_pos_(button_pos)
99  , selected_item_(selected_item)
100  , use_markup_(use_markup)
101  , keep_open_(keep_open)
102  , mouse_down_happened_(false)
103 {
104 }
105 
107 {
108  if(!mouse_down_happened_) {
109  return;
110  }
111 
112  listbox& list = find_widget<listbox>("list", true);
113 
114  /* Disregard clicks on scrollbars and toggle buttons so the dropdown menu can be scrolled or have an embedded
115  * toggle button selected without the menu closing.
116  *
117  * This works since this mouse_up_callback function is called before widgets' left-button-up handlers.
118  *
119  * Additionally, this is done before row deselection so selecting/deselecting a toggle button doesn't also leave
120  * the list with no row visually selected. Oddly, the visual deselection doesn't seem to cause any crashes, and
121  * the previously selected row is reselected when the menu is opened again. Still, it's odd to see your selection
122  * vanish.
123  */
125  return;
126  }
127 
128  if(dynamic_cast<toggle_button*>(find_at(coordinate, true)) != nullptr) {
129  return;
130  }
131 
132  /* FIXME: This dialog uses a listbox with 'has_minimum = false'. This allows a listbox to have 0 or 1 selections,
133  * and selecting the same entry toggles that entry's state (ie, if it was selected, it will be deselected). Because
134  * of this, selecting the same entry in the dropdown list essentially sets the list's selected row to -1, causing problems.
135  *
136  * In order to work around this, we first manually deselect the selected entry here. This handler is called *before*
137  * the listbox's click handler, and as such the selected item will remain toggled on when the click handler fires.
138  */
139  const int sel = list.get_selected_row();
140  if(sel >= 0) {
141  list.select_row(sel, false);
142  }
143 
146  } else if(!keep_open_) {
148  }
149 }
150 
152 {
153  mouse_down_happened_ = true;
154 }
155 
157 {
158  set_variable("button_x", wfl::variant(button_pos_.x));
159  set_variable("button_y", wfl::variant(button_pos_.y));
160  set_variable("button_w", wfl::variant(button_pos_.w));
161  set_variable("button_h", wfl::variant(button_pos_.h));
162 
163  listbox& list = find_widget<listbox>("list", true);
164 
165  for(const auto& entry : items_) {
167  widget_item item;
168 
169  //
170  // These widgets can be initialized here since they don't require widget type swapping.
171  //
172  item["use_markup"] = utils::bool_string(use_markup_);
173  if(!entry.checkbox) {
174  item["label"] = entry.icon;
175  data.emplace("icon", item);
176  }
177 
178  if(!entry.image) {
179  item["label"] = entry.label;
180  data.emplace("label", item);
181  }
182 
183  if(entry.details) {
184  item["label"] = *entry.details;
185  data.emplace("details", item);
186  }
187 
188  grid& new_row = list.add_row(data);
189  grid& mi_grid = new_row.find_widget<grid>("menu_item");
190 
191  // Set the tooltip on the whole panel
192  new_row.find_widget<toggle_panel>("panel").set_tooltip(entry.tooltip);
193 
194  if(entry.checkbox) {
195  auto checkbox = build_single_widget_instance<toggle_button>(config{"definition", "no_label"});
196  checkbox->set_id("checkbox");
197  checkbox->set_value_bool(*entry.checkbox);
198 
199  // Fire a NOTIFIED_MODIFIED event in the parent widget when the toggle state changes
200  if(parent_) {
201  connect_signal_notify_modified(*checkbox, std::bind([this]() {
203  }));
204  }
205 
206  mi_grid.swap_child("icon", std::move(checkbox), false);
207  }
208 
209  if(entry.image) {
210  auto img = build_single_widget_instance<image>();
211  img->set_label(*entry.image);
212 
213  mi_grid.swap_child("label", std::move(img), false);
214  }
215  }
216 
217  if(selected_item_ >= 0 && static_cast<unsigned>(selected_item_) < list.get_item_count()) {
219  }
220 
221  keyboard_capture(&list);
222 
223  // Dismiss on clicking outside the window.
224  connect_signal<event::SDL_LEFT_BUTTON_UP>(
225  std::bind(&drop_down_menu::mouse_up_callback, this, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5), event::dispatcher::front_child);
226 
227  connect_signal<event::SDL_RIGHT_BUTTON_UP>(
228  std::bind(&drop_down_menu::mouse_up_callback, this, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5), event::dispatcher::front_child);
229 
230  connect_signal<event::SDL_LEFT_BUTTON_DOWN>(
232 
233  // Dismiss on resize.
234  connect_signal<event::SDL_VIDEO_RESIZE>(
235  std::bind([this](){ resize_callback(*this); }), event::dispatcher::front_child);
236 
237  // Handle embedded button toggling.
239  std::bind([this](){ callback_flip_embedded_toggle(*this); }));
240 }
241 
243 {
244  selected_item_ = find_widget<listbox>("list", true).get_selected_row();
245 }
246 
247 boost::dynamic_bitset<> drop_down_menu::get_toggle_states() const
248 {
249  const listbox& list = find_widget<const listbox>("list", true);
250 
251  boost::dynamic_bitset<> states;
252 
253  for(unsigned i = 0; i < list.get_item_count(); ++i) {
254  const grid* row_grid = list.get_row_grid(i);
255 
256  if(const toggle_button* checkbox = row_grid->find_widget<const toggle_button>("checkbox", false, false)) {
257  states.push_back(checkbox->get_value_bool());
258  } else {
259  states.push_back(false);
260  }
261  }
262 
263  return states;
264 }
265 
266 } // namespace dialogs
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:172
Used by the menu_button widget.
std::vector< entry_data > items_
Configuration of each row.
virtual void post_show() override
Actions to be taken after the window has been shown.
SDL_Rect button_pos_
The screen location of the menu_button button that triggered this droplist.
bool keep_open_
Whether to keep this dialog open after a click occurs not handled by special exceptions such as scrol...
virtual void pre_show() override
Actions to be taken before showing the window.
void mouse_up_callback(bool &, bool &, const point &coordinate)
drop_down_menu(styled_widget *parent, const std::vector< config > &items, int selected_item, bool keep_open)
Menu was invoked from a widget (currently a [multi]menu_button).
boost::dynamic_bitset get_toggle_states() const
If a toggle button widget is present, returns the toggled state of each row's button.
bool mouse_down_happened_
When menu is invoked on a long-touch timer, a following mouse-up event will close it.
styled_widget * parent_
The widget that invoked this dialog, if applicable.
Abstract base class for all modal dialogs.
At the moment two kinds of tips are known:
Definition: tooltip.cpp:41
bool fire(const ui_event event, widget &target)
Fires an event which has no extra parameters.
Definition: dispatcher.cpp:74
Base container class.
Definition: grid.hpp:32
std::unique_ptr< widget > swap_child(const std::string &id, std::unique_ptr< widget > w, const bool recurse, widget *new_parent=nullptr)
Exchanges a child in the grid.
Definition: grid.cpp:101
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:58
const grid * get_row_grid(const unsigned row) const
Returns the grid of the wanted row.
Definition: listbox.cpp:229
bool select_row(const unsigned row, const bool select=true)
Selects a row.
Definition: listbox.cpp:242
int get_selected_row() const
Returns the first selected row.
Definition: listbox.cpp:267
unsigned get_item_count() const
Returns the number of items in the listbox.
Definition: listbox.cpp:123
virtual unsigned get_state() const override
See styled_widget::get_state.
Definition: scrollbar.cpp:147
scrollbar_base * vertical_scrollbar()
void set_tooltip(const t_string &tooltip)
NOT_DANGLING T * find_widget(const std::string &id, const bool must_be_active, const bool must_exist)
Gets a widget with the wanted id.
Definition: widget.hpp:742
rect get_rectangle() const
Gets the bounding rectangle of the widget on the screen.
Definition: widget.cpp:321
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:61
void set_retval(const int retval, const bool close_window=true)
Sets there return value of the window.
Definition: window.hpp:395
void keyboard_capture(widget *widget)
Definition: window.cpp:1207
void set_variable(const std::string &key, const wfl::variant &value)
Definition: window.hpp:422
virtual widget * find_at(const point &coordinate, const bool must_be_active) override
See widget::find_at.
Definition: window.cpp:767
std::size_t i
Definition: function.cpp:1028
This file contains the window object, this object is a top level container which has the event manage...
REGISTER_DIALOG(editor_edit_unit)
@ NOTIFY_MODIFIED
Definition: handler.hpp:158
void connect_signal_notify_modified(dispatcher &dispatcher, const signal_notification &signal)
Connects a signal handler for getting a notification upon modification.
Definition: dispatcher.cpp:203
std::map< std::string, widget_item > widget_data
Definition: widget.hpp:36
std::map< std::string, t_string > widget_item
Definition: widget.hpp:33
@ OK
Dialog was closed with the OK button.
Definition: retval.hpp:35
@ CANCEL
Dialog was closed with the CANCEL button.
Definition: retval.hpp:38
Functions to load and save images from/to disk.
std::string img(const std::string &src, const std::string &align, const bool floating)
Definition: markup.cpp:29
map_location coordinate
Contains an x and y coordinate used for starting positions in maps.
bool contains(const Container &container, const Value &value)
Returns true iff value is found in container.
Definition: general.hpp:80
std::string bool_string(const bool value)
Converts a bool value to 'true' or 'false'.
std::string_view data
Definition: picture.cpp:178
Contains the SDL_Rect helper code.
Holds a 2D point.
Definition: point.hpp:25