]> git.saurik.com Git - wxWidgets.git/blame - src/mgl/evtloop.cpp
use WXDLLIMPEXP_ADV on the base class too
[wxWidgets.git] / src / mgl / evtloop.cpp
CommitLineData
7bdc1879 1///////////////////////////////////////////////////////////////////////////////
127eab18 2// Name: src/mgl/evtloop.cpp
7bdc1879
VS
3// Purpose: implements wxEventLoop for MGL
4// Author: Vaclav Slavik
5// RCS-ID: $Id$
c41c20a5 6// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
65571936 7// License: wxWindows licence
7bdc1879
VS
8///////////////////////////////////////////////////////////////////////////////
9
10// ----------------------------------------------------------------------------
11// headers
12// ----------------------------------------------------------------------------
13
7bdc1879
VS
14// For compilers that support precompilation, includes "wx.h".
15#include "wx/wxprec.h"
16
17#ifdef __BORLANDC__
18 #pragma hdrstop
19#endif
20
21#ifndef WX_PRECOMP
22 #include "wx/window.h"
23 #include "wx/app.h"
24 #include "wx/thread.h"
c0badb70 25 #include "wx/timer.h"
7bdc1879
VS
26#endif //WX_PRECOMP
27
28#include "wx/evtloop.h"
7bdc1879
VS
29#include "wx/mgl/private.h"
30
31// ----------------------------------------------------------------------------
32// wxEventLoopImpl
33// ----------------------------------------------------------------------------
34
35class WXDLLEXPORT wxEventLoopImpl
36{
37public:
38 // ctor
39 wxEventLoopImpl()
40 {
41 SetExitCode(0);
127eab18 42 SetKeepLooping(true);
7bdc1879
VS
43 }
44
ef344ff8
VS
45 // process an event
46 void Dispatch();
7bdc1879 47
127eab18 48 // generate an idle event, return true if more idle time requested
ef344ff8 49 bool SendIdleEvent();
7bdc1879
VS
50
51 // set/get the exit code
52 void SetExitCode(int exitcode) { m_exitcode = exitcode; }
53 int GetExitCode() const { return m_exitcode; }
127eab18 54
7bdc1879
VS
55 void SetKeepLooping(bool k) { m_keepLooping = k; }
56 bool GetKeepLooping() const { return m_keepLooping; }
57
58private:
59
60 // the exit code of the event loop
61 int m_exitcode;
127eab18 62 // false if the loop should end
7bdc1879
VS
63 bool m_keepLooping;
64};
65
66// ============================================================================
67// wxEventLoopImpl implementation
68// ============================================================================
69
ef344ff8 70void wxEventLoopImpl::Dispatch()
7bdc1879 71{
ef344ff8 72 event_t evt;
ef344ff8 73
1acd70f9
VS
74 // VS: The code bellow is equal to MGL's EVT_halt implementation, with
75 // two things added: sleeping (busy waiting is stupid, lets make CPU's
76 // life a bit easier) and timers updating
77
78 // EVT_halt(&evt, EVT_EVERYEVT);
88f2a771 79 for (;;)
1acd70f9 80 {
1acd70f9
VS
81#if wxUSE_TIMER
82 wxTimer::NotifyTimers();
88f2a771 83 MGL_wmUpdateDC(g_winMng);
1acd70f9 84#endif
88f2a771
VS
85 EVT_pollJoystick();
86 if ( EVT_getNext(&evt, EVT_EVERYEVT) ) break;
1acd70f9 87 PM_sleep(10);
88f2a771 88 }
1acd70f9 89 // end of EVT_halt
127eab18 90
ef344ff8 91 MGL_wmProcessEvent(g_winMng, &evt);
7bdc1879
VS
92}
93
ef344ff8 94bool wxEventLoopImpl::SendIdleEvent()
7bdc1879 95{
e39af974 96 return wxTheApp->ProcessIdle();
7bdc1879
VS
97}
98
99// ============================================================================
100// wxEventLoop implementation
101// ============================================================================
102
103// ----------------------------------------------------------------------------
104// wxEventLoop running and exiting
105// ----------------------------------------------------------------------------
106
107wxEventLoop::~wxEventLoop()
108{
109 wxASSERT_MSG( !m_impl, _T("should have been deleted in Run()") );
110}
111
7bdc1879
VS
112int wxEventLoop::Run()
113{
114 // event loops are not recursive, you need to create another loop!
115 wxCHECK_MSG( !IsRunning(), -1, _T("can't reenter a message loop") );
116
117 m_impl = new wxEventLoopImpl;
127eab18 118
77fb1a02 119 wxEventLoopActivator activate(this);
7bdc1879
VS
120
121 for ( ;; )
122 {
123#if wxUSE_THREADS
124 //wxMutexGuiLeaveOrEnter(); // FIXME_MGL - huh?
125#endif // wxUSE_THREADS
126
127 // generate and process idle events for as long as we don't have
128 // anything else to do
ef344ff8 129 while ( !Pending() && m_impl->SendIdleEvent() ) {}
7bdc1879
VS
130
131 // a message came or no more idle processing to do, sit in Dispatch()
132 // waiting for the next message
133 if ( !Dispatch() )
134 {
135 // app terminated
136 break;
137 }
138 }
139
140 int exitcode = m_impl->GetExitCode();
141 delete m_impl;
142 m_impl = NULL;
143
144 return exitcode;
145}
146
147void wxEventLoop::Exit(int rc)
148{
149 wxCHECK_RET( IsRunning(), _T("can't call Exit() if not running") );
150
151 m_impl->SetExitCode(rc);
127eab18
WS
152 m_impl->SetKeepLooping(false);
153
f41ed3c4
VS
154 // Send a dummy event so that the app won't block in EVT_halt if there
155 // are no user-generated events in the queue:
156 EVT_post(0, EVT_USEREVT, 0, 0);
7bdc1879
VS
157}
158
159// ----------------------------------------------------------------------------
160// wxEventLoop message processing dispatching
161// ----------------------------------------------------------------------------
162
163bool wxEventLoop::Pending() const
164{
127eab18 165 // update the display here, so that wxYield refreshes display and
c41c20a5
VS
166 // changes take effect immediately, not after emptying events queue:
167 MGL_wmUpdateDC(g_winMng);
127eab18 168
c41c20a5 169 // is there an event in the queue?
7bdc1879 170 event_t evt;
127eab18 171 return (bool)(EVT_peekNext(&evt, EVT_EVERYEVT));
7bdc1879
VS
172}
173
174bool wxEventLoop::Dispatch()
175{
127eab18 176 wxCHECK_MSG( IsRunning(), false, _T("can't call Dispatch() if not running") );
7bdc1879 177
ef344ff8 178 m_impl->Dispatch();
7bdc1879
VS
179 return m_impl->GetKeepLooping();
180}