add wxScrollHelper::ShowScrollbars() (implemented for GTK only right now, generic implementation coming soon)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57529 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-12-24 15:58:37 +00:00
parent a805de23ff
commit 6362d82b3e
7 changed files with 130 additions and 1 deletions

View File

@@ -972,6 +972,18 @@ void wxScrollHelper::EnableScrolling (bool x_scroll, bool y_scroll)
m_yScrollingEnabled = y_scroll;
}
void wxScrollHelper::ShowScrollbars(wxScrollbarVisibility horz,
wxScrollbarVisibility vert)
{
DoShowScrollbars(horz, vert);
}
void wxScrollHelper::DoShowScrollbars(wxScrollbarVisibility horz,
wxScrollbarVisibility vert)
{
// TODO
}
// Where the current view starts from
void wxScrollHelper::DoGetViewStart (int *x, int *y) const
{