]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/combobox.tex
more standard (although less RFC-conformant) treatment of file: URIs (patch 1415189)
[wxWidgets.git] / docs / latex / wx / combobox.tex
CommitLineData
a660d684
KB
1\section{\class{wxComboBox}}\label{wxcombobox}
2
3A combobox is like a combination of an edit control and a listbox. It can be
4displayed as static list with editable or read-only text field; or a drop-down list with
5text field; or a drop-down list without a text field.
6
7A combobox permits a single selection only. Combobox items are numbered from zero.
8
9\wxheading{Derived from}
10
bed5584e 11\helpref{wxControlWithItems}{wxcontrolwithitems}\\
a660d684
KB
12\helpref{wxControl}{wxcontrol}\\
13\helpref{wxWindow}{wxwindow}\\
14\helpref{wxEvtHandler}{wxevthandler}\\
15\helpref{wxObject}{wxobject}
16
954b8ae6
JS
17\wxheading{Include files}
18
f6bcfd97 19<wx/combobox.h>
954b8ae6 20
a660d684
KB
21\wxheading{Window styles}
22
23\begin{twocollist}\itemsep=0pt
9c884972 24\twocolitem{\windowstyle{wxCB\_SIMPLE}}{Creates a combobox with a permanently displayed list. Windows only. }
a660d684 25\twocolitem{\windowstyle{wxCB\_DROPDOWN}}{Creates a combobox with a drop-down list.}
3ca6a5f0
BP
26\twocolitem{\windowstyle{wxCB\_READONLY}}{Same as wxCB\_DROPDOWN but only the
27strings specified as the combobox choices can be selected, it is impossible to
28select (even from a program) a string which is not in the choices list.}
a660d684 29\twocolitem{\windowstyle{wxCB\_SORT}}{Sorts the entries in the list alphabetically.}
5090e3ad
JS
30\twocolitem{\windowstyle{wxPROCESS\_ENTER}}{The control will generate
31the event wxEVT\_COMMAND\_TEXT\_ENTER (otherwise pressing Enter key
32is either processed internally by the control or used for navigation between
33dialog controls). Windows only.}
a660d684
KB
34\end{twocollist}
35
36See also \helpref{window styles overview}{windowstyles}.
37
5de76427
JS
38\wxheading{Event handling}
39
40\twocolwidtha{7cm}
41\begin{twocollist}\itemsep=0pt
42\twocolitem{{\bf EVT\_COMBOBOX(id, func)}}{Process a wxEVT\_COMMAND\_COMBOBOX\_SELECTED event,
7d8268a1 43when an item on the list is selected. Note that calling
13bcc348 44\helpref{GetValue}{wxcomboboxgetvalue} returns the new value of selection.}
5de76427
JS
45\twocolitem{{\bf EVT\_TEXT(id, func)}}{Process a wxEVT\_COMMAND\_TEXT\_UPDATED event,
46when the combobox text changes.}
3980000c
RR
47\twocolitem{{\bf EVT\_TEXT\_ENTER(id, func)}}{Process a wxEVT\_COMMAND\_TEXT\_ENTER event,
48when <RETURN> is pressed in the combobox.}
5de76427
JS
49\end{twocollist}
50
a660d684
KB
51\wxheading{See also}
52
5de76427
JS
53\helpref{wxListBox}{wxlistbox}, \helpref{wxTextCtrl}{wxtextctrl}, \helpref{wxChoice}{wxchoice},
54\rtfsp\helpref{wxCommandEvent}{wxcommandevent}
a660d684
KB
55
56\latexignore{\rtfignore{\wxheading{Members}}}
57
f510b7b2 58\membersection{wxComboBox::wxComboBox}\label{wxcomboboxctor}
a660d684
KB
59
60\func{}{wxComboBox}{\void}
61
62Default constructor.
63
eaaa6a06 64\func{}{wxComboBox}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id},\rtfsp
a660d684 65\param{const wxString\& }{value = ``"}, \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},\rtfsp
eaaa6a06
JS
66\param{int}{ n}, \param{const wxString }{choices[]},\rtfsp
67\param{long}{ style = 0}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = ``comboBox"}}
a660d684 68
56b88f12
MB
69\func{}{wxComboBox}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id},\rtfsp
70\param{const wxString\& }{value}, \param{const wxPoint\&}{ pos}, \param{const wxSize\&}{ size},\rtfsp
71\param{const wxArrayString\& }{choices},\rtfsp
72\param{long}{ style = 0}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = ``comboBox"}}
73
a660d684
KB
74Constructor, creating and showing a combobox.
75
76\wxheading{Parameters}
77
78\docparam{parent}{Parent window. Must not be NULL.}
79
80\docparam{id}{Window identifier. A value of -1 indicates a default value.}
81
2b5f62a0
VZ
82\docparam{value}{Initial selection string. An empty string indicates no selection.}
83
a660d684
KB
84\docparam{pos}{Window position.}
85
86\docparam{size}{Window size. If the default size (-1, -1) is specified then the window is sized
87appropriately.}
88
89\docparam{n}{Number of strings with which to initialise the control.}
90
91\docparam{choices}{An array of strings with which to initialise the control.}
92
93\docparam{style}{Window style. See \helpref{wxComboBox}{wxcombobox}.}
94
95\docparam{validator}{Window validator.}
96
97\docparam{name}{Window name.}
98
99\wxheading{See also}
100
101\helpref{wxComboBox::Create}{wxcomboboxcreate}, \helpref{wxValidator}{wxvalidator}
102
c9110876
VS
103\pythonnote{The wxComboBox constructor in wxPython reduces the {\tt n}
104and {\tt choices} arguments are to a single argument, which is
06d20283
RD
105a list of strings.}
106
5873607e
VZ
107\perlnote{In wxPerl there is just an array reference in place of {\tt n}
108and {\tt choices}.}
06d20283 109
f510b7b2 110\membersection{wxComboBox::\destruct{wxComboBox}}\label{wxcomboboxdtor}
a660d684
KB
111
112\func{}{\destruct{wxComboBox}}{\void}
113
114Destructor, destroying the combobox.
115
a660d684
KB
116\membersection{wxComboBox::Create}\label{wxcomboboxcreate}
117
eaaa6a06 118\func{bool}{Create}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id},\rtfsp
a660d684 119\param{const wxString\& }{value = ``"}, \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},\rtfsp
eaaa6a06
JS
120\param{int}{ n}, \param{const wxString }{choices[]},\rtfsp
121\param{long}{ style = 0}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = ``comboBox"}}
a660d684 122
56b88f12
MB
123\func{bool}{Create}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id},\rtfsp
124\param{const wxString\& }{value}, \param{const wxPoint\&}{ pos}, \param{const wxSize\&}{ size},\rtfsp
125\param{const wxArrayString\& }{choices},\rtfsp
126\param{long}{ style = 0}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = ``comboBox"}}
127
a660d684 128Creates the combobox for two-step construction. Derived classes
f510b7b2 129should call or replace this function. See \helpref{wxComboBox::wxComboBox}{wxcomboboxctor}\rtfsp
a660d684
KB
130for further details.
131
150e31d2
JS
132\membersection{wxComboBox::CanCopy}\label{wxcomboboxcancopy}
133
134\constfunc{bool}{CanCopy}{\void}
135
136Returns true if the combobox is editable and there is a text selection to copy to the clipboard.
137Only available on Windows.
138
139\membersection{wxComboBox::CanCut}\label{wxcomboboxcancut}
140
141\constfunc{bool}{CanCut}{\void}
142
143Returns true if the combobox is editable and there is a text selection to copy to the clipboard.
144Only available on Windows.
145
146\membersection{wxComboBox::CanPaste}\label{wxcomboboxcanpaste}
147
148\constfunc{bool}{CanPaste}{\void}
149
150Returns true if the combobox is editable and there is text on the clipboard that can be pasted into the
151text field. Only available on Windows.
152
153\membersection{wxComboBox::CanRedo}\label{wxcomboboxcanredo}
154
155\constfunc{bool}{CanRedo}{\void}
156
157Returns true if the combobox is editable and the last undo can be redone.
158Only available on Windows.
7d8268a1 159
150e31d2
JS
160\membersection{wxComboBox::CanUndo}\label{wxcomboboxcanundo}
161
162\constfunc{bool}{CanUndo}{\void}
163
164Returns true if the combobox is editable and the last edit can be undone.
165Only available on Windows.
7d8268a1 166
a660d684
KB
167\membersection{wxComboBox::Copy}\label{wxcomboboxcopy}
168
169\func{void}{Copy}{\void}
170
171Copies the selected text to the clipboard.
172
173\membersection{wxComboBox::Cut}\label{wxcomboboxcut}
174
175\func{void}{Cut}{\void}
176
177Copies the selected text to the clipboard and removes the selection.
178
a660d684
KB
179\membersection{wxComboBox::GetInsertionPoint}\label{wxcomboboxgetinsertionpoint}
180
181\constfunc{long}{GetInsertionPoint}{\void}
182
183Returns the insertion point for the combobox's text field.
184
185\membersection{wxComboBox::GetLastPosition}\label{wxcomboboxgetlastposition}
186
7d8268a1 187\constfunc{virtual wxTextPos}{GetLastPosition}{\void}
a660d684
KB
188
189Returns the last position in the combobox text field.
190
a660d684
KB
191\membersection{wxComboBox::GetValue}\label{wxcomboboxgetvalue}
192
193\constfunc{wxString}{GetValue}{\void}
194
195Returns the current value in the combobox text field.
196
a660d684
KB
197\membersection{wxComboBox::Paste}\label{wxcomboboxpaste}
198
199\func{void}{Paste}{\void}
200
201Pastes text from the clipboard to the text field.
202
150e31d2
JS
203\membersection{wxComboBox::Redo}\label{wxcomboboxredo}
204
205\func{void}{Redo}{\void}
206
207Redoes the last undo in the text field. Windows only.
208
a660d684
KB
209\membersection{wxComboBox::Replace}\label{wxcomboboxreplace}
210
eaaa6a06 211\func{void}{Replace}{\param{long}{ from}, \param{long}{ to}, \param{const wxString\& }{text}}
a660d684
KB
212
213Replaces the text between two positions with the given text, in the combobox text field.
214
215\wxheading{Parameters}
216
217\docparam{from}{The first position.}
218
219\docparam{to}{The second position.}
220
221\docparam{text}{The text to insert.}
222
223\membersection{wxComboBox::Remove}\label{wxcomboboxremove}
224
eaaa6a06 225\func{void}{Remove}{\param{long}{ from}, \param{long}{ to}}
a660d684
KB
226
227Removes the text between the two positions in the combobox text field.
228
229\wxheading{Parameters}
230
231\docparam{from}{The first position.}
232
233\docparam{to}{The last position.}
234
a660d684
KB
235\membersection{wxComboBox::SetInsertionPoint}\label{wxcomboboxsetinsertionpoint}
236
eaaa6a06 237\func{void}{SetInsertionPoint}{\param{long}{ pos}}
a660d684
KB
238
239Sets the insertion point in the combobox text field.
240
241\wxheading{Parameters}
242
243\docparam{pos}{The new insertion point.}
244
245\membersection{wxComboBox::SetInsertionPointEnd}\label{wxcomboboxsetinsertionpointend}
246
247\func{void}{SetInsertionPointEnd}{\void}
248
249Sets the insertion point at the end of the combobox text field.
250
251\membersection{wxComboBox::SetSelection}\label{wxcomboboxsetselection}
252
eaaa6a06 253\func{void}{SetSelection}{\param{long}{ from}, \param{long}{ to}}
a660d684
KB
254
255Selects the text between the two positions, in the combobox text field.
256
257\wxheading{Parameters}
258
a660d684
KB
259\docparam{from}{The first position.}
260
261\docparam{to}{The second position.}
262
bed5584e 263\pythonnote{This method is called {\tt SetMark} in wxPython, {\tt SetSelection}
7d8268a1 264name is kept for
bed5584e 265\helpref{wxControlWithItems::SetSelection}{wxcontrolwithitemssetselection}.}
532da0d1 266
a660d684
KB
267\membersection{wxComboBox::SetValue}\label{wxcomboboxsetvalue}
268
269\func{void}{SetValue}{\param{const wxString\& }{text}}
270
271Sets the text for the combobox text field.
272
3ca6a5f0
BP
273{\bf NB:} For a combobox with {\tt wxCB\_READONLY} style the string must be in
274the combobox choices list, otherwise the call to SetValue() is ignored.
275
a660d684
KB
276\wxheading{Parameters}
277
278\docparam{text}{The text to set.}
279
150e31d2
JS
280\membersection{wxComboBox::Undo}\label{wxcomboboxundo}
281
282\func{void}{Undo}{\void}
283
284Undoes the last edit in the text field. Windows only.
a660d684 285