1 \section{\class{wxChoice
}}\label{wxchoice
}
3 A choice item is used to select one of a list of strings. Unlike a
4 listbox, only the selection is visible until the user pulls down the
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
}
20 There are no special styles for wxChoice.
22 See also
\helpref{window styles overview
}{windowstyles
}.
24 \wxheading{Event handling
}
27 \begin{twocollist
}\itemsep=
0pt
28 \twocolitem{{\bf EVT
\_CHOICE(id, func)
}}{Process a wxEVT
\_COMMAND\_CHOICE\_SELECTED event,
29 when an item on the list is selected.
}
34 \helpref{wxListBox
}{wxlistbox
},
\helpref{wxComboBox
}{wxcombobox
},
35 \rtfsp\helpref{wxCommandEvent
}{wxcommandevent
}
37 \latexignore{\rtfignore{\wxheading{Members
}}}
39 \membersection{wxChoice::wxChoice
}\label{wxchoiceconstr
}
41 \func{}{wxChoice
}{\void}
45 \func{}{wxChoice
}{\param{wxWindow *
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
46 \param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
47 \param{int
}{ n
},
\param{const wxString
}{choices
[]},
\rtfsp
48 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``choice"
}}
50 Constructor, creating and showing a choice.
52 \wxheading{Parameters
}
54 \docparam{parent
}{Parent window. Must not be NULL.
}
56 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
58 \docparam{pos
}{Window position.
}
60 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then the choice is sized
63 \docparam{n
}{Number of strings with which to initialise the choice control.
}
65 \docparam{choices
}{An array of strings with which to initialise the choice control.
}
67 \docparam{style
}{Window style. See
\helpref{wxChoice
}{wxchoice
}.
}
69 \docparam{validator
}{Window validator.
}
71 \docparam{name
}{Window name.
}
75 \helpref{wxChoice::Create
}{wxchoicecreate
},
\helpref{wxValidator
}{wxvalidator
}
77 \pythonnote{The wxChoice constructor in wxPython reduces the
\tt{n
}
78 and
\tt{choices
} arguments are to a single argument, which is
81 \membersection{wxChoice::
\destruct{wxChoice
}}
83 \func{}{\destruct{wxChoice
}}{\void}
85 Destructor, destroying the choice item.
87 \membersection{wxChoice::Append
}\label{wxchoiceappend
}
89 \func{void
}{Append
}{\param{const wxString\&
}{ item
}}
91 Adds the item to the end of the choice control.
93 \wxheading{Parameters
}
95 \docparam{item
}{String to add.
}
97 \membersection{wxChoice::Clear
}\label{wxchoiceclear
}
99 \func{void
}{Clear
}{\void}
101 Clears the strings from the choice item.
103 \membersection{wxChoice::Create
}\label{wxchoicecreate
}
105 \func{bool
}{Create
}{\param{wxWindow *
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
106 \param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
107 \param{int
}{ n
},
\param{const wxString
}{choices
[]},
\rtfsp
108 \param{long
}{ style =
0},
\param{const wxString\&
}{name = ``choice"
}}
110 Creates the choice for two-step construction. See
\helpref{wxChoice::wxChoice
}{wxchoiceconstr
}.
112 \membersection{wxChoice::FindString
}\label{wxchoicefindstring
}
114 \constfunc{int
}{FindString
}{\param{const wxString\&
}{string
}}
116 Finds a choice matching the given string.
118 \wxheading{Parameters
}
120 \docparam{string
}{String to find.
}
122 \wxheading{Return value
}
124 Returns the position if found, or -
1 if not found.
126 \membersection{wxChoice::GetColumns
}\label{wxchoicegetcolumns
}
128 \constfunc{int
}{GetColumns
}{\void}
130 Gets the number of columns in this choice item.
134 This is implemented for Motif only.
136 \membersection{wxChoice::GetSelection
}\label{wxchoicegetselection
}
138 \constfunc{int
}{GetSelection
}{\void}
140 Gets the id (position) of the selected string, or -
1 if there is no selection.
142 \membersection{wxChoice::GetString
}\label{wxchoicegetstring
}
144 \constfunc{wxString
}{GetString
}{\param{int
}{ n
}}
146 Returns the string at the given position.
148 \wxheading{Parameters
}
150 \docparam{n
}{The zero-based position.
}
152 \wxheading{Return value
}
154 The string at the given position, or the empty string if
{\it n
} is invalid.
156 \membersection{wxChoice::GetStringSelection
}\label{wxchoicegetstringselection
}
158 \constfunc{wxString
}{GetStringSelection
}{\void}
160 Gets the selected string, or the empty string if no string is selected.
162 \membersection{wxChoice::Number
}\label{wxchoicenumber
}
164 \constfunc{int
}{Number
}{\void}
166 Returns the number of strings in the choice control.
168 \membersection{wxChoice::SetColumns
}\label{wxchoicesetcolumns
}
170 \func{void
}{SetColumns
}{\param{int
}{ n =
1}}
172 Sets the number of columns in this choice item.
174 \wxheading{Parameters
}
176 \docparam{n
}{Number of columns.
}
180 This is implemented for Motif only.
182 \membersection{wxChoice::SetSelection
}\label{wxchoicesetselection
}
184 \func{void
}{SetSelection
}{\param{int
}{ n
}}
186 Sets the choice by passing the desired string position.
188 \wxheading{Parameters
}
190 \docparam{n
}{The string position to select, starting from zero.
}
194 \helpref{wxChoice::SetStringSelection
}{wxchoicesetstringselection
}
196 \membersection{wxChoice::SetStringSelection
}\label{wxchoicesetstringselection
}
198 \func{void
}{SetStringSelection
}{\param{const wxString\&
}{ string
}}
200 Sets the choice by passing the desired string.
202 \wxheading{Parameters
}
204 \docparam{string
}{The string to select.
}
208 \helpref{wxChoice::SetSelection
}{wxchoicesetselection
}