]> 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 cf77e26c1322cb2f4eb212c79032b1067195066d..80c0b1f069972b8ec5e00caef0d2bce2d0499184 100644 (file)
@@ -20,10 +20,10 @@ 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();
@@ -31,6 +31,10 @@ public:
     // returns DirectFB event buffer used by wx
     static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer();
 
+    // wxYield implementation: iterate the loop as long as there are any
+    // pending events
+    void Yield();
+
 protected:
     virtual void WakeUp();
     virtual void OnNextIteration();
@@ -46,7 +50,7 @@ private:
 private:
     static wxIDirectFBEventBufferPtr ms_buffer;
 
-    DECLARE_NO_COPY_CLASS(wxEventLoop)
+    DECLARE_NO_COPY_CLASS(wxGUIEventLoop)
 };
 
 #endif // _WX_DFB_EVTLOOP_H_