]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/private/timer.h
added wxMSW-specific wxEntryStart() overload taking WinMain-like parameters
[wxWidgets.git] / include / wx / generic / private / timer.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/private/timer.h
3 // Purpose: Generic implementation of wxTimer class
4 // Author: Vaclav Slavik
5 // Id: $Id$
6 // Copyright: (c) Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10
11 #ifndef _WX_GENERIC_PRIVATE_TIMER_H_
12 #define _WX_GENERIC_PRIVATE_TIMER_H_
13
14 #include "wx/private/timer.h"
15
16 //-----------------------------------------------------------------------------
17 // wxTimer
18 //-----------------------------------------------------------------------------
19
20 class wxTimerDesc;
21
22 class WXDLLEXPORT wxGenericTimerImpl : public wxTimerImpl
23 {
24 public:
25 wxGenericTimerImpl(wxTimer* timer) : wxTimerImpl(timer) { Init(); }
26 virtual ~wxGenericTimerImpl();
27
28 virtual bool Start(int millisecs = -1, bool oneShot = false);
29 virtual void Stop();
30
31 virtual bool IsRunning() const;
32
33 // implementation
34 static void NotifyTimers();
35
36 protected:
37 void Init();
38
39 private:
40 wxTimerDesc *m_desc;
41 };
42
43 #endif // _WX_GENERIC_PRIVATE_TIMER_H_