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 SCI_DIALOGS_H
23 #define SCI_DIALOGS_H
24 
25 #include "gui/ThemeEval.h"
26 #include "gui/widget.h"
27 #include "gui/widgets/popup.h"
28 
29 namespace Sci {
30 
32  const char *label;
33  int configValue;
34 };
35 
36 #define POPUP_OPTIONS_ITEMS_TERMINATOR { nullptr, 0 }
37 
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 { nullptr, nullptr, nullptr, nullptr, 0, { POPUP_OPTIONS_ITEMS_TERMINATOR } }
48 
50 public:
51  explicit OptionsWidget(GuiObject *boss, const Common::String &name, const Common::String &domain);
52 
53  // OptionsContainerWidget API
54  void load() override;
55  bool save() override;
56 
57 private:
58  // OptionsContainerWidget API
59  void defineLayout(GUI::ThemeEval &layouts, const Common::String &layoutName, const Common::String &overlayedLayout) const override;
60 
61  Common::String _guiOptions;
64 };
65 
66 extern const ADExtraGuiOptionsMap optionsList[];
67 extern const PopUpOptionsMap popUpOptionsList[];
68 
69 } // End of namespace Sci
70 
71 #endif // SCI_DIALOGS_H
Definition: str.h:59
Definition: advancedDetector.h:398
Definition: ThemeEval.h:37
Definition: widget.h:532
Definition: hashmap.h:85
Definition: console.h:28
Definition: dialogs.h:49
Definition: dialogs.h:38
Definition: dialogs.h:31