]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/spinbutt.h
no real changes, clarified the usage of WX_GL_DOUBLEBUFFER; documented it and other...
[wxWidgets.git] / interface / spinbutt.h
index 0e9ff3967493eaa3ccd4502931219845656995c9..e5af2d0435879d6b628d631d689e6d19de5dfc99 100644 (file)
@@ -49,20 +49,20 @@ public:
     as wxSpinButton is not implemented for all platforms but wxSpinCtrl is as it
     degenerates to a simple wxTextCtrl on such platforms.
 
     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.
 
     @beginStyleTable
     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.
 
     @beginStyleTable
-    @style{wxSP_HORIZONTAL}:
+    @style{wxSP_HORIZONTAL}
            Specifies a horizontal spin button (note that this style is not
            supported in wxGTK).
            Specifies a horizontal spin button (note that this style is not
            supported in wxGTK).
-    @style{wxSP_VERTICAL}:
+    @style{wxSP_VERTICAL}
            Specifies a vertical spin button.
            Specifies a vertical spin button.
-    @style{wxSP_ARROW_KEYS}:
+    @style{wxSP_ARROW_KEYS}
            The user can use arrow keys to change the value.
            The user can use arrow keys to change the value.
-    @style{wxSP_WRAP}:
+    @style{wxSP_WRAP}
            The value wraps at the minimum and maximum.
     @endStyleTable
 
            The value wraps at the minimum and maximum.
     @endStyleTable
 
@@ -78,7 +78,7 @@ public:
     //@{
     /**
         Constructor, creating and showing a spin button.
     //@{
     /**
         Constructor, creating and showing a spin button.
-        
+
         @param parent
             Parent window. Must not be @NULL.
         @param id
         @param parent
             Parent window. Must not be @NULL.
         @param id
@@ -93,7 +93,7 @@ public:
             Window style. See wxSpinButton.
         @param name
             Window name.
             Window style. See wxSpinButton.
         @param name
             Window name.
-        
+
         @see Create()
     */
     wxSpinButton();
         @see Create()
     */
     wxSpinButton();
@@ -121,40 +121,40 @@ public:
 
     /**
         Returns the maximum permissible value.
 
     /**
         Returns the maximum permissible value.
-        
+
         @see SetRange()
     */
     int GetMax() const;
 
     /**
         Returns the minimum permissible value.
         @see SetRange()
     */
     int GetMax() const;
 
     /**
         Returns the minimum permissible value.
-        
+
         @see SetRange()
     */
     int GetMin() const;
 
     /**
         Returns the current spin button value.
         @see SetRange()
     */
     int GetMin() const;
 
     /**
         Returns the current spin button value.
-        
+
         @see SetValue()
     */
     int GetValue() const;
 
     /**
         Sets the range of the spin button.
         @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.
         @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.
         @see GetMin(), GetMax()
     */
     void SetRange(int min, int max);
 
     /**
         Sets the value of the spin button.
-        
+
         @param value
             The value for the spin button.
     */
         @param value
             The value for the spin button.
     */