]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/choice.tex
wxWindowMSW now eats EVT_CHAR if the key was handled in EVT_KEY_DOWN
[wxWidgets.git] / docs / latex / wx / choice.tex
... / ...
CommitLineData
1\section{\class{wxChoice}}\label{wxchoice}
2
3A choice item is used to select one of a list of strings. Unlike a
4listbox, only the selection is visible until the user pulls down the
5menu of choices.
6
7\wxheading{Derived from}
8
9\helpref{wxControl}{wxcontrol}\\
10\helpref{wxWindow}{wxwindow}\\
11\helpref{wxEvtHandler}{wxevthandler}\\
12\helpref{wxObject}{wxobject}
13
14\wxheading{Include files}
15
16<wx/choice.h>
17
18\wxheading{Window styles}
19
20There are no special styles for wxChoice.
21
22See also \helpref{window styles overview}{windowstyles}.
23
24\wxheading{Event handling}
25
26\twocolwidtha{7cm}
27\begin{twocollist}\itemsep=0pt
28\twocolitem{{\bf EVT\_CHOICE(id, func)}}{Process a wxEVT\_COMMAND\_CHOICE\_SELECTED event,
29when an item on the list is selected.}
30\end{twocollist}
31
32\wxheading{See also}
33
34\helpref{wxListBox}{wxlistbox}, \helpref{wxComboBox}{wxcombobox},
35\rtfsp\helpref{wxCommandEvent}{wxcommandevent}
36
37\latexignore{\rtfignore{\wxheading{Members}}}
38
39\membersection{wxChoice::wxChoice}\label{wxchoiceconstr}
40
41\func{}{wxChoice}{\void}
42
43Default constructor.
44
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"}}
49
50Constructor, creating and showing a choice.
51
52\wxheading{Parameters}
53
54\docparam{parent}{Parent window. Must not be NULL.}
55
56\docparam{id}{Window identifier. A value of -1 indicates a default value.}
57
58\docparam{pos}{Window position.}
59
60\docparam{size}{Window size. If the default size (-1, -1) is specified then the choice is sized
61appropriately.}
62
63\docparam{n}{Number of strings with which to initialise the choice control.}
64
65\docparam{choices}{An array of strings with which to initialise the choice control.}
66
67\docparam{style}{Window style. See \helpref{wxChoice}{wxchoice}.}
68
69\docparam{validator}{Window validator.}
70
71\docparam{name}{Window name.}
72
73\wxheading{See also}
74
75\helpref{wxChoice::Create}{wxchoicecreate}, \helpref{wxValidator}{wxvalidator}
76
77\pythonnote{The wxChoice constructor in wxPython reduces the {\tt n}
78and {\tt choices} arguments are to a single argument, which is
79a list of strings.}
80
81\perlnote{In wxPerl there is just an array reference in place of {\tt n}
82and {\tt choices}.}
83
84\membersection{wxChoice::\destruct{wxChoice}}
85
86\func{}{\destruct{wxChoice}}{\void}
87
88Destructor, destroying the choice item.
89
90\membersection{wxChoice::Append}\label{wxchoiceappend}
91
92\func{void}{Append}{\param{const wxString\& }{ item}}
93
94Adds the item to the end of the choice control.
95
96\func{void}{Append}{\param{const wxString\& }{ item}, \param{void* }{clientData}}
97
98Adds the item to the end of the combobox, associating the given data
99with the item.
100
101\wxheading{Parameters}
102
103\docparam{item}{String to add.}
104
105\docparam{clientData}{Client data to associate with the item.}
106
107\membersection{wxChoice::Clear}\label{wxchoiceclear}
108
109\func{void}{Clear}{\void}
110
111Clears the strings from the choice item.
112
113\membersection{wxChoice::Create}\label{wxchoicecreate}
114
115\func{bool}{Create}{\param{wxWindow *}{parent}, \param{wxWindowID}{ id},\rtfsp
116\param{const wxPoint\& }{pos}, \param{const wxSize\&}{ size},\rtfsp
117\param{int}{ n}, \param{const wxString }{choices[]},\rtfsp
118\param{long}{ style = 0}, \param{const wxString\& }{name = ``choice"}}
119
120Creates the choice for two-step construction. See \helpref{wxChoice::wxChoice}{wxchoiceconstr}.
121
122\membersection{wxChoice::FindString}\label{wxchoicefindstring}
123
124\constfunc{int}{FindString}{\param{const wxString\& }{string}}
125
126Finds a choice matching the given string.
127
128\wxheading{Parameters}
129
130\docparam{string}{String to find.}
131
132\wxheading{Return value}
133
134Returns the position if found, or -1 if not found.
135
136\membersection{wxChoice::GetColumns}\label{wxchoicegetcolumns}
137
138\constfunc{int}{GetColumns}{\void}
139
140Gets the number of columns in this choice item.
141
142\wxheading{Remarks}
143
144This is implemented for Motif only.
145
146\membersection{wxChoice::GetClientData}\label{wxchoicegetclientdata}
147
148\constfunc{void*}{GetClientData}{\param{int}{ n}}
149
150Returns a pointer to the client data associated with the given item (if any).
151
152\wxheading{Parameters}
153
154\docparam{n}{An item, starting from zero.}
155
156\wxheading{Return value}
157
158A pointer to the client data, or NULL if the item was not found.
159
160\membersection{wxChoice::GetCount}\label{wxchoicegetcount}
161
162\constfunc{int}{GetCount}{\void}
163
164Returns the number of items in the choice.
165
166\membersection{wxChoice::GetSelection}\label{wxchoicegetselection}
167
168\constfunc{int}{GetSelection}{\void}
169
170Gets the id (position) of the selected string, or -1 if there is no selection.
171
172\membersection{wxChoice::GetString}\label{wxchoicegetstring}
173
174\constfunc{wxString}{GetString}{\param{int}{ n}}
175
176Returns the string at the given position.
177
178\wxheading{Parameters}
179
180\docparam{n}{The zero-based position.}
181
182\wxheading{Return value}
183
184The string at the given position, or the empty string if {\it n} is invalid.
185
186\membersection{wxChoice::GetStringSelection}\label{wxchoicegetstringselection}
187
188\constfunc{wxString}{GetStringSelection}{\void}
189
190Gets the selected string, or the empty string if no string is selected.
191
192\membersection{wxChoice::Number}\label{wxchoicenumber}
193
194\constfunc{int}{Number}{\void}
195
196{\bf Obsolescence note:} This method is obsolete and was replaced with
197\helpref{GetCount}{wxchoicegetcount}, please use the new method in the new
198code. This method is only available if wxWindows was compiled with
199{\tt WXWIN\_COMPATIBILITY\_2\_2} defined and will disappear completely in
200future versions.
201
202Returns the number of strings in the choice control.
203
204\membersection{wxChoice::SetClientData}\label{wxchoicesetclientdata}
205
206\func{void}{SetClientData}{\param{int}{ n}, \param{void* }{data}}
207
208Associates the given client data pointer with the given item.
209
210\wxheading{Parameters}
211
212\docparam{n}{The zero-based item.}
213
214\docparam{data}{The client data.}
215
216\membersection{wxChoice::SetColumns}\label{wxchoicesetcolumns}
217
218\func{void}{SetColumns}{\param{int}{ n = 1}}
219
220Sets the number of columns in this choice item.
221
222\wxheading{Parameters}
223
224\docparam{n}{Number of columns.}
225
226\wxheading{Remarks}
227
228This is implemented for Motif only.
229
230\membersection{wxChoice::SetSelection}\label{wxchoicesetselection}
231
232\func{void}{SetSelection}{\param{int}{ n}}
233
234Sets the choice by passing the desired string position. This does not cause
235a wxEVT\_COMMAND\_CHOICE\_SELECTED event to get emitted.
236
237\wxheading{Parameters}
238
239\docparam{n}{The string position to select, starting from zero.}
240
241\wxheading{See also}
242
243\membersection{wxChoice::SetString}\label{wxchoicesetstring}
244
245\func{void}{SetString}{\param{int }{n}, \param{const wxString\& }{text}}
246
247Replaces the specified string in the control with another one.
248
249\wxheading{Parameters}
250
251\docparam{n}{The zero-based index of the string to replace}
252
253\docparam{text}{The new value for this item}
254
255{\bf NB:} This method is currently not implemented in wxGTK.
256
257\helpref{wxChoice::SetStringSelection}{wxchoicesetstringselection}
258
259\membersection{wxChoice::SetStringSelection}\label{wxchoicesetstringselection}
260
261\func{void}{SetStringSelection}{\param{const wxString\& }{ string}}
262
263Sets the choice by passing the desired string. This does not cause
264a wxEVT\_COMMAND\_CHOICE\_SELECTED event to get emitted.
265
266\wxheading{Parameters}
267
268\docparam{string}{The string to select.}
269
270\wxheading{See also}
271
272\helpref{wxChoice::SetSelection}{wxchoicesetselection}
273
274