]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/evtloop.h
Avoid setting attributes in GTK wxDataViewRenderer if not supported.
[wxWidgets.git] / include / wx / unix / evtloop.h
index ab5a5f9a409e110ce52d64800e9cfda837bd91c5..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();
@@ -49,7 +56,7 @@ private:
     // either wxSelectDispatcher or wxEpollDispatcher
     wxFDIODispatcher *m_dispatcher;
 
-    DECLARE_NO_COPY_CLASS(wxConsoleEventLoop)
+    wxDECLARE_NO_COPY_CLASS(wxConsoleEventLoop);
 };
 
 #endif // wxUSE_CONSOLE_EVENTLOOP