///////////////////////////////////////////////////////////////////////////////
-// Name: palmos/evtloop.cpp
+// Name: src/palmos/evtloop.cpp
// Purpose: implements wxEventLoop for Palm OS
-// Author: William Osborne
+// Author: William Osborne - minimal working wxPalmOS port
// Modified by:
// Created: 10.14.04
-// RCS-ID: $Id:
+// RCS-ID: $Id$
// Copyright: (c) William Osborne
// License: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "evtloop.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
WX_DEFINE_OBJARRAY(wxMsgArray);
#endif // wxUSE_THREADS
+#include <Event.h>
+#include <SystemMgr.h>
+#include <Menu.h>
+#include <Form.h>
+
// ----------------------------------------------------------------------------
// helper class
// ----------------------------------------------------------------------------
bool wxEventLoop::PreProcessMessage(WXMSG *msg)
{
- return false;
+ return false;
}
// ----------------------------------------------------------------------------
do {
wxTheApp && wxTheApp->ProcessIdle();
-
+
EvtGetEvent(&event, evtWaitForever);
if (SysHandleEvent(&event))
continue;
-
+
if (MenuHandleEvent(0, &event, &error))
continue;
-
+
FrmDispatchEvent(&event);
- } while (event.eType != appStopEvent);
-
+ } while (event.eType != appStopEvent);
+
return 0;
}
bool wxEventLoop::Pending() const
{
- return false;
+ return false;
}
bool wxEventLoop::Dispatch()