]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
bdc72a22 | 2 | // Name: wx/msw/listctrl.h |
2bda0e17 KB |
3 | // Purpose: wxListCtrl class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
bdc72a22 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_LISTCTRL_H_ |
13 | #define _WX_LISTCTRL_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
1e6feb95 | 16 | #pragma interface "listctrl.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
1e6feb95 VZ |
19 | #if wxUSE_LISTCTRL |
20 | ||
2bda0e17 KB |
21 | #include "wx/control.h" |
22 | #include "wx/event.h" | |
d62228a6 | 23 | #include "wx/hash.h" |
2bda0e17 | 24 | |
9f303149 VZ |
25 | class WXDLLEXPORT wxTextCtrl; |
26 | class WXDLLEXPORT wxImageList; | |
27 | ||
2bda0e17 KB |
28 | /* |
29 | The wxListCtrl can show lists of items in four different modes: | |
30 | wxLC_LIST: multicolumn list view, with optional small icons (icons could be | |
31 | optional for some platforms). Columns are computed automatically, | |
32 | i.e. you don't set columns as in wxLC_REPORT. In other words, | |
33 | the list wraps, unlike a wxListBox. | |
34 | wxLC_REPORT: single or multicolumn report view (with optional header) | |
35 | wxLC_ICON: large icon view, with optional labels | |
36 | wxLC_SMALL_ICON: small icon view, with optional labels | |
37 | ||
38 | You can change the style dynamically, either with SetSingleStyle or | |
39 | SetWindowStyleFlag. | |
40 | ||
41 | Further window styles: | |
42 | ||
43 | wxLC_ALIGN_TOP icons align to the top (default) | |
44 | wxLC_ALIGN_LEFT icons align to the left | |
45 | wxLC_AUTOARRANGE icons arrange themselves | |
46 | wxLC_USER_TEXT the app provides label text on demand, except for column headers | |
47 | wxLC_EDIT_LABELS labels are editable: app will be notified. | |
48 | wxLC_NO_HEADER no header in report mode | |
49 | wxLC_NO_SORT_HEADER can't click on header | |
50 | wxLC_SINGLE_SEL single selection | |
51 | wxLC_SORT_ASCENDING sort ascending (must still supply a comparison callback in SortItems) | |
52 | wxLC_SORT_DESCENDING sort descending (ditto) | |
53 | ||
54 | Items are referred to by their index (position in the list starting from zero). | |
55 | ||
56 | Label text is supplied via insertion/setting functions and is stored by the | |
57 | control, unless the wxLC_USER_TEXT style has been specified, in which case | |
58 | the app will be notified when text is required (see sample). | |
59 | ||
60 | Images are dealt with by (optionally) associating 3 image lists with the control. | |
61 | Zero-based indexes into these image lists indicate which image is to be used for | |
62 | which item. Each image in an image list can contain a mask, and can be made out | |
63 | of either a bitmap, two bitmaps or an icon. See ImagList.h for more details. | |
64 | ||
65 | Notifications are passed via the wxWindows 2.0 event system, or using virtual | |
66 | functions in wxWindows 1.66. | |
67 | ||
68 | See the sample wxListCtrl app for API usage. | |
69 | ||
70 | TODO: | |
71 | - addition of further convenience functions | |
72 | to avoid use of wxListItem in some functions | |
73 | - state/overlay images: probably not needed. | |
74 | - in Win95, you can be called back to supply other information | |
75 | besides text, such as state information. This saves no memory | |
76 | and is probably superfluous to requirements. | |
2bda0e17 KB |
77 | - testing of whole API, extending current sample. |
78 | ||
79 | ||
80 | */ | |
81 | ||
bdc72a22 | 82 | class WXDLLEXPORT wxListCtrl: public wxControl |
2bda0e17 | 83 | { |
2bda0e17 | 84 | public: |
bdc72a22 VZ |
85 | /* |
86 | * Public interface | |
87 | */ | |
2bda0e17 | 88 | |
bdc72a22 | 89 | wxListCtrl() { Init(); } |
2bda0e17 | 90 | |
bdc72a22 VZ |
91 | wxListCtrl(wxWindow *parent, |
92 | wxWindowID id = -1, | |
93 | const wxPoint& pos = wxDefaultPosition, | |
94 | const wxSize& size = wxDefaultSize, | |
95 | long style = wxLC_ICON, | |
96 | const wxValidator& validator = wxDefaultValidator, | |
97 | const wxString& name = _T("wxListCtrl")) | |
98 | { | |
99 | Init(); | |
2bda0e17 | 100 | |
bdc72a22 VZ |
101 | Create(parent, id, pos, size, style, validator, name); |
102 | } | |
2bda0e17 | 103 | |
bdc72a22 | 104 | virtual ~wxListCtrl(); |
2bda0e17 | 105 | |
bdc72a22 VZ |
106 | bool Create(wxWindow *parent, |
107 | wxWindowID id = -1, | |
108 | const wxPoint& pos = wxDefaultPosition, | |
109 | const wxSize& size = wxDefaultSize, | |
110 | long style = wxLC_ICON, | |
111 | const wxValidator& validator = wxDefaultValidator, | |
112 | const wxString& name = _T("wxListCtrl")); | |
2bda0e17 KB |
113 | |
114 | ||
bdc72a22 VZ |
115 | // Attributes |
116 | //////////////////////////////////////////////////////////////////////////// | |
2bda0e17 | 117 | |
91b4c08d VZ |
118 | // Set the control colours |
119 | bool SetForegroundColour(const wxColour& col); | |
bdc72a22 | 120 | bool SetBackgroundColour(const wxColour& col); |
2bda0e17 | 121 | |
bdc72a22 VZ |
122 | // Gets information about this column |
123 | bool GetColumn(int col, wxListItem& item) const; | |
2bda0e17 | 124 | |
bdc72a22 VZ |
125 | // Sets information about this column |
126 | bool SetColumn(int col, wxListItem& item) ; | |
2bda0e17 | 127 | |
bdc72a22 VZ |
128 | // Gets the column width |
129 | int GetColumnWidth(int col) const; | |
2bda0e17 | 130 | |
bdc72a22 VZ |
131 | // Sets the column width |
132 | bool SetColumnWidth(int col, int width) ; | |
2bda0e17 | 133 | |
bdc72a22 VZ |
134 | // Gets the number of items that can fit vertically in the |
135 | // visible area of the list control (list or report view) | |
136 | // or the total number of items in the list control (icon | |
137 | // or small icon view) | |
138 | int GetCountPerPage() const; | |
2bda0e17 | 139 | |
bdc72a22 VZ |
140 | // Gets the edit control for editing labels. |
141 | wxTextCtrl* GetEditControl() const; | |
2bda0e17 | 142 | |
bdc72a22 VZ |
143 | // Gets information about the item |
144 | bool GetItem(wxListItem& info) const ; | |
2bda0e17 | 145 | |
bdc72a22 VZ |
146 | // Sets information about the item |
147 | bool SetItem(wxListItem& info) ; | |
2bda0e17 | 148 | |
bdc72a22 VZ |
149 | // Sets a string field at a particular column |
150 | long SetItem(long index, int col, const wxString& label, int imageId = -1); | |
2bda0e17 | 151 | |
bdc72a22 VZ |
152 | // Gets the item state |
153 | int GetItemState(long item, long stateMask) const ; | |
2bda0e17 | 154 | |
bdc72a22 VZ |
155 | // Sets the item state |
156 | bool SetItemState(long item, long state, long stateMask) ; | |
2bda0e17 | 157 | |
bdc72a22 VZ |
158 | // Sets the item image |
159 | bool SetItemImage(long item, int image, int selImage) ; | |
2bda0e17 | 160 | |
bdc72a22 VZ |
161 | // Gets the item text |
162 | wxString GetItemText(long item) const ; | |
2bda0e17 | 163 | |
bdc72a22 VZ |
164 | // Sets the item text |
165 | void SetItemText(long item, const wxString& str) ; | |
2bda0e17 | 166 | |
bdc72a22 VZ |
167 | // Gets the item data |
168 | long GetItemData(long item) const ; | |
2bda0e17 | 169 | |
bdc72a22 VZ |
170 | // Sets the item data |
171 | bool SetItemData(long item, long data) ; | |
2bda0e17 | 172 | |
bdc72a22 VZ |
173 | // Gets the item rectangle |
174 | bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ; | |
2bda0e17 | 175 | |
bdc72a22 VZ |
176 | // Gets the item position |
177 | bool GetItemPosition(long item, wxPoint& pos) const ; | |
2bda0e17 | 178 | |
bdc72a22 VZ |
179 | // Sets the item position |
180 | bool SetItemPosition(long item, const wxPoint& pos) ; | |
2bda0e17 | 181 | |
bdc72a22 VZ |
182 | // Gets the number of items in the list control |
183 | int GetItemCount() const; | |
2bda0e17 | 184 | |
bdc72a22 VZ |
185 | // Gets the number of columns in the list control |
186 | int GetColumnCount() const { return m_colCount; } | |
2bda0e17 | 187 | |
bdc72a22 VZ |
188 | // Retrieves the spacing between icons in pixels. |
189 | // If small is TRUE, gets the spacing for the small icon | |
190 | // view, otherwise the large icon view. | |
191 | int GetItemSpacing(bool isSmall) const; | |
2bda0e17 | 192 | |
bdc72a22 VZ |
193 | // Gets the number of selected items in the list control |
194 | int GetSelectedItemCount() const; | |
2bda0e17 | 195 | |
bdc72a22 VZ |
196 | // Gets the text colour of the listview |
197 | wxColour GetTextColour() const; | |
2bda0e17 | 198 | |
bdc72a22 VZ |
199 | // Sets the text colour of the listview |
200 | void SetTextColour(const wxColour& col); | |
2bda0e17 | 201 | |
bdc72a22 VZ |
202 | // Gets the index of the topmost visible item when in |
203 | // list or report view | |
204 | long GetTopItem() const ; | |
2bda0e17 | 205 | |
bdc72a22 VZ |
206 | // Add or remove a single window style |
207 | void SetSingleStyle(long style, bool add = TRUE) ; | |
2bda0e17 | 208 | |
bdc72a22 VZ |
209 | // Set the whole window style |
210 | void SetWindowStyleFlag(long style) ; | |
2bda0e17 | 211 | |
bdc72a22 VZ |
212 | // Searches for an item, starting from 'item'. |
213 | // item can be -1 to find the first item that matches the | |
214 | // specified flags. | |
215 | // Returns the item or -1 if unsuccessful. | |
216 | long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ; | |
2bda0e17 | 217 | |
bdc72a22 VZ |
218 | // Gets one of the three image lists |
219 | wxImageList *GetImageList(int which) const ; | |
2bda0e17 | 220 | |
bdc72a22 VZ |
221 | // Sets the image list |
222 | // N.B. There's a quirk in the Win95 list view implementation. | |
223 | // If in wxLC_LIST mode, it'll *still* display images by the labels if | |
224 | // there's a small-icon image list set for the control - even though you | |
225 | // haven't specified wxLIST_MASK_IMAGE when inserting. | |
226 | // So you have to set a NULL small-icon image list to be sure that | |
227 | // the wxLC_LIST mode works without icons. Of course, you may want icons... | |
228 | void SetImageList(wxImageList *imageList, int which) ; | |
2e12c11a | 229 | void AssignImageList(wxImageList *imageList, int which) ; |
2bda0e17 | 230 | |
98ec9dbe VZ |
231 | // returns true if it is a virtual list control |
232 | bool IsVirtual() const { return (GetWindowStyle() & wxLC_VIRTUAL) != 0; } | |
233 | ||
a7f560a2 VZ |
234 | // refresh items selectively (only useful for virtual list controls) |
235 | void RefreshItem(long item); | |
236 | void RefreshItems(long itemFrom, long itemTo); | |
237 | ||
bdc72a22 VZ |
238 | // Operations |
239 | //////////////////////////////////////////////////////////////////////////// | |
2bda0e17 | 240 | |
bdc72a22 VZ |
241 | // Arranges the items |
242 | bool Arrange(int flag = wxLIST_ALIGN_DEFAULT); | |
2bda0e17 | 243 | |
bdc72a22 VZ |
244 | // Deletes an item |
245 | bool DeleteItem(long item); | |
2bda0e17 | 246 | |
bdc72a22 VZ |
247 | // Deletes all items |
248 | bool DeleteAllItems() ; | |
2bda0e17 | 249 | |
bdc72a22 VZ |
250 | // Deletes a column |
251 | bool DeleteColumn(int col); | |
2bda0e17 | 252 | |
bdc72a22 VZ |
253 | // Deletes all columns |
254 | bool DeleteAllColumns(); | |
2bda0e17 | 255 | |
bdc72a22 VZ |
256 | // Clears items, and columns if there are any. |
257 | void ClearAll(); | |
2bda0e17 | 258 | |
bdc72a22 VZ |
259 | // Edit the label |
260 | wxTextCtrl* EditLabel(long item, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl)); | |
bbcdf8bc | 261 | |
bdc72a22 VZ |
262 | // End label editing, optionally cancelling the edit |
263 | bool EndEditLabel(bool cancel); | |
2bda0e17 | 264 | |
bdc72a22 VZ |
265 | // Ensures this item is visible |
266 | bool EnsureVisible(long item) ; | |
2bda0e17 | 267 | |
bdc72a22 VZ |
268 | // Find an item whose label matches this string, starting from the item after 'start' |
269 | // or the beginning if 'start' is -1. | |
270 | long FindItem(long start, const wxString& str, bool partial = FALSE); | |
2bda0e17 | 271 | |
bdc72a22 VZ |
272 | // Find an item whose data matches this data, starting from the item after 'start' |
273 | // or the beginning if 'start' is -1. | |
274 | long FindItem(long start, long data); | |
2bda0e17 | 275 | |
bdc72a22 VZ |
276 | // Find an item nearest this position in the specified direction, starting from |
277 | // the item after 'start' or the beginning if 'start' is -1. | |
278 | long FindItem(long start, const wxPoint& pt, int direction); | |
2bda0e17 | 279 | |
bdc72a22 VZ |
280 | // Determines which item (if any) is at the specified point, |
281 | // giving details in 'flags' (see wxLIST_HITTEST_... flags above) | |
282 | long HitTest(const wxPoint& point, int& flags); | |
2bda0e17 | 283 | |
bdc72a22 VZ |
284 | // Inserts an item, returning the index of the new item if successful, |
285 | // -1 otherwise. | |
286 | long InsertItem(wxListItem& info); | |
2bda0e17 | 287 | |
bdc72a22 VZ |
288 | // Insert a string item |
289 | long InsertItem(long index, const wxString& label); | |
2bda0e17 | 290 | |
bdc72a22 VZ |
291 | // Insert an image item |
292 | long InsertItem(long index, int imageIndex); | |
2bda0e17 | 293 | |
bdc72a22 VZ |
294 | // Insert an image/string item |
295 | long InsertItem(long index, const wxString& label, int imageIndex); | |
2bda0e17 | 296 | |
bdc72a22 VZ |
297 | // For list view mode (only), inserts a column. |
298 | long InsertColumn(long col, wxListItem& info); | |
2bda0e17 | 299 | |
bdc72a22 VZ |
300 | long InsertColumn(long col, |
301 | const wxString& heading, | |
302 | int format = wxLIST_FORMAT_LEFT, | |
303 | int width = -1); | |
2bda0e17 | 304 | |
98ec9dbe VZ |
305 | // set the number of items in a virtual list control |
306 | void SetItemCount(long count); | |
307 | ||
bdc72a22 VZ |
308 | // Scrolls the list control. If in icon, small icon or report view mode, |
309 | // x specifies the number of pixels to scroll. If in list view mode, x | |
310 | // specifies the number of columns to scroll. | |
311 | // If in icon, small icon or list view mode, y specifies the number of pixels | |
312 | // to scroll. If in report view mode, y specifies the number of lines to scroll. | |
313 | bool ScrollList(int dx, int dy); | |
2bda0e17 | 314 | |
bdc72a22 | 315 | // Sort items. |
2bda0e17 | 316 | |
bdc72a22 VZ |
317 | // fn is a function which takes 3 long arguments: item1, item2, data. |
318 | // item1 is the long data associated with a first item (NOT the index). | |
319 | // item2 is the long data associated with a second item (NOT the index). | |
320 | // data is the same value as passed to SortItems. | |
321 | // The return value is a negative number if the first item should precede the second | |
322 | // item, a positive number of the second item should precede the first, | |
323 | // or zero if the two items are equivalent. | |
2bda0e17 | 324 | |
bdc72a22 VZ |
325 | // data is arbitrary data to be passed to the sort function. |
326 | bool SortItems(wxListCtrlCompare fn, long data); | |
2bda0e17 | 327 | |
bdc72a22 VZ |
328 | // IMPLEMENTATION |
329 | virtual bool MSWCommand(WXUINT param, WXWORD id); | |
330 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); | |
2bda0e17 | 331 | |
bdc72a22 VZ |
332 | // bring the control in sync with current m_windowStyle value |
333 | void UpdateStyle(); | |
2bda0e17 | 334 | |
98ec9dbe VZ |
335 | // Implementation: converts wxWindows style to MSW style. |
336 | // Can be a single style flag or a bit list. | |
337 | // oldStyle is 'normalised' so that it doesn't contain | |
338 | // conflicting styles. | |
339 | long ConvertToMSWStyle(long& oldStyle, long style) const; | |
2bda0e17 | 340 | |
2702ed5a JS |
341 | // Event handlers |
342 | //////////////////////////////////////////////////////////////////////////// | |
343 | // Necessary for drawing hrules and vrules, if specified | |
344 | void OnPaint(wxPaintEvent& event); | |
345 | ||
2bda0e17 | 346 | protected: |
bdc72a22 VZ |
347 | // common part of all ctors |
348 | void Init(); | |
349 | ||
91b4c08d VZ |
350 | // free memory taken by all attributes and recreate the hash table |
351 | void FreeAllAttrs(bool dontRecreate = FALSE); | |
6932a32c | 352 | |
bdc72a22 VZ |
353 | wxTextCtrl* m_textCtrl; // The control used for editing a label |
354 | wxImageList * m_imageListNormal; // The image list for normal icons | |
355 | wxImageList * m_imageListSmall; // The image list for small icons | |
356 | wxImageList * m_imageListState; // The image list state icons (not implemented yet) | |
2e12c11a VS |
357 | bool m_ownsImageListNormal, |
358 | m_ownsImageListSmall, | |
359 | m_ownsImageListState; | |
2bda0e17 | 360 | |
bdc72a22 | 361 | long m_baseStyle; // Basic Windows style flags, for recreation purposes |
bdc72a22 VZ |
362 | int m_colCount; // Windows doesn't have GetColumnCount so must |
363 | // keep track of inserted/deleted columns | |
364 | ||
d62228a6 VZ |
365 | // the hash table we use for storing pointers to the items attributes |
366 | wxHashTable m_attrs; | |
367 | ||
368 | // TRUE if we have any items with custom attributes | |
bdc72a22 | 369 | bool m_hasAnyAttr; |
2bda0e17 | 370 | |
98ec9dbe VZ |
371 | // these functions are only used for virtual list view controls, i.e. the |
372 | // ones with wxLC_VIRTUAL style | |
373 | ||
374 | // return the text for the given column of the given item | |
375 | virtual wxString OnGetItemText(long item, long column) const; | |
376 | ||
377 | // return the icon for the given item | |
378 | virtual int OnGetItemImage(long item) const; | |
379 | ||
6c02c329 VZ |
380 | // return the attribute for the item (may return NULL if none) |
381 | virtual wxListItemAttr *OnGetItemAttr(long item) const; | |
382 | ||
edccf428 | 383 | private: |
bdc72a22 VZ |
384 | bool DoCreateControl(int x, int y, int w, int h); |
385 | ||
63166611 VZ |
386 | // process NM_CUSTOMDRAW notification message |
387 | WXLPARAM OnCustomDraw(WXLPARAM lParam); | |
388 | ||
bdc72a22 | 389 | DECLARE_DYNAMIC_CLASS(wxListCtrl) |
2702ed5a | 390 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
391 | }; |
392 | ||
1e6feb95 VZ |
393 | #endif // wxUSE_LISTCTRL |
394 | ||
2bda0e17 | 395 | #endif |
bbcdf8bc | 396 | // _WX_LISTCTRL_H_ |