]>
Commit | Line | Data |
---|---|---|
5e382463 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/private/fdioeventloopsourcehandler.h | |
3 | // Purpose: declares wxFDIOEventLoopSourceHandler class | |
4 | // Author: Rob Bresalier, Vadim Zeitlin | |
5 | // Created: 2013-06-13 (extracted from src/unix/evtloopunix.cpp) | |
5e382463 VZ |
6 | // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org> |
7 | // (c) 2013 Rob Bresalier | |
8 | // Licence: wxWindows licence | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H | |
12 | #define _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H | |
13 | ||
14 | #include "wx/evtloopsrc.h" | |
15 | ||
16 | // This class is a temporary bridge between event loop sources and | |
17 | // FDIODispatcher. It is going to be removed soon, when all subject interfaces | |
18 | // are modified | |
19 | class wxFDIOEventLoopSourceHandler : public wxFDIOHandler | |
20 | { | |
21 | public: | |
22 | wxEXPLICIT wxFDIOEventLoopSourceHandler(wxEventLoopSourceHandler* handler) | |
23 | : m_handler(handler) | |
24 | { | |
25 | } | |
26 | ||
27 | // Just forward to the real handler. | |
28 | virtual void OnReadWaiting() { m_handler->OnReadWaiting(); } | |
29 | virtual void OnWriteWaiting() { m_handler->OnWriteWaiting(); } | |
30 | virtual void OnExceptionWaiting() { m_handler->OnExceptionWaiting(); } | |
31 | ||
32 | protected: | |
33 | wxEventLoopSourceHandler* const m_handler; | |
34 | ||
35 | wxDECLARE_NO_COPY_CLASS(wxFDIOEventLoopSourceHandler); | |
36 | }; | |
37 | ||
38 | #endif // _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H |