mirror of https://github.com/axmolengine/axmol.git
54 lines
846 B
C++
54 lines
846 B
C++
|
// Application application cpp file.
|
|||
|
|
|||
|
// Original file name: test_uphoneApp.cpp
|
|||
|
// Generated by TOPS Builder:Project wizard,Date:2010-7-26
|
|||
|
|
|||
|
|
|||
|
#include "test_uphoneApp.h"
|
|||
|
#include "test_uphoneMainForm.h"
|
|||
|
Ttest_uphoneApp::Ttest_uphoneApp()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
Ttest_uphoneApp::~Ttest_uphoneApp()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
Boolean Ttest_uphoneApp::EventHandler(EventType* pEvent)
|
|||
|
{
|
|||
|
Boolean bHandled = FALSE;
|
|||
|
|
|||
|
switch(pEvent->eType)
|
|||
|
{
|
|||
|
case EVENT_AppLoad:
|
|||
|
{
|
|||
|
TMainForm *pWin = new TMainForm(this);
|
|||
|
if (pWin)
|
|||
|
{
|
|||
|
SetActiveWindow(pWin);
|
|||
|
}
|
|||
|
else
|
|||
|
{ // <20><><EFBFBD>ڴ<EFBFBD><DAB4><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD><DCA3>˳<EFBFBD>Ӧ<EFBFBD>á<EFBFBD>
|
|||
|
SendStopEvent();
|
|||
|
}
|
|||
|
}
|
|||
|
bHandled = TRUE;
|
|||
|
break;
|
|||
|
|
|||
|
case EVENT_AppStopNotify:
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
bHandled = FALSE;
|
|||
|
break;
|
|||
|
}
|
|||
|
if (FALSE == bHandled)
|
|||
|
{
|
|||
|
return TApplication::EventHandler(pEvent);
|
|||
|
}
|
|||
|
|
|||
|
return bHandled;
|
|||
|
}
|