]>
git.saurik.com Git - wxWidgets.git/blob - src/palmos/evtloop.cpp
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 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 wxEventLoop::wxEventLoop()
68 // ----------------------------------------------------------------------------
69 // wxEventLoop message processing
70 // ----------------------------------------------------------------------------
72 void wxEventLoop::ProcessMessage(WXMSG
*msg
)
76 bool wxEventLoop::PreProcessMessage(WXMSG
*msg
)
81 // ----------------------------------------------------------------------------
82 // wxEventLoop running and exiting
83 // ----------------------------------------------------------------------------
85 bool wxEventLoop::IsRunning() const
90 int wxEventLoop::Run()
95 wxEventLoopActivator
activate(this);
98 wxTheApp
&& wxTheApp
->ProcessIdle();
100 EvtGetEvent(&event
, evtWaitForever
);
102 if (SysHandleEvent(&event
))
105 if (MenuHandleEvent(0, &event
, &error
))
108 FrmDispatchEvent(&event
);
110 } while (event
.eType
!= appStopEvent
);
115 void wxEventLoop::Exit(int rc
)
120 AppStop
.eType
=appStopEvent
;
121 EvtAddEventToQueue(&AppStop
);
124 // ----------------------------------------------------------------------------
125 // wxEventLoop message processing dispatching
126 // ----------------------------------------------------------------------------
128 bool wxEventLoop::Pending() const
133 bool wxEventLoop::Dispatch()