]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/spinctrl.h
Intial review of calctrl.h.
[wxWidgets.git] / interface / spinctrl.h
index 114faeefb8e261b89ce14799b7d5a66f94e1ba61..046c98ccd231da957f86d5430129396c4d4def8b 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        spinctrl.h
-// Purpose:     documentation for wxSpinCtrl class
+// Purpose:     interface of wxSpinCtrl
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -24,8 +24,7 @@
     @category{ctrl}
     @appearance{spinctrl.png}
 
-    @seealso
-    @ref overview_eventhandlingoverview, wxSpinButton, wxControl
+    @see @ref overview_eventhandlingoverview, wxSpinButton, wxControl
 */
 class wxSpinCtrl : public wxControl
 {
@@ -34,7 +33,7 @@ public:
     /**
         )
         Constructor, creating and showing a spin control.
-        
+
         @param parent
             Parent window. Must not be @NULL.
         @param value
@@ -57,7 +56,7 @@ public:
             Initial value.
         @param name
             Window name.
-        
+
         @see Create()
     */
     wxSpinCtrl();
@@ -86,17 +85,17 @@ public:
     /**
         Gets maximal allowable value.
     */
-    int GetMax();
+    int GetMax() const;
 
     /**
         Gets minimal allowable value.
     */
-    int GetMin();
+    int GetMin() const;
 
     /**
         Gets the value of the spin control.
     */
-    int GetValue();
+    int GetValue() const;
 
     /**
         Sets range of allowable values.
@@ -107,7 +106,7 @@ public:
         Select the text in the text part of the control between  positions
         @a from (inclusive) and @a to (exclusive). This is similar to
         wxTextCtrl::SetSelection.
-        @b NB: this is currently only implemented for Windows and generic versions
+        @note this is currently only implemented for Windows and generic versions
         of the control.
     */
     void SetSelection(long from, long to);
@@ -120,3 +119,4 @@ public:
     void SetValue(int value);
     //@}
 };
+