// SuperTux // Copyright (C) 2009 Ingo Ruhnke // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #include "supertux/menu/worldmap_menu.hpp" #include "gui/menu_item.hpp" #include "gui/menu_manager.hpp" #include "supertux/menu/menu_storage.hpp" #include "supertux/screen_fade.hpp" #include "supertux/screen_manager.hpp" #include "util/gettext.hpp" WorldmapMenu::WorldmapMenu() { add_label(_("Pause")); add_hl(); add_entry(MNID_RETURNWORLDMAP, _("Continue")); add_submenu(_("Options"), MenuStorage::INGAME_OPTIONS_MENU); add_hl(); add_entry(MNID_QUITWORLDMAP, _("Leave World")); } void WorldmapMenu::menu_action(MenuItem& item) { switch (item.get_id()) { case MNID_RETURNWORLDMAP: MenuManager::instance().clear_menu_stack(); break; case MNID_QUITWORLDMAP: MenuManager::instance().clear_menu_stack(); ScreenManager::current()->pop_screen(); break; } } /* EOF */