Files
itgmania212121/stepmania/src/ScreenEditMenu.h
T

44 lines
1.1 KiB
C++
Raw Normal View History

2004-01-01 01:21:59 +00:00
#ifndef SCREEN_EDIT_MENU_H
#define SCREEN_EDIT_MENU_H
2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
Class: ScreenEditMenu
2002-05-20 08:59:37 +00:00
Desc: See header.
2002-05-20 08:59:37 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
2002-05-20 08:59:37 +00:00
-----------------------------------------------------------------------------
*/
#include "ScreenWithMenuElements.h"
2003-02-11 02:20:38 +00:00
#include "EditMenu.h"
2002-05-20 08:59:37 +00:00
#include "BitmapText.h"
2003-02-11 02:20:38 +00:00
class ScreenEditMenu : public ScreenWithMenuElements
2002-05-20 08:59:37 +00:00
{
public:
2003-09-27 22:30:51 +00:00
ScreenEditMenu( CString sName );
2002-05-20 08:59:37 +00:00
virtual ~ScreenEditMenu();
2002-08-27 16:53:25 +00:00
virtual void DrawPrimitives();
2002-05-20 08:59:37 +00:00
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
private:
void MenuUp( PlayerNumber pn );
void MenuDown( PlayerNumber pn );
void MenuLeft( PlayerNumber pn, const InputEventType type );
void MenuRight( PlayerNumber pn, const InputEventType type );
void MenuBack( PlayerNumber pn );
void MenuStart( PlayerNumber pn );
2002-05-20 08:59:37 +00:00
2003-03-09 00:55:49 +00:00
EditMenu m_Selector;
2002-05-20 08:59:37 +00:00
2002-08-19 20:02:30 +00:00
BitmapText m_textExplanation;
2002-05-20 08:59:37 +00:00
};
2004-01-01 01:21:59 +00:00
#endif