1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/evtloop.h
3 // Purpose: declaration of wxGUIEventLoop for wxCocoa
4 // Author: Vadim Zeitlin
6 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_COCOA_EVTLOOP_H_
11 #define _WX_COCOA_EVTLOOP_H_
13 // ----------------------------------------------------------------------------
14 // wxGUIEventLoop for wxCocoa
15 // ----------------------------------------------------------------------------
17 class WXDLLIMPEXP_CORE wxGUIEventLoop
: public wxEventLoopBase
20 wxGUIEventLoop() { m_exitcode
= 0; }
22 virtual void ScheduleExit(int rc
= 0);
23 virtual bool Pending() const;
24 virtual bool Dispatch();
25 virtual int DispatchTimeout(unsigned long timeout
);
26 virtual void WakeUp() { }
27 virtual bool YieldFor(long eventsToProcess
);
34 wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop
);
37 #endif // _WX_COCOA_EVTLOOP_H_