2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/scrtimer.h
|
|
|
|
// Purpose: wxScrollTimer: small helper class for wxScrollArrow/Thumb
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 18.02.01
|
|
|
|
// RCS-ID: $Id$
|
2001-07-02 15:42:27 -04:00
|
|
|
// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// NB: this class is implemented in scrolbar.cpp
|
|
|
|
|
|
|
|
#include "wx/timer.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxScrollTimer: the timer used when the arrow or scrollbar shaft is kept
|
|
|
|
// pressed
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxScrollTimer : public wxTimer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// default ctor
|
|
|
|
wxScrollTimer();
|
|
|
|
|
|
|
|
// start generating the events
|
|
|
|
void StartAutoScroll();
|
|
|
|
|
|
|
|
// the base class method
|
|
|
|
virtual void Notify();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// to implement in derived classes: perform the scroll action and return
|
2004-08-10 09:08:43 -04:00
|
|
|
// true to continue scrolling or false to stop
|
2001-06-26 16:59:19 -04:00
|
|
|
virtual bool DoNotify() = 0;
|
|
|
|
|
|
|
|
// should we skip the next timer event?
|
|
|
|
bool m_skipNext;
|
|
|
|
};
|
|
|
|
|