]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: timer.h | |
3 | // Purpose: wxTimer class | |
d90895ac | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
d90895ac | 6 | // Created: 10/17/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
d90895ac DW |
8 | // Copyright: (c) David Webster |
9 | // Licence: wxWindows licence | |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_TIMER_H_ | |
13 | #define _WX_TIMER_H_ | |
14 | ||
0e320a79 DW |
15 | #include "wx/object.h" |
16 | ||
9ed0fac8 | 17 | class WXDLLEXPORT wxTimer: public wxTimerBase |
0e320a79 | 18 | { |
d90895ac DW |
19 | friend void wxProcessTimer(wxTimer& timer); |
20 | ||
0e320a79 | 21 | public: |
b9cf5e6d DW |
22 | wxTimer() { Init(); } |
23 | wxTimer( wxEvtHandler* pOwner | |
24 | ,int nId = -1 | |
25 | ) | |
26 | : wxTimerBase( pOwner | |
27 | ,nId | |
28 | ) | |
29 | { Init(); } | |
0e320a79 DW |
30 | ~wxTimer(); |
31 | ||
9ed0fac8 DW |
32 | virtual bool Start( int nMilliseconds = -1 |
33 | ,bool bOneShot = FALSE | |
34 | ); | |
35 | virtual void Stop(void); | |
0e320a79 | 36 | |
9ed0fac8 | 37 | inline virtual bool IsRunning(void) const { return m_ulId != 0L; } |
0e320a79 DW |
38 | |
39 | protected: | |
b9cf5e6d DW |
40 | void Init(void); |
41 | ||
9ed0fac8 DW |
42 | ULONG m_ulId; |
43 | HAB m_Hab; | |
0e320a79 DW |
44 | |
45 | private: | |
46 | DECLARE_ABSTRACT_CLASS(wxTimer) | |
47 | }; | |
48 | ||
b9cf5e6d DW |
49 | extern ULONG wxTimerProc( HWND WXUNUSED(hwnd) |
50 | ,ULONG | |
51 | ,int nIdTimer | |
52 | ,ULONG | |
53 | ); | |
0e320a79 DW |
54 | #endif |
55 | // _WX_TIMER_H_ |