The Battle for Wesnoth
1.19.5+dev
gui
dialogs
label_settings.hpp
Go to the documentation of this file.
1
/*
2
Copyright (C) 2017 - 2024
3
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4
5
This program is free software; you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation; either version 2 of the License, or
8
(at your option) any later version.
9
This program is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY.
11
12
See the COPYING file for more details.
13
*/
14
15
#pragma once
16
17
#include "
gui/dialogs/modal_dialog.hpp
"
18
19
#include "
display_context.hpp
"
20
#include "
tstring.hpp
"
21
22
#include <map>
23
24
namespace
gui2::dialogs
25
{
26
class
label_settings
:
public
modal_dialog
27
{
28
public
:
29
label_settings
(
display_context
& dc);
30
31
/** The execute function. See @ref modal_dialog for more information. */
32
DEFINE_SIMPLE_EXECUTE_WRAPPER
(
label_settings
)
33
34
private
:
35
std::map<std::string, bool>
all_labels_
;
36
std::map<std::string, t_string>
labels_display_
;
37
38
display_context
&
viewer_
;
39
40
virtual
const
std::string&
window_id
()
const override
;
41
42
virtual
void
pre_show
()
override
;
43
44
virtual
void
post_show
()
override
;
45
46
/** Callback for toggling a checkbox state. */
47
void
toggle_category
(
widget
& box,
const
std::string& category);
48
};
49
}
// namespace dialogs
display_context
Abstract class for exposing game data that doesn't depend on the GUI, however which for historical re...
Definition:
display_context.hpp:35
gui2::dialogs::label_settings
Definition:
label_settings.hpp:27
gui2::dialogs::label_settings::labels_display_
std::map< std::string, t_string > labels_display_
Definition:
label_settings.hpp:36
gui2::dialogs::label_settings::viewer_
display_context & viewer_
Definition:
label_settings.hpp:38
gui2::dialogs::label_settings::toggle_category
void toggle_category(widget &box, const std::string &category)
Callback for toggling a checkbox state.
Definition:
label_settings.cpp:135
gui2::dialogs::label_settings::label_settings
label_settings(display_context &dc)
Definition:
label_settings.cpp:37
gui2::dialogs::label_settings::pre_show
virtual void pre_show() override
Actions to be taken before showing the window.
Definition:
label_settings.cpp:83
gui2::dialogs::label_settings::all_labels_
std::map< std::string, bool > all_labels_
The execute function.
Definition:
label_settings.hpp:35
gui2::dialogs::label_settings::post_show
virtual void post_show() override
Actions to be taken after the window has been shown.
Definition:
label_settings.cpp:120
gui2::dialogs::label_settings::window_id
virtual const std::string & window_id() const override
The ID of the window to build.
gui2::dialogs::modal_dialog
Abstract base class for all modal dialogs.
Definition:
modal_dialog.hpp:146
gui2::widget
Base class for all widgets.
Definition:
widget.hpp:55
display_context.hpp
modal_dialog.hpp
DEFINE_SIMPLE_EXECUTE_WRAPPER
#define DEFINE_SIMPLE_EXECUTE_WRAPPER(dialog)
Adds a bare-bonesstatic execute function to a dialog class that immediately invokes and return the re...
Definition:
modal_dialog.hpp:112
gui2::dialogs
Definition:
achievements_dialog.cpp:36
tstring.hpp
Generated by
1.9.1