The Battle for Wesnoth  1.19.0-dev
language_selection.hpp
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 #pragma once
17 
19 
20 #include <boost/dynamic_bitset.hpp>
21 
22 struct language_def;
23 
24 namespace gui2::dialogs
25 {
26 
27 /**
28  * @ingroup GUIWindowDefinitionWML
29  *
30  * This shows the dialog to select the language to use.
31  * When the dialog is closed with the OK button it also updates the selected language in the preferences.
32  * Key |Type |Mandatory|Description
33  * ------------------|--------------|---------|-----------
34  * language_list | @ref listbox |yes |This listbox contains the list with available languages.
35  * free to choose | control |no |Show the name of the language in the current row.
36  */
38 {
39 public:
41 
42  /** The execute function. See @ref modal_dialog for more information. */
44 
45 private:
46  virtual const std::string& window_id() const override;
47 
48  virtual void pre_show(window& window) override;
49 
50  virtual void post_show(window& window) override;
51 
52  void shown_filter_callback();
53 
54  const std::vector<language_def> langs_;
55  boost::dynamic_bitset<> complete_langs_;
56 };
57 
58 } // namespace dialogs
This shows the dialog to select the language to use.
virtual void post_show(window &window) override
Actions to be taken after the window has been shown.
virtual const std::string & window_id() const override
The execute function.
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
const std::vector< language_def > langs_
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
#define DEFINE_SIMPLE_EXECUTE_WRAPPER(dialog)
Adds a bare-bonesstatic execute function to a dialog class that immediately invokes and return the re...