bced8cdb9f
patch). git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/uni@14605 178a84e3-b1eb-0310-8ba1-8eac791a3b58
73 lines
2.7 KiB
C++
73 lines
2.7 KiB
C++
// SuperTuxKart - a fun racing game with go-kart
|
|
// Copyright (C) 2009-2013 Marianne Gagnon
|
|
//
|
|
// 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, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#include "states_screens/help_screen_2.hpp"
|
|
|
|
#include "guiengine/widget.hpp"
|
|
#include "guiengine/widgets/ribbon_widget.hpp"
|
|
#include "states_screens/help_screen_1.hpp"
|
|
#include "states_screens/help_screen_3.hpp"
|
|
#include "states_screens/help_screen_4.hpp"
|
|
#include "states_screens/state_manager.hpp"
|
|
|
|
using namespace GUIEngine;
|
|
|
|
DEFINE_SCREEN_SINGLETON( HelpScreen2 );
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
HelpScreen2::HelpScreen2() : Screen("help2.stkgui")
|
|
{
|
|
} // HelpScreen2
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void HelpScreen2::loadedFromFile()
|
|
{
|
|
} // loadedFromFile
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void HelpScreen2::eventCallback(Widget* widget, const std::string& name, const int playerID)
|
|
{
|
|
if (name == "category")
|
|
{
|
|
std::string selection = ((RibbonWidget*)widget)->getSelectionIDString(PLAYER_ID_GAME_MASTER).c_str();
|
|
|
|
if(selection == "page1") StateManager::get()->replaceTopMostScreen(HelpScreen1::getInstance());
|
|
//else if(selection == "page2") StateManager::get()->replaceTopMostScreen(HelpScreen2::getInstance());
|
|
else if(selection == "page3") StateManager::get()->replaceTopMostScreen(HelpScreen3::getInstance());
|
|
else if(selection == "page4") StateManager::get()->replaceTopMostScreen(HelpScreen4::getInstance());
|
|
}
|
|
else if (name == "back")
|
|
{
|
|
StateManager::get()->escapePressed();
|
|
}
|
|
} // eventCallback
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void HelpScreen2::init()
|
|
{
|
|
Screen::init();
|
|
RibbonWidget* w = this->getWidget<RibbonWidget>("category");
|
|
|
|
if (w != NULL) w->select( "page2", PLAYER_ID_GAME_MASTER );
|
|
} // init
|
|
|
|
// -----------------------------------------------------------------------------
|