X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/65391c8ffcb388cd31f610776654f50aed97cbee..931d6a47c32a5b4c283243cb553ce71ee2b535d5:/include/wx/osx/carbon/evtloop.h diff --git a/include/wx/osx/carbon/evtloop.h b/include/wx/osx/carbon/evtloop.h index 5e881875cc..f18c7c9494 100644 --- a/include/wx/osx/carbon/evtloop.h +++ b/include/wx/osx/carbon/evtloop.h @@ -1,10 +1,9 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: wx/mac/carbon/evtloop.h +// Name: wx/osx/carbon/evtloop.h // Purpose: declaration of wxEventLoop for wxMac // Author: Vadim Zeitlin // Modified by: // Created: 2006-01-12 -// RCS-ID: $Id$ // Copyright: (c) 2006 Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -20,22 +19,15 @@ class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxCFEventLoop public: wxGUIEventLoop(); - // implement/override base class pure virtual - virtual bool Pending() const; - virtual bool Dispatch(); - virtual int DispatchTimeout(unsigned long timeout); - virtual void WakeUp(); - virtual bool YieldFor(long eventsToProcess); protected: - virtual CFRunLoopRef CFGetCurrentRunLoop() const; + virtual int DoDispatchTimeout(unsigned long timeout); -private: - // dispatch an event and release it - void DispatchAndReleaseEvent(EventRef event); + virtual void OSXDoRun(); + virtual void OSXDoStop(); - double m_sleepTime; + virtual CFRunLoopRef CFGetCurrentRunLoop() const; }; #endif // _WX_MAC_CARBON_EVTLOOP_H_