]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/evtloop.h
Add default ctor to wxMSW private WindowHDC helper class.
[wxWidgets.git] / include / wx / unix / evtloop.h
index 19bfe8bb51f907bdb946a39c74911ea19d96a13b..f2b0a102c88c8fe9eec8c4d1e704296433eb18a8 100644 (file)
 // ----------------------------------------------------------------------------
 
 class wxFDIODispatcher;
+class wxUnixEventLoopSource;
 
 namespace wxPrivate
 {
     class PipeIOHandler;
-};
+}
 
-class WXDLLIMPEXP_BASE wxConsoleEventLoop : public wxEventLoopManual
+class WXDLLIMPEXP_BASE wxConsoleEventLoop
+#ifdef __WXOSX__
+: public wxCFEventLoop
+#else
+: public wxEventLoopManual
+#endif
 {
 public:
     // initialize the event loop, use IsOk() to check if we were successful
@@ -39,6 +45,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();