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