]>
git.saurik.com Git - wxWidgets.git/blob - src/palmos/evtloop.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/evtloop.cpp
3 // Purpose: implements wxGUIEventLoop 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 // wxGUIEventLoop implementation
56 // ============================================================================
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 wxGUIEventLoop::wxGUIEventLoop()
68 // ----------------------------------------------------------------------------
69 // wxGUIEventLoop message processing
70 // ----------------------------------------------------------------------------
72 void wxGUIEventLoop::ProcessMessage(WXMSG
*msg
)
76 bool wxGUIEventLoop::PreProcessMessage(WXMSG
*msg
)
81 // ----------------------------------------------------------------------------
82 // wxGUIEventLoop running and exiting
83 // ----------------------------------------------------------------------------
85 bool wxGUIEventLoop::IsRunning() const
90 int wxGUIEventLoop::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 wxGUIEventLoop::Exit(int rc
)
120 AppStop
.eType
=appStopEvent
;
121 EvtAddEventToQueue(&AppStop
);
124 // ----------------------------------------------------------------------------
125 // wxGUIEventLoop message processing dispatching
126 // ----------------------------------------------------------------------------
128 bool wxGUIEventLoop::Pending() const
133 bool wxGUIEventLoop::Dispatch()
138 void wxGUIEventLoop::WakeUp()