The Battle for Wesnoth  1.19.10+dev
gui_definition.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 - 2025
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 
18 #include "gui/auxiliary/tips.hpp"
21 
22 #include <map>
23 
24 class config;
25 
26 namespace gui2
27 {
28 /**
29  * A GUI theme definition.
30  *
31  * Each theme defines the appearance and layout of widgets and windows. At least one theme
32  * (the default) must exist for the game to run. That theme is expected to contain at least
33  * one default definition for each widget type and a layout for each window recorded in the
34  * static registry. Do note that a widget type may have any number of definitions defined
35  * per theme, but a window may only have one layout.
36  *
37  * Non-default themes may omit a default widget definition or a window layout, in which case
38  * the game will fall back on the default definition (for widgets) or the layout (for windows)
39  * specified in the default theme.
40  *
41  * Each widget definition and window layout may also define different variations of itself
42  * to be used based on the current game resolution.
43  */
45 {
46 public:
47  /** Private ctor. Use create to initialize a new definition. */
48  explicit gui_definition(const config& cfg);
49 
50  using widget_definition_map_t = std::map<std::string, styled_widget_definition_ptr>;
51 
52  /** Map of each widget type, by id, and a sub-map of each of the type's definitions, also by id. */
53  std::map<std::string, widget_definition_map_t> widget_types;
54 
55  /** Map of all known windows (the builder class builds a window). */
56  std::map<std::string, builder_window> window_types;
57 
58  /** Activates this GUI. */
59  void activate() const;
60 
62  return description_;
63  }
64 
65 private:
66  std::string id_;
67 
69 
70  /**
71  * Theme-specific settings. These are exposed via globals in the gui2::settings
72  * namespace by calling @ref activate.
73  *
74  * @todo Regarding sounds:
75  * Need to evaluate but probably we want the widget definition be able to:
76  * - Override the default (and clear it). This will allow toggle buttons in a
77  * listbox to sound like a toggle panel.
78  * - Override the default and above per instance of the widget, some buttons
79  * can give a different sound.
80  */
82  {
83  explicit settings_helper(const config& cfg);
84 
85  std::chrono::milliseconds popup_show_delay;
86  std::chrono::milliseconds popup_show_time;
87  std::chrono::milliseconds help_show_time;
88  std::chrono::milliseconds double_click_time;
89  std::chrono::milliseconds repeat_button_repeat_time;
90 
91  std::string sound_button_click;
94  std::string sound_slider_adjust;
95 
97  };
98 
100 
101  std::vector<game_tip> tips_;
102 };
103 
104 using gui_theme_map_t = std::map<std::string, gui_definition>;
105 
106 /** Map of all known GUIs. */
107 extern gui_theme_map_t guis;
108 
109 /** Iterator pointing to the current GUI. */
111 
112 /** Iterator pointing to the default GUI. */
114 
115 /**
116  * Returns the appropriate config data for a widget instance fom the active
117  * GUI definition.
118  *
119  * @param control_type The widget type.
120  * @param definition The definition ID.
121  *
122  * @returns A pointer to the specified definition data struct
123  * for the widget type, accounting for the current
124  * screen resolution.
125  */
126 resolution_definition_ptr get_control(const std::string& control_type, const std::string& definition);
127 
128 /** Helper struct to signal that get_window_builder failed. */
129 struct window_builder_invalid_id : std::exception
130 {
131 };
132 
133 /**
134  * Returns an reference to the requested builder.
135  *
136  * The builder is determined by the @p type and the current screen resolution.
137  *
138  * @pre There is a valid builder for @p type at the
139  * current resolution.
140  *
141  * @throws window_builder_invalid_id
142  * When the precondition is violated.
143  *
144  * @param type The type of builder window to get.
145  *
146  * @returns An iterator to the requested builder.
147  */
149 
150 /** Adds a widget definition to the default GUI. */
151 bool add_single_widget_definition(const std::string& widget_type,
152  const std::string& definition_id,
153  const config& cfg);
154 
155 /** Removes a widget definition from the default GUI. */
156 void remove_single_widget_definition(const std::string& widget_type,
157  const std::string& definition_id);
158 
159 } // namespace gui2
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:158
A GUI theme definition.
std::map< std::string, builder_window > window_types
Map of all known windows (the builder class builds a window).
settings_helper settings_
std::map< std::string, widget_definition_map_t > widget_types
Map of each widget type, by id, and a sub-map of each of the type's definitions, also by id.
std::vector< game_tip > tips_
std::map< std::string, styled_widget_definition_ptr > widget_definition_map_t
gui_definition(const config &cfg)
Private ctor.
void activate() const
Activates this GUI.
Generic file dialog.
bool add_single_widget_definition(const std::string &widget_type, const std::string &definition_id, const config &cfg)
Adds a widget definition to the default GUI.
void remove_single_widget_definition(const std::string &widget_type, const std::string &definition_id)
Removes a widget definition from the default GUI.
std::shared_ptr< resolution_definition > resolution_definition_ptr
const builder_window::window_resolution & get_window_builder(const std::string &type)
Returns an reference to the requested builder.
gui_theme_map_t guis
Map of all known GUIs.
std::map< std::string, gui_definition > gui_theme_map_t
gui_theme_map_t::iterator current_gui
Iterator pointing to the current GUI.
gui_theme_map_t::iterator default_gui
Iterator pointing to the default GUI.
resolution_definition_ptr get_control(const std::string &control_type, const std::string &definition)
Returns the appropriate config data for a widget instance fom the active GUI definition.
std::string::const_iterator iterator
Definition: tokenizer.hpp:25
std::chrono::milliseconds popup_show_time
std::chrono::milliseconds double_click_time
std::chrono::milliseconds popup_show_delay
std::chrono::milliseconds repeat_button_repeat_time
std::chrono::milliseconds help_show_time
Helper struct to signal that get_window_builder failed.