The functions in this section deal with getting the current time and starting/stopping the global timers. Please note that the timer functions are deprecated because they work with one global timer only and wxTimer and/or wxStopWatch classes should be used instead. For retrieving the current time, you may also use wxDateTime::Now or wxDateTime::UNow methods.
::wxGetElapsedTime
::wxGetLocalTime
::wxGetLocalTimeMillis
::wxGetUTCTime
::wxStartTimer
long wxGetElapsedTime(bool resetTimer = TRUE)
Gets the time in milliseconds since the last ::wxStartTimer.
If resetTimer is TRUE (the default), the timer is reset to zero by this call.
See also wxTimer.
Include files
<wx/timer.h>
long wxGetLocalTime()
Returns the number of seconds since local time 00:00:00 Jan 1st 1970.
See also
Include files
<wx/timer.h>
wxLongLone wxGetLocalTimeMillis()
Returns the number of milliseconds since local time 00:00:00 Jan 1st 1970.
See also
Include files
<wx/timer.h>
long wxGetUTCTime()
Returns the number of seconds since GMT 00:00:00 Jan 1st 1970.
See also
Include files
<wx/timer.h>
void wxStartTimer()
Starts a stopwatch; use ::wxGetElapsedTime to get the elapsed time.
See also wxTimer.
Include files
<wx/timer.h>