]> 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 42d16625a9f7fb16b04b48ddee5df295e7501584..40d30077874b5e3a96032ea070611e95b85213a2 100644 (file)
 // ----------------------------------------------------------------------------
 
 class wxFDIODispatcher;
+class wxUnixEventLoopSource;
 
 namespace wxPrivate
 {
     class PipeIOHandler;
-};
+}
 
 class WXDLLIMPEXP_BASE wxConsoleEventLoop : public wxEventLoopManual
 {
@@ -37,6 +38,12 @@ public:
     virtual int DispatchTimeout(unsigned long timeout);
     virtual void WakeUp();
     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();