00001 /* ResidualVM - A 3D game interpreter00002 *00003 * ResidualVM is the legal property of its developers, whose names00004 * are too numerous to list here. Please refer to the AUTHORS00005 * file distributed with this source distribution.00006 *00007 * This program is free software; you can redistribute it and/or00008 * modify it under the terms of the GNU General Public License00009 * as published by the Free Software Foundation; either version 200010 * of the License, or (at your option) any later version.00011 *00012 * This program is distributed in the hope that it will be useful,00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the00015 * GNU General Public License for more details.00016 *00017 * You should have received a copy of the GNU General Public License00018 * along with this program; if not, write to the Free Software00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.00020 *00021 */00022
00023 #ifndef STARK_UI_MENU_MAIN_MENU_H00024 #define STARK_UI_MENU_MAIN_MENU_H00025
00026 #include "engines/stark/ui/menu/locationscreen.h"00027
00028 namespace Stark {
00029
00033class MainMenuScreen : publicStaticLocationScreen {
00034 public:
00035 MainMenuScreen(Gfx::Driver *gfx, Cursor *cursor);
00036 virtual~MainMenuScreen();
00037
00038 // StaticLocationScreen API00039 voidopen() override;
00040
00041 private:
00042enumHelpTextIndex {
00043kNewGame = 7,
00044kContinue = 8,
00045kOption = 6,
00046kBox = 9,
00047kQuit = 10,
00048kCredits = 12
00049 };
00050
00051 template<HelpTextIndex N>
00052 voidhelpTextHandler(StaticLocationWidget &widget, constCommon::Point &mousePos);
00053
00054 voidnewGameHandler();
00055 voidloadHandler();
00056 voidcreditsHandler();
00057 voidsettingsHandler();
00058 voidboxHandler();
00059 voidquitHandler();
00060 };
00061
00065class VersionInfoText : publicStaticLocationWidget {
00066 public:
00067 VersionInfoText();
00068virtual~VersionInfoText() {}
00069
00070 private:
00071staticconstchar_copyrightSymbol = char(0xA9);
00072staticconstint_posX = 16, _posY = 419;
00073 };
00074
00075 } // End of namespace Stark00076
00077 #endif // STARK_UI_MENU_MAIN_MENU_H
Generated on Sat Dec 7 2019 05:00:39 for ResidualVM by 1.7.1