new profile/course screen polish

This commit is contained in:
Chris Danford
2005-08-05 10:07:49 +00:00
parent c885a38d9f
commit 1a9b738d8b
7 changed files with 90 additions and 19 deletions
+6 -1
View File
@@ -2,14 +2,16 @@
#define ScreenOptionsEditProfile_H
#include "ScreenOptions.h"
#include "Profile.h"
class ScreenOptionsEditProfile : public ScreenOptions
{
public:
ScreenOptionsEditProfile( CString sName );
virtual void Init();
virtual ~ScreenOptionsEditProfile();
virtual void Init();
protected:
private:
virtual void ImportOptions( int row, const vector<PlayerNumber> &vpns );
@@ -19,7 +21,10 @@ private:
virtual void GoToPrevScreen();
virtual void HandleScreenMessage( const ScreenMessage SM );
virtual void AfterChangeValueInRow( int iRow, PlayerNumber pn );
virtual void ProcessMenuStart( PlayerNumber pn, const InputEventType type );
Profile m_Original; // restore this on revert
};
#endif