Expose UpdateScrollbar and RemoveScrollbar

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39010 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-05-04 02:05:58 +00:00
parent 4ba3af91ab
commit ef802f32a3

View File

@ -95,6 +95,11 @@ public:
wxCoord GetLinesHeight(size_t lineMin, size_t lineMax) const
{ return wxVScrolledWindow::GetLinesHeight(lineMin, lineMax); }
// update the thumb size shown by the scrollbar
void UpdateScrollbar() { wxVScrolledWindow::UpdateScrollbar(); }
// remove the scrollbar completely because we don't need it
void RemoveScrollbar() { wxVScrolledWindow::RemoveScrollbar(); }
PYPRIVATE;
};