ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
views.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 GOT_VIEWS_H
23 #define GOT_VIEWS_H
24 
25 #include "got/views/credits.h"
26 #include "got/views/dialogs/ask.h"
27 #include "got/views/dialogs/high_scores.h"
28 #include "got/views/dialogs/main_menu.h"
29 #include "got/views/dialogs/options_menu.h"
30 #include "got/views/dialogs/quit.h"
31 #include "got/views/dialogs/quit_game.h"
32 #include "got/views/dialogs/save_game.h"
33 #include "got/views/dialogs/say.h"
34 #include "got/views/dialogs/select_game.h"
35 #include "got/views/dialogs/select_item.h"
36 #include "got/views/dialogs/select_scroll.h"
37 #include "got/views/dialogs/select_slow.h"
38 #include "got/views/dialogs/set_music.h"
39 #include "got/views/dialogs/set_sound.h"
40 #include "got/views/dialogs/skill_level.h"
41 #include "got/views/game.h"
42 #include "got/views/opening.h"
43 #include "got/views/part_title.h"
44 #include "got/views/splash_screen.h"
45 #include "got/views/story.h"
46 #include "got/views/title_background.h"
47 
48 namespace Got {
49 namespace Views {
50 
51 struct Views {
52  Credits _credits;
53  Game _game;
54  Opening _opening;
55  PartTitle _partTitle;
56  SplashScreen _splashScreen;
57  Story _story;
58  TitleBackground _titleBackground;
59 
60  Dialogs::Ask _ask;
61  Dialogs::HighScores _highScores;
62  Dialogs::MainMenu _mainMenu;
63  Dialogs::OptionsMenu _optionsMenu;
64  Dialogs::Quit _quit;
65  Dialogs::QuitGame _quitGame;
66  Dialogs::SaveGame _saveGame;
67  Dialogs::Say _say;
68  Dialogs::SelectGame _selectGame;
69  Dialogs::SelectItem _selectItem;
70  Dialogs::SelectScroll _selectScroll;
71  Dialogs::SelectSlow _selectSlow;
72  Dialogs::SetMusic _setMusic;
73  Dialogs::SetSound _setSound;
74  Dialogs::SkillLevel _skillLevel;
75 };
76 
77 } // namespace Views
78 } // namespace Got
79 
80 #endif
Definition: select_item.h:31
Definition: set_music.h:31
Definition: part_title.h:30
Definition: ask.h:31
Definition: set_sound.h:31
Definition: select_game.h:31
Definition: say.h:32
Definition: high_scores.h:31
Definition: save_game.h:31
Definition: game.h:32
Definition: skill_level.h:31
Definition: opening.h:30
Definition: title_background.h:34
Definition: views.h:51
Definition: select_slow.h:31
Definition: main_menu.h:31
Definition: select_scroll.h:31
Definition: splash_screen.h:30
Definition: quit_game.h:31
Definition: credits.h:30
Definition: story.h:30
Definition: console.h:28
Definition: quit.h:31
Definition: options_menu.h:31