]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/private/epolldispatcher.h
Don't generate any events from wxSpinCtrl and wxSpinCtrlDouble methods.
[wxWidgets.git] / include / wx / unix / private / epolldispatcher.h
index 39bd3a27e597f4e00f16136e75585c8c39aff13b..c73411f221b0be6f447ee0d3bb24bed7394ae48e 100644 (file)
@@ -1,10 +1,9 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        wx/private/epolldispatcher.h
+// Name:        wx/unix/private/epolldispatcher.h
 // Purpose:     wxEpollDispatcher class
 // Authors:     Lukasz Michalski
 // Created:     April 2007
 // Copyright:   (c) Lukasz Michalski
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -17,7 +16,9 @@
 
 #include "wx/private/fdiodispatcher.h"
 
-class WXDLLIMPEXP_CORE wxEpollDispatcher : public wxFDIODispatcher
+struct epoll_event;
+
+class WXDLLIMPEXP_BASE wxEpollDispatcher : public wxFDIODispatcher
 {
 public:
     // create a new instance of this class, can return NULL if
@@ -32,12 +33,18 @@ public:
     virtual bool RegisterFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL);
     virtual bool ModifyFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL);
     virtual bool UnregisterFD(int fd);
-    virtual void Dispatch(int timeout = TIMEOUT_INFINITE);
+    virtual bool HasPending() const;
+    virtual int Dispatch(int timeout = TIMEOUT_INFINITE);
 
 private:
     // ctor is private, use Create()
     wxEpollDispatcher(int epollDescriptor);
 
+    // common part of HasPending() and Dispatch(): calls epoll_wait() with the
+    // given timeout
+    int DoPoll(epoll_event *events, int numEvents, int timeout) const;
+
+
     int m_epollDescriptor;
 };