]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxTimer}}\label{wxtimer} |
2 | ||
2531c7e3 VZ |
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 | ||
2cb94e7a | 7 | There are three different ways to use this class: |
2531c7e3 VZ |
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 | |
01ebf752 | 14 | constructor or \helpref{SetOwner}{wxtimersetowner}. Then use the {\tt EVT\_TIMER} |
2531c7e3 VZ |
15 | macro to connect it to the event handler which will receive |
16 | \helpref{wxTimerEvent}{wxtimerevent} notifications. | |
01ebf752 JS |
17 | \item Or you may use a derived class and the {\tt EVT\_TIMER} |
18 | macro to connect it to an event handler defined in the derived class. | |
19 | If the default constructor is used, the timer object will be its | |
20 | own owner object, since it is derived from wxEvtHandler. | |
2531c7e3 VZ |
21 | \end{enumerate} |
22 | ||
23 | In any case, you must start the timer with \helpref{Start}{wxtimerstart} | |
24 | after constructing it before it actually starts sending notifications. It can | |
25 | be stopped later with \helpref{Stop}{wxtimerstop}. | |
a660d684 | 26 | |
2cb94e7a | 27 | {\bf Note:} A timer can only be used from the main thread. |
2b5f62a0 | 28 | |
a660d684 KB |
29 | \wxheading{Derived from} |
30 | ||
01ebf752 | 31 | \helpref{wxEvtHandler}{wxevthandler} |
a660d684 | 32 | |
954b8ae6 JS |
33 | \wxheading{Include files} |
34 | ||
35 | <wx/timer.h> | |
36 | ||
a660d684 KB |
37 | \wxheading{See also} |
38 | ||
5f445b31 | 39 | \helpref{::wxStartTimer}{wxstarttimer}, \helpref{::wxGetElapsedTime}{wxgetelapsedtime}, \helpref{wxStopWatch}{wxstopwatch} |
a660d684 KB |
40 | |
41 | \latexignore{\rtfignore{\wxheading{Members}}} | |
42 | ||
f6bcfd97 | 43 | \membersection{wxTimer::wxTimer}\label{wxtimerwxtimer} |
a660d684 KB |
44 | |
45 | \func{}{wxTimer}{\void} | |
46 | ||
2531c7e3 VZ |
47 | Default constructor. If you use it to construct the object and don't call |
48 | \helpref{SetOwner}{wxtimersetowner} later, you must override | |
49 | \helpref{Notify}{wxtimernotify} method to process the notifications. | |
50 | ||
2531c7e3 VZ |
51 | \func{}{wxTimer}{\param{wxEvtHandler *}{owner}, \param{int }{id = -1}} |
52 | ||
53 | Creates a timer and associates it with {\it owner}. Please see | |
54 | \helpref{SetOwner}{wxtimersetowner} for the description of parameters. | |
a660d684 | 55 | |
6d06e061 | 56 | \membersection{wxTimer::\destruct{wxTimer}}\label{wxtimerdtor} |
a660d684 KB |
57 | |
58 | \func{}{\destruct{wxTimer}}{\void} | |
59 | ||
2531c7e3 VZ |
60 | Destructor. Stops the timer if it is running. |
61 | ||
44cf9b50 | 62 | \membersection{wxTimer::GetInterval}\label{wxtimergetinterval} |
2531c7e3 VZ |
63 | |
64 | \constfunc{int}{GetInterval}{\void} | |
65 | ||
66 | Returns the current interval for the timer (in milliseconds). | |
67 | ||
457e6c54 | 68 | \membersection{wxTimer::IsOneShot}\label{wxtimerisoneshot} |
2531c7e3 VZ |
69 | |
70 | \constfunc{bool}{IsOneShot}{\void} | |
71 | ||
cc81d32f | 72 | Returns {\tt true} if the timer is one shot, i.e.\ if it will stop after firing the |
2531c7e3 | 73 | first notification automatically. |
a660d684 | 74 | |
457e6c54 | 75 | \membersection{wxTimer::IsRunning}\label{wxtimerisrunning} |
a660d684 | 76 | |
2531c7e3 | 77 | \constfunc{bool}{IsRunning}{\void} |
a660d684 | 78 | |
cc81d32f | 79 | Returns {\tt true} if the timer is running, {\tt false} if it is stopped. |
a660d684 | 80 | |
457e6c54 | 81 | \membersection{wxTimer::Notify}\label{wxtimernotify} |
a660d684 KB |
82 | |
83 | \func{void}{Notify}{\void} | |
84 | ||
2531c7e3 VZ |
85 | This member should be overridden by the user if the default constructor was |
86 | used and \helpref{SetOwner}{wxtimersetowner} wasn't called. | |
a660d684 | 87 | |
2531c7e3 VZ |
88 | Perform whatever action which is to be taken periodically here. |
89 | ||
457e6c54 | 90 | \membersection{wxTimer::SetOwner}\label{wxtimersetowner} |
2531c7e3 VZ |
91 | |
92 | \func{void}{SetOwner}{\param{wxEvtHandler *}{owner}, \param{int }{id = -1}} | |
93 | ||
b0a2d8a8 | 94 | Associates the timer with the given {\it owner}\/ object. When the timer is |
2531c7e3 | 95 | running, the owner will receive \helpref{timer events}{wxtimerevent} with |
b0a2d8a8 | 96 | id equal to {\it id}\/ specified here. |
2531c7e3 | 97 | |
457e6c54 | 98 | \membersection{wxTimer::Start}\label{wxtimerstart} |
a660d684 | 99 | |
e7dfcb8e | 100 | \func{bool}{Start}{\param{int }{milliseconds = -1}, \param{bool }{oneShot = {\tt false}}} |
a660d684 | 101 | |
b0a2d8a8 | 102 | (Re)starts the timer. If {\it milliseconds}\/ parameter is -1 (value by default), |
cc81d32f VS |
103 | the previous value is used. Returns {\tt false} if the timer could not be started, |
104 | {\tt true} otherwise (in MS Windows timers are a limited resource). | |
b0a2d8a8 | 105 | |
cc81d32f VS |
106 | If {\it oneShot}\/ is {\tt false} (the default), the \helpref{Notify}{wxtimernotify} |
107 | function will be called repeatedly until the timer is stopped. If {\tt true}, | |
b0a2d8a8 | 108 | it will be called only once and the timer will stop automatically. To make your |
d2c2afc9 JS |
109 | code more readable you may also use the following symbolic constants: |
110 | ||
111 | \twocolwidtha{5cm} | |
b0a2d8a8 VZ |
112 | \begin{twocollist}\itemsep=0pt |
113 | \twocolitem{wxTIMER\_CONTINUOUS}{Start a normal, continuously running, timer} | |
114 | \twocolitem{wxTIMER\_ONE\_SHOT}{Start a one shot timer} | |
115 | \end{twocollist} | |
a660d684 | 116 | |
99646f7e VZ |
117 | If the timer was already running, it will be stopped by this method before |
118 | restarting it. | |
119 | ||
457e6c54 | 120 | \membersection{wxTimer::Stop}\label{wxtimerstop} |
a660d684 KB |
121 | |
122 | \func{void}{Stop}{\void} | |
123 | ||
124 | Stops the timer. | |
125 | ||
2531c7e3 VZ |
126 | \section{\class{wxTimerEvent}}\label{wxtimerevent} |
127 | ||
128 | wxTimerEvent object is passed to the event handler of timer events. | |
129 | ||
130 | For example: | |
131 | ||
132 | \begin{verbatim} | |
133 | class MyFrame : public wxFrame | |
134 | { | |
135 | public: | |
136 | ... | |
137 | void OnTimer(wxTimerEvent& event); | |
138 | ||
139 | private: | |
140 | wxTimer m_timer; | |
141 | }; | |
142 | ||
143 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
144 | EVT_TIMER(TIMER_ID, MyFrame::OnTimer) | |
145 | END_EVENT_TABLE() | |
146 | ||
147 | MyFrame::MyFrame() | |
148 | : m_timer(this, TIMER_ID) | |
149 | { | |
150 | m_timer.Start(1000); // 1 second interval | |
151 | } | |
152 | ||
153 | void MyFrame::OnTimer(wxTimerEvent& event) | |
154 | { | |
155 | // do whatever you want to do every second here | |
156 | } | |
157 | ||
158 | \end{verbatim} | |
159 | ||
160 | \wxheading{Include files} | |
161 | ||
162 | <wx/timer.h> | |
163 | ||
164 | \wxheading{See also} | |
165 | ||
166 | \helpref{wxTimer}{wxtimer} | |
167 | ||
168 | \latexignore{\rtfignore{\wxheading{Members}}} | |
169 | ||
457e6c54 | 170 | \membersection{wxTimerEvent::GetInterval}\label{wxtimereventgetinterval} |
2531c7e3 VZ |
171 | |
172 | \constfunc{int}{GetInterval}{\void} | |
173 | ||
174 | Returns the interval of the timer which generated this event. | |
175 |