]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/timer.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTimer class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "timer.h"
19 #include "wx/object.h"
21 class WXDLLEXPORT wxTimer
: public wxObject
23 DECLARE_DYNAMIC_CLASS(wxTimer
)
34 virtual bool Start(int milliseconds
= -1,bool one_shot
= FALSE
); // Start timer
35 virtual void Stop(void); // Stop timer
36 virtual void Notify(void) = 0; // Override this member
37 inline int Interval(void) { return milli
; }; // Returns the current interval time (0 if stop)
40 // Timer functions (milliseconds)
41 void WXDLLEXPORT
wxStartTimer(void);
42 // Gets time since last wxStartTimer or wxGetElapsedTime
43 long WXDLLEXPORT
wxGetElapsedTime(bool resetTimer
= TRUE
);
45 // EXPERIMENTAL: comment this out if it doesn't compile.
46 bool WXDLLEXPORT
wxGetLocalTime(long *timeZone
, int *dstObserved
);
48 // Get number of seconds since 00:00:00 GMT, Jan 1st 1970.
49 long WXDLLEXPORT
wxGetCurrentTime(void);