]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/spinbutt.h
revised base64.h;bitmap.h
[wxWidgets.git] / interface / spinbutt.h
index 9f532fb2bd92a93bd14fc8eb1db50e52338e6a9c..0e9ff3967493eaa3ccd4502931219845656995c9 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        spinbutt.h
-// Purpose:     documentation for wxSpinEvent class
+// Purpose:     interface of wxSpinEvent
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -16,8 +16,7 @@
     @library{wxcore}
     @category{events}
 
-    @seealso
-    wxSpinButton and wxSpinCtrl
+    @see wxSpinButton and wxSpinCtrl
 */
 class wxSpinEvent : public wxNotifyEvent
 {
@@ -30,7 +29,7 @@ public:
     /**
         Retrieve the current spin button or control value.
     */
-    int GetPosition();
+    int GetPosition() const;
 
     /**
         Set the value associated with the event.
@@ -39,6 +38,7 @@ public:
 };
 
 
+
 /**
     @class wxSpinButton
     @wxheader{spinbutt.h}
@@ -70,8 +70,7 @@ public:
     @category{ctrl}
     @appearance{spinbutton.png}
 
-    @seealso
-    wxSpinCtrl
+    @see wxSpinCtrl
 */
 class wxSpinButton : public wxControl
 {
@@ -125,21 +124,21 @@ public:
         
         @see SetRange()
     */
-    int GetMax();
+    int GetMax() const;
 
     /**
         Returns the minimum permissible value.
         
         @see SetRange()
     */
-    int GetMin();
+    int GetMin() const;
 
     /**
         Returns the current spin button value.
         
         @see SetValue()
     */
-    int GetValue();
+    int GetValue() const;
 
     /**
         Sets the range of the spin button.
@@ -161,3 +160,4 @@ public:
     */
     void SetValue(int value);
 };
+