]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/spinctrl.h
few details fixed
[wxWidgets.git] / interface / wx / spinctrl.h
index c89b26f2fda1caf17b398ece7439d9a13a07e444..5e59c4c85fabbdaf184f8caba8ffb1ed9e561c08 100644 (file)
 
     @beginStyleTable
     @style{wxSP_ARROW_KEYS}
 
     @beginStyleTable
     @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.
+        The value wraps at the minimum and maximum.
+    @style{wxTE_PROCESS_ENTER}
+        Indicates that the control should generate wxEVT_COMMAND_TEXT_ENTER
+        events. Using this style will prevent the user from using the Enter key
+        for dialog navigation (e.g. activating the default button in the
+        dialog) under MSW.
     @endStyleTable
 
     @library{wxcore}
     @category{ctrl}
     <!-- @appearance{spinctrl.png} -->
 
     @endStyleTable
 
     @library{wxcore}
     @category{ctrl}
     <!-- @appearance{spinctrl.png} -->
 
-    @see wxSpinButton, wxControl
+    @see wxSpinButton, wxSpinCtrlDouble, wxControl
 */
 class wxSpinCtrl : public wxControl
 {
 */
 class wxSpinCtrl : public wxControl
 {
@@ -67,7 +72,7 @@ public:
                const wxSize& size = wxDefaultSize,
                long style = wxSP_ARROW_KEYS,
                int min = 0, int max = 100,
                const wxSize& size = wxDefaultSize,
                long style = wxSP_ARROW_KEYS,
                int min = 0, int max = 100,
-               int initial = 0);
+               int initial = 0, const wxString& name = _T("wxSpinCtrl"));
 
     /**
         Creation function called by the spin control constructor.
 
     /**
         Creation function called by the spin control constructor.
@@ -79,7 +84,7 @@ public:
                 const wxSize& size = wxDefaultSize,
                 long style = wxSP_ARROW_KEYS,
                 int min = 0, int max = 100,
                 const wxSize& size = wxDefaultSize,
                 long style = wxSP_ARROW_KEYS,
                 int min = 0, int max = 100,
-                int initial = 0);
+                int initial = 0, const wxString& name = _T("wxSpinCtrl"));
 
     /**
         Gets maximal allowable value.
 
     /**
         Gets maximal allowable value.