X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/52c8d32a71bb7553dd89324fa6d56faac95eb5d0..afc0db8ca0bcae488ed7efa8ee3bcd873873a8d9:/include/wx/dfb/evtloop.h diff --git a/include/wx/dfb/evtloop.h b/include/wx/dfb/evtloop.h index 11366e70a3..2a58619ed1 100644 --- a/include/wx/dfb/evtloop.h +++ b/include/wx/dfb/evtloop.h @@ -12,40 +12,35 @@ #define _WX_DFB_EVTLOOP_H_ #include "wx/dfb/dfbptr.h" +#include "wx/unix/evtloop.h" wxDFB_DECLARE_INTERFACE(IDirectFBEventBuffer); -struct wxDFBEvent; // ---------------------------------------------------------------------------- // wxEventLoop // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxEventLoop : public wxEventLoopManual +class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxConsoleEventLoop { public: - wxEventLoop(); + wxGUIEventLoop(); - virtual bool Pending() const; - virtual bool Dispatch(); + virtual bool YieldFor(long eventsToProcess); // returns DirectFB event buffer used by wx static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer(); -protected: - virtual void WakeUp(); - virtual void OnNextIteration(); - - virtual void HandleDFBEvent(const wxDFBEvent& event); - private: static void InitBuffer(); + static void CleanUp(); + + friend class wxApp; // calls CleanUp() private: static wxIDirectFBEventBufferPtr ms_buffer; + static int ms_bufferFd; - friend class wxApp; // calls WakeUp() - - DECLARE_NO_COPY_CLASS(wxEventLoop) + wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop); }; #endif // _WX_DFB_EVTLOOP_H_