X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..874dbd3a4a318bd7f34548b84cfe0aed9efa42d5:/include/wx/univ/scrtimer.h?ds=sidebyside diff --git a/include/wx/univ/scrtimer.h b/include/wx/univ/scrtimer.h index 35e3505ab4..d73aada0b6 100644 --- a/include/wx/univ/scrtimer.h +++ b/include/wx/univ/scrtimer.h @@ -9,8 +9,15 @@ // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// +#ifndef _WX_UNIV_SCRTIMER_H +#define _WX_UNIV_SCRTIMER_H + // NB: this class is implemented in scrolbar.cpp +#include "wx/defs.h" + +#if wxUSE_TIMER + #include "wx/timer.h" // ---------------------------------------------------------------------------- @@ -18,7 +25,7 @@ // pressed // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxScrollTimer : public wxTimer +class WXDLLIMPEXP_CORE wxScrollTimer : public wxTimer { public: // default ctor @@ -32,10 +39,13 @@ public: protected: // to implement in derived classes: perform the scroll action and return - // TRUE to continue scrolling or FALSE to stop + // true to continue scrolling or false to stop virtual bool DoNotify() = 0; // should we skip the next timer event? bool m_skipNext; }; +#endif // wxUSE_TIMER + +#endif // _WX_UNIV_SCRTIMER_H