1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/unix/evtloop.h
3 // Purpose: declares wxEventLoop class
4 // Author: Lukasz Michalski (lm@zork.pl)
7 // Copyright: (c) 2007 Lukasz Michalski
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_UNIX_EVTLOOP_H_
12 #define _WX_UNIX_EVTLOOP_H_
14 #if wxUSE_CONSOLE_EVENTLOOP
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 class wxFDIODispatcher
;
27 class WXDLLIMPEXP_BASE wxConsoleEventLoop
: public wxEventLoopManual
30 // initialize the event loop, use IsOk() to check if we were successful
32 virtual ~wxConsoleEventLoop();
34 // implement base class pure virtuals
35 virtual bool Pending() const;
36 virtual bool Dispatch();
37 virtual int DispatchTimeout(unsigned long timeout
);
38 virtual void WakeUp();
39 virtual bool IsOk() const { return m_dispatcher
!= NULL
; }
40 virtual bool YieldFor(long WXUNUSED(eventsToProcess
)) { return true; }
43 virtual void OnNextIteration();
46 // pipe used for wake up messages: when a child thread wants to wake up
47 // the event loop in the main thread it writes to this pipe
48 wxPrivate::PipeIOHandler
*m_wakeupPipe
;
50 // either wxSelectDispatcher or wxEpollDispatcher
51 wxFDIODispatcher
*m_dispatcher
;
53 wxDECLARE_NO_COPY_CLASS(wxConsoleEventLoop
);
56 #endif // wxUSE_CONSOLE_EVENTLOOP
58 #endif // _WX_UNIX_EVTLOOP_H_