1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/cocoa/evtloop.h
3 // Purpose: declaration of wxGUIEventLoop for wxOSX/Cocoa
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_OSX_COCOA_EVTLOOP_H_
12 #define _WX_OSX_COCOA_EVTLOOP_H_
14 class WXDLLIMPEXP_CORE wxGUIEventLoop
: public wxEventLoopManual
19 // implement/override base class pure virtual
20 virtual bool Pending() const;
21 virtual bool Dispatch();
22 virtual int DispatchTimeout(unsigned long timeout
);
24 virtual void WakeUp();
25 virtual bool YieldFor(long eventsToProcess
);
31 #endif // _WX_OSX_COCOA_EVTLOOP_H_