]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/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
)
28 virtual bool Start(int milliseconds
= -1,bool one_shot
= FALSE
); // Start timer
29 virtual void Stop(); // Stop timer
30 virtual void Notify() = 0; // Override this member
31 inline int Interval() { return m_milli
; }; // Returns the current interval time (0 if stop)
41 /* Note: these are implemented in common/timercmn.cpp, so need to implement them separately.
42 * But you may need to modify timercmn.cpp.
45 // Timer functions (milliseconds)
46 void WXDLLEXPORT
wxStartTimer();
47 // Gets time since last wxStartTimer or wxGetElapsedTime
48 long WXDLLEXPORT
wxGetElapsedTime(bool resetTimer
= TRUE
);
50 // EXPERIMENTAL: comment this out if it doesn't compile.
51 bool WXDLLEXPORT
wxGetLocalTime(long *timeZone
, int *dstObserved
);
53 // Get number of seconds since 00:00:00 GMT, Jan 1st 1970.
54 long WXDLLEXPORT
wxGetCurrentTime();