]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: timer.h | |
3 | // Purpose: wxTimer class | |
4 | // Author: David Webster | |
5 | // Modified by: | |
6 | // Created: 10/17/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_TIMER_H_ | |
13 | #define _WX_TIMER_H_ | |
14 | ||
15 | #include "wx/object.h" | |
16 | ||
17 | class WXDLLEXPORT wxTimer: public wxTimerBase | |
18 | { | |
19 | friend void wxProcessTimer(wxTimer& timer); | |
20 | ||
21 | public: | |
22 | wxTimer(); | |
23 | ~wxTimer(); | |
24 | ||
25 | virtual bool Start( int nMilliseconds = -1 | |
26 | ,bool bOneShot = FALSE | |
27 | ); | |
28 | virtual void Stop(void); | |
29 | ||
30 | inline virtual bool IsRunning(void) const { return m_ulId != 0L; } | |
31 | ||
32 | protected: | |
33 | ULONG m_ulId; | |
34 | HAB m_Hab; | |
35 | ||
36 | private: | |
37 | DECLARE_ABSTRACT_CLASS(wxTimer) | |
38 | }; | |
39 | ||
40 | #endif | |
41 | // _WX_TIMER_H_ |