]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dfb/evtloop.h
fixed visibility warning on Fedora
[wxWidgets.git] / include / wx / dfb / evtloop.h
index 05a08f87ea173f758330bb8b6c9b33f74ba9f2f8..80c0b1f069972b8ec5e00caef0d2bce2d0499184 100644 (file)
@@ -11,7 +11,7 @@
 #ifndef _WX_DFB_EVTLOOP_H_
 #define _WX_DFB_EVTLOOP_H_
 
-#include "wx/dfb/ifacehelpers.h"
+#include "wx/dfb/dfbptr.h"
 
 wxDFB_DECLARE_INTERFACE(IDirectFBEventBuffer);
 struct wxDFBEvent;
@@ -20,16 +20,20 @@ struct wxDFBEvent;
 // wxEventLoop
 // ----------------------------------------------------------------------------
 
-class WXDLLIMPEXP_CORE wxEventLoop : public wxEventLoopManual
+class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopManual
 {
 public:
-    wxEventLoop();
+    wxGUIEventLoop();
 
     virtual bool Pending() const;
     virtual bool Dispatch();
 
     // returns DirectFB event buffer used by wx
-    static IDirectFBEventBufferPtr GetDirectFBEventBuffer();
+    static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer();
+
+    // wxYield implementation: iterate the loop as long as there are any
+    // pending events
+    void Yield();
 
 protected:
     virtual void WakeUp();
@@ -39,13 +43,14 @@ protected:
 
 private:
     static void InitBuffer();
+    static void CleanUp();
 
-private:
-    static IDirectFBEventBufferPtr ms_buffer;
+    friend class wxApp; // calls CleanUp() and WakeUp()
 
-    friend class wxApp; // calls WakeUp()
+private:
+    static wxIDirectFBEventBufferPtr ms_buffer;
 
-    DECLARE_NO_COPY_CLASS(wxEventLoop)
+    DECLARE_NO_COPY_CLASS(wxGUIEventLoop)
 };
 
 #endif // _WX_DFB_EVTLOOP_H_