]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/stubs/timer.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTimer class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "timer.h"
19 #include "wx/object.h"
21 class WXDLLEXPORT wxTimer
: public wxObject
27 virtual bool Start(int milliseconds
= -1,
28 bool one_shot
= FALSE
); // Start timer
29 virtual void Stop(); // Stop timer
31 virtual void Notify() = 0; // Override this member
33 // Returns the current interval time (0 if stop)
34 int Interval() const { return m_milli
; };
35 bool OneShot() const { return m_oneShot
; }
45 DECLARE_ABSTRACT_CLASS(wxTimer
)
48 /* Note: these are implemented in common/timercmn.cpp, so need to implement them separately.
49 * But you may need to modify timercmn.cpp.