]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/listctrl.tex
added install
[wxWidgets.git] / docs / latex / wx / listctrl.tex
CommitLineData
a660d684
KB
1\section{\class{wxListCtrl}}\label{wxlistctrl}
2
963863ad
VZ
3A list control presents lists in a number of formats: list view, report view,
4icon view and small icon view. In any case, elements are numbered from zero.
614391dc
VZ
5For all these modes, the items are stored in the control and must be added to
6it using \helpref{InsertItem}{wxlistctrlinsertitem} method.
7
8A special case of report view quite different from the other modes of the list
9control is a virtual control in which the items data (including text, images
10and attributes) is managed by the main program and is requested by the control
11itself only when needed which allows to have controls with millions of items
12without consuming much memory. To use virtual list control you must use
13\helpref{SetItemCount}{wxlistctrlsetitemcount} first and overload at least
14\helpref{OnGetItemText}{wxlistctrlongetitemtext} (and optionally
15\helpref{OnGetItemImage}{wxlistctrlongetitemimage} and
16\helpref{OnGetItemAttr}{wxlistctrlongetitemattr}) to return the information
2b5f62a0
VZ
17about the items when the control requests it. Virtual list control can be used
18as a normal one except that no operations which can take time proportional to
19the number of items in the control happen -- this is required to allow having a
20practically infinite number of items. For example, in a multiple selection
21virtual list control, the selections won't be sent when many items are selected
22at once because this could mean iterating over all the items.
614391dc
VZ
23
24Using many of wxListCtrl features is shown in the
963863ad
VZ
25\helpref{corresponding sample}{samplelistctrl}.
26
27To intercept events from a list control, use the event table macros described
28in \helpref{wxListEvent}{wxlistevent}.
a660d684
KB
29
30\wxheading{Derived from}
31
32\helpref{wxControl}{wxcontrol}\\
33\helpref{wxWindow}{wxwindow}\\
34\helpref{wxEvtHandler}{wxevthandler}\\
35\helpref{wxObject}{wxobject}
36
954b8ae6
JS
37\wxheading{Include files}
38
39<wx/listctrl.h>
40
a660d684
KB
41\wxheading{Window styles}
42
f7ba097d 43\twocolwidtha{7cm}
a660d684
KB
44\begin{twocollist}\itemsep=0pt
45\twocolitem{\windowstyle{wxLC\_LIST}}{multicolumn list view, with optional small icons.
46Columns are computed automatically, i.e. you don't set columns as in wxLC\_REPORT. In other words,
47the list wraps, unlike a wxListBox.}
48\twocolitem{\windowstyle{wxLC\_REPORT}}{single or multicolumn report view, with optional header.}
614391dc 49\twocolitem{\windowstyle{wxLC\_VIRTUAL}}{virtual control, may only be used with wxLC\_REPORT}
a660d684
KB
50\twocolitem{\windowstyle{wxLC\_ICON}}{Large icon view, with optional labels.}
51\twocolitem{\windowstyle{wxLC\_SMALL\_ICON}}{Small icon view, with optional labels.}
0180dad6
RR
52\twocolitem{\windowstyle{wxLC\_ALIGN\_TOP}}{Icons align to the top. Win32 default, Win32 only. }
53\twocolitem{\windowstyle{wxLC\_ALIGN\_LEFT}}{Icons align to the left. }
54\twocolitem{\windowstyle{wxLC\_AUTOARRANGE}}{Icons arrange themselves. Win32 only. }
db4e73c6 55\twocolitem{\windowstyle{wxLC\_VIRTUAL}}{The application provides items text on demand.}
a660d684 56\twocolitem{\windowstyle{wxLC\_EDIT\_LABELS}}{Labels are editable: the application will be notified when editing starts.}
db4e73c6
VZ
57\twocolitem{\windowstyle{wxLC\_NO\_HEADER}}{No header in report mode. }
58\twocolitem{\windowstyle{wxLC\_SINGLE\_SEL}}{Single selection (default is multiple).}
a660d684
KB
59\twocolitem{\windowstyle{wxLC\_SORT\_ASCENDING}}{Sort in ascending order (must still supply a comparison callback in SortItems.}
60\twocolitem{\windowstyle{wxLC\_SORT\_DESCENDING}}{Sort in descending order (must still supply a comparison callback in SortItems.}
b96340e6
JS
61\twocolitem{\windowstyle{wxLC\_HRULES}}{Draws light horizontal rules between rows in report mode.}
62\twocolitem{\windowstyle{wxLC\_VRULES}}{Draws light vertical rules between columns in report mode.}
a660d684
KB
63\end{twocollist}
64
65See also \helpref{window styles overview}{windowstyles}.
66
5de76427
JS
67\wxheading{Event handling}
68
69To process input from a list control, use these event handler macros to direct input to member
70functions that take a \helpref{wxListEvent}{wxlistevent} argument.
71
72\twocolwidtha{7cm}
73\begin{twocollist}\itemsep=0pt
74\twocolitem{{\bf EVT\_LIST\_BEGIN\_DRAG(id, func)}}{Begin dragging with the left mouse button.}
75\twocolitem{{\bf EVT\_LIST\_BEGIN\_RDRAG(id, func)}}{Begin dragging with the right mouse button.}
fd128b0c
RR
76\twocolitem{{\bf EVT\_LIST\_BEGIN\_LABEL\_EDIT(id, func)}}{Begin editing a label. This can be prevented by calling \helpref{Veto()}{wxnotifyeventveto}.}
77\twocolitem{{\bf EVT\_LIST\_END\_LABEL\_EDIT(id, func)}}{Finish editing a label. This can be prevented by calling \helpref{Veto()}{wxnotifyeventveto}.}
5de76427
JS
78\twocolitem{{\bf EVT\_LIST\_DELETE\_ITEM(id, func)}}{Delete an item.}
79\twocolitem{{\bf EVT\_LIST\_DELETE\_ALL\_ITEMS(id, func)}}{Delete all items.}
11358d39
VZ
80%\twocolitem{{\bf EVT\_LIST\_GET\_INFO(id, func)}}{Request information from the application, usually the item text.}
81%\twocolitem{{\bf EVT\_LIST\_SET\_INFO(id, func)}}{Information is being supplied (not implemented).}
5de76427
JS
82\twocolitem{{\bf EVT\_LIST\_ITEM\_SELECTED(id, func)}}{The item has been selected.}
83\twocolitem{{\bf EVT\_LIST\_ITEM\_DESELECTED(id, func)}}{The item has been deselected.}
8b17ba72 84\twocolitem{{\bf EVT\_LIST\_ITEM\_ACTIVATED(id, func)}}{The item has been activated (ENTER or double click).}
0ddefeb0 85\twocolitem{{\bf EVT\_LIST\_ITEM\_FOCUSED(id, func)}}{The currently focused item has changed.}
c229e50d
JS
86\twocolitem{{\bf EVT\_LIST\_ITEM\_MIDDLE\_CLICK(id, func)}}{The middle mouse button has been clicked on an item.}
87\twocolitem{{\bf EVT\_LIST\_ITEM\_RIGHT\_CLICK(id, func)}}{The right mouse button has been clicked on an item.}
5de76427
JS
88\twocolitem{{\bf EVT\_LIST\_KEY\_DOWN(id, func)}}{A key has been pressed.}
89\twocolitem{{\bf EVT\_LIST\_INSERT\_ITEM(id, func)}}{An item has been inserted.}
90\twocolitem{{\bf EVT\_LIST\_COL\_CLICK(id, func)}}{A column ({\bf m\_col}) has been left-clicked.}
11358d39
VZ
91\twocolitem{{\bf EVT\_LIST\_COL\_RIGHT\_CLICK(id, func)}}{A column ({\bf m\_col}) has been right-clicked.}
92\twocolitem{{\bf EVT\_LIST\_COL\_BEGIN\_DRAG(id, func)}}{The user started resizing a column - can be vetoed.}
93\twocolitem{{\bf EVT\_LIST\_COL\_DRAGGING(id, func)}}{The divider between columns is being dragged.}
94\twocolitem{{\bf EVT\_LIST\_COL\_END\_DRAG(id, func)}}{A column has been resized by the user.}
614391dc 95\twocolitem{{\bf EVT\_LIST\_CACHE\_HINT(id, func)}}{Prepare cache for a virtual list control}
5de76427
JS
96\end{twocollist}%
97
a660d684
KB
98\wxheading{See also}
99
100\helpref{wxListCtrl overview}{wxlistctrloverview}, \helpref{wxListBox}{wxlistbox}, \helpref{wxTreeCtrl}{wxtreectrl},\rtfsp
08a87680
MB
101\helpref{wxImageList}{wximagelist}, \helpref{wxListEvent}{wxlistevent},
102\helpref{wxListItem}{wxlistitem}
a660d684
KB
103
104\latexignore{\rtfignore{\wxheading{Members}}}
105
106\membersection{wxListCtrl::wxListCtrl}\label{wxlistctrlconstr}
107
108\func{}{wxListCtrl}{\void}
109
110Default constructor.
111
eaaa6a06 112\func{}{wxListCtrl}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id},\rtfsp
a660d684 113\param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},\rtfsp
eaaa6a06 114\param{long}{ style = wxLC\_ICON}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = ``listCtrl"}}
a660d684
KB
115
116Constructor, creating and showing a list control.
117
118\wxheading{Parameters}
119
120\docparam{parent}{Parent window. Must not be NULL.}
121
122\docparam{id}{Window identifier. A value of -1 indicates a default value.}
123
124\docparam{pos}{Window position.}
125
126\docparam{size}{Window size. If the default size (-1, -1) is specified then the window is sized
127appropriately.}
128
129\docparam{style}{Window style. See \helpref{wxListCtrl}{wxlistctrl}.}
130
131\docparam{validator}{Window validator.}
132
133\docparam{name}{Window name.}
134
135\wxheading{See also}
136
137\helpref{wxListCtrl::Create}{wxlistctrlcreate}, \helpref{wxValidator}{wxvalidator}
138
139\membersection{wxListCtrl::\destruct{wxListCtrl}}
140
141\func{void}{\destruct{wxListCtrl}}{\void}
142
143Destructor, destroying the list control.
144
145\membersection{wxListCtrl::Arrange}\label{wxlistctrlarrange}
146
eaaa6a06 147\func{bool}{Arrange}{\param{int }{flag = wxLIST\_ALIGN\_DEFAULT}}
a660d684 148
0180dad6 149Arranges the items in icon or small icon view. This only has effect on Win32. {\it flag} is one of:
a660d684
KB
150
151\twocolwidtha{5cm}
152\begin{twocollist}\itemsep=0pt
153\twocolitem{wxLIST\_ALIGN\_DEFAULT}{Default alignment.}
154\twocolitem{wxLIST\_ALIGN\_LEFT}{Align to the left side of the control.}
155\twocolitem{wxLIST\_ALIGN\_TOP}{Align to the top side of the control.}
156\twocolitem{wxLIST\_ALIGN\_SNAP\_TO\_GRID}{Snap to grid.}
157\end{twocollist}
158
2e12c11a
VS
159\membersection{wxListCtrl::AssignImageList}\label{wxlistctrlassignimagelist}
160
161\func{void}{AssignImageList}{\param{wxImageList*}{ imageList}, \param{int }{which}}
162
163Sets the image list associated with the control and
164takes ownership of it (i.e. the control will, unlike when using
165SetImageList, delete the list when destroyed). {\it which} is one of
166wxIMAGE\_LIST\_NORMAL, wxIMAGE\_LIST\_SMALL, wxIMAGE\_LIST\_STATE (the last is unimplemented).
167
168\wxheading{See also}
169
170\helpref{wxListCtrl::SetImageList}{wxlistctrlsetimagelist}
171
8b17ba72
RR
172\membersection{wxListCtrl::ClearAll}\label{wxlistctrlclearall}
173
174\func{void}{ClearAll}{}
175
176Deletes all items and all columns.
177
70b62288
GT
178\membersection{wxListCtrl::Create}\label{wxlistctrlcreate}
179
180\func{bool}{Create}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id},\rtfsp
181\param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},\rtfsp
182\param{long}{ style = wxLC\_ICON}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = ``listCtrl"}}
183
184Creates the list control. See \helpref{wxListCtrl::wxListCtrl}{wxlistctrlconstr} for further details.
185
a660d684
KB
186\membersection{wxListCtrl::DeleteAllItems}\label{wxlistctrldeleteallitems}
187
8b17ba72 188\func{bool}{DeleteAllItems}{}
a660d684
KB
189
190Deletes all the items in the list control.
191
aa9fb2be 192{\bf NB:} This function does {\it not} send the
bffa1c77 193{\tt wxEVT\_COMMAND\_LIST\_DELETE\_ITEM} event because deleting many items
fa482912 194from the control would be too slow then (unlike \helpref{DeleteItem}{wxlistctrldeleteitem}).
bffa1c77 195
a660d684
KB
196\membersection{wxListCtrl::DeleteColumn}\label{wxlistctrldeletecolumn}
197
eaaa6a06 198\func{bool}{DeleteColumn}{\param{int }{col}}
a660d684
KB
199
200Deletes a column.
201
2c8c812f
GT
202\membersection{wxListCtrl::DeleteItem}\label{wxlistctrldeleteitem}
203
204\func{bool}{DeleteItem}{\param{long }{item}}
205
206Deletes the specified item. This function sends the
207{\tt wxEVT\_COMMAND\_LIST\_DELETE\_ITEM} event for the item being deleted.
208
209See also: \helpref{DeleteAllItems}{wxlistctrldeleteallitems}
210
86f975a8 211\membersection{wxListCtrl::EditLabel}\label{wxlistctrledit}
a660d684 212
fd128b0c 213\func{void}{EditLabel}{\param{long }{item}}
a660d684 214
fd128b0c
RR
215Starts editing the label of the given item. This function generates a
216EVT\_LIST\_BEGIN\_LABEL\_EDIT event which can be vetoed so that no
217text control will appear for in-place editing.
86f975a8 218
fd128b0c 219If the user changed the label (i.e. s/he does not press ESC or leave
76e1c2de 220the text control without changes, a EVT\_LIST\_END\_LABEL\_EDIT event
fd128b0c 221will be sent which can be vetoed as well.
a660d684
KB
222
223\membersection{wxListCtrl::EnsureVisible}\label{wxlistctrlensurevisible}
224
eaaa6a06 225\func{bool}{EnsureVisible}{\param{long }{item}}
a660d684
KB
226
227Ensures this item is visible.
228
229\membersection{wxListCtrl::FindItem}\label{wxlistctrlfinditem}
230
cc81d32f 231\func{long}{FindItem}{\param{long }{start}, \param{const wxString\& }{str}, \param{const bool }{partial = false}}
a660d684
KB
232
233Find an item whose label matches this string, starting from the item after {\it start} or
234the beginning if {\it start} is -1.
235
eaaa6a06 236\func{long}{FindItem}{\param{long }{start}, \param{long }{data}}
a660d684
KB
237
238Find an item whose data matches this data, starting from the item after {\it start} or
239the beginning if 'start' is -1.
240
eaaa6a06 241\func{long}{FindItem}{\param{long }{start}, \param{const wxPoint\& }{pt}, \param{int }{direction}}
a660d684
KB
242
243Find an item nearest this position in the specified direction, starting from
244the item after {\it start} or the beginning if {\it start} is -1.
245
21f280f4
RD
246\pythonnote{In place of a single overloaded method name, wxPython
247implements the following methods:\par
248\indented{2cm}{\begin{twocollist}
cc81d32f 249\twocolitem{{\bf FindItem(start, str, partial=false)}}{}
c9110876
VS
250\twocolitem{{\bf FindItemData(start, data)}}{}
251\twocolitem{{\bf FindItemAtPos(start, point, direction)}}{}
21f280f4
RD
252\end{twocollist}}
253}
254
f3539882
VZ
255\perlnote{In wxPerl there are three methods instead of a single overloaded
256method:\par
257\indented{2cm}{\begin{twocollist}
cc81d32f 258\twocolitem{{\bf FindItem( start, str, partial = false ) }}{}
f3539882
VZ
259\twocolitem{{\bf FindItemData( start, data ) }}{}
260\twocolitem{{\bf FindItemAtPos( start, point, direction )}}{}
261\end{twocollist}
262}}
263
a660d684
KB
264\membersection{wxListCtrl::GetColumn}\label{wxlistctrlgetcolumn}
265
eaaa6a06 266\constfunc{bool}{GetColumn}{\param{int }{col}, \param{wxListItem\& }{item}}
a660d684
KB
267
268Gets information about this column. See \helpref{wxListCtrl::SetItem}{wxlistctrlsetitem} for more
269information.
270
f3539882
VZ
271\perlnote{In wxPerl this method takes only the {\bf col} parameter and
272 returns a Wx::ListItem ( or undef ).}
273
62d3ee70
MB
274\membersection{wxListCtrl::GetColumnCount}\label{wxlistctrlgetcolumncount}
275
276\constfunc{int}{GetColumnCount}{\void}
277
278Returns the number of columns.
279
a660d684
KB
280\membersection{wxListCtrl::GetColumnWidth}\label{wxlistctrlgetcolumnwidth}
281
eaaa6a06 282\constfunc{int}{GetColumnWidth}{\param{int }{col}}
a660d684
KB
283
284Gets the column width (report view only).
285
286\membersection{wxListCtrl::GetCountPerPage}\label{wxlistctrlgetcountperpage}
287
288\constfunc{int}{GetCountPerPage}{\void}
289
290Gets the number of items that can fit vertically in the
291visible area of the list control (list or report view)
292or the total number of items in the list control (icon
293or small icon view).
294
295\membersection{wxListCtrl::GetEditControl}\label{wxlistctrlgeteditcontrol}
296
513e0cea 297\constfunc{wxTextCtrl *}{GetEditControl}{\void}
a660d684 298
513e0cea
VZ
299Returns the edit control being currently used to edit a label. Returns {\tt NULL}
300if no label is being edited.
301
302{\bf NB:} It is currently only implemented for wxMSW.
a660d684
KB
303
304\membersection{wxListCtrl::GetImageList}\label{wxlistctrlgetimagelist}
305
eaaa6a06 306\constfunc{wxImageList*}{GetImageList}{\param{int }{which}}
a660d684
KB
307
308Returns the specified image list. {\it which} may be one of:
309
310\twocolwidtha{5cm}
311\begin{twocollist}\itemsep=0pt
312\twocolitem{\windowstyle{wxIMAGE\_LIST\_NORMAL}}{The normal (large icon) image list.}
313\twocolitem{\windowstyle{wxIMAGE\_LIST\_SMALL}}{The small icon image list.}
314\twocolitem{\windowstyle{wxIMAGE\_LIST\_STATE}}{The user-defined state image list (unimplemented).}
315\end{twocollist}
316
317\membersection{wxListCtrl::GetItem}\label{wxlistctrlgetitem}
318
319\constfunc{bool}{GetItem}{\param{wxListItem\& }{info}}
320
321Gets information about the item. See \helpref{wxListCtrl::SetItem}{wxlistctrlsetitem} for more
322information.
323
1ddfb726 324You must call {\it info.SetId()} to the ID of item you're interested in
e5aff4c5
VS
325before calling this method.
326
76e1c2de 327\pythonnote{The wxPython version of this method takes an integer parameter
f6bcfd97 328for the item ID, an optional integer for the column number, and
1ddfb726 329returns the wxListItem object.}
21f280f4 330
f3539882
VZ
331\perlnote{In wxPerl this method takes as parameter the {\bf ID} of the item
332and ( optionally ) the column, and returns a Wx::ListItem object.}
333
70b62288
GT
334\membersection{wxListCtrl::GetItemCount}\label{wxlistctrlgetitemcount}
335
336\constfunc{int}{GetItemCount}{\void}
337
338Returns the number of items in the list control.
339
a660d684
KB
340\membersection{wxListCtrl::GetItemData}\label{wxlistctrlgetitemdata}
341
eaaa6a06 342\constfunc{long}{GetItemData}{\param{long }{item}}
a660d684
KB
343
344Gets the application-defined data associated with this item.
345
346\membersection{wxListCtrl::GetItemPosition}\label{wxlistctrlgetitemposition}
347
eaaa6a06 348\constfunc{bool}{GetItemPosition}{\param{long }{item}, \param{wxPoint\& }{pos}}
a660d684
KB
349
350Returns the position of the item, in icon or small icon view.
351
b456d571 352\pythonnote{The wxPython version of this method accepts only the item
21f280f4
RD
353ID and returns the wxPoint.}
354
f3539882
VZ
355\perlnote{In wxPerl this method takes only the {\bf item} parameter and
356returns a Wx::Point ( or undef ).}
357
a660d684
KB
358\membersection{wxListCtrl::GetItemRect}\label{wxlistctrlgetitemrect}
359
eaaa6a06 360\constfunc{bool}{GetItemRect}{\param{long }{item}, \param{wxRect\& }{rect}, \param{int }{code = wxLIST\_RECT\_BOUNDS}}
a660d684
KB
361
362Returns the rectangle representing the item's size and position, in client coordinates.
363
364{\it code} is one of wxLIST\_RECT\_BOUNDS, wxLIST\_RECT\_ICON, wxLIST\_RECT\_LABEL.
365
b456d571 366\pythonnote{The wxPython version of this method accepts only the item
aa9fb2be 367ID and code and returns the wxRect.}
21f280f4 368
f3539882 369\perlnote{In wxPerl this method takes only the {\bf item} parameter and
2edb0bde 370returns a Wx::Rect ( or undef ).}
f3539882 371
a660d684
KB
372\membersection{wxListCtrl::GetItemSpacing}\label{wxlistctrlgetitemspacing}
373
374\constfunc{int}{GetItemSpacing}{\param{bool }{isSmall}}
375
376Retrieves the spacing between icons in pixels.
cc81d32f 377If {\it small} is true, gets the spacing for the small icon
a660d684
KB
378view, otherwise the large icon view.
379
70b62288
GT
380\membersection{wxListCtrl::GetItemState}\label{wxlistctrlgetitemstate}
381
382\constfunc{int}{GetItemState}{\param{long }{item}, \param{long }{stateMask}}
383
384Gets the item state. For a list of state flags, see \helpref{wxListCtrl::SetItem}{wxlistctrlsetitem}.
385
386The {\bf stateMask} indicates which state flags are of interest.
387
a660d684
KB
388\membersection{wxListCtrl::GetItemText}\label{wxlistctrlgetitemtext}
389
eaaa6a06 390\constfunc{wxString}{GetItemText}{\param{long }{item}}
a660d684
KB
391
392Gets the item text for this item.
393
394\membersection{wxListCtrl::GetNextItem}\label{wxlistctrlgetnextitem}
395
eaaa6a06 396\constfunc{long}{GetNextItem}{\param{long }{item}, \param{int }{geometry = wxLIST\_NEXT\_ALL}, \param{int }{state = wxLIST\_STATE\_DONTCARE}}
a660d684 397
2edb0bde 398Searches for an item with the given geometry or state, starting from
8e21d9ad
VZ
399{\it item} but excluding the {\it item} itself. If {\it item} is -1,
400the first item that matches the specified flags will be returned.
401
402Returns the first item with given state following {\it item} or -1 if
403no such item found.
404
405This function may be used to find all selected items in the control like this:
fa482912 406
8e21d9ad
VZ
407\begin{verbatim}
408 long item = -1;
409 for ( ;; )
410 {
411 item = listctrl->GetNextItem(item,
412 wxLIST_NEXT_ALL,
413 wxLIST_STATE_SELECTED);
414 if ( item == -1 )
415 break;
416
417 // this item is selected - do whatever is needed with it
418 wxLogMessage("Item %ld is selected."), item);
419 }
420\end{verbatim}
a660d684
KB
421
422{\it geometry} can be one of:
423
424\twocolwidtha{5cm}
425\begin{twocollist}\itemsep=0pt
426\twocolitem{wxLIST\_NEXT\_ABOVE}{Searches for an item above the specified item.}
427\twocolitem{wxLIST\_NEXT\_ALL}{Searches for subsequent item by index.}
428\twocolitem{wxLIST\_NEXT\_BELOW}{Searches for an item below the specified item.}
429\twocolitem{wxLIST\_NEXT\_LEFT}{Searches for an item to the left of the specified item.}
430\twocolitem{wxLIST\_NEXT\_RIGHT}{Searches for an item to the right of the specified item.}
431\end{twocollist}
432
8e21d9ad
VZ
433{\bf NB:} this parameters is only supported by wxMSW currently and ignored on
434other platforms.
435
a660d684
KB
436{\it state} can be a bitlist of the following:
437
438\twocolwidtha{5cm}
439\begin{twocollist}\itemsep=0pt
440\twocolitem{wxLIST\_STATE\_DONTCARE}{Don't care what the state is.}
441\twocolitem{wxLIST\_STATE\_DROPHILITED}{The item indicates it is a drop target.}
442\twocolitem{wxLIST\_STATE\_FOCUSED}{The item has the focus.}
443\twocolitem{wxLIST\_STATE\_SELECTED}{The item is selected.}
444\twocolitem{wxLIST\_STATE\_CUT}{The item is selected as part of a cut and paste operation.}
445\end{twocollist}
446
447\membersection{wxListCtrl::GetSelectedItemCount}\label{wxlistctrlgetselecteditemcount}
448
449\constfunc{int}{GetSelectedItemCount}{\void}
450
451Returns the number of selected items in the list control.
452
453\membersection{wxListCtrl::GetTextColour}\label{wxlistctrlgettextcolour}
454
455\constfunc{wxColour}{GetTextColour}{\void}
456
457Gets the text colour of the list control.
458
459\membersection{wxListCtrl::GetTopItem}\label{wxlistctrlgettopitem}
460
461\constfunc{long}{GetTopItem}{\void}
462
463Gets the index of the topmost visible item when in
464list or report view.
465
466\membersection{wxListCtrl::HitTest}\label{wxlistctrlhittest}
467
468\func{long}{HitTest}{\param{const wxPoint\& }{point}, \param{int\& }{flags}}
469
470Determines which item (if any) is at the specified point,
471giving details in {\it flags}. {\it flags} will be a combination of the following flags:
472
473\twocolwidtha{5cm}
474\begin{twocollist}\itemsep=0pt
475\twocolitem{wxLIST\_HITTEST\_ABOVE}{Above the client area.}
476\twocolitem{wxLIST\_HITTEST\_BELOW}{Below the client area.}
477\twocolitem{wxLIST\_HITTEST\_NOWHERE}{In the client area but below the last item.}
478\twocolitem{wxLIST\_HITTEST\_ONITEMICON}{On the bitmap associated with an item.}
479\twocolitem{wxLIST\_HITTEST\_ONITEMLABEL}{On the label (string) associated with an item.}
480\twocolitem{wxLIST\_HITTEST\_ONITEMRIGHT}{In the area to the right of an item.}
481\twocolitem{wxLIST\_HITTEST\_ONITEMSTATEICON}{On the state icon for a tree view item that is in a user-defined state.}
482\twocolitem{wxLIST\_HITTEST\_TOLEFT}{To the right of the client area.}
483\twocolitem{wxLIST\_HITTEST\_TORIGHT}{To the left of the client area.}
484\twocolitem{wxLIST\_HITTEST\_ONITEM}{Combination of wxLIST\_HITTEST\_ONITEMICON, wxLIST\_HITTEST\_ONITEMLABEL,
485wxLIST\_HITTEST\_ONITEMSTATEICON.}
486\end{twocollist}
487
86e78222 488\pythonnote{A tuple of values is returned in the wxPython version of
fa482912 489this method. The first value is the item id and the second is the
86e78222
RD
490flags value mentioned above.}
491
f3539882 492\perlnote{In wxPerl this method only takes the {\bf point} parameter
9722642d 493 and returns a 2-element list {\tt ( item, flags )}.}
f3539882 494
a660d684
KB
495\membersection{wxListCtrl::InsertColumn}\label{wxlistctrlinsertcolumn}
496
eaaa6a06 497\func{long}{InsertColumn}{\param{long }{col}, \param{wxListItem\& }{info}}
a660d684 498
eaaa6a06
JS
499\func{long}{InsertColumn}{\param{long }{col}, \param{const wxString\& }{heading}, \param{int }{format = wxLIST\_FORMAT\_LEFT},\rtfsp
500\param{int }{width = -1}}
a660d684 501
e75f014a 502For report view mode (only), inserts a column. For more details, see \helpref{wxListCtrl::SetItem}{wxlistctrlsetitem}.
a660d684 503
21f280f4
RD
504\pythonnote{In place of a single overloaded method name, wxPython
505implements the following methods:\par
506\indented{2cm}{\begin{twocollist}
c9110876 507\twocolitem{{\bf InsertColumn(col, heading, format=wxLIST\_FORMAT\_LEFT,
21f280f4 508width=-1)}}{Creates a column using a header string only.}
c9110876 509\twocolitem{{\bf InsertColumnInfo(col, item)}}{Creates a column using a
21f280f4
RD
510wxListInfo.}
511\end{twocollist}}
512}
513
a660d684
KB
514\membersection{wxListCtrl::InsertItem}\label{wxlistctrlinsertitem}
515
516\func{long}{InsertItem}{\param{wxListItem\& }{info}}
517
518Inserts an item, returning the index of the new item if successful,
519-1 otherwise.
520
eaaa6a06 521\func{long}{InsertItem}{\param{long }{index}, \param{const wxString\& }{label}}
a660d684
KB
522
523Inserts a string item.
524
eaaa6a06 525\func{long}{InsertItem}{\param{long }{index}, \param{int }{imageIndex}}
a660d684
KB
526
527Inserts an image item.
528
eaaa6a06 529\func{long}{InsertItem}{\param{long }{index}, \param{const wxString\& }{label}, \param{int }{imageIndex}}
a660d684
KB
530
531Insert an image/string item.
532
884360bc
JS
533\wxheading{Parameters}
534
535\docparam{info}{wxListItem object}
536
537\docparam{index}{Index of the new item, supplied by the application}
538
539\docparam{label}{String label}
540
541\docparam{imageIndex}{index into the image list associated with this control and view style}
542
21f280f4
RD
543\pythonnote{In place of a single overloaded method name, wxPython
544implements the following methods:\par
ecf527c0 545\indented{2cm}{\begin{twocollist}\itemsep=0pt
c9110876
VS
546\twocolitem{{\bf InsertItem(item)}}{Inserts an item using a wxListItem.}
547\twocolitem{{\bf InsertStringItem(index, label)}}{Inserts a string item.}
548\twocolitem{{\bf InsertImageItem(index, imageIndex)}}{Inserts an image item.}
549\twocolitem{{\bf InsertImageStringItem(index, label, imageIndex)}}{Insert an image/string item.}
21f280f4
RD
550\end{twocollist}}
551}
552
f3539882
VZ
553\perlnote{In wxPerl there are four methods instead of a single overloaded
554method:\par
555\indented{2cm}{\begin{twocollist}
556\twocolitem{{\bf InsertItem( item )}}{Inserts a Wx::ListItem}
557\twocolitem{{\bf InsertStringItem( index, label )}}{Inserts a string item}
558\twocolitem{{\bf InsertImageItem( index, imageIndex )}}{Inserts an image item}
559\twocolitem{{\bf InsertImageStringItem( index, label, imageIndex )}}{Inserts
560 an item with a string and an image}
561\end{twocollist}
562}}
563
614391dc
VZ
564\membersection{wxListCtrl::OnGetItemAttr}\label{wxlistctrlongetitemattr}
565
c27c87be 566\func{virtual wxListItemAttr *}{OnGetItemAttr}{\param{long }{item}}
614391dc
VZ
567
568This function may be overloaded in the derived class for a control with
569{\tt wxLC\_VIRTUAL} style. It should return the attribute for the
570for the specified {\tt item} or {\tt NULL} to use the default appearance
571parameters.
572
573The base class version always returns {\tt NULL}.
574
575\wxheading{See also}
576
577\helpref{OnGetItemImage}{wxlistctrlongetitemimage},\\
578\helpref{OnGetItemText}{wxlistctrlongetitemtext}
579
580\membersection{wxListCtrl::OnGetItemImage}\label{wxlistctrlongetitemimage}
581
c27c87be 582\func{virtual int}{OnGetItemImage}{\param{long }{item}}
614391dc 583
c27c87be
VZ
584This function must be overloaded in the derived class for a control with
585{\tt wxLC\_VIRTUAL} style having an \helpref{image list}{wxlistctrlsetimagelist}
586(if the control doesn't have an image list, it is not necessary to overload
587 it). It should return the index of the items image in the controls image list
588or $-1$ for no image.
614391dc
VZ
589
590The base class version always returns $-1$.
591
592\wxheading{See also}
593
594\helpref{OnGetItemText}{wxlistctrlongetitemtext},\\
595\helpref{OnGetItemAttr}{wxlistctrlongetitemattr}
596
597\membersection{wxListCtrl::OnGetItemText}\label{wxlistctrlongetitemtext}
598
599\func{virtual wxString}{OnGetItemText}{\param{long }{item}, \param{long }{column}}
600
601This function {\bf must} be overloaded in the derived class for a control with
602{\tt wxLC\_VIRTUAL} style. It should return the string containing the text of
603the given {\it column} for the specified {\tt item}.
604
605\wxheading{See also}
606
607\helpref{SetItemCount}{wxlistctrlsetitemcount},\\
608\helpref{OnGetItemImage}{wxlistctrlongetitemimage},\\
609\helpref{OnGetItemAttr}{wxlistctrlongetitemattr}
610
497b8e09
VZ
611\membersection{wxListCtrl::RefreshItem}\label{wxlistctrlrefreshitem}
612
613\func{void}{RefreshItem}{\param{long }{item}}
614
615Redraws the given {\it item}. This is only useful for the virtual list controls
616as without calling this function the displayed value of the item doesn't change
617even when the underlying data does change.
618
619\wxheading{See also}
620
621\helpref{RefreshItems}{wxlistctrlrefreshitems}
622
623
624\membersection{wxListCtrl::RefreshItems}\label{wxlistctrlrefreshitems}
625
626\func{void}{RefreshItems}{\param{long }{itemFrom}, \param{long }{itemTo}}
627
628Redraws the items between {\it itemFrom} and {\it itemTo}. The starting item
629must be less than or equal to the ending one.
630
631Just as \helpref{RefreshItem}{wxlistctrlrefreshitem} this is only useful for
632virtual list controls.
633
634
a660d684
KB
635\membersection{wxListCtrl::ScrollList}\label{wxlistctrlscrolllist}
636
eaaa6a06 637\func{bool}{ScrollList}{\param{int }{dx}, \param{int }{dy}}
a660d684 638
2b5f62a0
VZ
639Scrolls the list control. If in icon, small icon or report view mode,
640{\it dx} specifies the number of pixels to scroll. If in list view mode,
641{\it dx} specifies the number of columns to scroll. {\it dy} always specifies
642the number of pixels to scroll vertically.
a660d684 643
2b5f62a0 644{\bf NB:} This method is currently only implemented in the Windows version.
a660d684
KB
645
646\membersection{wxListCtrl::SetBackgroundColour}\label{wxlistctrlsetbackgroundcolour}
647
648\func{void}{SetBackgroundColour}{\param{const wxColour\& }{col}}
649
650Sets the background colour (GetBackgroundColour already implicit in
651wxWindow class).
652
653\membersection{wxListCtrl::SetColumn}\label{wxlistctrlsetcolumn}
654
eaaa6a06 655\func{bool}{SetColumn}{\param{int }{col}, \param{wxListItem\& }{item}}
a660d684
KB
656
657Sets information about this column. See \helpref{wxListCtrl::SetItem}{wxlistctrlsetitem} for more
658information.
659
660\membersection{wxListCtrl::SetColumnWidth}\label{wxlistctrlsetcolumnwidth}
661
eaaa6a06 662\func{bool}{SetColumnWidth}{\param{int }{col}, \param{int }{width}}
a660d684 663
884360bc 664Sets the column width.
a660d684
KB
665
666{\it width} can be a width in pixels or wxLIST\_AUTOSIZE (-1) or wxLIST\_AUTOSIZE\_USEHEADER (-2).
0180dad6
RR
667wxLIST\_AUTOSIZE will resize the column to the length of its longest item. wxLIST\_AUTOSIZE\_USEHEADER
668will resize the column to the length of the header (Win32) or 80 pixels (other platforms).
884360bc
JS
669
670In small or normal icon view, {\it col} must be -1, and the column width is set for all columns.
a660d684
KB
671
672\membersection{wxListCtrl::SetImageList}\label{wxlistctrlsetimagelist}
673
eaaa6a06 674\func{void}{SetImageList}{\param{wxImageList*}{ imageList}, \param{int }{which}}
a660d684
KB
675
676Sets the image list associated with the control. {\it which} is one of
677wxIMAGE\_LIST\_NORMAL, wxIMAGE\_LIST\_SMALL, wxIMAGE\_LIST\_STATE (the last is unimplemented).
678
2e12c11a
VS
679This method does not take ownership of the image list, you have to
680delete it yourself.
681
682\wxheading{See also}
683
684\helpref{wxListCtrl::AssignImageList}{wxlistctrlassignimagelist}
685
686
a660d684
KB
687\membersection{wxListCtrl::SetItem}\label{wxlistctrlsetitem}
688
689\func{bool}{SetItem}{\param{wxListItem\& }{info}}
690
2cb20bea
VS
691\func{long}{SetItem}{\param{long }{index}, \param{int }{col}, \param{const }{wxString\& label}, \param{int }{imageId = -1}}
692
a660d684
KB
693Sets information about the item.
694
695wxListItem is a class with the following members:
696
697\twocolwidtha{5cm}
698\begin{twocollist}\itemsep=0pt
699\twocolitem{long m\_mask}{Indicates which fields are valid. See the list of valid mask flags below.}
700\twocolitem{long m\_itemId}{The zero-based item position.}
701\twocolitem{int m\_col}{Zero-based column, if in report mode.}
702\twocolitem{long m\_state}{The state of the item. See the list of valid state flags below.}
703\twocolitem{long m\_stateMask}{A mask indicating which state flags are valid. See the list of valid state flags below.}
704\twocolitem{wxString m\_text}{The label/header text.}
705\twocolitem{int m\_image}{The zero-based index into an image list.}
706\twocolitem{long m\_data}{Application-defined data.}
707\twocolitem{int m\_format}{For columns only: the format. Can be wxLIST\_FORMAT\_LEFT, wxLIST\_FORMAT\_RIGHT or
708wxLIST\_FORMAT\_CENTRE.}
709\twocolitem{int m\_width}{For columns only: the column width.}
710\end{twocollist}
711
712The {\bf m\_mask} member contains a bitlist specifying which of the other fields are valid. The flags are:
713
714\twocolwidtha{5cm}
715\begin{twocollist}\itemsep=0pt
716\twocolitem{wxLIST\_MASK\_STATE}{The {\bf m\_state} field is valid.}
717\twocolitem{wxLIST\_MASK\_TEXT}{The {\bf m\_text} field is valid.}
718\twocolitem{wxLIST\_MASK\_IMAGE}{The {\bf m\_image} field is valid.}
719\twocolitem{wxLIST\_MASK\_DATA}{The {\bf m\_data} field is valid.}
720\twocolitem{wxLIST\_MASK\_WIDTH}{The {\bf m\_width} field is valid.}
721\twocolitem{wxLIST\_MASK\_FORMAT}{The {\bf m\_format} field is valid.}
722\end{twocollist}
723
724The {\bf m\_stateMask} and {\bf m\_state} members take flags from the following:
725
0530737d
VZ
726The wxListItem object can also contain item-specific colour and font
727information: for this you need to call one of SetTextColour(),
728SetBackgroundColour() or SetFont() functions on it passing it the colour/font
729to use. If the colour/font is not specified, the default list control
730colour/font is used.
731
a660d684
KB
732\twocolwidtha{5cm}
733\begin{twocollist}\itemsep=0pt
0180dad6
RR
734\twocolitem{wxLIST\_STATE\_DONTCARE}{Don't care what the state is. Win32 only. }
735\twocolitem{wxLIST\_STATE\_DROPHILITED}{The item is highlighted to receive a drop event. Win32 only. }
a660d684
KB
736\twocolitem{wxLIST\_STATE\_FOCUSED}{The item has the focus.}
737\twocolitem{wxLIST\_STATE\_SELECTED}{The item is selected.}
0180dad6 738\twocolitem{wxLIST\_STATE\_CUT}{The item is in the cut state. Win32 only. }
a660d684
KB
739\end{twocollist}
740
eaaa6a06 741\func{long}{SetItem}{\param{long }{index}, \param{int }{col}, \param{const wxString\& }{label}, \param{int }{imageId = -1}}
a660d684
KB
742
743Sets a string field at a particular column.
744
21f280f4
RD
745\pythonnote{In place of a single overloaded method name, wxPython
746implements the following methods:\par
747\indented{2cm}{\begin{twocollist}
c9110876
VS
748\twocolitem{{\bf SetItem(item)}}{Sets information about the given wxListItem.}
749\twocolitem{{\bf SetStringItem(index, col, label, imageId)}}{Sets a
21f280f4
RD
750string or image at a given location.}
751\end{twocollist}}
752}
753
614391dc
VZ
754\membersection{wxListCtrl::SetItemCount}\label{wxlistctrlsetitemcount}
755
756\func{void}{SetItemCount}{\param{long }{count}}
757
758This method can only be used with virtual list controls. It is used to indicate
759to the control the number of items it contains. After calling it, the main
760program should be ready to handle calls to various item callbacks (such as
2edb0bde 761\helpref{OnGetItemText}{wxlistctrlongetitemtext}) for all items in the range
614391dc
VZ
762from $0$ to {\it count}.
763
a660d684
KB
764\membersection{wxListCtrl::SetItemData}\label{wxlistctrlsetitemdata}
765
eaaa6a06 766\func{bool}{SetItemData}{\param{long }{item}, \param{long }{data}}
a660d684
KB
767
768Associates application-defined data with this item.
769
770\membersection{wxListCtrl::SetItemImage}\label{wxlistctrlsetitemimage}
771
eaaa6a06 772\func{bool}{SetItemImage}{\param{long }{item}, \param{int }{image}, \param{int }{selImage}}
a660d684
KB
773
774Sets the unselected and selected images associated with the item. The images are indices into the
775image list associated with the list control.
776
777\membersection{wxListCtrl::SetItemPosition}\label{wxlistctrlsetitemposition}
778
eaaa6a06 779\func{bool}{SetItemPosition}{\param{long }{item}, \param{const wxPoint\& }{pos}}
a660d684
KB
780
781Sets the position of the item, in icon or small icon view.
782
783\membersection{wxListCtrl::SetItemState}\label{wxlistctrlsetitemstate}
784
eaaa6a06 785\func{bool}{SetItemState}{\param{long }{item}, \param{long }{state}, \param{long }{stateMask}}
a660d684
KB
786
787Sets the item state. For a list of state flags, see \helpref{wxListCtrl::SetItem}{wxlistctrlsetitem}.
788
789The {\bf stateMask} indicates which state flags are valid.
790
791\membersection{wxListCtrl::SetItemText}\label{wxlistctrlsetitemtext}
792
eaaa6a06 793\func{void}{SetItemText}{\param{long }{item}, \param{const wxString\& }{text}}
a660d684
KB
794
795Sets the item text for this item.
796
797\membersection{wxListCtrl::SetSingleStyle}\label{wxlistctrlsetsinglestyle}
798
cc81d32f 799\func{void}{SetSingleStyle}{\param{long }{style}, \param{const bool }{add = true}}
a660d684
KB
800
801Adds or removes a single window style.
802
803\membersection{wxListCtrl::SetTextColour}\label{wxlistctrlsettextcolour}
804
805\func{void}{SetTextColour}{\param{const wxColour\& }{col}}
806
807Sets the text colour of the list control.
808
809\membersection{wxListCtrl::SetWindowStyleFlag}\label{wxlistctrlsetwindowstyleflag}
810
eaaa6a06 811\func{void}{SetWindowStyleFlag}{\param{long }{style}}
a660d684
KB
812
813Sets the whole window style.
814
815\membersection{wxListCtrl::SortItems}\label{wxlistctrlsortitems}
816
963863ad 817\func{bool}{SortItems}{\param{wxListCtrlCompare }{fnSortCallBack}, \param{long }{data}}
a660d684 818
aa9fb2be 819Call this function to sort the items in the list control. Sorting is done
963863ad
VZ
820using the specified {\it fnSortCallBack} function. This function must have the
821following prototype:
a660d684 822
963863ad
VZ
823\begin{verbatim}
824int wxCALLBACK wxListCompareFunction(long item1, long item2, long sortData)
825\end{verbatim}
a660d684 826
963863ad
VZ
827It is called each time when the two items must be compared and should return 0
828if the items are equal, negative value if the first item is less than the
829second one and positive value if the first one is greater than the second one
830(the same convention as used by {\tt qsort(3)}).
a660d684 831
963863ad 832\wxheading{Parameters}
a660d684 833
ecf527c0 834\docparam{item1}{client data associated with the first item ({\bf NOT} the index).}
aa9fb2be 835
ecf527c0 836\docparam{item2}{client data associated with the second item ({\bf NOT} the index).}
aa9fb2be 837
963863ad 838\docparam{data}{the value passed to SortItems() itself.}
a660d684 839
963863ad
VZ
840Notice that the control may only be sorted on client data associated with the
841items, so you {\bf must} use \helpref{SetItemData}{wxlistctrlsetitemdata} if
842you want to be able to sort the items in the control.
a660d684 843
963863ad
VZ
844Please see the \helpref{listctrl sample}{samplelistctrl} for an example of
845using this function.
ecf527c0 846
aa9fb2be
RD
847\pythonnote{wxPython uses the sortData parameter to pass the Python
848function to call, so it is not available for programmer use. Call
849SortItems with a reference to a callable object that expects two
850parameters.}
281b0186 851
f3539882
VZ
852\perlnote{In wxPerl the comparison function must take just two parameters;
853 however, you may use a closure to achieve an effect similar to the
854 SortItems third parameter.}
855