]>
git.saurik.com Git - wxWidgets.git/blob - src/palmos/evtloop.cpp
51dce71214fc767e5d4b5b9942ef9ef8aa30bd65
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/evtloop.cpp
3 // Purpose: implements wxEventLoop for Palm OS
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/window.h"
32 #include "wx/evtloop.h"
34 #include "wx/tooltip.h"
35 #include "wx/except.h"
36 #include "wx/ptr_scpd.h"
39 #include "wx/thread.h"
41 // define the array of MSG strutures
42 WX_DECLARE_OBJARRAY(MSG
, wxMsgArray
);
44 #include "wx/arrimpl.cpp"
46 WX_DEFINE_OBJARRAY(wxMsgArray
);
47 #endif // wxUSE_THREADS
50 #include <SystemMgr.h>
54 // ============================================================================
55 // wxEventLoop implementation
56 // ============================================================================
58 wxEventLoop
*wxEventLoopBase::ms_activeLoop
= NULL
;
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
64 wxEventLoop::wxEventLoop()
70 // ----------------------------------------------------------------------------
71 // wxEventLoop message processing
72 // ----------------------------------------------------------------------------
74 void wxEventLoop::ProcessMessage(WXMSG
*msg
)
78 bool wxEventLoop::PreProcessMessage(WXMSG
*msg
)
83 // ----------------------------------------------------------------------------
84 // wxEventLoop running and exiting
85 // ----------------------------------------------------------------------------
87 bool wxEventLoop::IsRunning() const
92 int wxEventLoop::Run()
97 wxEventLoopActivator
activate(this);
100 wxTheApp
&& wxTheApp
->ProcessIdle();
102 EvtGetEvent(&event
, evtWaitForever
);
104 if (SysHandleEvent(&event
))
107 if (MenuHandleEvent(0, &event
, &error
))
110 FrmDispatchEvent(&event
);
112 } while (event
.eType
!= appStopEvent
);
117 void wxEventLoop::Exit(int rc
)
122 AppStop
.eType
=appStopEvent
;
123 EvtAddEventToQueue(&AppStop
);
126 // ----------------------------------------------------------------------------
127 // wxEventLoop message processing dispatching
128 // ----------------------------------------------------------------------------
130 bool wxEventLoop::Pending() const
135 bool wxEventLoop::Dispatch()