]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/carbon/evtloop.h
When wxPGProperty is un-attached from wxPropertyGrid, keep its 'default' cell referen...
[wxWidgets.git] / include / wx / osx / carbon / evtloop.h
index e6d29419d6c2c0ff1950cc27198ed782a49c98c3..9db46aa1dabe2ef17825fc1b400381c93b81fff6 100644 (file)
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        wx/mac/carbon/evtloop.h
+// Name:        wx/osx/carbon/evtloop.h
 // Purpose:     declaration of wxEventLoop for wxMac
 // Author:      Vadim Zeitlin
 // Modified by:
@@ -12,7 +12,7 @@
 #ifndef _WX_MAC_CARBON_EVTLOOP_H_
 #define _WX_MAC_CARBON_EVTLOOP_H_
 
-class OpaqueEventRef;
+struct OpaqueEventRef;
 typedef OpaqueEventRef *EventRef;
 
 class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxCFEventLoop
@@ -20,22 +20,14 @@ 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 DoRun();
 
-    double      m_sleepTime;
+    virtual void DoStop();
+
+    virtual CFRunLoopRef CFGetCurrentRunLoop() const;
 };
 
 #endif // _WX_MAC_CARBON_EVTLOOP_H_