ScummVM API documentation
dialogs.h
1
/* ScummVM - Graphic Adventure Engine
2
*
3
* ScummVM is the legal property of its developers, whose names
4
* are too numerous to list here. Please refer to the COPYRIGHT
5
* file distributed with this source distribution.
6
*
7
* This program is free software: you can redistribute it and/or modify
8
* it under the terms of the GNU General Public License as published by
9
* the Free Software Foundation, either version 3 of the License, or
10
* (at your option) any later version.
11
*
12
* This program is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU General Public License for more details.
16
*
17
* You should have received a copy of the GNU General Public License
18
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19
*
20
*/
21
22
#ifndef DARKSEED_DIALOGS_H
23
#define DARKSEED_DIALOGS_H
24
25
#include "gui/ThemeEval.h"
26
#include "gui/widget.h"
27
#include "gui/widgets/popup.h"
28
29
namespace
Darkseed
{
30
31
struct
PopUpOptionsItem
{
32
const
char
*label;
33
int
configValue;
34
};
35
36
#define POPUP_OPTIONS_ITEMS_TERMINATOR {nullptr, 0}
37
38
struct
PopUpOptionsMap
{
39
const
char
*guioFlag;
40
const
char
*label;
41
const
char
*tooltip;
42
const
char
*configOption;
43
int
defaultState;
44
PopUpOptionsItem
items[10];
45
};
46
47
#define POPUP_OPTIONS_TERMINATOR \
48
{ \
49
nullptr, nullptr, nullptr, nullptr, 0, { POPUP_OPTIONS_ITEMS_TERMINATOR } \
50
}
51
52
class
OptionsWidget
:
public
GUI::OptionsContainerWidget
{
53
public
:
54
explicit
OptionsWidget
(GuiObject *boss,
const
Common::String
&name,
const
Common::String
&domain);
55
56
// OptionsContainerWidget API
57
void
load()
override
;
58
bool
save()
override
;
59
60
private
:
61
// OptionsContainerWidget API
62
void
defineLayout(
GUI::ThemeEval
&layouts,
const
Common::String
&layoutName,
const
Common::String
&overlayedLayout)
const override
;
63
64
Common::String
_guiOptions;
65
Common::HashMap<Common::String, GUI::CheckboxWidget *>
_checkboxes;
66
Common::HashMap<Common::String, GUI::PopUpWidget *>
_popUps;
67
};
68
69
extern
const
ADExtraGuiOptionsMap
optionsList[];
70
extern
const
PopUpOptionsMap
popUpOptionsList[];
71
72
}
// End of namespace Darkseed
73
74
#endif // DARKSEED_DIALOGS_H
Darkseed::PopUpOptionsItem
Definition:
dialogs.h:31
Common::String
Definition:
str.h:59
Darkseed::PopUpOptionsMap
Definition:
dialogs.h:38
ADExtraGuiOptionsMap
Definition:
advancedDetector.h:400
GUI::ThemeEval
Definition:
ThemeEval.h:37
GUI::OptionsContainerWidget
Definition:
widget.h:533
Darkseed::OptionsWidget
Definition:
dialogs.h:52
Common::HashMap
Definition:
hashmap.h:85
Darkseed
Definition:
adlib_dsf.h:27
engines
darkseed
dialogs.h
Generated on Thu Dec 11 2025 09:06:58 for ScummVM API documentation by
1.8.13