X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/23645bfa01b6450257f140a30c87565225b1ef4a..10769d8c47c21fe0ec5034726791a5ad4cf19475:/include/wx/univ/scrolbar.h diff --git a/include/wx/univ/scrolbar.h b/include/wx/univ/scrolbar.h index 1a1eb9de00..f400d4aea8 100644 --- a/include/wx/univ/scrolbar.h +++ b/include/wx/univ/scrolbar.h @@ -99,6 +99,10 @@ public: long numArg = 0, const wxString& strArg = wxEmptyString); + // The scrollbars around a normal window should not + // receive the focus. + virtual bool AcceptsFocus() const; + // wxScrollBar sub elements state (combination of wxCONTROL_XXX) void SetState(Element which, int flags); int GetState(Element which) const; @@ -123,12 +127,18 @@ protected: // event handlers void OnIdle(wxIdleEvent& event); + // forces update of thumb's visual appearence (does nothing if m_dirty=FALSE) + void UpdateThumb(); + // SetThumbPosition() helper void DoSetThumb(int thumbPos); // common part of all ctors void Init(); + // is this scrollbar attached to a window or a standalone control? + bool IsStandalone() const; + private: // total range of the scrollbar in logical units int m_range;