]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/evtloop.h
avoid causing idle event from GetValue(), fixes #11013
[wxWidgets.git] / include / wx / unix / evtloop.h
index 34e44be3037292f932c2a9c9c07a65174934cdb5..40d30077874b5e3a96032ea070611e95b85213a2 100644 (file)
@@ -18,6 +18,7 @@
 // ----------------------------------------------------------------------------
 
 class wxFDIODispatcher;
+class wxUnixEventLoopSource;
 
 namespace wxPrivate
 {
@@ -39,6 +40,11 @@ public:
     virtual bool IsOk() const { return m_dispatcher != NULL; }
     virtual bool YieldFor(long WXUNUSED(eventsToProcess)) { return true; }
 
+#if wxUSE_EVENTLOOP_SOURCE
+    virtual wxEventLoopSource *
+      AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags);
+#endif // wxUSE_EVENTLOOP_SOURCE
+
 protected:
     virtual void OnNextIteration();