1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/scrtimer.h
3 // Purpose: wxScrollTimer: small helper class for wxScrollArrow/Thumb
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIV_SCRTIMER_H
13 #define _WX_UNIV_SCRTIMER_H
15 // NB: this class is implemented in scrolbar.cpp
23 // ----------------------------------------------------------------------------
24 // wxScrollTimer: the timer used when the arrow or scrollbar shaft is kept
26 // ----------------------------------------------------------------------------
28 class WXDLLIMPEXP_CORE wxScrollTimer
: public wxTimer
34 // start generating the events
35 void StartAutoScroll();
37 // the base class method
38 virtual void Notify();
41 // to implement in derived classes: perform the scroll action and return
42 // true to continue scrolling or false to stop
43 virtual bool DoNotify() = 0;
45 // should we skip the next timer event?
51 #endif // _WX_UNIV_SCRTIMER_H