]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/vlbox.tex
Added wxHtmlPrintout::AddFilter so the same filters used for
[wxWidgets.git] / docs / latex / wx / vlbox.tex
CommitLineData
e0c6027b
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: vlbox.tex
3%% Purpose: wxVListBox documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 01.06.03
7%% RCS-ID: $Id$
8%% Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxVListBox}}\label{wxvlistbox}
13
14wxVListBox is a listbox-like control with the following two main differences
15from a regular listbox: it can have an arbitrarily huge number of items because
16it doesn't store them itself but uses \helpref{OnDrawItem()}{wxvlistboxondrawitem}
17callback to draw them (so it is a {\Large V}irtual listbox) and its items can
18have variable height as determined by
19\helpref{OnMeasureItem()}{wxvlistboxonmeasureitem} (so it is also a listbox
20with the lines of {\Large V}ariable height).
21
22Also, as a consequence of its virtual nature, it doesn't have any methods to
23append or insert items in it as it isn't necessary to do it: you just have to
24call \helpref{SetItemCount()}{wxvlistboxsetitemcount} to tell the control how
25many items it should display. Of course, this also means that you will never
26use this class directly because it has pure virtual functions, but will need to
27derive your own class, such as \helpref{wxHtmlListBox}{wxhtmllistbox}, from it.
28
29However it emits the same events as \helpref{wxListBox}{wxlistbox} and the same
30event macros may be used with it.
31
32\wxheading{Derived from}
33
34\helpref{wxVScrolledWindow}{wxvscrolledwindow}
35
36\wxheading{Include files}
37
38<wx/vlbox.h>
39
40\latexignore{\rtfignore{\wxheading{Members}}}
41
42
43\membersection{wxVListBox::wxVListBox}\label{wxvlistboxctor}
44
45\func{}{wxVListBox}{\param{wxWindow* }{parent}, \param{wxWindowID }{id = wxID\_ANY}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize}, \param{size\_t }{countItems = 0}, \param{long }{style = 0}, \param{const wxString\& }{name = wxVListBoxNameStr}}
46
47Normal constructor which calls \helpref{Create()}{wxvlistboxcreate} internally.
48
49\func{}{wxVListBox}{\void}
50
51Default constructor, you must call \helpref{Create()}{wxvlistboxcreate} later.
52
53
54\membersection{wxVListBox::Clear}\label{wxvlistboxclear}
55
56\func{void}{Clear}{\void}
57
58Deletes all items from the control.
59
60
61\membersection{wxVListBox::Create}\label{wxvlistboxcreate}
62
0063c169 63\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id = wxID\_ANY}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize}, \param{long }{style = 0}, \param{const wxString\& }{name = wxVListBoxNameStr}}
e0c6027b 64
0063c169
VZ
65Creates the control. To finish creating it you also should call
66\helpref{SetItemCount()}{wxvlistboxsetitemcount} to let it know about the
67number of items it contains.
e0c6027b 68
0063c169
VZ
69The only special style which may be used with wxVListBox is {\tt wxLB\_MULTIPLE}
70which indicates that the listbox should support multiple selection.
e0c6027b
VZ
71
72Returns {\tt true} on success or {\tt false} if the control couldn't be created
73
74
0063c169
VZ
75\membersection{wxVListBox::DeselectAll}\label{wxvlistboxdeselectall}
76
77\func{bool}{DeselectAll}{\void}
78
79Deselects all the items in the listbox.
80
81Returns {\tt true} if any items were changed, i.e. if there had been any
82selected items before, or {\tt false} if all the items were already deselected.
83
84This method is only valid for multi selection listboxes.
85
86\wxheading{See also}
87
88\helpref{SelectAll}{wxvlistboxselectall}, \helpref{Select}{wxvlistboxselect}
89
90
91\membersection{wxVListBox::GetFirstSelected}\label{wxvlistboxgetfirstselected}
92
93\constfunc{int}{GetFirstSelected}{\param{unsigned long\& }{cookie}}
94
95Returns the index of the first selected item in the listbox or
96{\tt wxNOT\_FOUND} if no items are currently selected.
97
98{\it cookie} is an opaque parameter which should be passed to the subsequent
99calls to \helpref{GetNextSelected}{wxvlistboxgetnextselected}. It is needed in
100order to allow parallel iterations over the selected items.
101
102Here is a typical example of using these functions:
103\begin{verbatim}
104unsigned long cookie;
105int item = hlbox->GetFirstSelected(cookie);
106while ( item != wxNOT_FOUND )
107{
108 ... process item ...
109 item = hlbox->GetNextSelected(cookie);
110}
111\end{verbatim}
112
113This method is only valid for multi selection listboxes.
114
115
e0c6027b
VZ
116\membersection{wxVListBox::GetItemCount}\label{wxvlistboxgetitemcount}
117
118\constfunc{size\_t}{GetItemCount}{\void}
119
120Get the number of items in the control.
121
122\wxheading{See also}
123
124\helpref{SetItemCount()}{wxvlistboxsetitemcount}
125
126
0063c169
VZ
127\membersection{wxVListBox::GetMargins}\label{wxvlistboxgetmargins}
128
129\constfunc{wxPoint}{GetMargins}{\void}
130
131Returns the margins used by the control. The {\tt x} field of the returned
132point is the horizontal margine and the {\tt y} field is the vertical one.
133
134\wxheading{See also}
135
136\helpref{SetMargins}{wxvlistboxsetmargins}
137
138
139\membersection{wxVListBox::GetNextSelected}\label{wxvlistboxgetnextselected}
140
141\constfunc{int}{GetNextSelected}{\param{unsigned long\& }{cookie}}
142
143Returns the index of the next selected item or {\tt wxNOT\_FOUND} if there are
144no more.
145
146This method is only valid for multi selection listboxes.
147
148\wxheading{See also}
149
150\helpref{GetFirstSelected}{wxvlistboxgetfirstselected}
151
152
153\membersection{wxVListBox::GetSelectedCount}\label{wxvlistboxgetselectedcount}
154
155\constfunc{size\_t}{GetSelectedCount}{\void}
156
157Returns the number of the items currently selected.
158
159It is valid for both single and multi selection controls. In the former case it
160may only return $0$ or $1$ however.
161
162\wxheading{See also}
163
164\helpref{IsSelected}{wxvlistboxisselected},\\
165\helpref{GetFirstSelected}{wxvlistboxgetfirstselected},\\
166\helpref{GetNextSelected}{wxvlistboxgetnextselected}
167
168
e0c6027b
VZ
169\membersection{wxVListBox::GetSelection}\label{wxvlistboxgetselection}
170
171\constfunc{int}{GetSelection}{\void}
172
173Get the currently selected item or $-1$ if there is no selection.
174
175
de5d3a20
VZ
176\membersection{wxVListBox::GetSelectionBackground}\label{wxvlistboxgetselectionbackground}
177
178\constfunc{const wxColour\&}{GetSelectionBackground}{\void}
179
180Returns the background colour used for the selected cells. By default the
181standard system colour is used.
182
183\wxheading{See also}
184
185\helpref{wxSystemSettings::GetColour}{wxsystemsettingsgetcolour},\\
186\helpref{SetSelectionBackground}{wxvlistboxsetselectionbackground}
187
188
0063c169
VZ
189\membersection{wxVListBox::HasMultipleSelection}\label{wxvlistboxishasmultipleselection}
190
191\constfunc{bool}{HasMultipleSelection}{\void}
192
193Returns {\tt true} if the listbox was created with {\tt wxLB\_MULTIPLE} style
194and so supports multiple selection or {\tt false} if it is a single selection
195listbox.
196
197
198\membersection{wxVListBox::IsCurrent}\label{wxvlistboxiscurrent}
199
200\constfunc{bool}{IsCurrent}{\param{size\_t }{item}}
201
202Returns {\tt true} if this item is the current one, {\tt false} otherwise.
203
204Current item is always the same as selected one for the single selection
205listbox and in this case this method is equivalent to
206\helpref{IsSelected}{wxvlistboxisselected} but they are different for multi
207selection listboxes where many items may be selected but only one (at most) is
208current.
209
210
e0c6027b
VZ
211\membersection{wxVListBox::IsSelected}\label{wxvlistboxisselected}
212
0063c169 213\constfunc{bool}{IsSelected}{\param{size\_t }{item}}
e0c6027b
VZ
214
215Returns {\tt true} if this item is selected, {\tt false} otherwise.
216
217
218\membersection{wxVListBox::OnDrawItem}\label{wxvlistboxondrawitem}
219
220\constfunc{void}{OnDrawItem}{\param{wxDC\& }{dc}, \param{const wxRect\& }{rect}, \param{size\_t }{n}}
221
222The derived class must implement this function to actually draw the item
223with the given index on the provided DC.
224
225\wxheading{Parameters}
226
227\docparam{dc}{The device context to use for drawing}
228
229\docparam{rect}{The bounding rectangle for the item being drawn (DC clipping
230region is set to this rectangle before calling this function)}
231
232\docparam{n}{The index of the item to be drawn}
233
234
235\membersection{wxVListBox::OnDrawSeparator}\label{wxvlistboxondrawseparator}
236
237\constfunc{void}{OnDrawSeparator}{\param{wxDC\& }{dc}, \param{wxRect\& }{rect}, \param{size\_t }{n}}
238
239This method may be used to draw separators between the lines. The rectangle
240passed to it may be modified, typically to deflate it a bit before passing to
241\helpref{OnDrawItem()}{wxvlistboxondrawitem}.
242
243The base class version of this method doesn't do anything.
244
245\wxheading{Parameters}
246
247\docparam{dc}{The device context to use for drawing}
248
249\docparam{rect}{The bounding rectangle for the item}
250
251\docparam{n}{The index of the item}
252
253
254\membersection{wxVListBox::OnMeasureItem}\label{wxvlistboxonmeasureitem}
255
256\constfunc{wxCoord}{OnMeasureItem}{\param{size\_t }{n}}
257
258The derived class must implement this method to return the height of the
259specified item (in pixels).
260
261
0063c169
VZ
262\membersection{wxVListBox::Select}\label{wxvlistboxselect}
263
264\func{bool}{Select}{\param{size\_t }{item}, \param{bool }{select = true}}
265
266Selects or deselects the specified item which must be valid (i.e. not
267equal to {\tt wxNOT\_FOUND}).
268
269Return {\tt true} if the items selection status has changed or {\tt false}
270otherwise.
271
272This function is only valid for the multiple selection listboxes, use
273\helpref{SetSelection}{wxvlistboxsetselection} for the single selection ones.
274
275
276\membersection{wxVListBox::SelectAll}\label{wxvlistboxselectall}
277
278\func{bool}{SelectAll}{\void}
279
280Selects all the items in the listbox.
281
282Returns {\tt true} if any items were changed, i.e. if there had been any
283unselected items before, or {\tt false} if all the items were already selected.
284
285This method is only valid for multi selection listboxes.
286
287\wxheading{See also}
288
289\helpref{DeselectAll}{wxvlistboxdeselectall}, \helpref{Select}{wxvlistboxselect}
290
291
292\membersection{wxVListBox::SelectRange}\label{wxvlistboxselectrange}
293
294\func{bool}{SelectRange}{\param{size\_t }{from}, \param{size\_t }{to}}
295
296Selects all items in the specified range which may be given in any order.
297
298Return {\tt true} if the items selection status has changed or {\tt false}
299otherwise.
300
301This method is only valid for multi selection listboxes.
302
303\wxheading{See also}
304
305\helpref{SelectAll}{wxvlistboxselectall}, \helpref{Select}{wxvlistboxselect}
306
e0c6027b
VZ
307
308\func{void}{SetItemCount}{\param{size\_t }{count}}
309
310Set the number of items to be shown in the control.
311
312This is just a synonym for
313\helpref{wxVScrolledWindow::SetLineCount()}{wxvscrolledwindowsetlinecount}.
314
315
316\membersection{wxVListBox::SetMargins}\label{wxvlistboxsetmargins}
317
318\func{void}{SetMargins}{\param{const wxPoint\& }{pt}}
319
320\func{void}{SetMargins}{\param{wxCoord }{x}, \param{wxCoord }{y}}
321
322Set the margins: horizontal margin is the distance between the window
323border and the item contents while vertical margin is half of the
324distance between items.
325
326By default both margins are $0$.
327
328
329\membersection{wxVListBox::SetSelection}\label{wxvlistboxsetselection}
330
331\func{void}{SetSelection}{\param{int }{selection}}
332
333Set the selection to the specified item, if it is $-1$ the selection is
334unset. The selected item will be automatically scrolled into view if it isn't
335currently visible.
336
de5d3a20
VZ
337This method may be used both with single and multiple selection listboxes.
338
339
340\membersection{wxVListBox::SetSelectionBackground}\label{wxvlistboxsetselectionbackground}
341
342\func{void}{SetSelectionBackground}{\param{const wxColour\& }{col}}
343
344Sets the colour to be used for the selected cells background. The background of
345the standard cells may be changed by simply calling
346\helpref{SetBackgroundColour}{wxwindowsetbackgroundcolour}.
347
348\wxheading{See also}
349
350\helpref{GetSelectionBackground}{wxvlistboxgetselectionbackground}
351
0063c169
VZ
352
353\membersection{wxVListBox::Toggle}\label{wxvlistboxtoggle}
354
355\func{void}{Toggle}{\param{size\_t }{item}}
356
357Toggles the state of the specified {\it item}, i.e. selects it if it was
358unselected and deselects it if it was selected.
359
360This method is only valid for multi selection listboxes.
361
362\wxheading{See also}
363
364\helpref{Select}{wxvlistboxselect}
365