]> git.saurik.com Git - wxWidgets.git/blame - include/wx/timer.h
we don't need reserved virtual functions on HEAD
[wxWidgets.git] / include / wx / timer.h
CommitLineData
0470b1e6
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/timer.h
ed791986 3// Purpose: wxTimer, wxStopWatch and global time-related functions
99d80019 4// Author: Julian Smart
ed791986
VZ
5// Modified by: Vadim Zeitlin (wxTimerBase)
6// Guillermo Rodriguez (global clean up)
0470b1e6
VZ
7// Created: 04/01/98
8// RCS-ID: $Id$
99d80019 9// Copyright: (c) Julian Smart
65571936 10// Licence: wxWindows licence
0470b1e6
VZ
11/////////////////////////////////////////////////////////////////////////////
12
34138703
JS
13#ifndef _WX_TIMER_H_BASE_
14#define _WX_TIMER_H_BASE_
c801d85f 15
2ecf902b
WS
16#include "wx/defs.h"
17
18#if wxUSE_GUI && wxUSE_TIMER
19
0470b1e6 20#include "wx/object.h"
d895ad7c 21#include "wx/longlong.h"
ed791986 22#include "wx/event.h"
5fb98c22
VZ
23#include "wx/stopwatch.h" // for backwards compatibility
24
0470b1e6
VZ
25// ----------------------------------------------------------------------------
26// wxTimer
27// ----------------------------------------------------------------------------
28
b0a2d8a8
VZ
29// more readable flags for Start():
30
31// generate notifications periodically until the timer is stopped (default)
cb719f2e 32#define wxTIMER_CONTINUOUS false
b0a2d8a8
VZ
33
34// only send the notification once and then stop the timer
cb719f2e 35#define wxTIMER_ONE_SHOT true
b0a2d8a8 36
0470b1e6 37// the interface of wxTimer class
01ebf752 38class WXDLLEXPORT wxTimerBase : public wxEvtHandler
0470b1e6
VZ
39{
40public:
ed791986
VZ
41 // ctors and initializers
42 // ----------------------
43
44 // default: if you don't call SetOwner(), your only chance to get timer
45 // notifications is to override Notify() in the derived class
01ebf752 46 wxTimerBase() { Init(); SetOwner(this); }
ed791986
VZ
47
48 // ctor which allows to avoid having to override Notify() in the derived
49 // class: the owner will get timer notifications which can be handled with
50 // EVT_TIMER
cb719f2e 51 wxTimerBase(wxEvtHandler *owner, int timerid = wxID_ANY)
c5c5dad5 52 { Init(); SetOwner(owner, timerid); }
ed791986
VZ
53
54 // same as ctor above
cb719f2e 55 void SetOwner(wxEvtHandler *owner, int timerid = wxID_ANY)
c5c5dad5 56 { m_owner = owner; m_idTimer = timerid; }
313feadc 57 wxEvtHandler* GetOwner() const { return m_owner; }
0470b1e6 58
799ea011 59 virtual ~wxTimerBase();
03e11df5 60
0470b1e6
VZ
61 // working with the timer
62 // ----------------------
63
64 // start the timer: if milliseconds == -1, use the same value as for the
65 // last Start()
99646f7e
VZ
66 //
67 // it is now valid to call Start() multiple times: this just restarts the
68 // timer if it is already running
cb719f2e 69 virtual bool Start(int milliseconds = -1, bool oneShot = false);
0470b1e6
VZ
70
71 // stop the timer
72 virtual void Stop() = 0;
73
ed791986
VZ
74 // override this in your wxTimer-derived class if you want to process timer
75 // messages in it, use non default ctor or SetOwner() otherwise
76 virtual void Notify();
0470b1e6
VZ
77
78 // getting info
79 // ------------
80
cb719f2e 81 // return true if the timer is running
0470b1e6
VZ
82 virtual bool IsRunning() const = 0;
83
84 // get the (last) timer interval in the milliseconds
85 int GetInterval() const { return m_milli; }
86
cb719f2e 87 // return true if the timer is one shot
0470b1e6
VZ
88 bool IsOneShot() const { return m_oneShot; }
89
0bdc5dd6
RD
90 // return the timer ID
91 int GetId() const { return m_idTimer; }
cb719f2e 92
0bdc5dd6 93
0470b1e6 94protected:
ed791986 95 // common part of all ctors
cb719f2e 96 void Init() { m_oneShot = false; m_milli = 0; }
ed791986
VZ
97
98 wxEvtHandler *m_owner;
99 int m_idTimer;
100
0470b1e6 101 int m_milli; // the timer interval
cb719f2e 102 bool m_oneShot; // true if one shot
22f3361e
VZ
103
104 DECLARE_NO_COPY_CLASS(wxTimerBase)
0470b1e6
VZ
105};
106
ed791986
VZ
107// ----------------------------------------------------------------------------
108// wxTimer itself
109// ----------------------------------------------------------------------------
110
2049ba38 111#if defined(__WXMSW__)
0470b1e6 112 #include "wx/msw/timer.h"
2049ba38 113#elif defined(__WXMOTIF__)
0470b1e6 114 #include "wx/motif/timer.h"
1be7a35c 115#elif defined(__WXGTK20__)
0470b1e6 116 #include "wx/gtk/timer.h"
1be7a35c
MR
117#elif defined(__WXGTK__)
118 #include "wx/gtk1/timer.h"
2fcd7f64 119#elif defined(__WXX11__) || defined(__WXMGL__)
c331ac2e 120 #include "wx/generic/timer.h"
2fcd7f64
RN
121#elif defined (__WXCOCOA__)
122 #include "wx/cocoa/timer.h"
34138703 123#elif defined(__WXMAC__)
0470b1e6 124 #include "wx/mac/timer.h"
1777b9bb 125#elif defined(__WXPM__)
0470b1e6 126 #include "wx/os2/timer.h"
c801d85f
KB
127#endif
128
52a07708
VZ
129// ----------------------------------------------------------------------------
130// wxTimerRunner: starts the timer in its ctor, stops in the dtor
131// ----------------------------------------------------------------------------
132
133class WXDLLEXPORT wxTimerRunner
134{
135public:
136 wxTimerRunner(wxTimer& timer) : m_timer(timer) { }
cb719f2e 137 wxTimerRunner(wxTimer& timer, int milli, bool oneShot = false)
52a07708
VZ
138 : m_timer(timer)
139 {
140 m_timer.Start(milli, oneShot);
141 }
142
cb719f2e 143 void Start(int milli, bool oneShot = false)
52a07708
VZ
144 {
145 m_timer.Start(milli, oneShot);
146 }
147
148 ~wxTimerRunner()
149 {
150 if ( m_timer.IsRunning() )
151 {
152 m_timer.Stop();
153 }
154 }
155
156private:
157 wxTimer& m_timer;
fc7a2a60
VZ
158
159 DECLARE_NO_COPY_CLASS(wxTimerRunner)
52a07708
VZ
160};
161
0470b1e6 162// ----------------------------------------------------------------------------
ed791986
VZ
163// wxTimerEvent
164// ----------------------------------------------------------------------------
165
166class WXDLLEXPORT wxTimerEvent : public wxEvent
167{
168public:
c5c5dad5 169 wxTimerEvent(int timerid = 0, int interval = 0) : wxEvent(timerid)
ed791986
VZ
170 {
171 m_eventType = wxEVT_TIMER;
172
173 m_interval = interval;
174 }
175
176 // accessors
177 int GetInterval() const { return m_interval; }
178
acd15a3f
VZ
179 // implement the base class pure virtual
180 virtual wxEvent *Clone() const { return new wxTimerEvent(*this); }
181
ed791986
VZ
182private:
183 int m_interval;
184
fc7a2a60 185 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxTimerEvent)
ed791986
VZ
186};
187
188typedef void (wxEvtHandler::*wxTimerEventFunction)(wxTimerEvent&);
189
7fa03f04 190#define wxTimerEventHandler(func) \
8bc3ec1f 191 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxTimerEventFunction, &func)
7fa03f04 192
c5c5dad5 193#define EVT_TIMER(timerid, func) \
7fa03f04 194 wx__DECLARE_EVT1(wxEVT_TIMER, timerid, wxTimerEventHandler(func))
ed791986 195
1e6feb95 196#endif // wxUSE_GUI && wxUSE_TIMER
52a07708 197
c801d85f 198#endif
34138703 199 // _WX_TIMER_H_BASE_