1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/evtloop.cpp
3 // Purpose: implements wxEventLoop for GTK+
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/evtloop.h"
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 class WXDLLEXPORT wxEventLoopImpl
44 wxEventLoopImpl() { SetExitCode(0); }
46 // set/get the exit code
47 void SetExitCode(int exitcode
) { m_exitcode
= exitcode
; }
48 int GetExitCode() const { return m_exitcode
; }
51 // the exit code of the event loop
55 // ============================================================================
56 // wxGUIEventLoop implementation
57 // ============================================================================
59 // ----------------------------------------------------------------------------
60 // wxGUIEventLoop running and exiting
61 // ----------------------------------------------------------------------------
63 wxGUIEventLoop::~wxGUIEventLoop()
65 wxASSERT_MSG( !m_impl
, wxT("should have been deleted in Run()") );
68 int wxGUIEventLoop::Run()
70 // event loops are not recursive, you need to create another loop!
71 wxCHECK_MSG( !IsRunning(), -1, wxT("can't reenter a message loop") );
73 wxEventLoopActivator
activate(this);
75 m_impl
= new wxEventLoopImpl
;
81 int exitcode
= m_impl
->GetExitCode();
87 void wxGUIEventLoop::Exit(int rc
)
89 wxCHECK_RET( IsRunning(), wxT("can't call Exit() if not running") );
91 m_impl
->SetExitCode(rc
);
96 // ----------------------------------------------------------------------------
97 // wxEventLoop message processing dispatching
98 // ----------------------------------------------------------------------------
100 bool wxGUIEventLoop::Pending() const
104 // We need to remove idle callbacks or gtk_events_pending will
105 // never return false.
106 wxTheApp
->RemoveIdleTag();
109 return gtk_events_pending();
112 bool wxGUIEventLoop::Dispatch()
114 wxCHECK_MSG( IsRunning(), false, wxT("can't call Dispatch() if not running") );
116 gtk_main_iteration();
121 //-----------------------------------------------------------------------------
123 //-----------------------------------------------------------------------------
125 bool wxGUIEventLoop::YieldFor(long eventsToProcess
)
128 if ( !wxThread::IsMain() )
130 // can't call gtk_main_iteration() from other threads like this
133 #endif // wxUSE_THREADS
135 m_isInsideYield
= true;
136 m_eventsToProcessInsideYield
= eventsToProcess
;
138 // We need to remove idle callbacks or the loop will
140 wxTheApp
->RemoveIdleTag();
143 // disable log flushing from here because a call to wxYield() shouldn't
144 // normally result in message boxes popping up &c
148 // TODO: implement event filtering using the eventsToProcess mask
149 while (gtk_events_pending())
150 gtk_main_iteration();
152 // It's necessary to call ProcessIdle() to update the frames sizes which
153 // might have been changed (it also will update other things set from
154 // OnUpdateUI() which is a nice (and desired) side effect). But we
155 // call ProcessIdle() only once since this is not meant for longish
156 // background jobs (controlled by wxIdleEvent::RequestMore() and the
157 // return value of Processidle().
161 // let the logs be flashed again
165 m_isInsideYield
= false;