]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dfb/evtloop.h
use wcs(n)casecmp() if available; use wxStricmp() to implement wxString::CmpNoCase...
[wxWidgets.git] / include / wx / dfb / evtloop.h
index cf77e26c1322cb2f4eb212c79032b1067195066d..4c3380819a62f1253346b2558a144bfbe780d567 100644 (file)
@@ -20,17 +20,22 @@ struct wxDFBEvent;
 // wxEventLoop
 // ----------------------------------------------------------------------------
 
 // wxEventLoop
 // ----------------------------------------------------------------------------
 
-class WXDLLIMPEXP_CORE wxEventLoop : public wxEventLoopManual
+class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopManual
 {
 public:
 {
 public:
-    wxEventLoop();
+    wxGUIEventLoop();
 
     virtual bool Pending() const;
     virtual bool Dispatch();
 
     virtual bool Pending() const;
     virtual bool Dispatch();
+    virtual int DispatchTimeout(unsigned long timeout);
 
     // returns DirectFB event buffer used by wx
     static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer();
 
 
     // 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();
 protected:
     virtual void WakeUp();
     virtual void OnNextIteration();
@@ -46,7 +51,7 @@ private:
 private:
     static wxIDirectFBEventBufferPtr ms_buffer;
 
 private:
     static wxIDirectFBEventBufferPtr ms_buffer;
 
-    DECLARE_NO_COPY_CLASS(wxEventLoop)
+    DECLARE_NO_COPY_CLASS(wxGUIEventLoop)
 };
 
 #endif // _WX_DFB_EVTLOOP_H_
 };
 
 #endif // _WX_DFB_EVTLOOP_H_