]>
Commit | Line | Data |
---|---|---|
23324ae1 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80cc5fc7 | 2 | // Name: wx/listctrl.h |
e54c96f1 | 3 | // Purpose: interface of wxListCtrl |
23324ae1 | 4 | // Author: wxWidgets team |
526954c5 | 5 | // Licence: wxWindows licence |
23324ae1 FM |
6 | ///////////////////////////////////////////////////////////////////////////// |
7 | ||
0ffc1704 RD |
8 | /// style flags |
9 | #define wxLC_VRULES 0x0001 | |
10 | #define wxLC_HRULES 0x0002 | |
11 | ||
12 | #define wxLC_ICON 0x0004 | |
13 | #define wxLC_SMALL_ICON 0x0008 | |
14 | #define wxLC_LIST 0x0010 | |
15 | #define wxLC_REPORT 0x0020 | |
16 | ||
17 | #define wxLC_ALIGN_TOP 0x0040 | |
18 | #define wxLC_ALIGN_LEFT 0x0080 | |
19 | #define wxLC_AUTOARRANGE 0x0100 | |
20 | #define wxLC_VIRTUAL 0x0200 | |
21 | #define wxLC_EDIT_LABELS 0x0400 | |
22 | #define wxLC_NO_HEADER 0x0800 | |
23 | #define wxLC_NO_SORT_HEADER 0x1000 | |
24 | #define wxLC_SINGLE_SEL 0x2000 | |
25 | #define wxLC_SORT_ASCENDING 0x4000 | |
26 | #define wxLC_SORT_DESCENDING 0x8000 | |
27 | ||
28 | #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT) | |
29 | #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT) | |
30 | #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING) | |
31 | ||
32 | ||
33 | /// Mask flags to tell app/GUI what fields of wxListItem are valid | |
34 | #define wxLIST_MASK_STATE 0x0001 | |
35 | #define wxLIST_MASK_TEXT 0x0002 | |
36 | #define wxLIST_MASK_IMAGE 0x0004 | |
37 | #define wxLIST_MASK_DATA 0x0008 | |
38 | #define wxLIST_SET_ITEM 0x0010 | |
39 | #define wxLIST_MASK_WIDTH 0x0020 | |
40 | #define wxLIST_MASK_FORMAT 0x0040 | |
41 | ||
42 | /// State flags for indicating the state of an item | |
43 | #define wxLIST_STATE_DONTCARE 0x0000 | |
44 | #define wxLIST_STATE_DROPHILITED 0x0001 // MSW only | |
45 | #define wxLIST_STATE_FOCUSED 0x0002 | |
46 | #define wxLIST_STATE_SELECTED 0x0004 | |
47 | #define wxLIST_STATE_CUT 0x0008 // MSW only | |
48 | #define wxLIST_STATE_DISABLED 0x0010 // OS2 only | |
49 | #define wxLIST_STATE_FILTERED 0x0020 // OS2 only | |
50 | #define wxLIST_STATE_INUSE 0x0040 // OS2 only | |
51 | #define wxLIST_STATE_PICKED 0x0080 // OS2 only | |
52 | #define wxLIST_STATE_SOURCE 0x0100 // OS2 only | |
53 | ||
54 | /// Hit test flags, used in HitTest | |
55 | #define wxLIST_HITTEST_ABOVE 0x0001 // Above the client area. | |
56 | #define wxLIST_HITTEST_BELOW 0x0002 // Below the client area. | |
57 | #define wxLIST_HITTEST_NOWHERE 0x0004 // In the client area but below the last item. | |
58 | #define wxLIST_HITTEST_ONITEMICON 0x0020 // On the bitmap associated with an item. | |
59 | #define wxLIST_HITTEST_ONITEMLABEL 0x0080 // On the label (string) associated with an item. | |
60 | #define wxLIST_HITTEST_ONITEMRIGHT 0x0100 // In the area to the right of an item. | |
61 | #define wxLIST_HITTEST_ONITEMSTATEICON 0x0200 // On the state icon for a tree view item that is in a user-defined state. | |
62 | #define wxLIST_HITTEST_TOLEFT 0x0400 // To the left of the client area. | |
63 | #define wxLIST_HITTEST_TORIGHT 0x0800 // To the right of the client area. | |
64 | ||
65 | #define wxLIST_HITTEST_ONITEM (wxLIST_HITTEST_ONITEMICON | wxLIST_HITTEST_ONITEMLABEL | wxLIST_HITTEST_ONITEMSTATEICON) | |
66 | ||
67 | /// GetSubItemRect constants | |
68 | #define wxLIST_GETSUBITEMRECT_WHOLEITEM -1l | |
69 | ||
70 | /// Flags for GetNextItem (MSW only except wxLIST_NEXT_ALL) | |
71 | enum | |
72 | { | |
73 | wxLIST_NEXT_ABOVE, // Searches for an item above the specified item | |
74 | wxLIST_NEXT_ALL, // Searches for subsequent item by index | |
75 | wxLIST_NEXT_BELOW, // Searches for an item below the specified item | |
76 | wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item | |
77 | wxLIST_NEXT_RIGHT // Searches for an item to the right of the specified item | |
78 | }; | |
79 | ||
80 | /// Alignment flags for Arrange (MSW only except wxLIST_ALIGN_LEFT) | |
81 | enum | |
82 | { | |
83 | wxLIST_ALIGN_DEFAULT, | |
84 | wxLIST_ALIGN_LEFT, | |
85 | wxLIST_ALIGN_TOP, | |
86 | wxLIST_ALIGN_SNAP_TO_GRID | |
87 | }; | |
88 | ||
89 | /// Column format (MSW only except wxLIST_FORMAT_LEFT) | |
90 | enum wxListColumnFormat | |
91 | { | |
92 | wxLIST_FORMAT_LEFT, | |
93 | wxLIST_FORMAT_RIGHT, | |
94 | wxLIST_FORMAT_CENTRE, | |
95 | wxLIST_FORMAT_CENTER = wxLIST_FORMAT_CENTRE | |
96 | }; | |
97 | ||
98 | /// Autosize values for SetColumnWidth | |
99 | enum | |
100 | { | |
101 | wxLIST_AUTOSIZE = -1, | |
102 | wxLIST_AUTOSIZE_USEHEADER = -2 // partly supported by generic version | |
103 | }; | |
104 | ||
105 | /// Flag values for GetItemRect | |
106 | enum | |
107 | { | |
108 | wxLIST_RECT_BOUNDS, | |
109 | wxLIST_RECT_ICON, | |
110 | wxLIST_RECT_LABEL | |
111 | }; | |
112 | ||
113 | /// Flag values for FindItem (MSW only) | |
114 | enum | |
115 | { | |
116 | wxLIST_FIND_UP, | |
117 | wxLIST_FIND_DOWN, | |
118 | wxLIST_FIND_LEFT, | |
119 | wxLIST_FIND_RIGHT | |
120 | }; | |
121 | ||
122 | ||
123 | ||
124 | ||
23324ae1 FM |
125 | /** |
126 | @class wxListCtrl | |
7c913512 | 127 | |
23324ae1 FM |
128 | A list control presents lists in a number of formats: list view, report view, |
129 | icon view and small icon view. In any case, elements are numbered from zero. | |
130 | For all these modes, the items are stored in the control and must be added to | |
131 | it using wxListCtrl::InsertItem method. | |
7c913512 | 132 | |
23324ae1 FM |
133 | A special case of report view quite different from the other modes of the list |
134 | control is a virtual control in which the items data (including text, images | |
135 | and attributes) is managed by the main program and is requested by the control | |
136 | itself only when needed which allows to have controls with millions of items | |
137 | without consuming much memory. To use virtual list control you must use | |
75504144 | 138 | wxListCtrl::SetItemCount first and override at least wxListCtrl::OnGetItemText |
320ab87c FM |
139 | (and optionally wxListCtrl::OnGetItemImage or wxListCtrl::OnGetItemColumnImage and |
140 | wxListCtrl::OnGetItemAttr) to return the information about the items when the | |
141 | control requests it. | |
5bcb6a69 | 142 | |
320ab87c FM |
143 | Virtual list control can be used as a normal one except that no operations |
144 | which can take time proportional to the number of items in the control happen | |
145 | -- this is required to allow having a practically infinite number of items. | |
146 | For example, in a multiple selection virtual list control, the selections won't | |
147 | be sent when many items are selected at once because this could mean iterating | |
148 | over all the items. | |
7c913512 | 149 | |
23324ae1 | 150 | Using many of wxListCtrl features is shown in the |
320ab87c | 151 | @ref page_samples_listctrl "corresponding sample". |
7c913512 | 152 | |
23324ae1 FM |
153 | To intercept events from a list control, use the event table macros described |
154 | in wxListEvent. | |
7c913512 | 155 | |
320ab87c FM |
156 | <b>wxMac Note</b>: Starting with wxWidgets 2.8, wxListCtrl uses a native |
157 | implementation for report mode, and uses a generic implementation for other | |
158 | modes. You can use the generic implementation for report mode as well by setting | |
5bcb6a69 | 159 | the @c mac.listctrl.always_use_generic system option (see wxSystemOptions) to 1. |
2e2b4d24 | 160 | |
7c913512 | 161 | |
23324ae1 | 162 | @beginStyleTable |
8c6791e4 | 163 | @style{wxLC_LIST} |
23324ae1 FM |
164 | Multicolumn list view, with optional small icons. Columns are |
165 | computed automatically, i.e. you don't set columns as in | |
5bcb6a69 | 166 | @c wxLC_REPORT. In other words, the list wraps, unlike a wxListBox. |
8c6791e4 | 167 | @style{wxLC_REPORT} |
23324ae1 | 168 | Single or multicolumn report view, with optional header. |
8c6791e4 | 169 | @style{wxLC_VIRTUAL} |
23324ae1 | 170 | The application provides items text on demand. May only be used |
5bcb6a69 | 171 | with @c wxLC_REPORT. |
8c6791e4 | 172 | @style{wxLC_ICON} |
23324ae1 | 173 | Large icon view, with optional labels. |
8c6791e4 | 174 | @style{wxLC_SMALL_ICON} |
23324ae1 | 175 | Small icon view, with optional labels. |
8c6791e4 | 176 | @style{wxLC_ALIGN_TOP} |
23324ae1 | 177 | Icons align to the top. Win32 default, Win32 only. |
8c6791e4 | 178 | @style{wxLC_ALIGN_LEFT} |
23324ae1 | 179 | Icons align to the left. |
8c6791e4 | 180 | @style{wxLC_AUTOARRANGE} |
23324ae1 | 181 | Icons arrange themselves. Win32 only. |
8c6791e4 | 182 | @style{wxLC_EDIT_LABELS} |
23324ae1 FM |
183 | Labels are editable: the application will be notified when editing |
184 | starts. | |
8c6791e4 | 185 | @style{wxLC_NO_HEADER} |
23324ae1 | 186 | No header in report mode. |
8c6791e4 | 187 | @style{wxLC_SINGLE_SEL} |
23324ae1 | 188 | Single selection (default is multiple). |
8c6791e4 | 189 | @style{wxLC_SORT_ASCENDING} |
b45506e8 VZ |
190 | Sort in ascending order. (You must still supply a comparison callback |
191 | in wxListCtrl::SortItems.) | |
8c6791e4 | 192 | @style{wxLC_SORT_DESCENDING} |
b45506e8 VZ |
193 | Sort in descending order. (You must still supply a comparison callback |
194 | in wxListCtrl::SortItems.) | |
8c6791e4 | 195 | @style{wxLC_HRULES} |
23324ae1 | 196 | Draws light horizontal rules between rows in report mode. |
8c6791e4 | 197 | @style{wxLC_VRULES} |
23324ae1 FM |
198 | Draws light vertical rules between columns in report mode. |
199 | @endStyleTable | |
7c913512 | 200 | |
2e2b4d24 | 201 | |
3051a44a | 202 | @beginEventEmissionTable{wxListEvent} |
2e2b4d24 RR |
203 | @event{EVT_LIST_BEGIN_DRAG(id, func)} |
204 | Begin dragging with the left mouse button. | |
ce7fe42e | 205 | Processes a @c wxEVT_LIST_BEGIN_DRAG event type. |
2e2b4d24 | 206 | @event{EVT_LIST_BEGIN_RDRAG(id, func)} |
232fdc63 | 207 | Begin dragging with the right mouse button. |
ce7fe42e | 208 | Processes a @c wxEVT_LIST_BEGIN_RDRAG event type. |
232fdc63 | 209 | @event{EVT_BEGIN_LABEL_EDIT(id, func)} |
2e2b4d24 | 210 | Begin editing a label. This can be prevented by calling Veto(). |
ce7fe42e | 211 | Processes a @c wxEVT_LIST_BEGIN_LABEL_EDIT event type. |
2e2b4d24 RR |
212 | @event{EVT_LIST_END_LABEL_EDIT(id, func)} |
213 | Finish editing a label. This can be prevented by calling Veto(). | |
ce7fe42e | 214 | Processes a @c wxEVT_LIST_END_LABEL_EDIT event type. |
2e2b4d24 RR |
215 | @event{EVT_LIST_DELETE_ITEM(id, func)} |
216 | An item was deleted. | |
ce7fe42e | 217 | Processes a @c wxEVT_LIST_DELETE_ITEM event type. |
2e2b4d24 RR |
218 | @event{EVT_LIST_DELETE_ALL_ITEMS(id, func)} |
219 | All items were deleted. | |
ce7fe42e | 220 | Processes a @c wxEVT_LIST_DELETE_ALL_ITEMS event type. |
2e2b4d24 RR |
221 | @event{EVT_LIST_ITEM_SELECTED(id, func)} |
222 | The item has been selected. | |
ce7fe42e | 223 | Processes a @c wxEVT_LIST_ITEM_SELECTED event type. |
2e2b4d24 RR |
224 | @event{EVT_LIST_ITEM_DESELECTED(id, func)} |
225 | The item has been deselected. | |
ce7fe42e | 226 | Processes a @c wxEVT_LIST_ITEM_DESELECTED event type. |
2e2b4d24 RR |
227 | @event{EVT_LIST_ITEM_ACTIVATED(id, func)} |
228 | The item has been activated (ENTER or double click). | |
ce7fe42e | 229 | Processes a @c wxEVT_LIST_ITEM_ACTIVATED event type. |
2e2b4d24 RR |
230 | @event{EVT_LIST_ITEM_FOCUSED(id, func)} |
231 | The currently focused item has changed. | |
ce7fe42e | 232 | Processes a @c wxEVT_LIST_ITEM_FOCUSED event type. |
2e2b4d24 | 233 | @event{EVT_LIST_ITEM_MIDDLE_CLICK(id, func)} |
232fdc63 VZ |
234 | The middle mouse button has been clicked on an item. This is |
235 | only supported by the generic control. | |
ce7fe42e | 236 | Processes a @c wxEVT_LIST_ITEM_MIDDLE_CLICK event type. |
2e2b4d24 | 237 | @event{EVT_LIST_ITEM_RIGHT_CLICK(id, func)} |
320ab87c | 238 | The right mouse button has been clicked on an item. |
ce7fe42e | 239 | Processes a @c wxEVT_LIST_ITEM_RIGHT_CLICK event type. |
2e2b4d24 RR |
240 | @event{EVT_LIST_KEY_DOWN(id, func)} |
241 | A key has been pressed. | |
ce7fe42e | 242 | Processes a @c wxEVT_LIST_KEY_DOWN event type. |
2e2b4d24 RR |
243 | @event{EVT_LIST_INSERT_ITEM(id, func)} |
244 | An item has been inserted. | |
ce7fe42e | 245 | Processes a @c wxEVT_LIST_INSERT_ITEM event type. |
2e2b4d24 RR |
246 | @event{EVT_LIST_COL_CLICK(id, func)} |
247 | A column (m_col) has been left-clicked. | |
ce7fe42e | 248 | Processes a @c wxEVT_LIST_COL_CLICK event type. |
2e2b4d24 RR |
249 | @event{EVT_LIST_COL_RIGHT_CLICK(id, func)} |
250 | A column (m_col) has been right-clicked. | |
ce7fe42e | 251 | Processes a @c wxEVT_LIST_COL_RIGHT_CLICK event type. |
2e2b4d24 RR |
252 | @event{EVT_LIST_COL_BEGIN_DRAG(id, func)} |
253 | The user started resizing a column - can be vetoed. | |
ce7fe42e | 254 | Processes a @c wxEVT_LIST_COL_BEGIN_DRAG event type. |
2e2b4d24 RR |
255 | @event{EVT_LIST_COL_DRAGGING(id, func)} |
256 | The divider between columns is being dragged. | |
ce7fe42e | 257 | Processes a @c wxEVT_LIST_COL_DRAGGING event type. |
2e2b4d24 RR |
258 | @event{EVT_LIST_COL_END_DRAG(id, func)} |
259 | A column has been resized by the user. | |
ce7fe42e | 260 | Processes a @c wxEVT_LIST_COL_END_DRAG event type. |
2e2b4d24 RR |
261 | @event{EVT_LIST_CACHE_HINT(id, func)} |
262 | Prepare cache for a virtual list control. | |
ce7fe42e | 263 | Processes a @c wxEVT_LIST_CACHE_HINT event type. |
2e2b4d24 RR |
264 | @endEventTable |
265 | ||
266 | ||
23324ae1 FM |
267 | @library{wxcore} |
268 | @category{ctrl} | |
ce154616 | 269 | @appearance{listctrl} |
7c913512 | 270 | |
320ab87c FM |
271 | @see @ref overview_listctrl, wxListView, wxListBox, wxTreeCtrl, wxImageList, |
272 | wxListEvent, wxListItem, wxEditableListBox | |
23324ae1 FM |
273 | */ |
274 | class wxListCtrl : public wxControl | |
275 | { | |
276 | public: | |
b45506e8 | 277 | /** |
1d7c0c08 | 278 | Default constructor. |
b45506e8 VZ |
279 | */ |
280 | wxListCtrl(); | |
281 | ||
23324ae1 FM |
282 | /** |
283 | Constructor, creating and showing a list control. | |
3c4f71cc | 284 | |
7c913512 | 285 | @param parent |
4cc4bfaf | 286 | Parent window. Must not be @NULL. |
7c913512 | 287 | @param id |
4cc4bfaf | 288 | Window identifier. The value wxID_ANY indicates a default value. |
7c913512 | 289 | @param pos |
4cc4bfaf | 290 | Window position. |
dc1b07fd | 291 | If ::wxDefaultPosition is specified then a default position is chosen. |
7c913512 | 292 | @param size |
320ab87c | 293 | Window size. |
dc1b07fd | 294 | If ::wxDefaultSize is specified then the window is sized appropriately. |
7c913512 | 295 | @param style |
4cc4bfaf | 296 | Window style. See wxListCtrl. |
7c913512 | 297 | @param validator |
4cc4bfaf | 298 | Window validator. |
7c913512 | 299 | @param name |
4cc4bfaf | 300 | Window name. |
3c4f71cc | 301 | |
4cc4bfaf | 302 | @see Create(), wxValidator |
23324ae1 | 303 | */ |
7c913512 FM |
304 | wxListCtrl(wxWindow* parent, wxWindowID id, |
305 | const wxPoint& pos = wxDefaultPosition, | |
306 | const wxSize& size = wxDefaultSize, | |
307 | long style = wxLC_ICON, | |
308 | const wxValidator& validator = wxDefaultValidator, | |
309 | const wxString& name = wxListCtrlNameStr); | |
23324ae1 FM |
310 | |
311 | /** | |
312 | Destructor, destroying the list control. | |
313 | */ | |
adaaa686 | 314 | virtual ~wxListCtrl(); |
23324ae1 | 315 | |
c23edb1b VZ |
316 | /** |
317 | Adds a new column to the list control in report view mode. | |
318 | ||
319 | This is just a convenient wrapper for InsertColumn() which adds the new | |
320 | column after all the existing ones without having to specify its | |
321 | position explicitly. | |
322 | ||
323 | @since 2.9.4 | |
324 | */ | |
325 | long AppendColumn(const wxString& heading, | |
0280c087 | 326 | wxListColumnFormat format = wxLIST_FORMAT_LEFT, |
c23edb1b VZ |
327 | int width = -1); |
328 | ||
23324ae1 | 329 | /** |
320ab87c FM |
330 | Arranges the items in icon or small icon view. |
331 | This only has effect on Win32. @a flag is one of: | |
1d7c0c08 RR |
332 | - wxLIST_ALIGN_DEFAULT: Default alignment. |
333 | - wxLIST_ALIGN_LEFT: Align to the left side of the control. | |
334 | - wxLIST_ALIGN_TOP: Align to the top side of the control. | |
335 | - wxLIST_ALIGN_SNAP_TO_GRID: Snap to grid. | |
23324ae1 FM |
336 | */ |
337 | bool Arrange(int flag = wxLIST_ALIGN_DEFAULT); | |
338 | ||
339 | /** | |
320ab87c FM |
340 | Sets the image list associated with the control and takes ownership of it |
341 | (i.e. the control will, unlike when using SetImageList(), delete the list | |
342 | when destroyed). @a which is one of @c wxIMAGE_LIST_NORMAL, @c wxIMAGE_LIST_SMALL, | |
343 | @c wxIMAGE_LIST_STATE (the last is unimplemented). | |
3c4f71cc | 344 | |
4cc4bfaf | 345 | @see SetImageList() |
23324ae1 FM |
346 | */ |
347 | void AssignImageList(wxImageList* imageList, int which); | |
348 | ||
349 | /** | |
350 | Deletes all items and all columns. | |
232fdc63 | 351 | |
ce7fe42e | 352 | @note This sends an event of type @c wxEVT_LIST_DELETE_ALL_ITEMS |
232fdc63 | 353 | under all platforms. |
23324ae1 FM |
354 | */ |
355 | void ClearAll(); | |
356 | ||
357 | /** | |
358 | Creates the list control. See wxListCtrl() for further details. | |
359 | */ | |
360 | bool Create(wxWindow* parent, wxWindowID id, | |
361 | const wxPoint& pos = wxDefaultPosition, | |
362 | const wxSize& size = wxDefaultSize, | |
363 | long style = wxLC_ICON, | |
364 | const wxValidator& validator = wxDefaultValidator, | |
365 | const wxString& name = wxListCtrlNameStr); | |
366 | ||
367 | /** | |
368 | Deletes all items in the list control. | |
320ab87c | 369 | |
ce7fe42e | 370 | This function does @e not send the @c wxEVT_LIST_DELETE_ITEM |
4b97af90 VZ |
371 | event because deleting many items from the control would be too slow |
372 | then (unlike wxListCtrl::DeleteItem) but it does send the special @c | |
ce7fe42e | 373 | wxEVT_LIST_DELETE_ALL_ITEMS event if the control was not empty. |
4b97af90 VZ |
374 | If it was already empty, nothing is done and no event is sent. |
375 | ||
376 | @return @true if the items were successfully deleted or if the control | |
377 | was already empty, @false if an error occurred while deleting the | |
378 | items. | |
23324ae1 FM |
379 | */ |
380 | bool DeleteAllItems(); | |
381 | ||
382 | /** | |
383 | Deletes a column. | |
384 | */ | |
385 | bool DeleteColumn(int col); | |
386 | ||
387 | /** | |
320ab87c | 388 | Deletes the specified item. |
ce7fe42e | 389 | This function sends the @c wxEVT_LIST_DELETE_ITEM event for the |
320ab87c FM |
390 | item being deleted. |
391 | ||
392 | @see DeleteAllItems() | |
23324ae1 FM |
393 | */ |
394 | bool DeleteItem(long item); | |
395 | ||
396 | /** | |
320ab87c FM |
397 | Starts editing the label of the given item. |
398 | ||
399 | This function generates a @c EVT_LIST_BEGIN_LABEL_EDIT event which can be | |
400 | vetoed so that no text control will appear for in-place editing. | |
401 | ||
23324ae1 | 402 | If the user changed the label (i.e. s/he does not press ESC or leave |
320ab87c | 403 | the text control without changes, a @c EVT_LIST_END_LABEL_EDIT event |
23324ae1 FM |
404 | will be sent which can be vetoed as well. |
405 | */ | |
5267aefd | 406 | wxTextCtrl* EditLabel(long item, |
b19b28c8 | 407 | wxClassInfo* textControlClass = wxCLASSINFO(wxTextCtrl)); |
23324ae1 | 408 | |
0ee169da VZ |
409 | /** |
410 | Enable alternating row background colours (also called zebra striping). | |
411 | ||
412 | This method can only be called for the control in virtual report mode, | |
413 | i.e. having ::wxLC_REPORT and ::wxLC_VIRTUAL styles. | |
414 | ||
415 | When enabling alternating colours, the appropriate colour for the even | |
416 | rows is chosen automatically depending on the default foreground and | |
417 | background colours which are used for the odd rows. | |
418 | ||
419 | @param enable | |
420 | If @true, enable alternating row background colours, i.e. different | |
421 | colours for the odd and even rows. If @false, disable this feature | |
422 | and use the same background colour for all rows. | |
423 | ||
424 | @since 2.9.5 | |
425 | ||
426 | @see SetAlternateRowColour() | |
427 | */ | |
428 | void EnableAlternateRowColours(bool enable = true); | |
429 | ||
d34d31f6 VZ |
430 | /** |
431 | Enable or disable a beep if there is no match for the currently | |
432 | entered text when searching for the item from keyboard. | |
433 | ||
434 | The default is to not beep in this case except in wxMSW where the | |
435 | beep is always generated by the native control and cannot be disabled, | |
436 | i.e. calls to this function do nothing there. | |
437 | ||
438 | @since 2.9.5 | |
439 | */ | |
d01c1746 | 440 | void EnableBellOnNoMatch(bool on = true); |
d34d31f6 | 441 | |
747eb0f6 VZ |
442 | /** |
443 | Finish editing the label. | |
444 | ||
445 | This method allows to programmatically end editing a list control item | |
446 | in place. Usually it will only be called when editing is in progress, | |
417b8fcc VZ |
447 | i.e. if GetEditControl() returns non-NULL. In particular, do not call |
448 | it from EVT_LIST_BEGIN_LABEL_EDIT handler as the edit control is not | |
449 | yet fully created by then, just veto the event in this handler instead | |
450 | to prevent the editing from even starting. | |
451 | ||
452 | Notice that calling this method will result in EVT_LIST_END_LABEL_EDIT | |
453 | event being generated. | |
747eb0f6 VZ |
454 | |
455 | Currently only implemented in wxMSW. | |
456 | ||
457 | @param cancel If @true, discard the changes made by user, as if @c | |
458 | Escape key was pressed. Otherwise, accept the changes as if @c | |
459 | Return was pressed. | |
460 | @return @true if item editing wad finished or @false if no item as | |
461 | being edited. | |
462 | */ | |
463 | bool EndEditLabel(bool cancel); | |
464 | ||
23324ae1 FM |
465 | /** |
466 | Ensures this item is visible. | |
467 | */ | |
468 | bool EnsureVisible(long item); | |
469 | ||
23324ae1 | 470 | /** |
320ab87c FM |
471 | Find an item whose label matches this string, starting from start or the |
472 | beginning if start is @c -1. The string comparison is case insensitive. | |
473 | ||
474 | If @a partial is @true then this method will look for items which begin with @a str. | |
c2ebca9b VZ |
475 | |
476 | @return The next matching item if any or @c -1 (wxNOT_FOUND) otherwise. | |
23324ae1 FM |
477 | */ |
478 | long FindItem(long start, const wxString& str, | |
4cc4bfaf | 479 | bool partial = false); |
320ab87c | 480 | |
1d7c0c08 | 481 | /** |
320ab87c FM |
482 | Find an item whose data matches this data, starting from start or the |
483 | beginning if 'start' is @c -1. | |
1058f652 MB |
484 | |
485 | @beginWxPerlOnly | |
486 | In wxPerl this method is implemented as FindItemData(start, data). | |
487 | @endWxPerlOnly | |
c2ebca9b VZ |
488 | |
489 | @return The next matching item if any or @c -1 (wxNOT_FOUND) otherwise. | |
1d7c0c08 | 490 | */ |
0a98423e | 491 | long FindItem(long start, wxUIntPtr data); |
320ab87c | 492 | |
1d7c0c08 RR |
493 | /** |
494 | Find an item nearest this position in the specified direction, | |
495 | starting from @a start or the beginning if @a start is -1. | |
1058f652 MB |
496 | |
497 | @beginWxPerlOnly | |
498 | In wxPerl this method is implemented as FindItemAtPos(start, pt, direction). | |
499 | @endWxPerlOnly | |
c2ebca9b VZ |
500 | |
501 | @return The next matching item if any or @c -1 (wxNOT_FOUND) otherwise. | |
1d7c0c08 | 502 | */ |
7c913512 | 503 | long FindItem(long start, const wxPoint& pt, int direction); |
23324ae1 FM |
504 | |
505 | /** | |
320ab87c FM |
506 | Gets information about this column. |
507 | See SetItem() for more information. | |
1058f652 MB |
508 | |
509 | @beginWxPerlOnly | |
510 | In wxPerl this method takes only the @a col parameter and | |
511 | returns a @c Wx::ListItem (or @c undef). | |
512 | @endWxPerlOnly | |
23324ae1 | 513 | */ |
328f5751 | 514 | bool GetColumn(int col, wxListItem& item) const; |
23324ae1 FM |
515 | |
516 | /** | |
517 | Returns the number of columns. | |
518 | */ | |
328f5751 | 519 | int GetColumnCount() const; |
23324ae1 FM |
520 | |
521 | /** | |
80cc5fc7 VZ |
522 | Gets the column index from its position in visual order. |
523 | ||
524 | After calling SetColumnsOrder(), the index returned by this function | |
525 | corresponds to the value of the element number @a pos in the array | |
526 | returned by GetColumnsOrder(). | |
527 | ||
528 | Please see SetColumnsOrder() documentation for an example and | |
529 | additional remarks about the columns ordering. | |
530 | ||
531 | @see GetColumnOrder() | |
23324ae1 | 532 | */ |
80cc5fc7 | 533 | int GetColumnIndexFromOrder(int pos) const; |
23324ae1 FM |
534 | |
535 | /** | |
80cc5fc7 VZ |
536 | Gets the column visual order position. |
537 | ||
538 | This function returns the index of the column which appears at the | |
539 | given visual position, e.g. calling it with @a col equal to 0 returns | |
540 | the index of the first shown column. | |
541 | ||
542 | Please see SetColumnsOrder() documentation for an example and | |
543 | additional remarks about the columns ordering. | |
544 | ||
545 | @see GetColumnsOrder(), GetColumnIndexFromOrder() | |
23324ae1 | 546 | */ |
328f5751 | 547 | int GetColumnOrder(int col) const; |
23324ae1 FM |
548 | |
549 | /** | |
550 | Gets the column width (report view only). | |
551 | */ | |
328f5751 | 552 | int GetColumnWidth(int col) const; |
23324ae1 FM |
553 | |
554 | /** | |
320ab87c | 555 | Returns the array containing the orders of all columns. |
80cc5fc7 | 556 | |
320ab87c | 557 | On error, an empty array is returned. |
80cc5fc7 VZ |
558 | |
559 | Please see SetColumnsOrder() documentation for an example and | |
560 | additional remarks about the columns ordering. | |
561 | ||
562 | @see GetColumnOrder(), GetColumnIndexFromOrder() | |
23324ae1 | 563 | */ |
328f5751 | 564 | wxArrayInt GetColumnsOrder() const; |
23324ae1 FM |
565 | |
566 | /** | |
320ab87c FM |
567 | Gets the number of items that can fit vertically in the visible area of |
568 | the list control (list or report view) or the total number of items in | |
569 | the list control (icon or small icon view). | |
23324ae1 | 570 | */ |
328f5751 | 571 | int GetCountPerPage() const; |
23324ae1 FM |
572 | |
573 | /** | |
320ab87c FM |
574 | Returns the edit control being currently used to edit a label. |
575 | Returns @NULL if no label is being edited. | |
576 | ||
1f1d2182 | 577 | @note It is currently only implemented for wxMSW and the generic version, |
320ab87c | 578 | not for the native Mac OS X version. |
23324ae1 | 579 | */ |
328f5751 | 580 | wxTextCtrl* GetEditControl() const; |
23324ae1 FM |
581 | |
582 | /** | |
4cc4bfaf | 583 | Returns the specified image list. @a which may be one of: |
1d7c0c08 RR |
584 | - wxIMAGE_LIST_NORMAL: The normal (large icon) image list. |
585 | - wxIMAGE_LIST_SMALL: The small icon image list. | |
586 | - wxIMAGE_LIST_STATE: The user-defined state image list (unimplemented). | |
23324ae1 | 587 | */ |
328f5751 | 588 | wxImageList* GetImageList(int which) const; |
23324ae1 FM |
589 | |
590 | /** | |
320ab87c | 591 | Gets information about the item. See SetItem() for more information. |
c86b476d FM |
592 | |
593 | You must call @e info.SetId() to set the ID of item you're interested in | |
594 | before calling this method, and @e info.SetMask() with the flags indicating | |
595 | what fields you need to retrieve from @a info. | |
1058f652 MB |
596 | |
597 | @beginWxPerlOnly | |
598 | In wxPerl this method takes as parameter the ID of the item | |
599 | and (optionally) the column, and returns a Wx::ListItem object. | |
600 | @endWxPerlOnly | |
23324ae1 | 601 | */ |
328f5751 | 602 | bool GetItem(wxListItem& info) const; |
23324ae1 FM |
603 | |
604 | /** | |
320ab87c FM |
605 | Returns the colour for this item. |
606 | If the item has no specific colour, returns an invalid colour | |
607 | (and not the default background control of the control itself). | |
3c4f71cc | 608 | |
4cc4bfaf | 609 | @see GetItemTextColour() |
23324ae1 | 610 | */ |
328f5751 | 611 | wxColour GetItemBackgroundColour(long item) const; |
23324ae1 FM |
612 | |
613 | /** | |
614 | Returns the number of items in the list control. | |
615 | */ | |
328f5751 | 616 | int GetItemCount() const; |
23324ae1 FM |
617 | |
618 | /** | |
619 | Gets the application-defined data associated with this item. | |
620 | */ | |
5267aefd | 621 | wxUIntPtr GetItemData(long item) const; |
23324ae1 FM |
622 | |
623 | /** | |
624 | Returns the item's font. | |
625 | */ | |
328f5751 | 626 | wxFont GetItemFont(long item) const; |
23324ae1 FM |
627 | |
628 | /** | |
629 | Returns the position of the item, in icon or small icon view. | |
1058f652 MB |
630 | |
631 | @beginWxPerlOnly | |
632 | In wxPerl this method takes only the @a item parameter and | |
633 | returns a @c Wx::Point (or @c undef). | |
634 | @endWxPerlOnly | |
23324ae1 | 635 | */ |
328f5751 | 636 | bool GetItemPosition(long item, wxPoint& pos) const; |
23324ae1 FM |
637 | |
638 | /** | |
639 | Returns the rectangle representing the item's size and position, in physical | |
640 | coordinates. | |
320ab87c | 641 | |
4cc4bfaf | 642 | @a code is one of wxLIST_RECT_BOUNDS, wxLIST_RECT_ICON, wxLIST_RECT_LABEL. |
1058f652 MB |
643 | |
644 | @beginWxPerlOnly | |
645 | In wxPerl this method takes only the @a item and @a code parameters and | |
646 | returns a @c Wx::Rect (or @c undef). | |
647 | @endWxPerlOnly | |
23324ae1 FM |
648 | */ |
649 | bool GetItemRect(long item, wxRect& rect, | |
328f5751 | 650 | int code = wxLIST_RECT_BOUNDS) const; |
23324ae1 FM |
651 | |
652 | /** | |
320ab87c FM |
653 | Retrieves the spacing between icons in pixels: horizontal spacing is |
654 | returned as @c x component of the wxSize object and the vertical spacing | |
655 | as its @c y component. | |
23324ae1 | 656 | */ |
328f5751 | 657 | wxSize GetItemSpacing() const; |
23324ae1 FM |
658 | |
659 | /** | |
660 | Gets the item state. For a list of state flags, see SetItem(). | |
320ab87c | 661 | The @a stateMask indicates which state flags are of interest. |
23324ae1 | 662 | */ |
328f5751 | 663 | int GetItemState(long item, long stateMask) const; |
23324ae1 FM |
664 | |
665 | /** | |
666 | Gets the item text for this item. | |
b6812a6f VZ |
667 | |
668 | @param item | |
669 | Item (zero-based) index. | |
670 | @param col | |
671 | Item column (zero-based) index. Column 0 is the default. This | |
672 | parameter is new in wxWidgets 2.9.1. | |
23324ae1 | 673 | */ |
b6812a6f | 674 | wxString GetItemText(long item, int col = 0) const; |
23324ae1 FM |
675 | |
676 | /** | |
320ab87c FM |
677 | Returns the colour for this item. |
678 | ||
679 | If the item has no specific colour, returns an invalid colour (and not the | |
680 | default foreground control of the control itself as this wouldn't allow | |
681 | distinguishing between items having the same colour as the current control | |
682 | foreground and items with default colour which, hence, have always the | |
683 | same colour as the control). | |
23324ae1 | 684 | */ |
328f5751 | 685 | wxColour GetItemTextColour(long item) const; |
23324ae1 FM |
686 | |
687 | /** | |
688 | Searches for an item with the given geometry or state, starting from | |
320ab87c | 689 | @a item but excluding the @a item itself. |
3c4f71cc | 690 | |
320ab87c FM |
691 | If @a item is -1, the first item that matches the specified flags will be returned. |
692 | Returns the first item with given state following @a item or -1 if no such item found. | |
693 | This function may be used to find all selected items in the control like this: | |
3c4f71cc | 694 | |
320ab87c FM |
695 | @code |
696 | long item = -1; | |
697 | for ( ;; ) | |
698 | { | |
699 | item = listctrl->GetNextItem(item, | |
700 | wxLIST_NEXT_ALL, | |
701 | wxLIST_STATE_SELECTED); | |
702 | if ( item == -1 ) | |
703 | break; | |
704 | ||
705 | // this item is selected - do whatever is needed with it | |
706 | wxLogMessage("Item %ld is selected.", item); | |
707 | } | |
708 | @endcode | |
3c4f71cc | 709 | |
320ab87c FM |
710 | @a geometry can be one of: |
711 | - wxLIST_NEXT_ABOVE: Searches for an item above the specified item. | |
712 | - wxLIST_NEXT_ALL: Searches for subsequent item by index. | |
713 | - wxLIST_NEXT_BELOW: Searches for an item below the specified item. | |
714 | - wxLIST_NEXT_LEFT: Searches for an item to the left of the specified item. | |
715 | - wxLIST_NEXT_RIGHT: Searches for an item to the right of the specified item. | |
3c4f71cc | 716 | |
1f1d2182 | 717 | @note this parameter is only supported by wxMSW currently and ignored on |
320ab87c | 718 | other platforms. |
3c4f71cc | 719 | |
320ab87c FM |
720 | @a state can be a bitlist of the following: |
721 | - wxLIST_STATE_DONTCARE: Don't care what the state is. | |
722 | - wxLIST_STATE_DROPHILITED: The item indicates it is a drop target. | |
723 | - wxLIST_STATE_FOCUSED: The item has the focus. | |
724 | - wxLIST_STATE_SELECTED: The item is selected. | |
725 | - wxLIST_STATE_CUT: The item is selected as part of a cut and paste operation. | |
23324ae1 FM |
726 | */ |
727 | long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, | |
328f5751 | 728 | int state = wxLIST_STATE_DONTCARE) const; |
23324ae1 FM |
729 | |
730 | /** | |
731 | Returns the number of selected items in the list control. | |
732 | */ | |
328f5751 | 733 | int GetSelectedItemCount() const; |
23324ae1 FM |
734 | |
735 | /** | |
736 | Returns the rectangle representing the size and position, in physical | |
4cc4bfaf | 737 | coordinates, of the given subitem, i.e. the part of the row @a item in the |
320ab87c FM |
738 | column @a subItem. |
739 | ||
d13b34d3 | 740 | This method is only meaningful when the wxListCtrl is in the report mode. |
320ab87c | 741 | If @a subItem parameter is equal to the special value |
23324ae1 FM |
742 | @c wxLIST_GETSUBITEMRECT_WHOLEITEM the return value is the same as |
743 | for GetItemRect(). | |
320ab87c FM |
744 | |
745 | @a code can be one of @c wxLIST_RECT_BOUNDS, @c wxLIST_RECT_ICON or | |
746 | @c wxLIST_RECT_LABEL. | |
3c4f71cc | 747 | |
1e24c2af | 748 | @since 2.7.0 |
23324ae1 FM |
749 | */ |
750 | bool GetSubItemRect(long item, long subItem, wxRect& rect, | |
328f5751 | 751 | int code = wxLIST_RECT_BOUNDS) const; |
23324ae1 FM |
752 | |
753 | /** | |
754 | Gets the text colour of the list control. | |
755 | */ | |
328f5751 | 756 | wxColour GetTextColour() const; |
23324ae1 FM |
757 | |
758 | /** | |
320ab87c | 759 | Gets the index of the topmost visible item when in list or report view. |
23324ae1 | 760 | */ |
328f5751 | 761 | long GetTopItem() const; |
23324ae1 FM |
762 | |
763 | /** | |
764 | Returns the rectangle taken by all items in the control. In other words, if the | |
765 | controls client size were equal to the size of this rectangle, no scrollbars | |
766 | would be needed and no free space would be left. | |
320ab87c | 767 | |
23324ae1 FM |
768 | Note that this function only works in the icon and small icon views, not in |
769 | list or report views (this is a limitation of the native Win32 control). | |
770 | */ | |
328f5751 | 771 | wxRect GetViewRect() const; |
23324ae1 | 772 | |
0ee169da VZ |
773 | /** |
774 | Set the alternative row background colour to a specific colour. | |
775 | ||
776 | It is recommended to call EnableAlternateRowColours() instead of using | |
777 | these methods as native implementations of this control might support | |
778 | alternating row colours but not setting the exact colour to be used for | |
779 | them. | |
780 | ||
781 | As EnableAlternateRowColours(), this method can only be used with | |
782 | controls having ::wxLC_REPORT and ::wxLC_VIRTUAL styles. | |
783 | ||
784 | @param colour | |
785 | A valid alternative row background colour to enable alternating | |
786 | rows or invalid colour to disable them and use the same colour for | |
787 | all rows. | |
788 | ||
789 | @since 2.9.5 | |
790 | */ | |
791 | void SetAlternateRowColour(const wxColour& colour); | |
792 | ||
23324ae1 | 793 | /** |
320ab87c FM |
794 | Determines which item (if any) is at the specified point, giving details |
795 | in @a flags. Returns index of the item or @c wxNOT_FOUND if no item is at | |
796 | the specified point. | |
3c4f71cc | 797 | |
320ab87c FM |
798 | @a flags will be a combination of the following flags: |
799 | - wxLIST_HITTEST_ABOVE: Above the client area. | |
800 | - wxLIST_HITTEST_BELOW: Below the client area. | |
801 | - wxLIST_HITTEST_NOWHERE: In the client area but below the last item. | |
802 | - wxLIST_HITTEST_ONITEMICON: On the bitmap associated with an item. | |
803 | - wxLIST_HITTEST_ONITEMLABEL: On the label (string) associated with an item. | |
804 | - wxLIST_HITTEST_ONITEMRIGHT: In the area to the right of an item. | |
805 | - wxLIST_HITTEST_ONITEMSTATEICON: On the state icon for a tree view item | |
806 | that is in a user-defined state. | |
807 | - wxLIST_HITTEST_TOLEFT: To the right of the client area. | |
808 | - wxLIST_HITTEST_TORIGHT: To the left of the client area. | |
809 | - wxLIST_HITTEST_ONITEM: Combination of @c wxLIST_HITTEST_ONITEMICON, | |
810 | @c wxLIST_HITTEST_ONITEMLABEL, @c wxLIST_HITTEST_ONITEMSTATEICON. | |
3c4f71cc | 811 | |
4cc4bfaf | 812 | If @a ptrSubItem is not @NULL and the wxListCtrl is in the report |
7c913512 | 813 | mode the subitem (or column) number will also be provided. |
23324ae1 FM |
814 | This feature is only available in version 2.7.0 or higher and is currently only |
815 | implemented under wxMSW and requires at least comctl32.dll of verion 4.70 on | |
320ab87c FM |
816 | the host system or the value stored in @a ptrSubItem will be always -1. |
817 | To compile this feature into wxWidgets library you need to have access to | |
23324ae1 | 818 | commctrl.h of version 4.70 that is provided by Microsoft. |
1058f652 MB |
819 | |
820 | @beginWxPerlOnly | |
821 | In wxPerl this method only takes the @a point parameter | |
822 | and returns a 2-element list (item, flags). | |
823 | @endWxPerlOnly | |
23324ae1 | 824 | */ |
5267aefd | 825 | long HitTest(const wxPoint& point, int& flags, long* ptrSubItem = NULL) const; |
23324ae1 | 826 | |
54d323d2 VZ |
827 | /** |
828 | Returns true if the control is currently using ::wxLC_REPORT style. | |
829 | */ | |
830 | bool InReportView() const; | |
831 | ||
23324ae1 | 832 | /** |
0fb731b8 VZ |
833 | For report view mode (only), inserts a column. |
834 | ||
835 | For more details, see SetItem(). Also see InsertColumn(long, const | |
836 | wxString&, int, int) overload for a usually more convenient | |
837 | alternative to this method and the description of how the item width | |
838 | is interpreted by this method. | |
23324ae1 | 839 | */ |
0fb731b8 | 840 | long InsertColumn(long col, const wxListItem& info); |
320ab87c | 841 | |
1d7c0c08 | 842 | /** |
0fb731b8 VZ |
843 | For report view mode (only), inserts a column. |
844 | ||
845 | Insert a new column in the list control in report view mode at the | |
846 | given position specifying its most common attributes. | |
847 | ||
848 | Notice that to set the image for the column you need to use | |
849 | Insert(long, const wxListItem&) overload and specify ::wxLIST_MASK_IMAGE | |
850 | in the item mask. | |
851 | ||
852 | @param col | |
853 | The index where the column should be inserted. Valid indices are | |
854 | from 0 up to GetColumnCount() inclusive and the latter can be used | |
855 | to append the new column after the last existing one. | |
856 | @param heading | |
857 | The string specifying the column heading. | |
858 | @param format | |
859 | The flags specifying the control heading text alignment. | |
860 | @param width | |
861 | If positive, the width of the column in pixels. Otherwise it can be | |
862 | @c wxLIST_AUTOSIZE to choose the default size for the column or @c | |
863 | wxLIST_AUTOSIZE_USEHEADER to fit the column width to @a heading or | |
864 | to extend to fill all the remaining space for the last column. | |
865 | Notice that in case of @c wxLIST_AUTOSIZE fixed width is used as | |
866 | there are no items in this column to use for determining its best | |
867 | size yet. If you want to fit the column to its contents, use | |
868 | SetColumnWidth() after adding the items with values in this column. | |
869 | @return | |
870 | The index of the inserted column or -1 if adding it failed. | |
1d7c0c08 | 871 | */ |
7c913512 FM |
872 | long InsertColumn(long col, const wxString& heading, |
873 | int format = wxLIST_FORMAT_LEFT, | |
0fb731b8 | 874 | int width = wxLIST_AUTOSIZE); |
23324ae1 | 875 | |
23324ae1 | 876 | /** |
320ab87c FM |
877 | Inserts an item, returning the index of the new item if successful, -1 otherwise. |
878 | ||
7c913512 | 879 | @param info |
4cc4bfaf | 880 | wxListItem object |
b45506e8 VZ |
881 | */ |
882 | long InsertItem(wxListItem& info); | |
883 | ||
884 | /** | |
885 | Insert an string item. | |
320ab87c | 886 | |
7c913512 | 887 | @param index |
4cc4bfaf | 888 | Index of the new item, supplied by the application |
7c913512 | 889 | @param label |
4cc4bfaf | 890 | String label |
1058f652 MB |
891 | |
892 | @beginWxPerlOnly | |
893 | In wxPerl this method is implemented as InsertStringItem(index, label). | |
894 | @endWxPerlOnly | |
23324ae1 | 895 | */ |
7c913512 | 896 | long InsertItem(long index, const wxString& label); |
320ab87c | 897 | |
b45506e8 VZ |
898 | /** |
899 | Insert an image item. | |
320ab87c | 900 | |
b45506e8 VZ |
901 | @param index |
902 | Index of the new item, supplied by the application | |
903 | @param imageIndex | |
904 | Index into the image list associated with this control and view style | |
1058f652 MB |
905 | |
906 | @beginWxPerlOnly | |
907 | In wxPerl this method is implemented as InsertImageItem(index, imageIndex). | |
908 | @endWxPerlOnly | |
320ab87c | 909 | */ |
7c913512 | 910 | long InsertItem(long index, int imageIndex); |
320ab87c | 911 | |
b45506e8 VZ |
912 | /** |
913 | Insert an image/string item. | |
320ab87c | 914 | |
b45506e8 VZ |
915 | @param index |
916 | Index of the new item, supplied by the application | |
917 | @param label | |
918 | String label | |
919 | @param imageIndex | |
920 | Index into the image list associated with this control and view style | |
1058f652 MB |
921 | |
922 | @beginWxPerlOnly | |
923 | In wxPerl this method is implemented as InsertImageStringItem(index, label, imageIndex). | |
924 | @endWxPerlOnly | |
320ab87c | 925 | */ |
7c913512 FM |
926 | long InsertItem(long index, const wxString& label, |
927 | int imageIndex); | |
23324ae1 | 928 | |
54d323d2 VZ |
929 | /** |
930 | Returns true if the control is currently in virtual report view. | |
931 | */ | |
932 | bool IsVirtual() const; | |
933 | ||
23324ae1 | 934 | /** |
320ab87c FM |
935 | Redraws the given @e item. |
936 | ||
937 | This is only useful for the virtual list controls as without calling this | |
938 | function the displayed value of the item doesn't change even when the | |
939 | underlying data does change. | |
3c4f71cc | 940 | |
4cc4bfaf | 941 | @see RefreshItems() |
23324ae1 FM |
942 | */ |
943 | void RefreshItem(long item); | |
944 | ||
945 | /** | |
320ab87c FM |
946 | Redraws the items between @a itemFrom and @e itemTo. |
947 | The starting item must be less than or equal to the ending one. | |
948 | ||
949 | Just as RefreshItem() this is only useful for virtual list controls. | |
23324ae1 FM |
950 | */ |
951 | void RefreshItems(long itemFrom, long itemTo); | |
952 | ||
953 | /** | |
954 | Scrolls the list control. If in icon, small icon or report view mode, | |
4cc4bfaf FM |
955 | @a dx specifies the number of pixels to scroll. If in list view mode, |
956 | @a dx specifies the number of columns to scroll. @a dy always specifies | |
23324ae1 | 957 | the number of pixels to scroll vertically. |
320ab87c | 958 | |
1f1d2182 | 959 | @note This method is currently only implemented in the Windows version. |
23324ae1 FM |
960 | */ |
961 | bool ScrollList(int dx, int dy); | |
962 | ||
963 | /** | |
320ab87c FM |
964 | Sets the background colour. |
965 | ||
966 | Note that the wxWindow::GetBackgroundColour() function of wxWindow base | |
967 | class can be used to retrieve the current background colour. | |
23324ae1 | 968 | */ |
5267aefd | 969 | virtual bool SetBackgroundColour(const wxColour& col); |
23324ae1 FM |
970 | |
971 | /** | |
320ab87c FM |
972 | Sets information about this column. |
973 | See SetItem() for more information. | |
23324ae1 FM |
974 | */ |
975 | bool SetColumn(int col, wxListItem& item); | |
976 | ||
977 | /** | |
978 | Sets the column width. | |
320ab87c FM |
979 | |
980 | @a width can be a width in pixels or @c wxLIST_AUTOSIZE (-1) or | |
981 | @c wxLIST_AUTOSIZE_USEHEADER (-2). | |
982 | ||
983 | @c wxLIST_AUTOSIZE will resize the column to the length of its longest item. | |
984 | ||
985 | @c wxLIST_AUTOSIZE_USEHEADER will resize the column to the length of the | |
986 | header (Win32) or 80 pixels (other platforms). | |
987 | ||
4cc4bfaf | 988 | In small or normal icon view, @a col must be -1, and the column width is set |
23324ae1 FM |
989 | for all columns. |
990 | */ | |
991 | bool SetColumnWidth(int col, int width); | |
992 | ||
993 | /** | |
80cc5fc7 VZ |
994 | Changes the order in which the columns are shown. |
995 | ||
996 | By default, the columns of a list control appear on the screen in order | |
997 | of their indices, i.e. the column 0 appears first, the column 1 next | |
998 | and so on. However by using this function it is possible to arbitrarily | |
999 | reorder the columns visual order and the user can also rearrange the | |
1000 | columns interactively by dragging them. In this case, the index of the | |
1001 | column is not the same as its order and the functions GetColumnOrder() | |
1002 | and GetColumnIndexFromOrder() should be used to translate between them. | |
1003 | Notice that all the other functions still work with the column indices, | |
1004 | i.e. the visual positioning of the columns on screen doesn't affect the | |
1005 | code setting or getting their values for example. | |
320ab87c FM |
1006 | |
1007 | The @a orders array must have the same number elements as the number of | |
80cc5fc7 VZ |
1008 | columns and contain each position exactly once. Its n-th element |
1009 | contains the index of the column to be shown in n-th position, so for a | |
1010 | control with three columns passing an array with elements 2, 0 and 1 | |
1011 | results in the third column being displayed first, the first one next | |
1012 | and the second one last. | |
1013 | ||
1014 | Example of using it: | |
1015 | @code | |
1016 | wxListCtrl *list = new wxListCtrl(...); | |
1017 | for ( int i = 0; i < 3; i++ ) | |
1018 | list->InsertColumn(i, wxString::Format("Column %d", i)); | |
1019 | ||
1020 | wxArrayInt order(3); | |
1021 | order[0] = 2; | |
1022 | order[1] = 0; | |
1023 | order[2] = 1; | |
1024 | list->SetColumnsOrder(order); | |
1025 | ||
1026 | // now list->GetColumnsOrder() will return order and | |
1027 | // list->GetColumnIndexFromOrder(n) will return order[n] and | |
1028 | // list->GetColumnOrder() will return 1, 2 and 0 for the column 0, | |
1029 | // 1 and 2 respectively | |
1030 | @endcode | |
1031 | ||
1032 | Please notice that this function makes sense for report view only and | |
1033 | currently is only implemented in wxMSW port. To avoid explicit tests | |
1034 | for @c __WXMSW__ in your code, please use @c wxHAS_LISTCTRL_COLUMN_ORDER | |
1035 | as this will allow it to start working under the other platforms when | |
1036 | support for the column reordering is added there. | |
320ab87c | 1037 | |
80cc5fc7 | 1038 | @see GetColumnsOrder() |
23324ae1 | 1039 | */ |
b5176f6d | 1040 | bool SetColumnsOrder(const wxArrayInt& orders); |
23324ae1 FM |
1041 | |
1042 | /** | |
320ab87c FM |
1043 | Sets the image list associated with the control. |
1044 | ||
1045 | @a which is one of @c wxIMAGE_LIST_NORMAL, @c wxIMAGE_LIST_SMALL, | |
1046 | @c wxIMAGE_LIST_STATE (the last is unimplemented). | |
1047 | ||
23324ae1 FM |
1048 | This method does not take ownership of the image list, you have to |
1049 | delete it yourself. | |
3c4f71cc | 1050 | |
4cc4bfaf | 1051 | @see AssignImageList() |
23324ae1 FM |
1052 | */ |
1053 | void SetImageList(wxImageList* imageList, int which); | |
1054 | ||
23324ae1 | 1055 | /** |
1d7c0c08 | 1056 | Sets the data of an item. |
320ab87c FM |
1057 | |
1058 | Using the wxListItem's mask and state mask, you can change only selected | |
1059 | attributes of a wxListCtrl item. | |
23324ae1 FM |
1060 | */ |
1061 | bool SetItem(wxListItem& info); | |
320ab87c | 1062 | |
1d7c0c08 | 1063 | /** |
320ab87c | 1064 | Sets an item string field at a particular column. |
1d7c0c08 | 1065 | */ |
320ab87c | 1066 | long SetItem(long index, int column, const wxString& label, int imageId = -1); |
23324ae1 FM |
1067 | |
1068 | /** | |
320ab87c FM |
1069 | Sets the background colour for this item. |
1070 | This function only works in report view mode. | |
1071 | The colour can be retrieved using GetItemBackgroundColour(). | |
23324ae1 FM |
1072 | */ |
1073 | void SetItemBackgroundColour(long item, const wxColour& col); | |
1074 | ||
1075 | /** | |
320ab87c FM |
1076 | Sets the image associated with the item. |
1077 | In report view, you can specify the column. | |
1078 | The image is an index into the image list associated with the list control. | |
23324ae1 FM |
1079 | */ |
1080 | bool SetItemColumnImage(long item, long column, int image); | |
1081 | ||
1082 | /** | |
558a6e06 VZ |
1083 | This method can only be used with virtual list controls. |
1084 | ||
1085 | It is used to indicate to the control the number of items it contains. | |
1086 | After calling it, the main program should be ready to handle calls to | |
1087 | various item callbacks (such as wxListCtrl::OnGetItemText) for all | |
1088 | items in the range from 0 to @a count. | |
1089 | ||
1090 | Notice that the control is not necessarily redrawn after this call as | |
1091 | it may be undesirable if an item which is not visible on the screen | |
1092 | anyhow was added to or removed from a control displaying many items, if | |
1093 | you do need to refresh the display you can just call Refresh() manually. | |
23324ae1 FM |
1094 | */ |
1095 | void SetItemCount(long count); | |
1096 | ||
1097 | /** | |
320ab87c FM |
1098 | Associates application-defined data with this item. |
1099 | ||
1100 | Notice that this function cannot be used to associate pointers with the control | |
1101 | items, use SetItemPtrData() instead. | |
23324ae1 FM |
1102 | */ |
1103 | bool SetItemData(long item, long data); | |
1104 | ||
1105 | /** | |
1d7c0c08 | 1106 | Sets the item's font. |
23324ae1 FM |
1107 | */ |
1108 | void SetItemFont(long item, const wxFont& font); | |
1109 | ||
23324ae1 | 1110 | /** |
320ab87c FM |
1111 | Sets the unselected and selected images associated with the item. |
1112 | The images are indices into the image list associated with the list control. | |
23324ae1 | 1113 | */ |
5267aefd | 1114 | bool SetItemImage(long item, int image, int selImage = -1); |
320ab87c | 1115 | |
23324ae1 FM |
1116 | |
1117 | /** | |
1118 | Sets the position of the item, in icon or small icon view. Windows only. | |
1119 | */ | |
1120 | bool SetItemPosition(long item, const wxPoint& pos); | |
1121 | ||
1122 | /** | |
320ab87c FM |
1123 | Associates application-defined data with this item. |
1124 | ||
1125 | The @a data parameter may be either an integer or a pointer cast to the | |
1126 | @c wxUIntPtr type which is guaranteed to be large enough to be able to | |
1127 | contain all integer types and pointers. | |
3c4f71cc | 1128 | |
1e24c2af | 1129 | @since 2.8.4 |
23324ae1 FM |
1130 | */ |
1131 | bool SetItemPtrData(long item, wxUIntPtr data); | |
1132 | ||
1133 | /** | |
f9c2e12f VZ |
1134 | Sets the item state. |
1135 | ||
1136 | The @a stateMask is a combination of @c wxLIST_STATE_XXX constants | |
1137 | described in wxListItem documentation. For each of the bits specified | |
1138 | in @a stateMask, the corresponding state is set or cleared depending on | |
1139 | whether @a state argument contains the same bit or not. | |
1140 | ||
1141 | So to select an item you can use | |
1142 | @code | |
1143 | list->SetItemState(item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); | |
1144 | @endcode | |
1145 | while to deselect it you should use | |
1146 | @code | |
1147 | list->SetItemState(item, 0, wxLIST_STATE_SELECTED); | |
1148 | @endcode | |
1149 | ||
1150 | Consider using wxListView if possible to avoid dealing with this | |
1151 | error-prone and confusing method. | |
23324ae1 FM |
1152 | */ |
1153 | bool SetItemState(long item, long state, long stateMask); | |
1154 | ||
1155 | /** | |
1156 | Sets the item text for this item. | |
1157 | */ | |
1158 | void SetItemText(long item, const wxString& text); | |
1159 | ||
1160 | /** | |
320ab87c FM |
1161 | Sets the colour for this item. |
1162 | This function only works in report view. | |
1163 | The colour can be retrieved using GetItemTextColour(). | |
23324ae1 FM |
1164 | */ |
1165 | void SetItemTextColour(long item, const wxColour& col); | |
1166 | ||
1167 | /** | |
1168 | Adds or removes a single window style. | |
1169 | */ | |
4cc4bfaf | 1170 | void SetSingleStyle(long style, bool add = true); |
23324ae1 FM |
1171 | |
1172 | /** | |
1173 | Sets the text colour of the list control. | |
1174 | */ | |
1175 | void SetTextColour(const wxColour& col); | |
1176 | ||
1177 | /** | |
1178 | Sets the whole window style, deleting all items. | |
1179 | */ | |
1180 | void SetWindowStyleFlag(long style); | |
1181 | ||
1182 | /** | |
1183 | Call this function to sort the items in the list control. Sorting is done | |
4cc4bfaf | 1184 | using the specified @a fnSortCallBack function. This function must have the |
23324ae1 | 1185 | following prototype: |
320ab87c | 1186 | @code |
d3ca8487 | 1187 | int wxCALLBACK wxListCompareFunction(wxIntPtr item1, wxIntPtr item2, wxIntPtr sortData) |
320ab87c | 1188 | @endcode |
3c4f71cc | 1189 | |
23324ae1 FM |
1190 | It is called each time when the two items must be compared and should return 0 |
1191 | if the items are equal, negative value if the first item is less than the | |
1192 | second one and positive value if the first one is greater than the second one | |
1193 | (the same convention as used by @c qsort(3)). | |
3c4f71cc | 1194 | |
320ab87c FM |
1195 | The parameter @e item1 is the client data associated with the first item (NOT the index). |
1196 | The parameter @e item2 is the client data associated with the second item (NOT the index). | |
1197 | The parameter @e data is the value passed to SortItems() itself. | |
1198 | ||
1199 | Notice that the control may only be sorted on client data associated with | |
1200 | the items, so you must use SetItemData if you want to be able to sort the | |
1201 | items in the control. | |
1202 | ||
1203 | Please see the @ref page_samples_listctrl for an example of using this function. | |
1058f652 MB |
1204 | |
1205 | @beginWxPerlOnly | |
1206 | In wxPerl the comparison function must take just two parameters; | |
1207 | however, you may use a closure to achieve an effect similar to the | |
1208 | SortItems third parameter. | |
1209 | @endWxPerlOnly | |
23324ae1 | 1210 | */ |
b18e2046 | 1211 | bool SortItems(wxListCtrlCompare fnSortCallBack, wxIntPtr data); |
5e6e278d FM |
1212 | |
1213 | protected: | |
1214 | ||
1215 | /** | |
75504144 | 1216 | This function may be overridden in the derived class for a control with |
5e6e278d FM |
1217 | @c wxLC_VIRTUAL style. It should return the attribute for the specified |
1218 | @c item or @NULL to use the default appearance parameters. | |
1219 | ||
1220 | wxListCtrl will not delete the pointer or keep a reference of it. | |
1221 | You can return the same wxListItemAttr pointer for every OnGetItemAttr() call. | |
1222 | ||
1223 | The base class version always returns @NULL. | |
1224 | ||
eab1336c VZ |
1225 | @see OnGetItemImage(), OnGetItemColumnImage(), OnGetItemText(), |
1226 | OnGetItemColumnAttr() | |
5e6e278d FM |
1227 | */ |
1228 | virtual wxListItemAttr* OnGetItemAttr(long item) const; | |
1229 | ||
eab1336c VZ |
1230 | /** |
1231 | This function may be overridden in the derived class for a control with | |
1232 | @c wxLC_VIRTUAL style. | |
1233 | ||
1234 | It should return the attribute for the for the specified @a item and @a | |
1235 | column or @NULL to use the default appearance parameters. | |
1236 | ||
1237 | The base class version returns @c OnGetItemAttr(item). | |
1238 | ||
1239 | @note Currently this function is only called under wxMSW, the other | |
1240 | ports only support OnGetItemAttr() | |
1241 | ||
1242 | @see OnGetItemAttr(), OnGetItemText(), | |
1243 | OnGetItemImage(), OnGetItemColumnImage(), | |
1244 | */ | |
1245 | virtual wxListItemAttr* OnGetItemColumnAttr(long item, long column) const; | |
1246 | ||
5e6e278d | 1247 | /** |
75504144 | 1248 | Override this function in the derived class for a control with |
5e6e278d FM |
1249 | @c wxLC_VIRTUAL and @c wxLC_REPORT styles in order to specify the image |
1250 | index for the given line and column. | |
1251 | ||
1252 | The base class version always calls OnGetItemImage() for the first column, else | |
1253 | it returns -1. | |
1254 | ||
eab1336c VZ |
1255 | @see OnGetItemText(), OnGetItemImage(), OnGetItemAttr(), |
1256 | OnGetItemColumnAttr() | |
5e6e278d FM |
1257 | */ |
1258 | virtual int OnGetItemColumnImage(long item, long column) const; | |
1259 | ||
1260 | /** | |
75504144 | 1261 | This function must be overridden in the derived class for a control with |
e2c4ccaf | 1262 | @c wxLC_VIRTUAL style having an "image list" (see SetImageList(); if the |
75504144 | 1263 | control doesn't have an image list, it is not necessary to override it). |
5e6e278d FM |
1264 | It should return the index of the items image in the controls image list |
1265 | or -1 for no image. | |
1266 | ||
1267 | In a control with @c wxLC_REPORT style, OnGetItemImage() only gets called for | |
1268 | the first column of each line. | |
1269 | ||
1270 | The base class version always returns -1. | |
1271 | ||
1272 | @see OnGetItemText(), OnGetItemColumnImage(), OnGetItemAttr() | |
1273 | */ | |
1274 | virtual int OnGetItemImage(long item) const; | |
1275 | ||
1276 | /** | |
75504144 | 1277 | This function @b must be overridden in the derived class for a control with |
5e6e278d FM |
1278 | @c wxLC_VIRTUAL style. It should return the string containing the text of |
1279 | the given @a column for the specified @c item. | |
1280 | ||
1281 | @see SetItemCount(), OnGetItemImage(), OnGetItemColumnImage(), OnGetItemAttr() | |
1282 | */ | |
1283 | virtual wxString OnGetItemText(long item, long column) const; | |
23324ae1 FM |
1284 | }; |
1285 | ||
1286 | ||
e54c96f1 | 1287 | |
23324ae1 FM |
1288 | /** |
1289 | @class wxListEvent | |
7c913512 | 1290 | |
23324ae1 | 1291 | A list event holds information about events associated with wxListCtrl objects. |
7c913512 | 1292 | |
320ab87c FM |
1293 | @beginEventTable{wxListEvent} |
1294 | @event{EVT_LIST_BEGIN_DRAG(id, func)} | |
1295 | Begin dragging with the left mouse button. | |
1296 | @event{EVT_LIST_BEGIN_RDRAG(id, func)} | |
1297 | Begin dragging with the right mouse button. | |
1298 | @event{EVT_LIST_BEGIN_LABEL_EDIT(id, func)} | |
1299 | Begin editing a label. This can be prevented by calling Veto(). | |
1300 | @event{EVT_LIST_END_LABEL_EDIT(id, func)} | |
1301 | Finish editing a label. This can be prevented by calling Veto(). | |
1302 | @event{EVT_LIST_DELETE_ITEM(id, func)} | |
1303 | Delete an item. | |
1304 | @event{EVT_LIST_DELETE_ALL_ITEMS(id, func)} | |
1305 | Delete all items. | |
1306 | @event{EVT_LIST_ITEM_SELECTED(id, func)} | |
1307 | The item has been selected. | |
1308 | @event{EVT_LIST_ITEM_DESELECTED(id, func)} | |
1309 | The item has been deselected. | |
1310 | @event{EVT_LIST_ITEM_ACTIVATED(id, func)} | |
1311 | The item has been activated (ENTER or double click). | |
1312 | @event{EVT_LIST_ITEM_FOCUSED(id, func)} | |
1313 | The currently focused item has changed. | |
1314 | @event{EVT_LIST_ITEM_MIDDLE_CLICK(id, func)} | |
1315 | The middle mouse button has been clicked on an item. | |
1316 | @event{EVT_LIST_ITEM_RIGHT_CLICK(id, func)} | |
1317 | The right mouse button has been clicked on an item. | |
1318 | @event{EVT_LIST_KEY_DOWN(id, func)} | |
92d9d10f | 1319 | A key has been pressed. GetIndex() may be -1 if no item is selected. |
320ab87c FM |
1320 | @event{EVT_LIST_INSERT_ITEM(id, func)} |
1321 | An item has been inserted. | |
1322 | @event{EVT_LIST_COL_CLICK(id, func)} | |
1323 | A column (m_col) has been left-clicked. | |
1324 | @event{EVT_LIST_COL_RIGHT_CLICK(id, func)} | |
1325 | A column (m_col) (which can be -1 if the click occurred outside any column) | |
1326 | has been right-clicked. | |
1327 | @event{EVT_LIST_COL_BEGIN_DRAG(id, func)} | |
1328 | The user started resizing a column - can be vetoed. | |
1329 | @event{EVT_LIST_COL_DRAGGING(id, func)} | |
1330 | The divider between columns is being dragged. | |
1331 | @event{EVT_LIST_COL_END_DRAG(id, func)} | |
1332 | A column has been resized by the user. | |
1333 | @event{EVT_LIST_CACHE_HINT(id, func)} | |
1334 | Prepare cache for a virtual list control | |
1335 | @endEventTable | |
1336 | ||
1337 | ||
f00f01b3 | 1338 | @library{wxcore} |
23324ae1 | 1339 | @category{events} |
7c913512 | 1340 | |
e54c96f1 | 1341 | @see wxListCtrl |
23324ae1 FM |
1342 | */ |
1343 | class wxListEvent : public wxNotifyEvent | |
1344 | { | |
1345 | public: | |
1346 | /** | |
1347 | Constructor. | |
1348 | */ | |
0a98423e | 1349 | wxListEvent(wxEventType commandType = wxEVT_NULL, int id = 0); |
23324ae1 FM |
1350 | |
1351 | /** | |
1352 | For @c EVT_LIST_CACHE_HINT event only: return the first item which the | |
1353 | list control advises us to cache. | |
1354 | */ | |
328f5751 | 1355 | long GetCacheFrom() const; |
23324ae1 FM |
1356 | |
1357 | /** | |
1358 | For @c EVT_LIST_CACHE_HINT event only: return the last item (inclusive) | |
1359 | which the list control advises us to cache. | |
1360 | */ | |
328f5751 | 1361 | long GetCacheTo() const; |
23324ae1 FM |
1362 | |
1363 | /** | |
320ab87c FM |
1364 | The column position: it is only used with @c COL events. |
1365 | ||
1366 | For the column dragging events, it is the column to the left of the divider | |
1367 | being dragged, for the column click events it may be -1 if the user clicked | |
1368 | in the list control header outside any column. | |
23324ae1 | 1369 | */ |
328f5751 | 1370 | int GetColumn() const; |
23324ae1 FM |
1371 | |
1372 | /** | |
1373 | The data. | |
1374 | */ | |
328f5751 | 1375 | long GetData() const; |
23324ae1 FM |
1376 | |
1377 | /** | |
1378 | The image. | |
1379 | */ | |
328f5751 | 1380 | int GetImage() const; |
23324ae1 FM |
1381 | |
1382 | /** | |
1383 | The item index. | |
1384 | */ | |
328f5751 | 1385 | long GetIndex() const; |
23324ae1 FM |
1386 | |
1387 | /** | |
1388 | An item object, used by some events. See also wxListCtrl::SetItem. | |
1389 | */ | |
5267aefd | 1390 | const wxListItem& GetItem() const; |
23324ae1 FM |
1391 | |
1392 | /** | |
1393 | Key code if the event is a keypress event. | |
1394 | */ | |
328f5751 | 1395 | int GetKeyCode() const; |
23324ae1 FM |
1396 | |
1397 | /** | |
1398 | The (new) item label for @c EVT_LIST_END_LABEL_EDIT event. | |
1399 | */ | |
5267aefd | 1400 | const wxString& GetLabel() const; |
23324ae1 FM |
1401 | |
1402 | /** | |
1403 | The mask. | |
1404 | */ | |
328f5751 | 1405 | long GetMask() const; |
23324ae1 FM |
1406 | |
1407 | /** | |
1408 | The position of the mouse pointer if the event is a drag event. | |
1409 | */ | |
328f5751 | 1410 | wxPoint GetPoint() const; |
23324ae1 FM |
1411 | |
1412 | /** | |
1413 | The text. | |
1414 | */ | |
5267aefd | 1415 | const wxString& GetText() const; |
23324ae1 FM |
1416 | |
1417 | /** | |
320ab87c FM |
1418 | This method only makes sense for @c EVT_LIST_END_LABEL_EDIT message and |
1419 | returns @true if it the label editing has been cancelled by the user | |
1420 | (GetLabel() returns an empty string in this case but it doesn't allow the | |
1421 | application to distinguish between really cancelling the edit and the | |
1422 | admittedly rare case when the user wants to rename it to an empty string). | |
23324ae1 | 1423 | */ |
328f5751 | 1424 | bool IsEditCancelled() const; |
23324ae1 FM |
1425 | }; |
1426 | ||
1427 | ||
ce7fe42e VZ |
1428 | wxEventType wxEVT_LIST_BEGIN_DRAG; |
1429 | wxEventType wxEVT_LIST_BEGIN_RDRAG; | |
1430 | wxEventType wxEVT_LIST_BEGIN_LABEL_EDIT; | |
1431 | wxEventType wxEVT_LIST_END_LABEL_EDIT; | |
1432 | wxEventType wxEVT_LIST_DELETE_ITEM; | |
1433 | wxEventType wxEVT_LIST_DELETE_ALL_ITEMS; | |
1434 | wxEventType wxEVT_LIST_ITEM_SELECTED; | |
1435 | wxEventType wxEVT_LIST_ITEM_DESELECTED; | |
1436 | wxEventType wxEVT_LIST_KEY_DOWN; | |
1437 | wxEventType wxEVT_LIST_INSERT_ITEM; | |
1438 | wxEventType wxEVT_LIST_COL_CLICK; | |
1439 | wxEventType wxEVT_LIST_ITEM_RIGHT_CLICK; | |
1440 | wxEventType wxEVT_LIST_ITEM_MIDDLE_CLICK; | |
1441 | wxEventType wxEVT_LIST_ITEM_ACTIVATED; | |
1442 | wxEventType wxEVT_LIST_CACHE_HINT; | |
1443 | wxEventType wxEVT_LIST_COL_RIGHT_CLICK; | |
1444 | wxEventType wxEVT_LIST_COL_BEGIN_DRAG; | |
1445 | wxEventType wxEVT_LIST_COL_DRAGGING; | |
1446 | wxEventType wxEVT_LIST_COL_END_DRAG; | |
1447 | wxEventType wxEVT_LIST_ITEM_FOCUSED; | |
0ffc1704 | 1448 | |
e54c96f1 | 1449 | |
23324ae1 FM |
1450 | /** |
1451 | @class wxListItemAttr | |
7c913512 | 1452 | |
320ab87c | 1453 | Represents the attributes (color, font, ...) of a wxListCtrl's wxListItem. |
7c913512 | 1454 | |
f00f01b3 | 1455 | @library{wxcore} |
3c99e2fd | 1456 | @category{data} |
7c913512 | 1457 | |
320ab87c | 1458 | @see @ref overview_listctrl, wxListCtrl, wxListItem |
23324ae1 | 1459 | */ |
7c913512 | 1460 | class wxListItemAttr |
23324ae1 FM |
1461 | { |
1462 | public: | |
1d7c0c08 RR |
1463 | /** |
1464 | Default Constructor. | |
1465 | */ | |
1466 | wxListItemAttr(); | |
320ab87c | 1467 | |
23324ae1 FM |
1468 | /** |
1469 | Construct a wxListItemAttr with the specified foreground and | |
1470 | background colors and font. | |
1471 | */ | |
0a98423e FM |
1472 | wxListItemAttr(const wxColour& colText, |
1473 | const wxColour& colBack, | |
1474 | const wxFont& font); | |
23324ae1 FM |
1475 | |
1476 | /** | |
1477 | Returns the currently set background color. | |
1478 | */ | |
320ab87c | 1479 | const wxColour& GetBackgroundColour() const; |
23324ae1 FM |
1480 | |
1481 | /** | |
1482 | Returns the currently set font. | |
1483 | */ | |
320ab87c | 1484 | const wxFont& GetFont() const; |
23324ae1 FM |
1485 | |
1486 | /** | |
1487 | Returns the currently set text color. | |
1488 | */ | |
320ab87c | 1489 | const wxColour& GetTextColour() const; |
23324ae1 FM |
1490 | |
1491 | /** | |
1492 | Returns @true if the currently set background color is valid. | |
1493 | */ | |
328f5751 | 1494 | bool HasBackgroundColour() const; |
23324ae1 FM |
1495 | |
1496 | /** | |
1497 | Returns @true if the currently set font is valid. | |
1498 | */ | |
328f5751 | 1499 | bool HasFont() const; |
23324ae1 FM |
1500 | |
1501 | /** | |
1502 | Returns @true if the currently set text color is valid. | |
1503 | */ | |
328f5751 | 1504 | bool HasTextColour() const; |
23324ae1 FM |
1505 | |
1506 | /** | |
1507 | Sets a new background color. | |
1508 | */ | |
1509 | void SetBackgroundColour(const wxColour& colour); | |
1510 | ||
1511 | /** | |
1512 | Sets a new font. | |
1513 | */ | |
1514 | void SetFont(const wxFont& font); | |
1515 | ||
1516 | /** | |
1517 | Sets a new text color. | |
1518 | */ | |
1519 | void SetTextColour(const wxColour& colour); | |
1520 | }; | |
1521 | ||
1522 | ||
e54c96f1 | 1523 | |
23324ae1 FM |
1524 | /** |
1525 | @class wxListView | |
7c913512 FM |
1526 | |
1527 | This class currently simply presents a simpler to use interface for the | |
320ab87c FM |
1528 | wxListCtrl -- it can be thought of as a @e façade for that complicated class. |
1529 | ||
1530 | Using it is preferable to using wxListCtrl directly whenever possible because | |
1531 | in the future some ports might implement wxListView but not the full set of | |
1532 | wxListCtrl features. | |
7c913512 | 1533 | |
320ab87c FM |
1534 | Other than different interface, this class is identical to wxListCtrl. |
1535 | In particular, it uses the same events, same window styles and so on. | |
7c913512 | 1536 | |
23324ae1 FM |
1537 | @library{wxcore} |
1538 | @category{ctrl} | |
ce154616 | 1539 | @appearance{listview} |
7c913512 | 1540 | |
e54c96f1 | 1541 | @see wxListView::SetColumnImage |
23324ae1 FM |
1542 | */ |
1543 | class wxListView : public wxListCtrl | |
1544 | { | |
1545 | public: | |
1546 | /** | |
1547 | Resets the column image -- after calling this function, no image will be shown. | |
3c4f71cc | 1548 | |
7c913512 | 1549 | @param col |
4cc4bfaf | 1550 | the column to clear image for |
3c4f71cc | 1551 | |
4cc4bfaf | 1552 | @see SetColumnImage() |
23324ae1 FM |
1553 | */ |
1554 | void ClearColumnImage(int col); | |
1555 | ||
1556 | /** | |
320ab87c | 1557 | Sets focus to the item with the given @a index. |
23324ae1 FM |
1558 | */ |
1559 | void Focus(long index); | |
1560 | ||
1561 | /** | |
1562 | Returns the first selected item in a (presumably) multiple selection control. | |
320ab87c FM |
1563 | Together with GetNextSelected() it can be used to iterate over all selected |
1564 | items in the control. | |
3c4f71cc | 1565 | |
d29a9a8a | 1566 | @return The first selected item, if any, -1 otherwise. |
23324ae1 | 1567 | */ |
328f5751 | 1568 | long GetFirstSelected() const; |
23324ae1 FM |
1569 | |
1570 | /** | |
1571 | Returns the currently focused item or -1 if none. | |
3c4f71cc | 1572 | |
4cc4bfaf | 1573 | @see IsSelected(), Focus() |
23324ae1 | 1574 | */ |
328f5751 | 1575 | long GetFocusedItem() const; |
23324ae1 FM |
1576 | |
1577 | /** | |
320ab87c FM |
1578 | Used together with GetFirstSelected() to iterate over all selected items |
1579 | in the control. | |
3c4f71cc | 1580 | |
320ab87c | 1581 | @return Returns the next selected item or -1 if there are no more of them. |
23324ae1 | 1582 | */ |
328f5751 | 1583 | long GetNextSelected(long item) const; |
23324ae1 FM |
1584 | |
1585 | /** | |
4cc4bfaf | 1586 | Returns @true if the item with the given @a index is selected, |
23324ae1 | 1587 | @false otherwise. |
3c4f71cc | 1588 | |
4cc4bfaf | 1589 | @see GetFirstSelected(), GetNextSelected() |
23324ae1 | 1590 | */ |
328f5751 | 1591 | bool IsSelected(long index) const; |
23324ae1 FM |
1592 | |
1593 | /** | |
1594 | Selects or unselects the given item. | |
3c4f71cc | 1595 | |
7c913512 | 1596 | @param n |
4cc4bfaf | 1597 | the item to select or unselect |
7c913512 | 1598 | @param on |
4cc4bfaf | 1599 | if @true (default), selects the item, otherwise unselects it |
3c4f71cc | 1600 | |
4cc4bfaf | 1601 | @see wxListCtrl::SetItemState |
23324ae1 | 1602 | */ |
792255cc | 1603 | void Select(long n, bool on = true); |
23324ae1 FM |
1604 | |
1605 | /** | |
320ab87c FM |
1606 | Sets the column image for the specified column. |
1607 | To use the column images, the control must have a valid image list with | |
1608 | at least one image. | |
3c4f71cc | 1609 | |
7c913512 | 1610 | @param col |
4cc4bfaf | 1611 | the column to set image for |
7c913512 | 1612 | @param image |
4cc4bfaf | 1613 | the index of the column image in the controls image list |
23324ae1 FM |
1614 | */ |
1615 | void SetColumnImage(int col, int image); | |
1616 | }; | |
1617 | ||
1618 | ||
e54c96f1 | 1619 | |
23324ae1 FM |
1620 | /** |
1621 | @class wxListItem | |
7c913512 | 1622 | |
23324ae1 | 1623 | This class stores information about a wxListCtrl item or column. |
7c913512 | 1624 | |
320ab87c FM |
1625 | wxListItem is a class which contains informations about: |
1626 | - Zero based item position; see SetId() and GetId(). | |
1627 | - Zero based column index; see SetColumn() and GetColumn(). | |
1628 | - The label (or header for columns); see SetText() and GetText(). | |
1629 | - The zero based index into an image list; see GetImage() and SetImage(). | |
1630 | - Application defined data; see SetData() and GetData(). | |
1631 | - For columns only: the width of the column; see SetWidth() and GetWidth(). | |
1632 | - For columns only: the format of the column; one of @c wxLIST_FORMAT_LEFT, | |
1633 | @c wxLIST_FORMAT_RIGHT, @c wxLIST_FORMAT_CENTRE. See SetAlign() and GetAlign(). | |
1634 | - The state of the item; see SetState() and GetState(). | |
1635 | This is a bitlist of the following flags: | |
1636 | - @c wxLIST_STATE_FOCUSED: The item has the focus. | |
1637 | - @c wxLIST_STATE_SELECTED: The item is selected. | |
1638 | - @c wxLIST_STATE_DONTCARE: Don't care what the state is. Win32 only. | |
1639 | - @c wxLIST_STATE_DROPHILITED: The item is highlighted to receive a drop event. Win32 only. | |
1640 | - @c wxLIST_STATE_CUT: The item is in the cut state. Win32 only. | |
1641 | - A mask indicating which state flags are valid; this is a bitlist of the | |
1642 | flags reported above for the item state. See SetStateMask() and GetStateMask(). | |
1643 | - A mask indicating which fields of this class are valid; see SetMask() and GetMask(). | |
1644 | This is a bitlist of the following flags: | |
1645 | - @c wxLIST_MASK_STATE: The state field is valid. | |
1646 | - @c wxLIST_MASK_TEXT: The label field is valid. | |
1647 | - @c wxLIST_MASK_IMAGE: The image field is valid. | |
1648 | - @c wxLIST_MASK_DATA: The application-defined data field is valid. | |
1649 | - @c wxLIST_MASK_WIDTH: The column width field is valid. | |
1650 | - @c wxLIST_MASK_FORMAT: The column format field is valid. | |
1651 | ||
1652 | The wxListItem object can also contain item-specific colour and font | |
1653 | information: for this you need to call one of SetTextColour(), SetBackgroundColour() | |
1654 | or SetFont() functions on it passing it the colour/font to use. | |
1655 | If the colour/font is not specified, the default list control colour/font is used. | |
1656 | ||
f00f01b3 | 1657 | @library{wxcore} |
3c99e2fd | 1658 | @category{data} |
320ab87c FM |
1659 | |
1660 | @see wxListCtrl | |
23324ae1 FM |
1661 | */ |
1662 | class wxListItem : public wxObject | |
1663 | { | |
1664 | public: | |
1665 | /** | |
1666 | Constructor. | |
1667 | */ | |
1668 | wxListItem(); | |
1669 | ||
1670 | /** | |
1671 | Resets the item state to the default. | |
1672 | */ | |
1673 | void Clear(); | |
1674 | ||
1675 | /** | |
320ab87c FM |
1676 | Returns the alignment for this item. |
1677 | Can be one of @c wxLIST_FORMAT_LEFT, @c wxLIST_FORMAT_RIGHT or @c wxLIST_FORMAT_CENTRE. | |
23324ae1 | 1678 | */ |
328f5751 | 1679 | wxListColumnFormat GetAlign() const; |
23324ae1 FM |
1680 | |
1681 | /** | |
1682 | Returns the background colour for this item. | |
1683 | */ | |
328f5751 | 1684 | wxColour GetBackgroundColour() const; |
23324ae1 FM |
1685 | |
1686 | /** | |
1687 | Returns the zero-based column; meaningful only in report mode. | |
1688 | */ | |
328f5751 | 1689 | int GetColumn() const; |
23324ae1 FM |
1690 | |
1691 | /** | |
320ab87c FM |
1692 | Returns client data associated with the control. |
1693 | Please note that client data is associated with the item and not with subitems. | |
23324ae1 | 1694 | */ |
5267aefd | 1695 | wxUIntPtr GetData() const; |
23324ae1 FM |
1696 | |
1697 | /** | |
1698 | Returns the font used to display the item. | |
1699 | */ | |
328f5751 | 1700 | wxFont GetFont() const; |
23324ae1 FM |
1701 | |
1702 | /** | |
1703 | Returns the zero-based item position. | |
1704 | */ | |
328f5751 | 1705 | long GetId() const; |
23324ae1 FM |
1706 | |
1707 | /** | |
320ab87c FM |
1708 | Returns the zero-based index of the image associated with the item into |
1709 | the image list. | |
23324ae1 | 1710 | */ |
328f5751 | 1711 | int GetImage() const; |
23324ae1 FM |
1712 | |
1713 | /** | |
320ab87c | 1714 | Returns a bit mask indicating which fields of the structure are valid. |
3c4f71cc | 1715 | |
320ab87c FM |
1716 | Can be any combination of the following values: |
1717 | - wxLIST_MASK_STATE: @b GetState is valid. | |
1718 | - wxLIST_MASK_TEXT: @b GetText is valid. | |
1719 | - wxLIST_MASK_IMAGE: @b GetImage is valid. | |
1720 | - wxLIST_MASK_DATA: @b GetData is valid. | |
1721 | - wxLIST_MASK_WIDTH: @b GetWidth is valid. | |
1722 | - wxLIST_MASK_FORMAT: @b GetFormat is valid. | |
23324ae1 | 1723 | */ |
328f5751 | 1724 | long GetMask() const; |
23324ae1 FM |
1725 | |
1726 | /** | |
320ab87c | 1727 | Returns a bit field representing the state of the item. |
3c4f71cc | 1728 | |
320ab87c FM |
1729 | Can be any combination of: |
1730 | - wxLIST_STATE_DONTCARE: Don't care what the state is. Win32 only. | |
1731 | - wxLIST_STATE_DROPHILITED: The item is highlighted to receive a drop event. Win32 only. | |
1732 | - wxLIST_STATE_FOCUSED: The item has the focus. | |
1733 | - wxLIST_STATE_SELECTED: The item is selected. | |
1734 | - wxLIST_STATE_CUT: The item is in the cut state. Win32 only. | |
23324ae1 | 1735 | */ |
328f5751 | 1736 | long GetState() const; |
23324ae1 FM |
1737 | |
1738 | /** | |
1739 | Returns the label/header text. | |
1740 | */ | |
320ab87c | 1741 | const wxString& GetText() const; |
23324ae1 FM |
1742 | |
1743 | /** | |
1744 | Returns the text colour. | |
1745 | */ | |
328f5751 | 1746 | wxColour GetTextColour() const; |
23324ae1 FM |
1747 | |
1748 | /** | |
1749 | Meaningful only for column headers in report mode. Returns the column width. | |
1750 | */ | |
328f5751 | 1751 | int GetWidth() const; |
23324ae1 FM |
1752 | |
1753 | /** | |
320ab87c | 1754 | Sets the alignment for the item. See also GetAlign() |
23324ae1 FM |
1755 | */ |
1756 | void SetAlign(wxListColumnFormat align); | |
1757 | ||
1758 | /** | |
1759 | Sets the background colour for the item. | |
1760 | */ | |
1761 | void SetBackgroundColour(const wxColour& colBack); | |
1762 | ||
1763 | /** | |
1764 | Sets the zero-based column. Meaningful only in report mode. | |
1765 | */ | |
1766 | void SetColumn(int col); | |
1767 | ||
1768 | //@{ | |
1769 | /** | |
320ab87c FM |
1770 | Sets client data for the item. |
1771 | Please note that client data is associated with the item and not with subitems. | |
23324ae1 FM |
1772 | */ |
1773 | void SetData(long data); | |
7c913512 | 1774 | void SetData(void* data); |
23324ae1 FM |
1775 | //@} |
1776 | ||
1777 | /** | |
1778 | Sets the font for the item. | |
1779 | */ | |
1780 | void SetFont(const wxFont& font); | |
1781 | ||
1782 | /** | |
1783 | Sets the zero-based item position. | |
1784 | */ | |
1785 | void SetId(long id); | |
1786 | ||
1787 | /** | |
1788 | Sets the zero-based index of the image associated with the item | |
1789 | into the image list. | |
1790 | */ | |
1791 | void SetImage(int image); | |
1792 | ||
1793 | /** | |
1794 | Sets the mask of valid fields. See GetMask(). | |
1795 | */ | |
1796 | void SetMask(long mask); | |
1797 | ||
1798 | /** | |
1799 | Sets the item state flags (note that the valid state flags are influenced | |
320ab87c FM |
1800 | by the value of the state mask, see wxListItem::SetStateMask). |
1801 | ||
1802 | See GetState() for valid flag values. | |
23324ae1 FM |
1803 | */ |
1804 | void SetState(long state); | |
1805 | ||
1806 | /** | |
1807 | Sets the bitmask that is used to determine which of the state flags | |
1808 | are to be set. See also SetState(). | |
1809 | */ | |
1810 | void SetStateMask(long stateMask); | |
1811 | ||
1812 | /** | |
1813 | Sets the text label for the item. | |
1814 | */ | |
1815 | void SetText(const wxString& text); | |
1816 | ||
1817 | /** | |
1818 | Sets the text colour for the item. | |
1819 | */ | |
1820 | void SetTextColour(const wxColour& colText); | |
1821 | ||
1822 | /** | |
1823 | Meaningful only for column headers in report mode. Sets the column width. | |
1824 | */ | |
1825 | void SetWidth(int width); | |
1826 | }; | |
e54c96f1 | 1827 |