X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/34138703c3997ce676a1e713d9ff9eb020640da7..a61ddc471531869786496b6f3596380ac01202ed:/include/wx/timer.h diff --git a/include/wx/timer.h b/include/wx/timer.h index 4cf5c35b26..0dd07e0bed 100644 --- a/include/wx/timer.h +++ b/include/wx/timer.h @@ -11,9 +11,42 @@ #include "wx/qt/timer.h" #elif defined(__WXMAC__) #include "wx/mac/timer.h" +#elif defined(__WXPM__) +#include "wx/os2/timer.h" #elif defined(__WXSTUBS__) #include "wx/stubs/timer.h" #endif +class wxChrono +{ +public: + wxChrono(); + + void Start(long t=0); + void Pause(); + void Resume(); + + long Time(); + +private: + long m_t0; + long m_pause; +}; + +// Timer functions (milliseconds) +void WXDLLEXPORT wxStartTimer(); + +// Gets time since last wxStartTimer or wxGetElapsedTime +long WXDLLEXPORT wxGetElapsedTime(bool resetTimer = TRUE); + +// EXPERIMENTAL: comment this out if it doesn't compile. +bool WXDLLEXPORT wxGetLocalTime(long *timeZone, int *dstObserved); + +// Get number of seconds since 00:00:00 GMT, Jan 1st 1970. +long WXDLLEXPORT wxGetCurrentTime(); + +// Get number of milliseconds since 00:00:00 GMT, Jan 1st 1970. +long WXDLLEXPORT wxGetCurrentMTime(); + #endif // _WX_TIMER_H_BASE_