X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c0c133e13b36a923c65f94499554e432bc3a0daa..845a6bbf743a33a1975827f517fbd667c13ef6ac:/include/wx/unix/evtloop.h?ds=sidebyside diff --git a/include/wx/unix/evtloop.h b/include/wx/unix/evtloop.h index 42d16625a9..40d3007787 100644 --- a/include/wx/unix/evtloop.h +++ b/include/wx/unix/evtloop.h @@ -18,11 +18,12 @@ // ---------------------------------------------------------------------------- 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();