]>
Commit | Line | Data |
---|---|---|
1 | \section{\class{wxTimer}}\label{wxtimer} | |
2 | ||
3 | The wxTimer class allows you to execute code at specified intervals. Its | |
4 | precision is platform-dependent, but in general will not be better than 1ms nor | |
5 | worse than 1s. | |
6 | ||
7 | There are two different ways to use this class: | |
8 | ||
9 | \begin{enumerate} | |
10 | \item You may derive a new class from wxTimer and override the | |
11 | \helpref{Notify}{wxtimernotify} member to perform the required action. | |
12 | \item Or you may redirect the notifications to any | |
13 | \helpref{wxEvtHandler}{wxevthandler} derived object by using the non default | |
14 | constructor or \helpref{SetOwner}{wxtimersetowner}. Then use {\tt EVT\_TIMER} | |
15 | macro to connect it to the event handler which will receive | |
16 | \helpref{wxTimerEvent}{wxtimerevent} notifications. | |
17 | \end{enumerate} | |
18 | ||
19 | In any case, you must start the timer with \helpref{Start}{wxtimerstart} | |
20 | after constructing it before it actually starts sending notifications. It can | |
21 | be stopped later with \helpref{Stop}{wxtimerstop}. | |
22 | ||
23 | \wxheading{Derived from} | |
24 | ||
25 | \helpref{wxObject}{wxobject} | |
26 | ||
27 | \wxheading{Include files} | |
28 | ||
29 | <wx/timer.h> | |
30 | ||
31 | \wxheading{See also} | |
32 | ||
33 | \helpref{::wxStartTimer}{wxstarttimer}, \helpref{::wxGetElapsedTime}{wxgetelapsedtime}, \helpref{wxStopWatch}{wxstopwatch} | |
34 | ||
35 | \latexignore{\rtfignore{\wxheading{Members}}} | |
36 | ||
37 | \membersection{wxTimer::wxTimer}\label{wxtimerctordef} | |
38 | ||
39 | \func{}{wxTimer}{\void} | |
40 | ||
41 | Default constructor. If you use it to construct the object and don't call | |
42 | \helpref{SetOwner}{wxtimersetowner} later, you must override | |
43 | \helpref{Notify}{wxtimernotify} method to process the notifications. | |
44 | ||
45 | \membersection{wxTimer::wxTimer}\label{wxtimerwxtimer} | |
46 | ||
47 | \func{}{wxTimer}{\param{wxEvtHandler *}{owner}, \param{int }{id = -1}} | |
48 | ||
49 | Creates a timer and associates it with {\it owner}. Please see | |
50 | \helpref{SetOwner}{wxtimersetowner} for the description of parameters. | |
51 | ||
52 | \membersection{wxTimer::\destruct{wxTimer}} | |
53 | ||
54 | \func{}{\destruct{wxTimer}}{\void} | |
55 | ||
56 | Destructor. Stops the timer if it is running. | |
57 | ||
58 | \membersection{wxTimer::GetInterval}{wxtimergetinterval} | |
59 | ||
60 | \constfunc{int}{GetInterval}{\void} | |
61 | ||
62 | Returns the current interval for the timer (in milliseconds). | |
63 | ||
64 | \membersection{wxTimer::IsOneShot}\label{wxtimerisoneshot} | |
65 | ||
66 | \constfunc{bool}{IsOneShot}{\void} | |
67 | ||
68 | Returns TRUE if the timer is one shot, i.e. if it will stop after firing the | |
69 | first notification automatically. | |
70 | ||
71 | \membersection{wxTimer::IsRunning}\label{wxtimerisrunning} | |
72 | ||
73 | \constfunc{bool}{IsRunning}{\void} | |
74 | ||
75 | Returns TRUE if the timer is running, FALSE if it is stopped. | |
76 | ||
77 | \membersection{wxTimer::Notify}\label{wxtimernotify} | |
78 | ||
79 | \func{void}{Notify}{\void} | |
80 | ||
81 | This member should be overridden by the user if the default constructor was | |
82 | used and \helpref{SetOwner}{wxtimersetowner} wasn't called. | |
83 | ||
84 | Perform whatever action which is to be taken periodically here. | |
85 | ||
86 | \membersection{wxTimer::SetOwner}\label{wxtimersetowner} | |
87 | ||
88 | \func{void}{SetOwner}{\param{wxEvtHandler *}{owner}, \param{int }{id = -1}} | |
89 | ||
90 | Associates the timer with the given {\it owner} object. When the timer is | |
91 | running, the owner will receive \helpref{timer events}{wxtimerevent} with | |
92 | id equal to {\it id} specified here. | |
93 | ||
94 | \membersection{wxTimer::Start}\label{wxtimerstart} | |
95 | ||
96 | \func{bool}{Start}{\param{int}{ milliseconds = -1}, \param{bool}{ oneShot=FALSE}} | |
97 | ||
98 | (Re)starts the timer. If {\it milliseconds} parameter is -1 (value by default), | |
99 | the previous value is used. Returns FALSE if the timer could not be started, | |
100 | TRUE otherwise (in MS Windows timers are a limited resource). | |
101 | ||
102 | If {\it oneShot} is FALSE (the default), the \helpref{Notify}{wxtimernotify} | |
103 | function will be called repeatedly until the timer is stopped. If TRUE, | |
104 | it will be called only once and the timer will stop automatically. | |
105 | ||
106 | \membersection{wxTimer::Stop}\label{wxtimerstop} | |
107 | ||
108 | \func{void}{Stop}{\void} | |
109 | ||
110 | Stops the timer. | |
111 | ||
112 | \section{\class{wxTimerEvent}}\label{wxtimerevent} | |
113 | ||
114 | wxTimerEvent object is passed to the event handler of timer events. | |
115 | ||
116 | For example: | |
117 | ||
118 | \begin{verbatim} | |
119 | class MyFrame : public wxFrame | |
120 | { | |
121 | public: | |
122 | ... | |
123 | void OnTimer(wxTimerEvent& event); | |
124 | ||
125 | private: | |
126 | wxTimer m_timer; | |
127 | }; | |
128 | ||
129 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
130 | EVT_TIMER(TIMER_ID, MyFrame::OnTimer) | |
131 | END_EVENT_TABLE() | |
132 | ||
133 | MyFrame::MyFrame() | |
134 | : m_timer(this, TIMER_ID) | |
135 | { | |
136 | m_timer.Start(1000); // 1 second interval | |
137 | } | |
138 | ||
139 | void MyFrame::OnTimer(wxTimerEvent& event) | |
140 | { | |
141 | // do whatever you want to do every second here | |
142 | } | |
143 | ||
144 | \end{verbatim} | |
145 | ||
146 | \wxheading{Include files} | |
147 | ||
148 | <wx/timer.h> | |
149 | ||
150 | \wxheading{See also} | |
151 | ||
152 | \helpref{wxTimer}{wxtimer} | |
153 | ||
154 | \latexignore{\rtfignore{\wxheading{Members}}} | |
155 | ||
156 | \membersection{wxTimerEvent::GetInterval}\label{wxtimereventgetinterval} | |
157 | ||
158 | \constfunc{int}{GetInterval}{\void} | |
159 | ||
160 | Returns the interval of the timer which generated this event. | |
161 | ||
162 | \section{\class{wxStopWatch}}\label{wxstopwatch} | |
163 | ||
164 | The wxStopWatch class allow you to measure time intervalls. | |
165 | ||
166 | \wxheading{Include files} | |
167 | ||
168 | <wx/timer.h> | |
169 | ||
170 | \wxheading{See also} | |
171 | ||
172 | \helpref{::wxStartTimer}{wxstarttimer}, \helpref{::wxGetElapsedTime}{wxgetelapsedtime}, \helpref{wxTimer}{wxtimer} | |
173 | ||
174 | \latexignore{\rtfignore{\wxheading{Members}}} | |
175 | ||
176 | \membersection{wxStopWatch::wxStopWatch} | |
177 | ||
178 | \func{}{wxStopWatch}{\void} | |
179 | ||
180 | Constructor. This starts the stop watch. | |
181 | ||
182 | \membersection{wxStopWatch::Pause}\label{wxstopwatchpause} | |
183 | ||
184 | \func{void}{Pause}{\void} | |
185 | ||
186 | Pauses the stop watch. Call \helpref{wxStopWatch::Resume}{wxstopwatchresume} to resume | |
187 | time measuring again. | |
188 | ||
189 | \membersection{wxStopWatch::Start} | |
190 | ||
191 | \func{void}{Start}{\param{long}{ milliseconds = 0}} | |
192 | ||
193 | (Re)starts the stop watch with a given initial value. | |
194 | ||
195 | \membersection{wxStopWatch::Resume}\label{wxstopwatchresume} | |
196 | ||
197 | \func{void}{Resume}{\void} | |
198 | ||
199 | Resumes the stop watch after having been paused with \helpref{wxStopWatch::Pause}{wxstopwatchpause}. | |
200 | ||
201 | \membersection{wxStopWatch::Time} | |
202 | ||
203 | \func{long}{Time}{\void}\label{wxstopwatchtime} | |
204 | ||
205 | Returns the time in milliseconds since the start (or restart) or the last call of | |
206 | \helpref{wxStopWatch::Pause}{wxstopwatchpause}. | |
207 |