]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/evtloop.h
Add basic history api and implement it under gtk.
[wxWidgets.git] / include / wx / gtk / evtloop.h
index f6225fe851180f913fae85d649722619c97915da..d08356786232838577439ce8d9736ff1e91e6937 100644 (file)
@@ -30,11 +30,15 @@ public:
     virtual void WakeUp();
     virtual bool YieldFor(long eventsToProcess);
 
+#if wxUSE_EVENTLOOP_SOURCE
+    virtual wxEventLoopSource *
+      AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags);
+#endif // wxUSE_EVENTLOOP_SOURCE
+
     void StoreGdkEventForLaterProcessing(GdkEvent* ev)
         { m_arrGdkEvents.Add(ev); }
 
-protected:
-
+private:
     // the exit code of this event loop
     int m_exitcode;