]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/spinbutt.h
revision contributed by Utensil Candel
[wxWidgets.git] / interface / spinbutt.h
index 1844319f9a1010b613e64a5ec0f365b37c40483d..5bd9f8ae9fbe27d9ce2d0297b379a0b531ca2f64 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
 {
@@ -39,6 +38,7 @@ public:
 };
 
 
+
 /**
     @class wxSpinButton
     @wxheader{spinbutt.h}
@@ -49,7 +49,7 @@ public:
     as wxSpinButton is not implemented for all platforms but wxSpinCtrl is as it
     degenerates to a simple wxTextCtrl on such platforms.
 
-    @b NB: the range supported by this control (and wxSpinCtrl) depends on the
+    @note the range supported by this control (and wxSpinCtrl) depends on the
     platform but is at least @c -0x8000 to @c 0x7fff. Under GTK and
     Win32 with sufficiently new version of @c comctrl32.dll (at least 4.71 is
     required, 5.80 is recommended) the full 32 bit range is supported.
@@ -70,8 +70,7 @@ public:
     @category{ctrl}
     @appearance{spinbutton.png}
 
-    @seealso
-    wxSpinCtrl
+    @see wxSpinCtrl
 */
 class wxSpinButton : public wxControl
 {
@@ -79,7 +78,7 @@ public:
     //@{
     /**
         Constructor, creating and showing a spin button.
-        
+
         @param parent
             Parent window. Must not be @NULL.
         @param id
@@ -94,7 +93,7 @@ public:
             Window style. See wxSpinButton.
         @param name
             Window name.
-        
+
         @see Create()
     */
     wxSpinButton();
@@ -122,42 +121,43 @@ public:
 
     /**
         Returns the maximum permissible value.
-        
+
         @see SetRange()
     */
     int GetMax() const;
 
     /**
         Returns the minimum permissible value.
-        
+
         @see SetRange()
     */
     int GetMin() const;
 
     /**
         Returns the current spin button value.
-        
+
         @see SetValue()
     */
     int GetValue() const;
 
     /**
         Sets the range of the spin button.
-        
+
         @param min
             The minimum value for the spin button.
         @param max
             The maximum value for the spin button.
-        
+
         @see GetMin(), GetMax()
     */
     void SetRange(int min, int max);
 
     /**
         Sets the value of the spin button.
-        
+
         @param value
             The value for the spin button.
     */
     void SetValue(int value);
 };
+