]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/cocoa/evtloop.h
Implement wx-prefixed macros versions of DECLARE/IMPLEMENT_APP_* macros.
[wxWidgets.git] / include / wx / osx / cocoa / evtloop.h
index 8fc7c332581d1d9bc81b318211bbe8109f22ed2a..ed64e651ebdf6aa1afda234141509087a058b0e5 100644 (file)
@@ -15,20 +15,15 @@ class WXDLLIMPEXP_BASE 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);
+    
+    virtual void DoRun();
 
-private:
-    double m_sleepTime;
+    virtual void DoStop();
+    
+    virtual CFRunLoopRef CFGetCurrentRunLoop() const;
 };
 
 #endif // _WX_OSX_COCOA_EVTLOOP_H_