]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dfb/evtloop.h
suppress a CodeWarrior warning about long to int conversion (bug 1616948)
[wxWidgets.git] / include / wx / dfb / evtloop.h
CommitLineData
b3c86150
VS
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/dfb/evtloop.h
3// Purpose: declares wxEventLoop class
4// Author: Vaclav Slavik
5// Created: 2006-08-16
6// RCS-ID: $Id$
7// Copyright: (c) 2006 REA Elektronik GmbH
8// Licence: wxWindows licence
9///////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_DFB_EVTLOOP_H_
12#define _WX_DFB_EVTLOOP_H_
13
52c8d32a 14#include "wx/dfb/dfbptr.h"
b3c86150
VS
15
16wxDFB_DECLARE_INTERFACE(IDirectFBEventBuffer);
17struct wxDFBEvent;
18
19// ----------------------------------------------------------------------------
20// wxEventLoop
21// ----------------------------------------------------------------------------
22
23class WXDLLIMPEXP_CORE wxEventLoop : public wxEventLoopManual
24{
25public:
26 wxEventLoop();
27
28 virtual bool Pending() const;
29 virtual bool Dispatch();
30
31 // returns DirectFB event buffer used by wx
52c8d32a 32 static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer();
b3c86150
VS
33
34protected:
35 virtual void WakeUp();
36 virtual void OnNextIteration();
37
38 virtual void HandleDFBEvent(const wxDFBEvent& event);
39
40private:
41 static void InitBuffer();
e48a3055
VS
42 static void CleanUp();
43
44 friend class wxApp; // calls CleanUp() and WakeUp()
b3c86150
VS
45
46private:
52c8d32a 47 static wxIDirectFBEventBufferPtr ms_buffer;
b3c86150 48
b3c86150
VS
49 DECLARE_NO_COPY_CLASS(wxEventLoop)
50};
51
52#endif // _WX_DFB_EVTLOOP_H_