]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: timer.h | |
a0cb0ba5 | 3 | // Purpose: Generic implementation of wxTimer class |
32b8ec41 VZ |
4 | // Author: Vaclav Slavik |
5 | // Id: $Id$ | |
52750c2e | 6 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
32b8ec41 VZ |
7 | // Licence: wxWindows licence |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifndef __WX_TIMER_H__ | |
12 | #define __WX_TIMER_H__ | |
13 | ||
af49c4b8 | 14 | #if defined(__GNUG__) && !defined(__APPLE__) |
32b8ec41 VZ |
15 | #pragma interface "timer.h" |
16 | #endif | |
17 | ||
18 | //----------------------------------------------------------------------------- | |
19 | // wxTimer | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
1acd70f9 | 22 | class wxTimerDesc; |
1acd70f9 | 23 | |
32b8ec41 VZ |
24 | class WXDLLEXPORT wxTimer : public wxTimerBase |
25 | { | |
26 | public: | |
27 | wxTimer() { Init(); } | |
28 | wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id) | |
29 | { Init(); } | |
1acd70f9 | 30 | ~wxTimer(); |
32b8ec41 | 31 | |
1acd70f9 VS |
32 | virtual bool Start(int millisecs = -1, bool oneShot = FALSE); |
33 | virtual void Stop(); | |
32b8ec41 | 34 | |
1acd70f9 | 35 | virtual bool IsRunning() const; |
32b8ec41 | 36 | |
1acd70f9 VS |
37 | // implementation |
38 | static void NotifyTimers(); | |
32b8ec41 | 39 | |
1acd70f9 VS |
40 | protected: |
41 | void Init(); | |
32b8ec41 VZ |
42 | |
43 | private: | |
1acd70f9 VS |
44 | wxTimerDesc *m_desc; |
45 | ||
32b8ec41 VZ |
46 | DECLARE_ABSTRACT_CLASS(wxTimer) |
47 | }; | |
48 | ||
1acd70f9 | 49 | #endif // __WX_TIMER_H__ |