This commit is contained in:
Glenn Maynard
2005-07-03 04:46:39 +00:00
parent 9b08148f60
commit e7ef5539d0
2 changed files with 0 additions and 42 deletions
-14
View File
@@ -40,20 +40,6 @@ public:
void SetNewScreen( const CString &sName );
void AddNewScreenToTop( const CString &sName );
void TextEntry(
ScreenMessage smSendOnPop,
CString sQuestion,
CString sInitialAnswer,
int iMaxInputLength,
bool(*Validate)(CString sAnswer,CString &sErrorOut) = NULL,
void(*OnOK)(CString sAnswer) = NULL,
void(*OnCanel)() = NULL,
bool bPassword = false
);
void Password( ScreenMessage smSendOnPop, const CString &sQuestion, void(*OnOK)(CString sPassword) = NULL, void(*OnCanel)() = NULL )
{
TextEntry( smSendOnPop, sQuestion, "", 255, NULL, OnOK, OnCanel, true );
}
void MiniMenu( Menu* pDef, ScreenMessage smSendOnOK, ScreenMessage smSendOnCancel = SM_None );
void SetFromNewScreen( Screen *pNewScreen );
void PopTopScreen( ScreenMessage SM );