provide generic implementation for ShowScrollbars() too

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57530 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-12-24 16:11:02 +00:00
parent 6362d82b3e
commit 69e9752529
2 changed files with 32 additions and 13 deletions

View File

@@ -93,7 +93,10 @@ public:
// associated window), always (as wxALWAYS_SHOW_SB style does) or never (in
// which case you should provide some other way to scroll the window as the
// user wouldn't be able to do it at all)
void ShowScrollbars(wxScrollbarVisibility horz, wxScrollbarVisibility vert);
void ShowScrollbars(wxScrollbarVisibility horz, wxScrollbarVisibility vert)
{
DoShowScrollbars(horz, vert);
}
// Enable/disable Windows scrolling in either direction. If true, wxWidgets
// scrolls the canvas and only a bit of the canvas is invalidated; no
@@ -246,7 +249,8 @@ protected:
int virtSize,
int& pixelsPerUnit,
int& scrollUnits,
int& scrollPosition);
int& scrollPosition,
wxScrollbarVisibility visibility);
// this function should be overridden to return the size available for
// m_targetWindow inside m_win of the given size
@@ -293,6 +297,8 @@ protected:
wxScrollHelperEvtHandler *m_handler;
wxScrollbarVisibility m_xVisibility,
m_yVisibility;
DECLARE_NO_COPY_CLASS(wxScrollHelper)
};