2 % automatically generated by HelpGen from
3 % spinctrl.h at 11/Mar/00 00:22:05
6 \section{\class{wxSpinCtrl
}}\label{wxspinctrl
}
8 wxSpinCtrl combines
\helpref{wxTextCtrl
}{wxtextctrl
} and
9 \helpref{wxSpinButton
}{wxspinbutton
} in one control.
11 \wxheading{Derived from
}
13 \helpref{wxControl
}{wxcontrol
}\\
14 \helpref{wxWindow
}{wxwindow
}\\
15 \helpref{wxEvtHandler
}{wxevthandler
}\\
16 \helpref{wxObject
}{wxobject
}
18 \wxheading{Include files
}
22 \wxheading{Window styles
}
25 \begin{twocollist
}\itemsep=
0pt
26 \twocolitem{\windowstyle{wxSP
\_ARROW\_KEYS}}{The user can use arrow keys to change the value.
}
27 \twocolitem{\windowstyle{wxSP
\_WRAP}}{The value wraps at the minimum and maximum.
}
30 \wxheading{Event handling
}
32 To process input from a spin button, use one of these event handler macros to direct input to member
33 functions that take a
\helpref{wxSpinEvent
}{wxspinevent
} argument:
36 \begin{twocollist
}\itemsep=
0pt
37 \twocolitem{{\bf EVT
\_SPINCTRL(id, func)
}}{Generated whenever the numeric value
38 of the spinctrl is updated
}
41 You may also use the
\helpref{wxSpinButton
}{wxspinbutton
} event macros, however
42 the corresponding events will not be generated under all platforms. Finally, if
43 the user modifies the text in the edit part of the spin control directly, the
44 {\tt EVT
\_TEXT} is generated, like for the
\helpref{wxTextCtrl
}{wxtextctrl
}.
46 When the use enters text into the text area, the text is not
47 validated until the control loses focus (e.g. by using the TAB
48 key). The value is then adjusted to the range and a
49 \helpref{wxSpinEvent
}{wxspinevent
} sent then if the value
50 is different from the last value sent.
54 \helpref{Event handling overview
}{eventhandlingoverview
},
55 \helpref{wxSpinButton
}{wxspinbutton
},
56 \helpref{wxControl
}{wxcontrol
}
58 \latexignore{\rtfignore{\wxheading{Members
}}}
60 \membersection{wxSpinCtrl::wxSpinCtrl
}\label{wxspinctrlwxspinctrl
}
62 \func{}{wxSpinCtrl
}{\void}
66 \func{}{wxSpinCtrl
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id = -
1},
\param{const wxString\&
}{value = wxEmptyString
},
\param{const wxPoint\&
}{pos = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\param{long
}{style = wxSP
\_ARROW\_KEYS},
\param{int
}{min =
0},
\param{int
}{max =
100},
\param{int
}{initial =
0},
\param{const wxString\&
}{name =
\_T("wxSpinCtrl")
}}
68 Constructor, creating and showing a spin control.
70 \wxheading{Parameters
}
72 \docparam{parent
}{Parent window. Must not be NULL.
}
74 \docparam{value
}{Default value.
}
76 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
78 \docparam{pos
}{Window position. If the position (-
1, -
1) is specified then a default position is chosen.
}
80 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then a default size is chosen.
}
82 \docparam{style
}{Window style. See
\helpref{wxSpinButton
}{wxspinbutton
}.
}
84 \docparam{min
}{Minimal value.
}
86 \docparam{max
}{Maximal value.
}
88 \docparam{initial
}{Initial value.
}
90 \docparam{name
}{Window name.
}
94 \helpref{wxSpinCtrl::Create
}{wxspinctrlcreate
}
96 \membersection{wxSpinCtrl::Create
}\label{wxspinctrlcreate
}
98 \func{bool
}{Create
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id = -
1},
\param{const wxString\&
}{value = wxEmptyString
},
\param{const wxPoint\&
}{pos = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\param{long
}{style = wxSP
\_ARROW\_KEYS},
\param{int
}{min =
0},
\param{int
}{max =
100},
\param{int
}{initial =
0},
\param{const wxString\&
}{name =
\_T("wxSpinCtrl")
}}
100 Creation function called by the spin control constructor.
102 See
\helpref{wxSpinCtrl::wxSpinCtrl
}{wxspinctrlwxspinctrl
} for details.
104 \membersection{wxSpinCtrl::SetValue
}\label{wxspinctrlsetvalue
}
106 \func{void
}{SetValue
}{\param{const wxString\&
}{text
}}
108 \func{void
}{SetValue
}{\param{int
}{value
}}
110 Sets the value of the spin control.
112 \membersection{wxSpinCtrl::GetValue
}\label{wxspinctrlgetvalue
}
114 \constfunc{int
}{GetValue
}{\void}
116 Gets the value of the spin control.
118 \membersection{wxSpinCtrl::SetRange
}\label{wxspinctrlsetrange
}
120 \func{void
}{SetRange
}{\param{int
}{minVal
},
\param{int
}{maxVal
}}
122 Sets range of allowable values.
124 \membersection{wxSpinCtrl::SetSelection
}\label{wxspinctrlsetselection
}
126 \func{void
}{SetSelection
}{\param{long
}{from
},
\param{long
}{to
}}
128 Select the text in the text part of the control between positions
129 {\it from
} (inclusive) and
{\it to
} (exclusive). This is similar to
130 \helpref{wxTextCtrl::SetSelection
}{wxtextctrlsetselection
}.
132 {\bf NB:
} this is currently only implemented for Windows and generic versions
135 \membersection{wxSpinCtrl::GetMin
}\label{wxspinctrlgetmin
}
137 \constfunc{int
}{GetMin
}{\void}
139 Gets minimal allowable value.
141 \membersection{wxSpinCtrl::GetMax
}\label{wxspinctrlgetmax
}
143 \constfunc{int
}{GetMax
}{\void}
145 Gets maximal allowable value.