1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/carbon/evtloop.h
3 // Purpose: declaration of wxEventLoop for wxMac
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MAC_CARBON_EVTLOOP_H_
13 #define _WX_MAC_CARBON_EVTLOOP_H_
16 typedef OpaqueEventRef
*EventRef
;
18 class WXDLLIMPEXP_CORE wxGUIEventLoop
: public wxEventLoopManual
23 // implement/override base class pure virtual
24 virtual bool Pending() const;
25 virtual bool Dispatch();
26 virtual int DispatchTimeout(unsigned long timeout
);
28 virtual void WakeUp();
31 // dispatch an event and release it
32 void DispatchAndReleaseEvent(EventRef event
);
37 #endif // _WX_MAC_CARBON_EVTLOOP_H_