X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b4071e913e85e35024ee5883a0a046f0fd6332bf..8ffd43c56b793781fde046aa532340b92a0067eb:/include/wx/gtk/scrolbar.h diff --git a/include/wx/gtk/scrolbar.h b/include/wx/gtk/scrolbar.h index f4a50694d0..98a3da43b1 100644 --- a/include/wx/gtk/scrolbar.h +++ b/include/wx/gtk/scrolbar.h @@ -2,9 +2,8 @@ // Name: scrolbar.h // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -59,15 +58,16 @@ class wxScrollBar: public wxControl const wxValidator& validator = wxDefaultValidator, const wxString& name = wxScrollBarNameStr ); ~wxScrollBar(void); - int GetPosition(void) const; + int GetThumbPosition(void) const; int GetThumbSize() const; int GetPageSize() const; int GetRange() const; - virtual void SetPosition( int viewStart ); + virtual void SetThumbPosition( int viewStart ); virtual void SetScrollbar( int position, int thumbSize, int range, int pageSize, bool refresh = TRUE ); - // Backward compatibility + // Backward compatibility + int GetValue(void) const; void SetValue( int viewStart ); void GetValues( int *viewStart, int *viewLength, int *objectLength, int *pageLength) const; @@ -80,6 +80,7 @@ class wxScrollBar: public wxControl // implementation bool IsOwnGtkWindow( GdkWindow *window ); + void ApplyWidgetStyle(); GtkAdjustment *m_adjust; float m_oldPos;