]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/stopwatch.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStopWatch
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 The wxStopWatch class allow you to measure time intervals.
14 For example, you may use it to measure the time elapsed by some function:
18 CallLongRunningFunction();
19 wxLogMessage("The long running function took %ldms to execute",
22 ... stopwatch is stopped now ...
24 CallLongRunningFunction();
25 wxLogMessage("And calling it twice took $ldms in all", sw.Time());
28 Since wxWidgets 2.9.3 this class uses @c ::QueryPerformanceCounter()
29 function under MSW to measure the elapsed time. It provides higher
30 precision than the usual timer functions but can suffer from bugs in its
31 implementation in some Windows XP versions. If you encounter such problems,
32 installing a Microsoft hot fix from http://support.microsoft.com/?id=896256
44 Constructor. This starts the stop watch.
49 Pauses the stop watch. Call Resume() to resume time measuring again.
51 If this method is called several times, @c Resume() must be called the same
52 number of times to really resume the stop watch. You may, however, call
53 Start() to resume it unconditionally.
58 Resumes the stop watch which had been paused with Pause().
63 (Re)starts the stop watch with a given initial value.
65 The stopwatch will always be running after calling Start(), even if
66 Pause() had been called before and even if it had been called multiple
69 void Start(long milliseconds
= 0);
72 Returns the time in milliseconds since the start (or restart) or the last
80 Returns elapsed time in microseconds.
82 This method is similar to Time() but returns the elapsed time in
83 microseconds and not milliseconds. Notice that not all platforms really
84 can measure times with this precision.
88 wxLongLong
TimeInMicro() const;