1 \section{\class{wxComboBox
}}\label{wxcombobox
}
3 A combobox is like a combination of an edit control and a listbox. It can be
4 displayed as static list with editable or read-only text field; or a drop-down list with
5 text field; or a drop-down list without a text field.
7 A combobox permits a single selection only. Combobox items are numbered from zero.
9 \wxheading{Derived from
}
11 \helpref{wxControlWithItems
}{wxcontrolwithitems
}\\
12 \helpref{wxControl
}{wxcontrol
}\\
13 \helpref{wxWindow
}{wxwindow
}\\
14 \helpref{wxEvtHandler
}{wxevthandler
}\\
15 \helpref{wxObject
}{wxobject
}
17 \wxheading{Include files
}
21 \wxheading{Window styles
}
23 \begin{twocollist
}\itemsep=
0pt
24 \twocolitem{\windowstyle{wxCB
\_SIMPLE}}{Creates a combobox with a permanently displayed list. Windows only.
}
25 \twocolitem{\windowstyle{wxCB
\_DROPDOWN}}{Creates a combobox with a drop-down list.
}
26 \twocolitem{\windowstyle{wxCB
\_READONLY}}{Same as wxCB
\_DROPDOWN but only the
27 strings specified as the combobox choices can be selected, it is impossible to
28 select (even from a program) a string which is not in the choices list.
}
29 \twocolitem{\windowstyle{wxCB
\_SORT}}{Sorts the entries in the list alphabetically.
}
32 See also
\helpref{window styles overview
}{windowstyles
}.
34 \wxheading{Event handling
}
37 \begin{twocollist
}\itemsep=
0pt
38 \twocolitem{{\bf EVT
\_COMBOBOX(id, func)
}}{Process a wxEVT
\_COMMAND\_COMBOBOX\_SELECTED event,
39 when an item on the list is selected. Note that calling
40 \helpref{GetValue
}{wxcomboboxgetvalue
} returns the new value of selection.
}
41 \twocolitem{{\bf EVT
\_TEXT(id, func)
}}{Process a wxEVT
\_COMMAND\_TEXT\_UPDATED event,
42 when the combobox text changes.
}
47 \helpref{wxListBox
}{wxlistbox
},
\helpref{wxTextCtrl
}{wxtextctrl
},
\helpref{wxChoice
}{wxchoice
},
48 \rtfsp\helpref{wxCommandEvent
}{wxcommandevent
}
50 \latexignore{\rtfignore{\wxheading{Members
}}}
52 \membersection{wxComboBox::wxComboBox
}\label{wxcomboboxconstr
}
54 \func{}{wxComboBox
}{\void}
58 \func{}{wxComboBox
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
59 \param{const wxString\&
}{value = ``"
},
\param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
60 \param{int
}{ n
},
\param{const wxString
}{choices
[]},
\rtfsp
61 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``comboBox"
}}
63 \func{}{wxComboBox
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
64 \param{const wxString\&
}{value
},
\param{const wxPoint\&
}{ pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
65 \param{const wxArrayString\&
}{choices
},
\rtfsp
66 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``comboBox"
}}
68 Constructor, creating and showing a combobox.
70 \wxheading{Parameters
}
72 \docparam{parent
}{Parent window. Must not be NULL.
}
74 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
76 \docparam{value
}{Initial selection string. An empty string indicates no selection.
}
78 \docparam{pos
}{Window position.
}
80 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then the window is sized
83 \docparam{n
}{Number of strings with which to initialise the control.
}
85 \docparam{choices
}{An array of strings with which to initialise the control.
}
87 \docparam{style
}{Window style. See
\helpref{wxComboBox
}{wxcombobox
}.
}
89 \docparam{validator
}{Window validator.
}
91 \docparam{name
}{Window name.
}
95 \helpref{wxComboBox::Create
}{wxcomboboxcreate
},
\helpref{wxValidator
}{wxvalidator
}
97 \pythonnote{The wxComboBox constructor in wxPython reduces the
{\tt n
}
98 and
{\tt choices
} arguments are to a single argument, which is
101 \perlnote{In wxPerl there is just an array reference in place of
{\tt n
}
104 \membersection{wxComboBox::
\destruct{wxComboBox
}}
106 \func{}{\destruct{wxComboBox
}}{\void}
108 Destructor, destroying the combobox.
110 \membersection{wxComboBox::Create
}\label{wxcomboboxcreate
}
112 \func{bool
}{Create
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
113 \param{const wxString\&
}{value = ``"
},
\param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
114 \param{int
}{ n
},
\param{const wxString
}{choices
[]},
\rtfsp
115 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``comboBox"
}}
117 \func{bool
}{Create
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
118 \param{const wxString\&
}{value
},
\param{const wxPoint\&
}{ pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
119 \param{const wxArrayString\&
}{choices
},
\rtfsp
120 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``comboBox"
}}
122 Creates the combobox for two-step construction. Derived classes
123 should call or replace this function. See
\helpref{wxComboBox::wxComboBox
}{wxcomboboxconstr
}\rtfsp
126 \membersection{wxComboBox::Copy
}\label{wxcomboboxcopy
}
128 \func{void
}{Copy
}{\void}
130 Copies the selected text to the clipboard.
132 \membersection{wxComboBox::Cut
}\label{wxcomboboxcut
}
134 \func{void
}{Cut
}{\void}
136 Copies the selected text to the clipboard and removes the selection.
138 \membersection{wxComboBox::GetInsertionPoint
}\label{wxcomboboxgetinsertionpoint
}
140 \constfunc{long
}{GetInsertionPoint
}{\void}
142 Returns the insertion point for the combobox's text field.
144 \membersection{wxComboBox::GetLastPosition
}\label{wxcomboboxgetlastposition
}
146 \constfunc{long
}{GetLastPosition
}{\void}
148 Returns the last position in the combobox text field.
150 \membersection{wxComboBox::GetValue
}\label{wxcomboboxgetvalue
}
152 \constfunc{wxString
}{GetValue
}{\void}
154 Returns the current value in the combobox text field.
156 \membersection{wxComboBox::Paste
}\label{wxcomboboxpaste
}
158 \func{void
}{Paste
}{\void}
160 Pastes text from the clipboard to the text field.
162 \membersection{wxComboBox::Replace
}\label{wxcomboboxreplace
}
164 \func{void
}{Replace
}{\param{long
}{ from
},
\param{long
}{ to
},
\param{const wxString\&
}{text
}}
166 Replaces the text between two positions with the given text, in the combobox text field.
168 \wxheading{Parameters
}
170 \docparam{from
}{The first position.
}
172 \docparam{to
}{The second position.
}
174 \docparam{text
}{The text to insert.
}
176 \membersection{wxComboBox::Remove
}\label{wxcomboboxremove
}
178 \func{void
}{Remove
}{\param{long
}{ from
},
\param{long
}{ to
}}
180 Removes the text between the two positions in the combobox text field.
182 \wxheading{Parameters
}
184 \docparam{from
}{The first position.
}
186 \docparam{to
}{The last position.
}
188 \membersection{wxComboBox::SetInsertionPoint
}\label{wxcomboboxsetinsertionpoint
}
190 \func{void
}{SetInsertionPoint
}{\param{long
}{ pos
}}
192 Sets the insertion point in the combobox text field.
194 \wxheading{Parameters
}
196 \docparam{pos
}{The new insertion point.
}
198 \membersection{wxComboBox::SetInsertionPointEnd
}\label{wxcomboboxsetinsertionpointend
}
200 \func{void
}{SetInsertionPointEnd
}{\void}
202 Sets the insertion point at the end of the combobox text field.
204 \membersection{wxComboBox::SetSelection
}\label{wxcomboboxsetselection
}
206 \func{void
}{SetSelection
}{\param{long
}{ from
},
\param{long
}{ to
}}
208 Selects the text between the two positions, in the combobox text field.
210 \wxheading{Parameters
}
212 \docparam{from
}{The first position.
}
214 \docparam{to
}{The second position.
}
216 \pythonnote{This method is called
{\tt SetMark
} in wxPython,
{\tt SetSelection
}
218 \helpref{wxControlWithItems::SetSelection
}{wxcontrolwithitemssetselection
}.
}
220 \membersection{wxComboBox::SetValue
}\label{wxcomboboxsetvalue
}
222 \func{void
}{SetValue
}{\param{const wxString\&
}{text
}}
224 Sets the text for the combobox text field.
226 {\bf NB:
} For a combobox with
{\tt wxCB
\_READONLY} style the string must be in
227 the combobox choices list, otherwise the call to SetValue() is ignored.
229 \wxheading{Parameters
}
231 \docparam{text
}{The text to set.
}