1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTimer, wxStopWatch and global time-related functions
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin (wxTimerBase)
6 // Guillermo Rodriguez (global clean up)
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_TIMER_H_BASE_
14 #define _WX_TIMER_H_BASE_
20 #include "wx/object.h"
21 #include "wx/longlong.h"
23 #include "wx/stopwatch.h" // for backwards compatibility
27 // more readable flags for Start():
29 // generate notifications periodically until the timer is stopped (default)
30 #define wxTIMER_CONTINUOUS false
32 // only send the notification once and then stop the timer
33 #define wxTIMER_ONE_SHOT true
35 class WXDLLIMPEXP_FWD_BASE wxTimerImpl
;
36 class WXDLLIMPEXP_FWD_BASE wxTimerEvent
;
39 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_BASE
, wxEVT_TIMER
, wxTimerEvent
);
41 // the interface of wxTimer class
42 class WXDLLIMPEXP_BASE wxTimer
: public wxEvtHandler
45 // ctors and initializers
46 // ----------------------
48 // default: if you don't call SetOwner(), your only chance to get timer
49 // notifications is to override Notify() in the derived class
56 // ctor which allows to avoid having to override Notify() in the derived
57 // class: the owner will get timer notifications which can be handled with
59 wxTimer(wxEvtHandler
*owner
, int timerid
= wxID_ANY
)
62 SetOwner(owner
, timerid
);
66 void SetOwner(wxEvtHandler
*owner
, int timerid
= wxID_ANY
);
71 // working with the timer
72 // ----------------------
74 // NB: Start() and Stop() are not supposed to be overridden, they are only
75 // virtual for historical reasons, only Notify() can be overridden
77 // start the timer: if milliseconds == -1, use the same value as for the
80 // it is now valid to call Start() multiple times: this just restarts the
81 // timer if it is already running
82 virtual bool Start(int milliseconds
= -1, bool oneShot
= false);
84 // start the timer for one iteration only, this is just a simple wrapper
86 bool StartOnce(int milliseconds
= -1) { return Start(milliseconds
, true); }
88 // stop the timer, does nothing if the timer is not running
91 // override this in your wxTimer-derived class if you want to process timer
92 // messages in it, use non default ctor or SetOwner() otherwise
93 virtual void Notify();
99 // get the object notified about the timer events
100 wxEvtHandler
*GetOwner() const;
102 // return true if the timer is running
103 bool IsRunning() const;
105 // return the timer ID
108 // get the (last) timer interval in milliseconds
109 int GetInterval() const;
111 // return true if the timer is one shot
112 bool IsOneShot() const;
115 // common part of all ctors
120 wxDECLARE_NO_COPY_CLASS(wxTimer
);
123 // ----------------------------------------------------------------------------
124 // wxTimerRunner: starts the timer in its ctor, stops in the dtor
125 // ----------------------------------------------------------------------------
127 class WXDLLIMPEXP_BASE wxTimerRunner
130 wxTimerRunner(wxTimer
& timer
) : m_timer(timer
) { }
131 wxTimerRunner(wxTimer
& timer
, int milli
, bool oneShot
= false)
134 m_timer
.Start(milli
, oneShot
);
137 void Start(int milli
, bool oneShot
= false)
139 m_timer
.Start(milli
, oneShot
);
144 if ( m_timer
.IsRunning() )
153 wxDECLARE_NO_COPY_CLASS(wxTimerRunner
);
156 // ----------------------------------------------------------------------------
158 // ----------------------------------------------------------------------------
160 class WXDLLIMPEXP_BASE wxTimerEvent
: public wxEvent
164 : wxEvent(wxID_ANY
, wxEVT_TIMER
) { m_timer
=NULL
; }
166 wxTimerEvent(wxTimer
& timer
)
167 : wxEvent(timer
.GetId(), wxEVT_TIMER
),
170 SetEventObject(timer
.GetOwner());
174 int GetInterval() const { return m_timer
->GetInterval(); }
175 wxTimer
& GetTimer() const { return *m_timer
; }
177 // implement the base class pure virtual
178 virtual wxEvent
*Clone() const { return new wxTimerEvent(*this); }
179 virtual wxEventCategory
GetEventCategory() const { return wxEVT_CATEGORY_TIMER
; }
184 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxTimerEvent
)
187 typedef void (wxEvtHandler::*wxTimerEventFunction
)(wxTimerEvent
&);
189 #define wxTimerEventHandler(func) \
190 wxEVENT_HANDLER_CAST(wxTimerEventFunction, func)
192 #define EVT_TIMER(timerid, func) \
193 wx__DECLARE_EVT1(wxEVT_TIMER, timerid, wxTimerEventHandler(func))
195 #endif // wxUSE_TIMER
197 #endif // _WX_TIMER_H_BASE_