]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/scrolbar.h
More German translations updates from Sebastian Walderich.
[wxWidgets.git] / include / wx / osx / scrolbar.h
index 70850d166e3aad9f870cfc12118a066e04bb7e19..2115ca5479e2e81f633a7fba4f05fa3ca6c69718 100644 (file)
@@ -1,10 +1,9 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        scrollbar.h
+// Name:        wx/osx/scrolbar.h
 // Purpose:     wxScrollBar class
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     1998-01-01
-// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -46,7 +45,12 @@ public:
     virtual void SetScrollbar(int position, int thumbSize, int range,
             int pageSize, bool refresh = true);
 
-    // implementation only from now on
+    // needed for RTTI
+    void SetThumbSize( int s ) { SetScrollbar( GetThumbPosition() , s , GetRange() , GetPageSize() , true ) ; }
+    void SetPageSize( int s ) { SetScrollbar( GetThumbPosition() , GetThumbSize() , GetRange() , s , true ) ; }
+    void SetRange( int s ) { SetScrollbar( GetThumbPosition() , GetThumbSize() , s , GetPageSize() , true ) ; }
+
+        // implementation only from now on
     void Command(wxCommandEvent& event);
     virtual void TriggerScrollEvent( wxEventType scrollEvent ) ;
     virtual bool OSXHandleClicked( double timestampsec );