1 \section{\class{wxListBox
}}\label{wxlistbox
}
3 A listbox is used to select one or more of a list of strings. The
4 strings are displayed in a scrolling box, with the selected string(s)
5 marked in reverse video. A listbox can be single selection (if an item
6 is selected, the previous selection is removed) or multiple selection
7 (clicking an item toggles the item on or off independently of other
10 List box elements are numbered from zero. Their number is limited in
11 some platforms (e.g. ca.
2000 on GTK).
13 A listbox callback gets an event wxEVT
\_COMMAND\_LISTBOX\_SELECT for single clicks, and
14 wxEVT
\_COMMAND\_LISTBOX\_DOUBLE\_CLICKED for double clicks.
16 \wxheading{Derived from
}
18 \helpref{wxControl
}{wxcontrol
}\\
19 \helpref{wxWindow
}{wxwindow
}\\
20 \helpref{wxEvtHandler
}{wxevthandler
}\\
21 \helpref{wxObject
}{wxobject
}
23 \wxheading{Include files
}
27 \wxheading{Window styles
}
30 \begin{twocollist
}\itemsep=
0pt
31 \twocolitem{\windowstyle{wxLB
\_SINGLE}}{Single-selection list.
}
32 \twocolitem{\windowstyle{wxLB
\_MULTIPLE}}{Multiple-selection list: the user can toggle multiple
34 \twocolitem{\windowstyle{wxLB
\_EXTENDED}}{Extended-selection list: the user can
35 select multiple items using the SHIFT key and the mouse or special key combinations.
}
36 \twocolitem{\windowstyle{wxLB
\_HSCROLL}}{Create horizontal scrollbar if contents are too wide (Windows only).
}
37 \twocolitem{\windowstyle{wxLB
\_ALWAYS\_SB}}{Always show a vertical scrollbar.
}
38 \twocolitem{\windowstyle{wxLB
\_NEEDED\_SB}}{Only create a vertical scrollbar if needed.
}
39 \twocolitem{\windowstyle{wxLB
\_SORT}}{The listbox contents are sorted in alphabetical order.
}
42 Note that
{\tt wxLB
\_SINGLE},
{\tt wxLB
\_MULTIPLE} and
{\tt wxLB
\_EXTENDED}
43 styles are mutually exclusive and you can specify at most one of them (single
44 selection is the default).
46 See also
\helpref{window styles overview
}{windowstyles
}.
48 \wxheading{Event handling
}
51 \begin{twocollist
}\itemsep=
0pt
52 \twocolitem{{\bf EVT
\_LISTBOX(id, func)
}}{Process a wxEVT
\_COMMAND\_LISTBOX\_SELECTED event,
53 when an item on the list is selected.
}
54 \twocolitem{{\bf EVT
\_LISTBOX\_DCLICK(id, func)
}}{Process a wxEVT
\_COMMAND\_LISTBOX\_DOUBLECLICKED event,
55 when the listbox is doubleclicked.
}
60 \helpref{wxChoice
}{wxchoice
},
\helpref{wxComboBox
}{wxcombobox
},
\helpref{wxListCtrl
}{wxlistctrl
},
61 \rtfsp\helpref{wxCommandEvent
}{wxcommandevent
}
63 \latexignore{\rtfignore{\wxheading{Members
}}}
65 \membersection{wxListBox::wxListBox
}\label{wxlistboxconstr
}
67 \func{}{wxListBox
}{\void}
71 \func{}{wxListBox
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
72 \param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
73 \param{int
}{ n
},
\param{const wxString
}{choices
[] = NULL
},
\rtfsp
74 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``listBox"
}}
76 Constructor, creating and showing a list box.
78 \wxheading{Parameters
}
80 \docparam{parent
}{Parent window. Must not be NULL.
}
82 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
84 \docparam{pos
}{Window position.
}
86 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then the window is sized
89 \docparam{n
}{Number of strings with which to initialise the control.
}
91 \docparam{choices
}{An array of strings with which to initialise the control.
}
93 \docparam{style
}{Window style. See
\helpref{wxListBox
}{wxlistbox
}.
}
95 \docparam{validator
}{Window validator.
}
97 \docparam{name
}{Window name.
}
101 \helpref{wxListBox::Create
}{wxlistboxcreate
},
\helpref{wxValidator
}{wxvalidator
}
103 \pythonnote{The wxListBox constructor in wxPython reduces the
{\tt n
}
104 and
{\tt choices
} arguments are to a single argument, which is
107 \perlnote{In wxPerl there is just an array reference in place of
{\tt n
}
110 \membersection{wxListBox::
\destruct{wxListBox
}}
112 \func{void
}{\destruct{wxListBox
}}{\void}
114 Destructor, destroying the list box.
116 \membersection{wxListBox::Append
}\label{wxlistboxappend
}
118 \func{void
}{Append
}{\param{const wxString\&
}{ item
}}
120 Adds the item to the end of the list box.
122 \func{void
}{Append
}{\param{const wxString\&
}{ item
},
\param{void*
}{clientData
}}
124 Adds the item to the end of the list box, associating the given data
127 \wxheading{Parameters
}
129 \docparam{item
}{String to add.
}
131 \docparam{clientData
}{Client data to associate with the item.
}
133 \membersection{wxListBox::Clear
}\label{wxlistboxclear
}
135 \func{void
}{Clear
}{\void}
137 Clears all strings from the list box.
139 \membersection{wxListBox::Create
}\label{wxlistboxcreate
}
141 \func{bool
}{Create
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
142 \param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
143 \param{int
}{ n
},
\param{const wxString
}{choices
[] = NULL
},
\rtfsp
144 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``listBox"
}}
146 Creates the listbox for two-step construction. See
\helpref{wxListBox::wxListBox
}{wxlistboxconstr
}\rtfsp
149 \membersection{wxListBox::Delete
}\label{wxlistboxdelete
}
151 \func{void
}{Delete
}{\param{int
}{ n
}}
153 Deletes an item from the listbox.
155 \wxheading{Parameters
}
157 \docparam{n
}{The zero-based item index.
}
159 \membersection{wxListBox::Deselect
}\label{wxlistboxdeselect
}
161 \func{void
}{Deselect
}{\param{int
}{ n
}}
163 Deselects an item in the list box.
165 \wxheading{Parameters
}
167 \docparam{n
}{The zero-based item to deselect.
}
171 This applies to multiple selection listboxes only.
173 \membersection{wxListBox::FindString
}\label{wxlistboxfindstring
}
175 \func{int
}{FindString
}{\param{const wxString\&
}{string
}}
177 Finds an item matching the given string.
179 \wxheading{Parameters
}
181 \docparam{string
}{String to find.
}
183 \wxheading{Return value
}
185 The zero-based position of the item, or -
1 if the string was not found.
187 \membersection{wxListBox::GetClientData
}\label{wxlistboxgetclientdata
}
189 \constfunc{void*
}{GetClientData
}{\param{int
}{ n
}}
191 Returns a pointer to the client data associated with the given item (if any).
193 \wxheading{Parameters
}
195 \docparam{n
}{The zero-based position of the item.
}
197 \wxheading{Return value
}
199 A pointer to the client data, or NULL if not present.
201 \membersection{wxListBox::GetSelection
}\label{wxlistboxgetselection
}
203 \constfunc{int
}{GetSelection
}{\void}
205 Gets the position of the selected item.
207 \wxheading{Return value
}
209 The position of the current selection.
213 Applicable to single selection list boxes only.
217 \helpref{wxListBox::SetSelection
}{wxlistboxsetselection
},
\rtfsp
218 \helpref{wxListBox::GetStringSelection
}{wxlistboxgetstringselection
},
\rtfsp
219 \helpref{wxListBox::GetSelections
}{wxlistboxgetselections
}
221 \membersection{wxListBox::GetSelections
}\label{wxlistboxgetselections
}
223 \constfunc{int
}{GetSelections
}{\param{wxArrayInt\&
}{selections
}}
225 Fill an array of ints with the positions of the currently selected items.
227 \wxheading{Parameters
}
229 \docparam{selections
}{A reference to an wxArrayInt instance that is used to store the result of the query.
}
231 \wxheading{Return value
}
233 The number of selections.
237 Use this with a multiple selection listbox.
241 \helpref{wxListBox::GetSelection
}{wxlistboxgetselection
},
\rtfsp
242 \helpref{wxListBox::GetStringSelection
}{wxlistboxgetstringselection
},
\rtfsp
243 \helpref{wxListBox::SetSelection
}{wxlistboxsetselection
}
245 \pythonnote{The wxPython version of this method takes no parameters
246 and returns a tuple of the selected items.
}
248 \perlnote{In wxPerl this method takes no parameters and returna the
249 selected items as a list.
}
251 \membersection{wxListBox::GetString
}\label{wxlistboxgetstring
}
253 \constfunc{wxString
}{GetString
}{\param{int
}{ n
}}
255 Returns the string at the given position.
257 \wxheading{Parameters
}
259 \docparam{n
}{The zero-based position.
}
261 \wxheading{Return value
}
263 The string, or an empty string if the position was invalid.
265 \membersection{wxListBox::GetStringSelection
}\label{wxlistboxgetstringselection
}
267 \constfunc{wxString
}{GetStringSelection
}{\void}
269 Gets the selected string - for single selection list boxes only. This
270 must be copied by the calling program if long term use is to be made of
275 \helpref{wxListBox::GetSelection
}{wxlistboxgetselection
},
\rtfsp
276 \helpref{wxListBox::GetSelections
}{wxlistboxgetselections
},
\rtfsp
277 \helpref{wxListBox::SetSelection
}{wxlistboxsetselection
}
279 \membersection{wxListBox::InsertItems
}\label{wxlistboxinsertitems
}
281 \func{void
}{InsertItems
}{\param{int
}{ nItems
},
\param{const wxString
}{ items
},
\param{int
}{ pos
}}
283 Insert the given number of strings before the specified position.
285 \wxheading{Parameters
}
287 \docparam{nItems
}{Number of items in the array
{\it items
}}
289 \docparam{items
}{Labels of items to be inserted
}
291 \docparam{pos
}{Position before which to insert the items: for example, if
{\it pos
} is
0 the items
292 will be inserted in the beginning of the listbox
}
294 \pythonnote{The first two parameters are collapsed into a single
295 parameter for wxPython, which is a list of strings.
}
297 \perlnote{In wxPerl there is just an array reference in place of
{\tt nItems
}
300 \membersection{wxListBox::Number
}\label{wxlistboxnumber
}
302 \constfunc{int
}{Number
}{\void}
304 Returns the number of items in the listbox.
306 \membersection{wxListBox::Selected
}\label{wxlistboxselected
}
308 \constfunc{bool
}{Selected
}{\param{int
}{ n
}}
310 Determines whether an item is selected.
312 \wxheading{Parameters
}
314 \docparam{n
}{The zero-based item index.
}
316 \wxheading{Return value
}
318 TRUE if the given item is selected, FALSE otherwise.
320 \membersection{wxListBox::Set
}\label{wxlistboxset
}
322 \func{void
}{Set
}{\param{int
}{ n
},
\param{const wxString*
}{ choices
}}
324 Clears the list box and adds the given strings. Not implemented for GTK.
326 \wxheading{Parameters
}
328 \docparam{n
}{The number of strings to set.
}
330 \docparam{choices
}{An array of strings to set.
}
334 Deallocate the array from the calling program
335 after this function has been called.
337 \membersection{wxListBox::SetClientData
}\label{wxlistboxsetclientdata
}
339 \func{void
}{SetClientData
}{\param{int
}{ n
},
\param{void*
}{data
}}
341 Associates the given client data pointer with the given item.
343 \wxheading{Parameters
}
345 \docparam{n
}{The zero-based item index.
}
347 \docparam{data
}{The client data to associate with the item.
}
349 \membersection{wxListBox::SetFirstItem
}\label{wxlistboxsetfirstitem
}
351 \func{void
}{SetFirstItem
}{\param{int
}{ n
}}
353 \func{void
}{SetFirstItem
}{\param{const wxString\&
}{string
}}
355 Set the specified item to be the first visible item. Windows only.
357 \wxheading{Parameters
}
359 \docparam{n
}{The zero-based item index.
}
361 \docparam{string
}{The string that should be visible.
}
363 \membersection{wxListBox::SetSelection
}\label{wxlistboxsetselection
}
365 \func{void
}{SetSelection
}{\param{int
}{ n
},
\param{const bool
}{select = TRUE
}}
367 Selects or deselects the given item. This does not cause a
368 wxEVT
\_COMMAND\_LISTBOX\_SELECT event to get emitted.
370 \wxheading{Parameters
}
372 \docparam{n
}{The zero-based item index.
}
374 \docparam{select
}{If TRUE, will select the item. If FALSE, will deselect it.
}
376 \membersection{wxListBox::SetString
}\label{wxlistboxsetstring
}
378 \func{void
}{SetString
}{\param{int
}{ n
},
\param{const wxString\&
}{ string
}}
380 Sets the string value of an item.
382 \wxheading{Parameters
}
384 \docparam{n
}{The zero-based item index.
}
386 \docparam{string
}{The string to set.
}
388 \membersection{wxListBox::SetStringSelection
}\label{wxlistboxsetstringselection
}
390 \func{void
}{SetStringSelection
}{\param{const wxString\&
}{ string
},
\param{const bool
}{ select = TRUE
}}
392 Sets the current selection. This does not cause a
393 wxEVT
\_COMMAND\_LISTBOX\_SELECT event to get emitted.
395 \wxheading{Parameters
}
397 \docparam{string
}{The item to select.
}
399 \docparam{select
}{If TRUE, will select the item. If FALSE, will deselect it.
}