1 \section{\class{wxRadioBox
}}\label{wxradiobox
}
3 A radio box item is used to select one of number of mutually exclusive
4 choices. It is displayed as a vertical column or horizontal row of
7 \wxheading{Derived from
}
9 \helpref{wxControl
}{wxcontrol
}\\
10 \helpref{wxWindow
}{wxwindow
}\\
11 \helpref{wxEvtHandler
}{wxevthandler
}\\
12 \helpref{wxObject
}{wxobject
}
14 \wxheading{Include files
}
18 \wxheading{Window styles
}
21 \begin{twocollist
}\itemsep=
0pt
22 \twocolitem{\windowstyle{wxRA
\_SPECIFY\_ROWS}}{The major dimension parameter refers to the
23 maximum number of rows.
}
24 \twocolitem{\windowstyle{wxRA
\_SPECIFY\_COLS}}{The major dimension parameter refers to the
25 maximum number of columns.
}
28 See also
\helpref{window styles overview
}{windowstyles
}.
30 \wxheading{Event handling
}
33 \begin{twocollist
}\itemsep=
0pt
34 \twocolitem{{\bf EVT
\_RADIOBOX(id, func)
}}{Process a wxEVT
\_COMMAND\_RADIOBOX\_SELECTED event,
35 when a radiobutton is clicked.
}
40 \helpref{Event handling overview
}{eventhandlingoverview
},
\helpref{wxRadioButton
}{wxradiobutton
},
\rtfsp
41 \helpref{wxCheckBox
}{wxcheckbox
}
43 \latexignore{\rtfignore{\wxheading{Members
}}}
45 \membersection{wxRadioBox::wxRadioBox
}\label{wxradioboxconstr
}
47 \func{}{wxRadioBox
}{\void}
51 \func{}{wxRadioBox
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\param{const wxString\&
}{label
},
\rtfsp
52 \param{const wxPoint\&
}{point = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
53 \param{int
}{ n =
0},
\param{const wxString
}{ choices
[] = NULL
},
\rtfsp
54 \param{int
}{ majorDimension =
0},
\param{long
}{ style = wxRA
\_SPECIFY\_COLS},
\rtfsp
55 \param{const wxValidator\&
}{validator = wxDefaultValidator
},
\rtfsp
56 \param{const wxString\&
}{name = ``radioBox"
}}
58 Constructor, creating and showing a radiobox.
60 \wxheading{Parameters
}
62 \docparam{parent
}{Parent window. Must not be NULL.
}
64 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
66 \docparam{label
}{Label for the static box surrounding the radio buttons.
}
68 \docparam{pos
}{Window position. If the position (-
1, -
1) is specified then a default position is chosen.
}
70 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then a default size is chosen.
}
72 \docparam{n
}{Number of choices with which to initialize the radiobox.
}
74 \docparam{choices
}{An array of choices with which to initialize the radiobox.
}
76 \docparam{majorDimension
}{Specifies the maximum number of rows (if style contains wxRA
\_SPECIFY\_ROWS) or columns (if style contains wxRA
\_SPECIFY\_COLS) for a two-dimensional
79 \docparam{style
}{Window style. See
\helpref{wxRadioBox
}{wxradiobox
}.
}
81 \docparam{validator
}{Window validator.
}
83 \docparam{name
}{Window name.
}
87 \helpref{wxRadioBox::Create
}{wxradioboxcreate
},
\helpref{wxValidator
}{wxvalidator
}
89 \pythonnote{The wxRadioBox constructor in wxPython reduces the
{\tt n
}
90 and
{\tt choices
} arguments are to a single argument, which is
93 \perlnote{In wxPerl there is just an array reference in place of
{\tt n
}
96 \membersection{wxRadioBox::
\destruct{wxRadioBox
}}
98 \func{}{\destruct{wxRadioBox
}}{\void}
100 Destructor, destroying the radiobox item.
102 \membersection{wxRadioBox::Create
}\label{wxradioboxcreate
}
104 \func{bool
}{Create
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\param{const wxString\&
}{label
},
\rtfsp
105 \param{const wxPoint\&
}{point = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
106 \param{int
}{ n =
0},
\param{const wxString
}{ choices
[] = NULL
},
\rtfsp
107 \param{int
}{ majorDimension =
0},
\param{long
}{ style = wxRA
\_SPECIFY\_COLS},
\rtfsp
108 \param{const wxValidator\&
}{validator = wxDefaultValidator
},
\rtfsp
109 \param{const wxString\&
}{name = ``radioBox"
}}
111 Creates the radiobox for two-step construction. See
\helpref{wxRadioBox::wxRadioBox
}{wxradioboxconstr
}\rtfsp
114 \membersection{wxRadioBox::Enable
}\label{wxradioboxenable
}
116 \func{void
}{Enable
}{\param{const bool
}{ enable
}}
118 Enables or disables the entire radiobox.
120 \func{void
}{Enable
}{\param{int
}{ n
},
\param{const bool
}{ enable
}}
122 Enables or disables an individual button in the radiobox.
124 \wxheading{Parameters
}
126 \docparam{enable
}{TRUE to enable, FALSE to disable.
}
128 \docparam{n
}{The zero-based button to enable or disable.
}
130 \pythonnote{In place of a single overloaded method name, wxPython
131 implements the following methods:
\par
132 \indented{2cm
}{\begin{twocollist
}
133 \twocolitem{{\bf Enable(flag)
}}{Enables or disables the entire radiobox.
}
134 \twocolitem{{\bf EnableItem(n, flag)
}}{Enables or disables an
135 individual button in the radiobox.
}
140 \membersection{wxRadioBox::FindString
}\label{wxradioboxfindstring
}
142 \constfunc{int
}{FindString
}{\param{const wxString\&
}{string
}}
144 Finds a button matching the given string, returning the position if found, or
147 \wxheading{Parameters
}
149 \docparam{string
}{The string to find.
}
151 \membersection{wxRadioBox::GetLabel
}\label{wxradioboxgetlabel
}
153 \constfunc{wxString
}{GetLabel
}{\void}
155 Returns the radiobox label.
157 \constfunc{wxString
}{GetLabel
}{\param{int
}{n
}}
159 Returns the label for the given button.
161 \wxheading{Parameters
}
163 \docparam{n
}{The zero-based button index.
}
167 \helpref{wxRadioBox::SetLabel
}{wxradioboxsetlabel
}
169 \pythonnote{In place of a single overloaded method name, wxPython
170 implements the following methods:
\par
171 \indented{2cm
}{\begin{twocollist
}
172 \twocolitem{{\bf GetLabel()
}}{Returns the radiobox label.
}
173 \twocolitem{{\bf GetItemLabel(n)
}}{Returns the label for the given button.
}
178 \membersection{wxRadioBox::GetSelection
}\label{wxradioboxgetselection
}
180 \constfunc{int
}{GetSelection
}{\void}
182 Returns the zero-based position of the selected button.
184 \membersection{wxRadioBox::GetStringSelection
}\label{wxradioboxgetstringselection
}
186 \constfunc{wxString
}{GetStringSelection
}{\void}
188 Returns the selected string.
190 \membersection{wxRadioBox::Number
}\label{wxradioboxnumber
}
192 \constfunc{int
}{Number
}{\void}
194 Returns the number of buttons in the radiobox.
196 \membersection{wxRadioBox::SetLabel
}\label{wxradioboxsetlabel
}
198 \func{void
}{SetLabel
}{\param{const wxString\&
}{ label
}}
200 Sets the radiobox label.
202 \func{void
}{SetLabel
}{\param{int
}{n
},
\param{const wxString\&
}{ label
}}
204 Sets a label for a radio button.
206 \wxheading{Parameters
}
208 \docparam{label
}{The label to set.
}
210 \docparam{n
}{The zero-based button index.
}
212 \pythonnote{In place of a single overloaded method name, wxPython
213 implements the following methods:
\par
214 \indented{2cm
}{\begin{twocollist
}
215 \twocolitem{{\bf SetLabel(string)
}}{Sets the radiobox label.
}
216 \twocolitem{{\bf SetItemLabel(n, string)
}}{Sets a label for a radio button.
}
220 \membersection{wxRadioBox::SetSelection
}\label{wxradioboxsetselection
}
222 \func{void
}{SetSelection
}{\param{int
}{ n
}}
224 Sets a button by passing the desired string position. This does not cause
225 a wxEVT
\_COMMAND\_RADIOBOX\_SELECTED event to get emitted.
227 \wxheading{Parameters
}
229 \docparam{n
}{The zero-based button position.
}
231 \membersection{wxRadioBox::SetStringSelection
}\label{wxradioboxsetstringselection
}
233 \func{void
}{SetStringSelection
}{\param{const wxString\&
}{string
}}
235 Sets the selection to a button by passing the desired string. This does not cause
236 a wxEVT
\_COMMAND\_RADIOBOX\_SELECTED event to get emitted.
238 \wxheading{Parameters
}
240 \docparam{string
}{The label of the button to select.
}
242 \membersection{wxRadioBox::Show
}\label{wxradioboxshow
}
244 \func{void
}{Show
}{\param{const bool
}{ show
}}
246 Shows or hides the entire radiobox.
248 \func{void
}{Show
}{\param{int
}{item
},
\param{const bool
}{ show
}}
250 Shows or hides individual buttons.
252 \wxheading{Parameters
}
254 \docparam{show
}{TRUE to show, FALSE to hide.
}
256 \docparam{item
}{The zero-based position of the button to show or hide.
}
258 \pythonnote{In place of a single overloaded method name, wxPython
259 implements the following methods:
\par
260 \indented{2cm
}{\begin{twocollist
}
261 \twocolitem{{\bf Show(flag)
}}{Shows or hides the entire radiobox.
}
262 \twocolitem{{\bf ShowItem(n, flag)
}}{Shows or hides individual buttons.
}
266 \membersection{wxRadioBox::GetString
}\label{wxradioboxgetstring
}
268 \constfunc{wxString
}{GetString
}{\param{int
}{ n
}}
270 Returns the label for the button at the given position.
272 \wxheading{Parameters
}
274 \docparam{n
}{The zero-based button position.
}