]>
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
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 milli
; };
35 bool OneShot() const { return oneShot
; }
45 DECLARE_ABSTRACT_CLASS(wxTimer
)
48 // Timer functions (milliseconds)
49 void WXDLLEXPORT
wxStartTimer();
50 // Gets time since last wxStartTimer or wxGetElapsedTime
51 long WXDLLEXPORT
wxGetElapsedTime(bool resetTimer
= TRUE
);
53 // EXPERIMENTAL: comment this out if it doesn't compile.
54 bool WXDLLEXPORT
wxGetLocalTime(long *timeZone
, int *dstObserved
);
56 // Get number of seconds since 00:00:00 GMT, Jan 1st 1970.
57 long WXDLLEXPORT
wxGetCurrentTime();