Files
itgmania212121/stepmania/src/ScreenWithMenuElements.h
T

55 lines
1.2 KiB
C++
Raw Normal View History

#ifndef ScreenWithMenuElements_H
#define ScreenWithMenuElements_H
/*
-----------------------------------------------------------------------------
Class: ScreenWithMenuElements
Desc: Load one of several screens.
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
2002-05-19 01:59:48 +00:00
#include "Screen.h"
#include "Sprite.h"
2003-04-13 01:09:19 +00:00
#include "Transition.h"
2002-09-29 05:06:18 +00:00
#include "BGAnimation.h"
2003-11-04 21:49:38 +00:00
#include "ActorUtil.h"
2003-11-07 20:10:38 +00:00
#include "RageSound.h"
#include "MemoryCardDisplay.h"
2003-11-07 20:10:38 +00:00
class MenuTimer;
2003-11-17 01:01:44 +00:00
class HelpDisplay;
class ScreenWithMenuElements : public Screen
{
public:
ScreenWithMenuElements( CString sName );
virtual ~ScreenWithMenuElements();
2003-03-09 00:55:49 +00:00
void StartTransitioning( ScreenMessage smSendWhenDone );
void Back( ScreenMessage smSendWhenDone );
bool IsTransitioning();
bool m_bTimerEnabled;
2003-11-07 20:10:38 +00:00
void StopTimer();
protected:
2003-03-09 00:55:49 +00:00
BGAnimation m_Background;
2003-11-04 21:49:38 +00:00
AutoActor m_autoHeader;
Sprite m_sprStyleIcon;
MemoryCardDisplay m_MemoryCardDisplay[NUM_PLAYERS];
2003-11-07 20:10:38 +00:00
MenuTimer *m_MenuTimer;
2003-11-04 21:49:38 +00:00
AutoActor m_autoFooter;
2003-11-17 01:01:44 +00:00
HelpDisplay *m_textHelp;
2003-04-13 01:09:19 +00:00
Transition m_In;
Transition m_Out;
Transition m_Back;
};
2004-05-02 01:36:28 +00:00
#endif