1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/evtloop.h
3 // Purpose: wxGTK event loop implementation
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_GTK_EVTLOOP_H_
12 #define _WX_GTK_EVTLOOP_H_
14 // ----------------------------------------------------------------------------
15 // wxGUIEventLoop for wxGTK
16 // ----------------------------------------------------------------------------
18 typedef union _GdkEvent GdkEvent
;
20 class WXDLLIMPEXP_CORE wxGUIEventLoop
: public wxEventLoopBase
25 virtual void ScheduleExit(int rc
= 0);
26 virtual bool Pending() const;
27 virtual bool Dispatch();
28 virtual int DispatchTimeout(unsigned long timeout
);
29 virtual void WakeUp();
30 virtual bool YieldFor(long eventsToProcess
);
32 void StoreGdkEventForLaterProcessing(GdkEvent
* ev
)
33 { m_arrGdkEvents
.Add(ev
); }
39 // the exit code of this event loop
42 // used to temporarily store events in DoYield()
43 wxArrayPtrVoid m_arrGdkEvents
;
45 wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop
);
48 #endif // _WX_GTK_EVTLOOP_H_