]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: listctrl.cpp | |
3 | // Purpose: wxListCtrl | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
acb62b84 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
edccf428 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
0b5efdc7 | 21 | #pragma implementation "listctrl.h" |
3c1a88d8 | 22 | #pragma implementation "listctrlbase.h" |
2bda0e17 KB |
23 | #endif |
24 | ||
25 | // For compilers that support precompilation, includes "wx.h". | |
26 | #include "wx/wxprec.h" | |
27 | ||
28 | #ifdef __BORLANDC__ | |
0b5efdc7 | 29 | #pragma hdrstop |
2bda0e17 KB |
30 | #endif |
31 | ||
98ec9dbe | 32 | #if wxUSE_LISTCTRL && defined(__WIN95__) |
9f303149 | 33 | |
2bda0e17 | 34 | #ifndef WX_PRECOMP |
9f303149 | 35 | #include "wx/app.h" |
9f303149 VZ |
36 | #include "wx/intl.h" |
37 | #include "wx/log.h" | |
38 | #include "wx/settings.h" | |
2bda0e17 KB |
39 | #endif |
40 | ||
de8e98f1 JS |
41 | #include "wx/textctrl.h" |
42 | #include "wx/imaglist.h" | |
2bda0e17 | 43 | #include "wx/listctrl.h" |
68fdcf29 | 44 | #include "wx/dcclient.h" |
2bda0e17 KB |
45 | |
46 | #include "wx/msw/private.h" | |
47 | ||
ae090fdb | 48 | #if ((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__)) |
edccf428 VZ |
49 | #include "wx/msw/gnuwin32/extra.h" |
50 | #else | |
0b5efdc7 | 51 | #include <commctrl.h> |
2bda0e17 KB |
52 | #endif |
53 | ||
bdc72a22 VZ |
54 | #ifndef LVHT_ONITEM |
55 | #define LVHT_ONITEM \ | |
56 | (LVHT_ONITEMICON | LVHT_ONITEMLABEL | LVHT_ONITEMSTATEICON) | |
57 | #endif | |
58 | ||
225fe9d6 | 59 | #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE |
c5d3832c | 60 | #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54) |
225fe9d6 VZ |
61 | #endif |
62 | ||
63 | #ifndef LVS_EX_FULLROWSELECT | |
64 | #define LVS_EX_FULLROWSELECT 0x00000020 | |
65 | #endif | |
66 | ||
30a72e62 VZ |
67 | #ifndef LVS_OWNERDATA |
68 | #define LVS_OWNERDATA 0x1000 | |
69 | #endif | |
70 | ||
82dfea77 VZ |
71 | // mingw32/cygwin don't have declarations for comctl32.dll 4.70+ stuff |
72 | #ifndef NM_CACHEHINT | |
73 | typedef struct tagNMLVCACHEHINT | |
74 | { | |
75 | NMHDR hdr; | |
76 | int iFrom; | |
77 | int iTo; | |
78 | } NMLVCACHEHINT; | |
79 | ||
80 | #define NM_CACHEHINT NMLVCACHEHINT | |
81 | #endif | |
82 | ||
83 | #ifndef LVN_ODCACHEHINT | |
84 | #define LVN_ODCACHEHINT (-113) | |
85 | #endif | |
86 | ||
edccf428 VZ |
87 | // ---------------------------------------------------------------------------- |
88 | // private functions | |
89 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 90 | |
8dff2b5c VZ |
91 | // convert our state and mask flags to LV_ITEM constants |
92 | static void wxConvertToMSWFlags(long state, long mask, LV_ITEM& lvItem); | |
93 | ||
94 | // convert wxListItem to LV_ITEM | |
95 | static void wxConvertToMSWListItem(const wxListCtrl *ctrl, | |
96 | const wxListItem& info, LV_ITEM& lvItem); | |
97 | ||
98 | // convert LV_ITEM to wxListItem | |
99 | static void wxConvertFromMSWListItem(HWND hwndListCtrl, | |
100 | wxListItem& info, | |
101 | /* const */ LV_ITEM& lvItem); | |
2bda0e17 | 102 | |
edccf428 | 103 | // ---------------------------------------------------------------------------- |
2e4df4bf | 104 | // events |
edccf428 VZ |
105 | // ---------------------------------------------------------------------------- |
106 | ||
2e4df4bf VZ |
107 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG) |
108 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG) | |
109 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT) | |
110 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT) | |
111 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM) | |
112 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS) | |
113 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO) | |
114 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO) | |
115 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED) | |
116 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED) | |
117 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN) | |
118 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM) | |
119 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK) | |
120 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK) | |
121 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK) | |
122 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED) | |
614391dc | 123 | DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT) |
2e4df4bf | 124 | |
8f177c8e | 125 | IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl) |
bf9b6266 | 126 | IMPLEMENT_DYNAMIC_CLASS(wxListView, wxListCtrl) |
8f177c8e | 127 | IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject) |
2bda0e17 | 128 | |
2702ed5a JS |
129 | BEGIN_EVENT_TABLE(wxListCtrl, wxControl) |
130 | EVT_PAINT(wxListCtrl::OnPaint) | |
131 | END_EVENT_TABLE() | |
132 | ||
edccf428 VZ |
133 | // ============================================================================ |
134 | // implementation | |
135 | // ============================================================================ | |
136 | ||
8f177c8e VZ |
137 | // ---------------------------------------------------------------------------- |
138 | // wxListEvent | |
139 | // ---------------------------------------------------------------------------- | |
140 | ||
141 | void wxListEvent::CopyObject(wxObject& object_dest) const | |
142 | { | |
143 | wxListEvent *obj = (wxListEvent *)&object_dest; | |
144 | ||
145 | wxNotifyEvent::CopyObject(object_dest); | |
146 | ||
147 | obj->m_code = m_code; | |
148 | obj->m_itemIndex = m_itemIndex; | |
149 | obj->m_oldItemIndex = m_oldItemIndex; | |
150 | obj->m_col = m_col; | |
151 | obj->m_cancelled = m_cancelled; | |
152 | obj->m_pointDrag = m_pointDrag; | |
153 | obj->m_item.m_mask = m_item.m_mask; | |
154 | obj->m_item.m_itemId = m_item.m_itemId; | |
155 | obj->m_item.m_col = m_item.m_col; | |
156 | obj->m_item.m_state = m_item.m_state; | |
157 | obj->m_item.m_stateMask = m_item.m_stateMask; | |
158 | obj->m_item.m_text = m_item.m_text; | |
159 | obj->m_item.m_image = m_item.m_image; | |
160 | obj->m_item.m_data = m_item.m_data; | |
161 | obj->m_item.m_format = m_item.m_format; | |
162 | obj->m_item.m_width = m_item.m_width; | |
163 | ||
164 | if ( m_item.HasAttributes() ) | |
165 | { | |
166 | obj->m_item.SetTextColour(m_item.GetTextColour()); | |
167 | obj->m_item.SetBackgroundColour(m_item.GetBackgroundColour()); | |
168 | obj->m_item.SetFont(m_item.GetFont()); | |
169 | } | |
170 | } | |
171 | ||
edccf428 VZ |
172 | // ---------------------------------------------------------------------------- |
173 | // wxListCtrl construction | |
174 | // ---------------------------------------------------------------------------- | |
175 | ||
bdc72a22 | 176 | void wxListCtrl::Init() |
2bda0e17 | 177 | { |
0b5efdc7 VZ |
178 | m_imageListNormal = NULL; |
179 | m_imageListSmall = NULL; | |
180 | m_imageListState = NULL; | |
2e12c11a | 181 | m_ownsImageListNormal = m_ownsImageListSmall = m_ownsImageListState = FALSE; |
0b5efdc7 | 182 | m_baseStyle = 0; |
2bda0e17 | 183 | m_colCount = 0; |
bbcdf8bc | 184 | m_textCtrl = NULL; |
bdc72a22 | 185 | m_hasAnyAttr = FALSE; |
2bda0e17 KB |
186 | } |
187 | ||
0b5efdc7 VZ |
188 | bool wxListCtrl::Create(wxWindow *parent, |
189 | wxWindowID id, | |
190 | const wxPoint& pos, | |
191 | const wxSize& size, | |
192 | long style, | |
193 | const wxValidator& validator, | |
194 | const wxString& name) | |
2bda0e17 | 195 | { |
11b6a93b | 196 | #if wxUSE_VALIDATORS |
0b5efdc7 | 197 | SetValidator(validator); |
11b6a93b VZ |
198 | #endif // wxUSE_VALIDATORS |
199 | ||
0b5efdc7 | 200 | SetName(name); |
2bda0e17 | 201 | |
0b5efdc7 VZ |
202 | int x = pos.x; |
203 | int y = pos.y; | |
204 | int width = size.x; | |
205 | int height = size.y; | |
2bda0e17 | 206 | |
0b5efdc7 | 207 | m_windowStyle = style; |
2bda0e17 | 208 | |
0b5efdc7 | 209 | SetParent(parent); |
2bda0e17 | 210 | |
0b5efdc7 VZ |
211 | if (width <= 0) |
212 | width = 100; | |
213 | if (height <= 0) | |
214 | height = 30; | |
215 | if (x < 0) | |
216 | x = 0; | |
217 | if (y < 0) | |
218 | y = 0; | |
2bda0e17 | 219 | |
0b5efdc7 | 220 | m_windowId = (id == -1) ? NewControlId() : id; |
2bda0e17 | 221 | |
edccf428 VZ |
222 | DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP | |
223 | LVS_SHAREIMAGELISTS | LVS_SHOWSELALWAYS; | |
b0766406 JS |
224 | |
225 | if ( m_windowStyle & wxCLIP_SIBLINGS ) | |
226 | wstyle |= WS_CLIPSIBLINGS; | |
227 | ||
edccf428 VZ |
228 | if ( wxStyleHasBorder(m_windowStyle) ) |
229 | wstyle |= WS_BORDER; | |
230 | m_baseStyle = wstyle; | |
231 | ||
232 | if ( !DoCreateControl(x, y, width, height) ) | |
233 | return FALSE; | |
234 | ||
235 | if (parent) | |
236 | parent->AddChild(this); | |
237 | ||
238 | return TRUE; | |
239 | } | |
240 | ||
241 | bool wxListCtrl::DoCreateControl(int x, int y, int w, int h) | |
242 | { | |
243 | DWORD wstyle = m_baseStyle; | |
2bda0e17 | 244 | |
0b5efdc7 | 245 | bool want3D; |
edccf428 | 246 | WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D); |
2bda0e17 | 247 | |
0b5efdc7 VZ |
248 | // Even with extended styles, need to combine with WS_BORDER |
249 | // for them to look right. | |
edccf428 | 250 | if ( want3D ) |
0b5efdc7 | 251 | wstyle |= WS_BORDER; |
2bda0e17 | 252 | |
0b5efdc7 VZ |
253 | long oldStyle = 0; // Dummy |
254 | wstyle |= ConvertToMSWStyle(oldStyle, m_windowStyle); | |
2bda0e17 | 255 | |
0b5efdc7 VZ |
256 | // Create the ListView control. |
257 | m_hWnd = (WXHWND)CreateWindowEx(exStyle, | |
258 | WC_LISTVIEW, | |
223d09f6 | 259 | wxT(""), |
0b5efdc7 | 260 | wstyle, |
edccf428 VZ |
261 | x, y, w, h, |
262 | GetWinHwnd(GetParent()), | |
0b5efdc7 VZ |
263 | (HMENU)m_windowId, |
264 | wxGetInstance(), | |
265 | NULL); | |
f8352807 | 266 | |
edccf428 VZ |
267 | if ( !m_hWnd ) |
268 | { | |
f6bcfd97 | 269 | wxLogError(_("Can't create list control window, check that comctl32.dll is installed.")); |
0b5efdc7 VZ |
270 | |
271 | return FALSE; | |
272 | } | |
273 | ||
274 | // for comctl32.dll v 4.70+ we want to have this attribute because it's | |
275 | // prettier (and also because wxGTK does it like this) | |
225fe9d6 | 276 | if ( (wstyle & LVS_REPORT) && wxTheApp->GetComCtl32Version() >= 470 ) |
0b5efdc7 | 277 | { |
225fe9d6 VZ |
278 | ::SendMessage(GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE, |
279 | 0, LVS_EX_FULLROWSELECT); | |
0b5efdc7 | 280 | } |
f8352807 | 281 | |
5aeeab14 | 282 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW)); |
edccf428 | 283 | SetForegroundColour(GetParent()->GetForegroundColour()); |
2bda0e17 | 284 | |
edccf428 | 285 | SubclassWin(m_hWnd); |
2bda0e17 | 286 | |
0b5efdc7 | 287 | return TRUE; |
2bda0e17 KB |
288 | } |
289 | ||
edccf428 VZ |
290 | void wxListCtrl::UpdateStyle() |
291 | { | |
292 | if ( GetHWND() ) | |
293 | { | |
294 | // The new window view style | |
295 | long dummy; | |
296 | DWORD dwStyleNew = ConvertToMSWStyle(dummy, m_windowStyle); | |
297 | dwStyleNew |= m_baseStyle; | |
298 | ||
910484a6 | 299 | // Get the current window style. |
edccf428 VZ |
300 | DWORD dwStyleOld = ::GetWindowLong(GetHwnd(), GWL_STYLE); |
301 | ||
910484a6 | 302 | // Only set the window style if the view bits have changed. |
edccf428 VZ |
303 | if ( dwStyleOld != dwStyleNew ) |
304 | { | |
305 | ::SetWindowLong(GetHwnd(), GWL_STYLE, dwStyleNew); | |
306 | } | |
307 | } | |
308 | } | |
309 | ||
91b4c08d | 310 | void wxListCtrl::FreeAllAttrs(bool dontRecreate) |
2bda0e17 | 311 | { |
d62228a6 VZ |
312 | if ( m_hasAnyAttr ) |
313 | { | |
314 | for ( wxNode *node = m_attrs.Next(); node; node = m_attrs.Next() ) | |
315 | { | |
316 | delete (wxListItemAttr *)node->Data(); | |
317 | } | |
6932a32c VZ |
318 | |
319 | m_attrs.Destroy(); | |
91b4c08d VZ |
320 | if ( !dontRecreate ) |
321 | { | |
322 | m_attrs.Create(wxKEY_INTEGER, 1000); // just as def ctor | |
323 | } | |
6932a32c VZ |
324 | |
325 | m_hasAnyAttr = FALSE; | |
d62228a6 | 326 | } |
6932a32c | 327 | } |
d62228a6 | 328 | |
6932a32c VZ |
329 | wxListCtrl::~wxListCtrl() |
330 | { | |
91b4c08d VZ |
331 | FreeAllAttrs(TRUE /* no need to recreate hash any more */); |
332 | ||
d62228a6 | 333 | if ( m_textCtrl ) |
bbcdf8bc | 334 | { |
0b5efdc7 | 335 | m_textCtrl->SetHWND(0); |
7bf1474a | 336 | m_textCtrl->UnsubclassWin(); |
0b5efdc7 VZ |
337 | delete m_textCtrl; |
338 | m_textCtrl = NULL; | |
bbcdf8bc | 339 | } |
33ac7e6f | 340 | |
2e12c11a VS |
341 | if (m_ownsImageListNormal) delete m_imageListNormal; |
342 | if (m_ownsImageListSmall) delete m_imageListSmall; | |
343 | if (m_ownsImageListState) delete m_imageListState; | |
2bda0e17 KB |
344 | } |
345 | ||
edccf428 VZ |
346 | // ---------------------------------------------------------------------------- |
347 | // set/get/change style | |
348 | // ---------------------------------------------------------------------------- | |
349 | ||
2bda0e17 | 350 | // Add or remove a single window style |
debe6624 | 351 | void wxListCtrl::SetSingleStyle(long style, bool add) |
2bda0e17 | 352 | { |
0b5efdc7 | 353 | long flag = GetWindowStyleFlag(); |
2bda0e17 | 354 | |
0b5efdc7 | 355 | // Get rid of conflicting styles |
acb62b84 VZ |
356 | if ( add ) |
357 | { | |
0b5efdc7 | 358 | if ( style & wxLC_MASK_TYPE) |
edccf428 | 359 | flag = flag & ~wxLC_MASK_TYPE; |
0b5efdc7 | 360 | if ( style & wxLC_MASK_ALIGN ) |
edccf428 | 361 | flag = flag & ~wxLC_MASK_ALIGN; |
0b5efdc7 | 362 | if ( style & wxLC_MASK_SORT ) |
edccf428 | 363 | flag = flag & ~wxLC_MASK_SORT; |
acb62b84 | 364 | } |
2bda0e17 | 365 | |
0b5efdc7 VZ |
366 | if ( flag & style ) |
367 | { | |
368 | if ( !add ) | |
369 | flag -= style; | |
370 | } | |
371 | else | |
372 | { | |
373 | if ( add ) | |
374 | { | |
375 | flag |= style; | |
376 | } | |
377 | } | |
378 | ||
379 | m_windowStyle = flag; | |
2bda0e17 | 380 | |
edccf428 | 381 | UpdateStyle(); |
2bda0e17 KB |
382 | } |
383 | ||
384 | // Set the whole window style | |
debe6624 | 385 | void wxListCtrl::SetWindowStyleFlag(long flag) |
2bda0e17 | 386 | { |
0b5efdc7 | 387 | m_windowStyle = flag; |
2bda0e17 | 388 | |
edccf428 | 389 | UpdateStyle(); |
2bda0e17 KB |
390 | } |
391 | ||
0b5efdc7 VZ |
392 | // Can be just a single style, or a bitlist |
393 | long wxListCtrl::ConvertToMSWStyle(long& oldStyle, long style) const | |
2bda0e17 | 394 | { |
0b5efdc7 VZ |
395 | long wstyle = 0; |
396 | if ( style & wxLC_ICON ) | |
397 | { | |
398 | if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON ) | |
399 | oldStyle -= LVS_SMALLICON; | |
400 | if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT ) | |
401 | oldStyle -= LVS_REPORT; | |
402 | if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST ) | |
403 | oldStyle -= LVS_LIST; | |
404 | wstyle |= LVS_ICON; | |
405 | } | |
406 | ||
407 | if ( style & wxLC_SMALL_ICON ) | |
408 | { | |
409 | if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON ) | |
410 | oldStyle -= LVS_ICON; | |
411 | if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT ) | |
412 | oldStyle -= LVS_REPORT; | |
413 | if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST ) | |
414 | oldStyle -= LVS_LIST; | |
415 | wstyle |= LVS_SMALLICON; | |
416 | } | |
417 | ||
418 | if ( style & wxLC_LIST ) | |
419 | { | |
420 | if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON ) | |
421 | oldStyle -= LVS_ICON; | |
422 | if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT ) | |
423 | oldStyle -= LVS_REPORT; | |
424 | if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON ) | |
425 | oldStyle -= LVS_SMALLICON; | |
426 | wstyle |= LVS_LIST; | |
427 | } | |
2bda0e17 | 428 | |
0b5efdc7 VZ |
429 | if ( style & wxLC_REPORT ) |
430 | { | |
431 | if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON ) | |
432 | oldStyle -= LVS_ICON; | |
433 | if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST ) | |
434 | oldStyle -= LVS_LIST; | |
435 | if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON ) | |
436 | oldStyle -= LVS_SMALLICON; | |
437 | ||
438 | wstyle |= LVS_REPORT; | |
439 | } | |
2bda0e17 | 440 | |
0b5efdc7 VZ |
441 | if ( style & wxLC_ALIGN_LEFT ) |
442 | { | |
443 | if ( oldStyle & LVS_ALIGNTOP ) | |
444 | oldStyle -= LVS_ALIGNTOP; | |
445 | wstyle |= LVS_ALIGNLEFT; | |
446 | } | |
2bda0e17 | 447 | |
0b5efdc7 VZ |
448 | if ( style & wxLC_ALIGN_TOP ) |
449 | { | |
450 | if ( oldStyle & LVS_ALIGNLEFT ) | |
451 | oldStyle -= LVS_ALIGNLEFT; | |
452 | wstyle |= LVS_ALIGNTOP; | |
453 | } | |
2bda0e17 | 454 | |
0b5efdc7 VZ |
455 | if ( style & wxLC_AUTOARRANGE ) |
456 | wstyle |= LVS_AUTOARRANGE; | |
2bda0e17 | 457 | |
0b5efdc7 VZ |
458 | if ( style & wxLC_NO_SORT_HEADER ) |
459 | wstyle |= LVS_NOSORTHEADER; | |
2bda0e17 | 460 | |
0b5efdc7 VZ |
461 | if ( style & wxLC_NO_HEADER ) |
462 | wstyle |= LVS_NOCOLUMNHEADER; | |
463 | ||
464 | if ( style & wxLC_EDIT_LABELS ) | |
465 | wstyle |= LVS_EDITLABELS; | |
466 | ||
467 | if ( style & wxLC_SINGLE_SEL ) | |
468 | wstyle |= LVS_SINGLESEL; | |
469 | ||
470 | if ( style & wxLC_SORT_ASCENDING ) | |
471 | { | |
472 | if ( oldStyle & LVS_SORTDESCENDING ) | |
473 | oldStyle -= LVS_SORTDESCENDING; | |
474 | wstyle |= LVS_SORTASCENDING; | |
475 | } | |
476 | ||
477 | if ( style & wxLC_SORT_DESCENDING ) | |
478 | { | |
479 | if ( oldStyle & LVS_SORTASCENDING ) | |
480 | oldStyle -= LVS_SORTASCENDING; | |
481 | wstyle |= LVS_SORTDESCENDING; | |
482 | } | |
483 | ||
bf9b6266 | 484 | #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) |
98ec9dbe VZ |
485 | if ( style & wxLC_VIRTUAL ) |
486 | { | |
30a72e62 VZ |
487 | int ver = wxTheApp->GetComCtl32Version(); |
488 | if ( ver < 470 ) | |
489 | { | |
bf9b6266 | 490 | wxLogWarning(_("Please install a newer version of comctl32.dll\n(at least version 4.70 is required but you have %d.%02d)\nor this program won't operate correctly."), |
30a72e62 VZ |
491 | ver / 100, ver % 100); |
492 | } | |
493 | ||
98ec9dbe VZ |
494 | wstyle |= LVS_OWNERDATA; |
495 | } | |
bf9b6266 | 496 | #endif |
98ec9dbe | 497 | |
0b5efdc7 | 498 | return wstyle; |
2bda0e17 KB |
499 | } |
500 | ||
edccf428 VZ |
501 | // ---------------------------------------------------------------------------- |
502 | // accessors | |
503 | // ---------------------------------------------------------------------------- | |
504 | ||
91b4c08d VZ |
505 | // Sets the foreground, i.e. text, colour |
506 | bool wxListCtrl::SetForegroundColour(const wxColour& col) | |
507 | { | |
508 | if ( !wxWindow::SetForegroundColour(col) ) | |
509 | return FALSE; | |
510 | ||
511 | ListView_SetTextColor(GetHwnd(), wxColourToRGB(col)); | |
512 | ||
513 | return TRUE; | |
514 | } | |
515 | ||
516 | // Sets the background colour | |
cc2b7472 | 517 | bool wxListCtrl::SetBackgroundColour(const wxColour& col) |
2bda0e17 | 518 | { |
cc2b7472 VZ |
519 | if ( !wxWindow::SetBackgroundColour(col) ) |
520 | return FALSE; | |
2bda0e17 | 521 | |
91b4c08d VZ |
522 | // we set the same colour for both the "empty" background and the items |
523 | // background | |
524 | COLORREF color = wxColourToRGB(col); | |
525 | ListView_SetBkColor(GetHwnd(), color); | |
526 | ListView_SetTextBkColor(GetHwnd(), color); | |
cc2b7472 VZ |
527 | |
528 | return TRUE; | |
2bda0e17 KB |
529 | } |
530 | ||
531 | // Gets information about this column | |
debe6624 | 532 | bool wxListCtrl::GetColumn(int col, wxListItem& item) const |
2bda0e17 | 533 | { |
0b5efdc7 VZ |
534 | LV_COLUMN lvCol; |
535 | lvCol.mask = 0; | |
536 | lvCol.fmt = 0; | |
537 | lvCol.pszText = NULL; | |
538 | ||
539 | if ( item.m_mask & wxLIST_MASK_TEXT ) | |
540 | { | |
541 | lvCol.mask |= LVCF_TEXT; | |
837e5743 | 542 | lvCol.pszText = new wxChar[513]; |
0b5efdc7 VZ |
543 | lvCol.cchTextMax = 512; |
544 | } | |
545 | ||
edccf428 | 546 | bool success = (ListView_GetColumn(GetHwnd(), col, & lvCol) != 0); |
0b5efdc7 VZ |
547 | |
548 | // item.m_subItem = lvCol.iSubItem; | |
549 | item.m_width = lvCol.cx; | |
550 | ||
551 | if ( (item.m_mask & wxLIST_MASK_TEXT) && lvCol.pszText ) | |
552 | { | |
553 | item.m_text = lvCol.pszText; | |
554 | delete[] lvCol.pszText; | |
555 | } | |
556 | ||
557 | if ( item.m_mask & wxLIST_MASK_FORMAT ) | |
558 | { | |
559 | if (lvCol.fmt == LVCFMT_LEFT) | |
560 | item.m_format = wxLIST_FORMAT_LEFT; | |
561 | else if (lvCol.fmt == LVCFMT_RIGHT) | |
562 | item.m_format = wxLIST_FORMAT_RIGHT; | |
563 | else if (lvCol.fmt == LVCFMT_CENTER) | |
564 | item.m_format = wxLIST_FORMAT_CENTRE; | |
2bda0e17 KB |
565 | } |
566 | ||
0b5efdc7 | 567 | return success; |
2bda0e17 KB |
568 | } |
569 | ||
570 | // Sets information about this column | |
debe6624 | 571 | bool wxListCtrl::SetColumn(int col, wxListItem& item) |
2bda0e17 | 572 | { |
0b5efdc7 VZ |
573 | LV_COLUMN lvCol; |
574 | lvCol.mask = 0; | |
575 | lvCol.fmt = 0; | |
576 | lvCol.pszText = NULL; | |
577 | ||
578 | if ( item.m_mask & wxLIST_MASK_TEXT ) | |
579 | { | |
580 | lvCol.mask |= LVCF_TEXT; | |
581 | lvCol.pszText = WXSTRINGCAST item.m_text; | |
582 | lvCol.cchTextMax = 0; // Ignored | |
583 | } | |
584 | if ( item.m_mask & wxLIST_MASK_FORMAT ) | |
585 | { | |
586 | lvCol.mask |= LVCF_FMT; | |
587 | ||
588 | if ( item.m_format == wxLIST_FORMAT_LEFT ) | |
589 | lvCol.fmt = LVCFMT_LEFT; | |
590 | if ( item.m_format == wxLIST_FORMAT_RIGHT ) | |
591 | lvCol.fmt = LVCFMT_RIGHT; | |
592 | if ( item.m_format == wxLIST_FORMAT_CENTRE ) | |
593 | lvCol.fmt = LVCFMT_CENTER; | |
2bda0e17 KB |
594 | } |
595 | ||
0b5efdc7 VZ |
596 | if ( item.m_mask & wxLIST_MASK_WIDTH ) |
597 | { | |
598 | lvCol.mask |= LVCF_WIDTH; | |
599 | lvCol.cx = item.m_width; | |
2bda0e17 | 600 | |
0b5efdc7 VZ |
601 | if ( lvCol.cx == wxLIST_AUTOSIZE) |
602 | lvCol.cx = LVSCW_AUTOSIZE; | |
603 | else if ( lvCol.cx == wxLIST_AUTOSIZE_USEHEADER) | |
604 | lvCol.cx = LVSCW_AUTOSIZE_USEHEADER; | |
605 | } | |
606 | lvCol.mask |= LVCF_SUBITEM; | |
607 | lvCol.iSubItem = col; | |
edccf428 | 608 | return (ListView_SetColumn(GetHwnd(), col, & lvCol) != 0); |
2bda0e17 KB |
609 | } |
610 | ||
611 | // Gets the column width | |
debe6624 | 612 | int wxListCtrl::GetColumnWidth(int col) const |
2bda0e17 | 613 | { |
edccf428 | 614 | return ListView_GetColumnWidth(GetHwnd(), col); |
2bda0e17 KB |
615 | } |
616 | ||
617 | // Sets the column width | |
debe6624 | 618 | bool wxListCtrl::SetColumnWidth(int col, int width) |
2bda0e17 | 619 | { |
0b5efdc7 VZ |
620 | int col2 = col; |
621 | if ( m_windowStyle & wxLC_LIST ) | |
622 | col2 = -1; | |
2bda0e17 | 623 | |
0b5efdc7 VZ |
624 | int width2 = width; |
625 | if ( width2 == wxLIST_AUTOSIZE) | |
626 | width2 = LVSCW_AUTOSIZE; | |
627 | else if ( width2 == wxLIST_AUTOSIZE_USEHEADER) | |
628 | width2 = LVSCW_AUTOSIZE_USEHEADER; | |
2bda0e17 | 629 | |
edccf428 | 630 | return (ListView_SetColumnWidth(GetHwnd(), col2, width2) != 0); |
2bda0e17 KB |
631 | } |
632 | ||
633 | // Gets the number of items that can fit vertically in the | |
634 | // visible area of the list control (list or report view) | |
635 | // or the total number of items in the list control (icon | |
636 | // or small icon view) | |
c42404a5 | 637 | int wxListCtrl::GetCountPerPage() const |
2bda0e17 | 638 | { |
edccf428 | 639 | return ListView_GetCountPerPage(GetHwnd()); |
2bda0e17 KB |
640 | } |
641 | ||
642 | // Gets the edit control for editing labels. | |
c42404a5 | 643 | wxTextCtrl* wxListCtrl::GetEditControl() const |
2bda0e17 | 644 | { |
bbcdf8bc | 645 | return m_textCtrl; |
2bda0e17 KB |
646 | } |
647 | ||
648 | // Gets information about the item | |
649 | bool wxListCtrl::GetItem(wxListItem& info) const | |
650 | { | |
0b5efdc7 | 651 | LV_ITEM lvItem; |
11c7d5b6 | 652 | wxZeroMemory(lvItem); |
2bda0e17 | 653 | |
0b5efdc7 | 654 | lvItem.iItem = info.m_itemId; |
fc5a93cd | 655 | lvItem.iSubItem = info.m_col; |
0b5efdc7 VZ |
656 | |
657 | if ( info.m_mask & wxLIST_MASK_TEXT ) | |
658 | { | |
659 | lvItem.mask |= LVIF_TEXT; | |
837e5743 | 660 | lvItem.pszText = new wxChar[513]; |
0b5efdc7 VZ |
661 | lvItem.cchTextMax = 512; |
662 | } | |
663 | else | |
664 | { | |
665 | lvItem.pszText = NULL; | |
666 | } | |
667 | ||
668 | if (info.m_mask & wxLIST_MASK_DATA) | |
edccf428 | 669 | lvItem.mask |= LVIF_PARAM; |
0b5efdc7 | 670 | |
2189c644 JS |
671 | if (info.m_mask & wxLIST_MASK_IMAGE) |
672 | lvItem.mask |= LVIF_IMAGE; | |
673 | ||
0b5efdc7 VZ |
674 | if ( info.m_mask & wxLIST_MASK_STATE ) |
675 | { | |
676 | lvItem.mask |= LVIF_STATE; | |
677 | // the other bits are hardly interesting anyhow | |
678 | lvItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED; | |
679 | } | |
680 | ||
681 | bool success = ListView_GetItem((HWND)GetHWND(), &lvItem) != 0; | |
682 | if ( !success ) | |
683 | { | |
684 | wxLogError(_("Couldn't retrieve information about list control item %d."), | |
685 | lvItem.iItem); | |
686 | } | |
687 | else | |
688 | { | |
dccde0c0 VZ |
689 | // give NULL as hwnd as we already have everything we need |
690 | wxConvertFromMSWListItem(NULL, info, lvItem); | |
0b5efdc7 VZ |
691 | } |
692 | ||
693 | if (lvItem.pszText) | |
694 | delete[] lvItem.pszText; | |
695 | ||
696 | return success; | |
2bda0e17 KB |
697 | } |
698 | ||
699 | // Sets information about the item | |
700 | bool wxListCtrl::SetItem(wxListItem& info) | |
701 | { | |
0b5efdc7 | 702 | LV_ITEM item; |
2bda0e17 | 703 | wxConvertToMSWListItem(this, info, item); |
bdc72a22 | 704 | |
233d0295 VZ |
705 | item.cchTextMax = 0; |
706 | if ( !ListView_SetItem(GetHwnd(), &item) ) | |
bdc72a22 | 707 | { |
233d0295 | 708 | wxLogDebug(_T("ListView_SetItem() failed")); |
2702ed5a | 709 | |
233d0295 VZ |
710 | return FALSE; |
711 | } | |
2702ed5a | 712 | |
233d0295 VZ |
713 | // we need to update the item immediately to show the new image |
714 | bool updateNow = (info.m_mask & wxLIST_MASK_IMAGE) != 0; | |
2702ed5a | 715 | |
233d0295 VZ |
716 | // check whether it has any custom attributes |
717 | if ( info.HasAttributes() ) | |
718 | { | |
719 | wxListItemAttr *attr = (wxListItemAttr *)m_attrs.Get(item.iItem); | |
2702ed5a | 720 | |
233d0295 VZ |
721 | if ( attr == NULL ) |
722 | m_attrs.Put(item.iItem, (wxObject *)new wxListItemAttr(*info.GetAttributes())); | |
723 | else | |
724 | *attr = *info.GetAttributes(); | |
bdc72a22 VZ |
725 | |
726 | m_hasAnyAttr = TRUE; | |
233d0295 VZ |
727 | |
728 | // if the colour has changed, we must redraw the item | |
729 | updateNow = TRUE; | |
bdc72a22 | 730 | } |
bdc72a22 | 731 | |
233d0295 | 732 | if ( updateNow ) |
7cc98b3e | 733 | { |
233d0295 | 734 | // we need this to make the change visible right now |
7cc98b3e VZ |
735 | ListView_Update(GetHwnd(), item.iItem); |
736 | } | |
737 | ||
233d0295 | 738 | return TRUE; |
2bda0e17 KB |
739 | } |
740 | ||
debe6624 | 741 | long wxListCtrl::SetItem(long index, int col, const wxString& label, int imageId) |
2bda0e17 | 742 | { |
0b5efdc7 VZ |
743 | wxListItem info; |
744 | info.m_text = label; | |
745 | info.m_mask = wxLIST_MASK_TEXT; | |
746 | info.m_itemId = index; | |
747 | info.m_col = col; | |
748 | if ( imageId > -1 ) | |
749 | { | |
750 | info.m_image = imageId; | |
751 | info.m_mask |= wxLIST_MASK_IMAGE; | |
752 | } | |
753 | return SetItem(info); | |
2bda0e17 KB |
754 | } |
755 | ||
756 | ||
757 | // Gets the item state | |
debe6624 | 758 | int wxListCtrl::GetItemState(long item, long stateMask) const |
2bda0e17 | 759 | { |
0b5efdc7 | 760 | wxListItem info; |
2bda0e17 | 761 | |
edccf428 | 762 | info.m_mask = wxLIST_MASK_STATE; |
0b5efdc7 VZ |
763 | info.m_stateMask = stateMask; |
764 | info.m_itemId = item; | |
2bda0e17 | 765 | |
0b5efdc7 VZ |
766 | if (!GetItem(info)) |
767 | return 0; | |
2bda0e17 | 768 | |
0b5efdc7 | 769 | return info.m_state; |
2bda0e17 KB |
770 | } |
771 | ||
772 | // Sets the item state | |
debe6624 | 773 | bool wxListCtrl::SetItemState(long item, long state, long stateMask) |
2bda0e17 | 774 | { |
8dff2b5c VZ |
775 | // NB: don't use SetItem() here as it doesn't work with the virtual list |
776 | // controls | |
777 | LV_ITEM lvItem; | |
778 | wxZeroMemory(lvItem); | |
2bda0e17 | 779 | |
8dff2b5c | 780 | wxConvertToMSWFlags(state, stateMask, lvItem); |
2bda0e17 | 781 | |
8dff2b5c VZ |
782 | if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE, |
783 | (WPARAM)item, (LPARAM)&lvItem) ) | |
784 | { | |
785 | wxLogLastError(_T("ListView_SetItemState")); | |
786 | ||
787 | return FALSE; | |
788 | } | |
789 | ||
790 | return TRUE; | |
2bda0e17 KB |
791 | } |
792 | ||
793 | // Sets the item image | |
33ac7e6f | 794 | bool wxListCtrl::SetItemImage(long item, int image, int WXUNUSED(selImage)) |
2bda0e17 | 795 | { |
0b5efdc7 | 796 | wxListItem info; |
2bda0e17 | 797 | |
edccf428 | 798 | info.m_mask = wxLIST_MASK_IMAGE; |
0b5efdc7 VZ |
799 | info.m_image = image; |
800 | info.m_itemId = item; | |
2bda0e17 | 801 | |
0b5efdc7 | 802 | return SetItem(info); |
2bda0e17 KB |
803 | } |
804 | ||
805 | // Gets the item text | |
debe6624 | 806 | wxString wxListCtrl::GetItemText(long item) const |
2bda0e17 | 807 | { |
0b5efdc7 | 808 | wxListItem info; |
2bda0e17 | 809 | |
edccf428 | 810 | info.m_mask = wxLIST_MASK_TEXT; |
0b5efdc7 | 811 | info.m_itemId = item; |
2bda0e17 | 812 | |
0b5efdc7 VZ |
813 | if (!GetItem(info)) |
814 | return wxString(""); | |
815 | return info.m_text; | |
2bda0e17 KB |
816 | } |
817 | ||
818 | // Sets the item text | |
debe6624 | 819 | void wxListCtrl::SetItemText(long item, const wxString& str) |
2bda0e17 | 820 | { |
0b5efdc7 | 821 | wxListItem info; |
2bda0e17 | 822 | |
edccf428 | 823 | info.m_mask = wxLIST_MASK_TEXT; |
0b5efdc7 VZ |
824 | info.m_itemId = item; |
825 | info.m_text = str; | |
2bda0e17 | 826 | |
0b5efdc7 | 827 | SetItem(info); |
2bda0e17 KB |
828 | } |
829 | ||
830 | // Gets the item data | |
debe6624 | 831 | long wxListCtrl::GetItemData(long item) const |
2bda0e17 | 832 | { |
0b5efdc7 | 833 | wxListItem info; |
2bda0e17 | 834 | |
edccf428 | 835 | info.m_mask = wxLIST_MASK_DATA; |
0b5efdc7 | 836 | info.m_itemId = item; |
2bda0e17 | 837 | |
0b5efdc7 VZ |
838 | if (!GetItem(info)) |
839 | return 0; | |
840 | return info.m_data; | |
2bda0e17 KB |
841 | } |
842 | ||
843 | // Sets the item data | |
debe6624 | 844 | bool wxListCtrl::SetItemData(long item, long data) |
2bda0e17 | 845 | { |
0b5efdc7 | 846 | wxListItem info; |
2bda0e17 | 847 | |
edccf428 | 848 | info.m_mask = wxLIST_MASK_DATA; |
0b5efdc7 VZ |
849 | info.m_itemId = item; |
850 | info.m_data = data; | |
2bda0e17 | 851 | |
0b5efdc7 | 852 | return SetItem(info); |
2bda0e17 KB |
853 | } |
854 | ||
855 | // Gets the item rectangle | |
16e93305 | 856 | bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const |
2bda0e17 | 857 | { |
0b5efdc7 | 858 | RECT rect2; |
2bda0e17 | 859 | |
0b5efdc7 VZ |
860 | int code2 = LVIR_BOUNDS; |
861 | if ( code == wxLIST_RECT_BOUNDS ) | |
862 | code2 = LVIR_BOUNDS; | |
863 | else if ( code == wxLIST_RECT_ICON ) | |
864 | code2 = LVIR_ICON; | |
865 | else if ( code == wxLIST_RECT_LABEL ) | |
866 | code2 = LVIR_LABEL; | |
2bda0e17 | 867 | |
5ea105e0 | 868 | #ifdef __WXWINE__ |
edccf428 | 869 | bool success = (ListView_GetItemRect(GetHwnd(), (int) item, &rect2 ) != 0); |
5ea105e0 | 870 | #else |
edccf428 | 871 | bool success = (ListView_GetItemRect(GetHwnd(), (int) item, &rect2, code2) != 0); |
5ea105e0 | 872 | #endif |
2bda0e17 | 873 | |
0b5efdc7 VZ |
874 | rect.x = rect2.left; |
875 | rect.y = rect2.top; | |
876 | rect.width = rect2.right - rect2.left; | |
64acfbb2 | 877 | rect.height = rect2.bottom - rect2.top; |
0b5efdc7 | 878 | return success; |
2bda0e17 KB |
879 | } |
880 | ||
881 | // Gets the item position | |
debe6624 | 882 | bool wxListCtrl::GetItemPosition(long item, wxPoint& pos) const |
2bda0e17 | 883 | { |
0b5efdc7 | 884 | POINT pt; |
2bda0e17 | 885 | |
edccf428 | 886 | bool success = (ListView_GetItemPosition(GetHwnd(), (int) item, &pt) != 0); |
2bda0e17 | 887 | |
0b5efdc7 VZ |
888 | pos.x = pt.x; pos.y = pt.y; |
889 | return success; | |
2bda0e17 KB |
890 | } |
891 | ||
892 | // Sets the item position. | |
debe6624 | 893 | bool wxListCtrl::SetItemPosition(long item, const wxPoint& pos) |
2bda0e17 | 894 | { |
edccf428 | 895 | return (ListView_SetItemPosition(GetHwnd(), (int) item, pos.x, pos.y) != 0); |
2bda0e17 KB |
896 | } |
897 | ||
898 | // Gets the number of items in the list control | |
c42404a5 | 899 | int wxListCtrl::GetItemCount() const |
2bda0e17 | 900 | { |
edccf428 | 901 | return ListView_GetItemCount(GetHwnd()); |
2bda0e17 KB |
902 | } |
903 | ||
904 | // Retrieves the spacing between icons in pixels. | |
905 | // If small is TRUE, gets the spacing for the small icon | |
906 | // view, otherwise the large icon view. | |
907 | int wxListCtrl::GetItemSpacing(bool isSmall) const | |
908 | { | |
edccf428 | 909 | return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall); |
2bda0e17 KB |
910 | } |
911 | ||
912 | // Gets the number of selected items in the list control | |
c42404a5 | 913 | int wxListCtrl::GetSelectedItemCount() const |
2bda0e17 | 914 | { |
edccf428 | 915 | return ListView_GetSelectedCount(GetHwnd()); |
2bda0e17 KB |
916 | } |
917 | ||
918 | // Gets the text colour of the listview | |
c42404a5 | 919 | wxColour wxListCtrl::GetTextColour() const |
2bda0e17 | 920 | { |
edccf428 | 921 | COLORREF ref = ListView_GetTextColor(GetHwnd()); |
0b5efdc7 VZ |
922 | wxColour col(GetRValue(ref), GetGValue(ref), GetBValue(ref)); |
923 | return col; | |
2bda0e17 KB |
924 | } |
925 | ||
926 | // Sets the text colour of the listview | |
927 | void wxListCtrl::SetTextColour(const wxColour& col) | |
928 | { | |
910484a6 | 929 | ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue())); |
2bda0e17 KB |
930 | } |
931 | ||
932 | // Gets the index of the topmost visible item when in | |
933 | // list or report view | |
c42404a5 | 934 | long wxListCtrl::GetTopItem() const |
2bda0e17 | 935 | { |
edccf428 | 936 | return (long) ListView_GetTopIndex(GetHwnd()); |
2bda0e17 KB |
937 | } |
938 | ||
939 | // Searches for an item, starting from 'item'. | |
940 | // 'geometry' is one of | |
941 | // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT. | |
942 | // 'state' is a state bit flag, one or more of | |
943 | // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT. | |
944 | // item can be -1 to find the first item that matches the | |
945 | // specified flags. | |
946 | // Returns the item or -1 if unsuccessful. | |
debe6624 | 947 | long wxListCtrl::GetNextItem(long item, int geom, int state) const |
2bda0e17 | 948 | { |
0b5efdc7 | 949 | long flags = 0; |
2bda0e17 | 950 | |
0b5efdc7 VZ |
951 | if ( geom == wxLIST_NEXT_ABOVE ) |
952 | flags |= LVNI_ABOVE; | |
953 | if ( geom == wxLIST_NEXT_ALL ) | |
954 | flags |= LVNI_ALL; | |
955 | if ( geom == wxLIST_NEXT_BELOW ) | |
956 | flags |= LVNI_BELOW; | |
957 | if ( geom == wxLIST_NEXT_LEFT ) | |
958 | flags |= LVNI_TOLEFT; | |
959 | if ( geom == wxLIST_NEXT_RIGHT ) | |
960 | flags |= LVNI_TORIGHT; | |
2bda0e17 | 961 | |
0b5efdc7 VZ |
962 | if ( state & wxLIST_STATE_CUT ) |
963 | flags |= LVNI_CUT; | |
964 | if ( state & wxLIST_STATE_DROPHILITED ) | |
965 | flags |= LVNI_DROPHILITED; | |
966 | if ( state & wxLIST_STATE_FOCUSED ) | |
967 | flags |= LVNI_FOCUSED; | |
968 | if ( state & wxLIST_STATE_SELECTED ) | |
969 | flags |= LVNI_SELECTED; | |
2bda0e17 | 970 | |
edccf428 | 971 | return (long) ListView_GetNextItem(GetHwnd(), item, flags); |
2bda0e17 KB |
972 | } |
973 | ||
974 | ||
debe6624 | 975 | wxImageList *wxListCtrl::GetImageList(int which) const |
2bda0e17 | 976 | { |
0b5efdc7 | 977 | if ( which == wxIMAGE_LIST_NORMAL ) |
2bda0e17 | 978 | { |
0b5efdc7 VZ |
979 | return m_imageListNormal; |
980 | } | |
981 | else if ( which == wxIMAGE_LIST_SMALL ) | |
2bda0e17 | 982 | { |
0b5efdc7 VZ |
983 | return m_imageListSmall; |
984 | } | |
985 | else if ( which == wxIMAGE_LIST_STATE ) | |
2bda0e17 | 986 | { |
0b5efdc7 VZ |
987 | return m_imageListState; |
988 | } | |
989 | return NULL; | |
2bda0e17 KB |
990 | } |
991 | ||
debe6624 | 992 | void wxListCtrl::SetImageList(wxImageList *imageList, int which) |
2bda0e17 | 993 | { |
0b5efdc7 VZ |
994 | int flags = 0; |
995 | if ( which == wxIMAGE_LIST_NORMAL ) | |
2bda0e17 | 996 | { |
0b5efdc7 | 997 | flags = LVSIL_NORMAL; |
2e12c11a | 998 | if (m_ownsImageListNormal) delete m_imageListNormal; |
0b5efdc7 | 999 | m_imageListNormal = imageList; |
2e12c11a | 1000 | m_ownsImageListNormal = FALSE; |
0b5efdc7 VZ |
1001 | } |
1002 | else if ( which == wxIMAGE_LIST_SMALL ) | |
2bda0e17 | 1003 | { |
0b5efdc7 | 1004 | flags = LVSIL_SMALL; |
2e12c11a | 1005 | if (m_ownsImageListSmall) delete m_imageListSmall; |
0b5efdc7 | 1006 | m_imageListSmall = imageList; |
2e12c11a | 1007 | m_ownsImageListSmall = FALSE; |
0b5efdc7 VZ |
1008 | } |
1009 | else if ( which == wxIMAGE_LIST_STATE ) | |
2bda0e17 | 1010 | { |
0b5efdc7 | 1011 | flags = LVSIL_STATE; |
2e12c11a | 1012 | if (m_ownsImageListState) delete m_imageListState; |
0b5efdc7 | 1013 | m_imageListState = imageList; |
2e12c11a | 1014 | m_ownsImageListState = FALSE; |
0b5efdc7 | 1015 | } |
edccf428 | 1016 | ListView_SetImageList(GetHwnd(), (HIMAGELIST) imageList ? imageList->GetHIMAGELIST() : 0, flags); |
2bda0e17 KB |
1017 | } |
1018 | ||
2e12c11a VS |
1019 | void wxListCtrl::AssignImageList(wxImageList *imageList, int which) |
1020 | { | |
1021 | SetImageList(imageList, which); | |
1022 | if ( which == wxIMAGE_LIST_NORMAL ) | |
1023 | m_ownsImageListNormal = TRUE; | |
1024 | else if ( which == wxIMAGE_LIST_SMALL ) | |
1025 | m_ownsImageListSmall = TRUE; | |
1026 | else if ( which == wxIMAGE_LIST_STATE ) | |
1027 | m_ownsImageListState = TRUE; | |
1028 | } | |
1029 | ||
edccf428 | 1030 | // ---------------------------------------------------------------------------- |
2bda0e17 | 1031 | // Operations |
edccf428 | 1032 | // ---------------------------------------------------------------------------- |
2bda0e17 KB |
1033 | |
1034 | // Arranges the items | |
debe6624 | 1035 | bool wxListCtrl::Arrange(int flag) |
2bda0e17 | 1036 | { |
0b5efdc7 VZ |
1037 | UINT code = 0; |
1038 | if ( flag == wxLIST_ALIGN_LEFT ) | |
1039 | code = LVA_ALIGNLEFT; | |
1040 | else if ( flag == wxLIST_ALIGN_TOP ) | |
1041 | code = LVA_ALIGNTOP; | |
1042 | else if ( flag == wxLIST_ALIGN_DEFAULT ) | |
1043 | code = LVA_DEFAULT; | |
1044 | else if ( flag == wxLIST_ALIGN_SNAP_TO_GRID ) | |
1045 | code = LVA_SNAPTOGRID; | |
2bda0e17 | 1046 | |
edccf428 | 1047 | return (ListView_Arrange(GetHwnd(), code) != 0); |
2bda0e17 KB |
1048 | } |
1049 | ||
1050 | // Deletes an item | |
debe6624 | 1051 | bool wxListCtrl::DeleteItem(long item) |
2bda0e17 | 1052 | { |
edccf428 | 1053 | return (ListView_DeleteItem(GetHwnd(), (int) item) != 0); |
2bda0e17 KB |
1054 | } |
1055 | ||
1056 | // Deletes all items | |
0b5efdc7 | 1057 | bool wxListCtrl::DeleteAllItems() |
2bda0e17 | 1058 | { |
edccf428 | 1059 | return (ListView_DeleteAllItems(GetHwnd()) != 0); |
2bda0e17 KB |
1060 | } |
1061 | ||
1062 | // Deletes all items | |
0b5efdc7 | 1063 | bool wxListCtrl::DeleteAllColumns() |
2bda0e17 | 1064 | { |
edccf428 | 1065 | while ( m_colCount > 0 ) |
2bda0e17 | 1066 | { |
edccf428 VZ |
1067 | if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 ) |
1068 | { | |
f6bcfd97 | 1069 | wxLogLastError(wxT("ListView_DeleteColumn")); |
edccf428 VZ |
1070 | |
1071 | return FALSE; | |
1072 | } | |
1073 | ||
1074 | m_colCount--; | |
2bda0e17 | 1075 | } |
edccf428 | 1076 | |
223d09f6 | 1077 | wxASSERT_MSG( m_colCount == 0, wxT("no columns should be left") ); |
edccf428 VZ |
1078 | |
1079 | return TRUE; | |
2bda0e17 KB |
1080 | } |
1081 | ||
1082 | // Deletes a column | |
debe6624 | 1083 | bool wxListCtrl::DeleteColumn(int col) |
2bda0e17 | 1084 | { |
edccf428 | 1085 | bool success = (ListView_DeleteColumn(GetHwnd(), col) != 0); |
2bda0e17 KB |
1086 | |
1087 | if ( success && (m_colCount > 0) ) | |
1088 | m_colCount --; | |
1089 | return success; | |
1090 | } | |
1091 | ||
1092 | // Clears items, and columns if there are any. | |
0b5efdc7 | 1093 | void wxListCtrl::ClearAll() |
2bda0e17 KB |
1094 | { |
1095 | DeleteAllItems(); | |
1096 | if ( m_colCount > 0 ) | |
1097 | DeleteAllColumns(); | |
1098 | } | |
1099 | ||
bbcdf8bc JS |
1100 | wxTextCtrl* wxListCtrl::EditLabel(long item, wxClassInfo* textControlClass) |
1101 | { | |
1102 | wxASSERT( (textControlClass->IsKindOf(CLASSINFO(wxTextCtrl))) ); | |
1103 | ||
d699f48b | 1104 | // VS: ListView_EditLabel requires that the list has focus. |
aa50e893 | 1105 | SetFocus(); |
edccf428 | 1106 | HWND hWnd = (HWND) ListView_EditLabel(GetHwnd(), item); |
bbcdf8bc JS |
1107 | |
1108 | if (m_textCtrl) | |
1109 | { | |
0b5efdc7 | 1110 | m_textCtrl->SetHWND(0); |
7bf1474a | 1111 | m_textCtrl->UnsubclassWin(); |
0b5efdc7 VZ |
1112 | delete m_textCtrl; |
1113 | m_textCtrl = NULL; | |
bbcdf8bc JS |
1114 | } |
1115 | ||
1116 | m_textCtrl = (wxTextCtrl*) textControlClass->CreateObject(); | |
1117 | m_textCtrl->SetHWND((WXHWND) hWnd); | |
1118 | m_textCtrl->SubclassWin((WXHWND) hWnd); | |
1119 | ||
1120 | return m_textCtrl; | |
1121 | } | |
1122 | ||
1123 | // End label editing, optionally cancelling the edit | |
33ac7e6f | 1124 | bool wxListCtrl::EndEditLabel(bool WXUNUSED(cancel)) |
2bda0e17 | 1125 | { |
7bf1474a VZ |
1126 | wxFAIL_MSG( _T("not implemented") ); |
1127 | ||
0b5efdc7 | 1128 | return FALSE; |
2bda0e17 KB |
1129 | } |
1130 | ||
1131 | // Ensures this item is visible | |
debe6624 | 1132 | bool wxListCtrl::EnsureVisible(long item) |
2bda0e17 | 1133 | { |
7bf1474a | 1134 | return ListView_EnsureVisible(GetHwnd(), (int) item, FALSE) != 0; |
2bda0e17 KB |
1135 | } |
1136 | ||
1137 | // Find an item whose label matches this string, starting from the item after 'start' | |
1138 | // or the beginning if 'start' is -1. | |
debe6624 | 1139 | long wxListCtrl::FindItem(long start, const wxString& str, bool partial) |
2bda0e17 | 1140 | { |
0b5efdc7 | 1141 | LV_FINDINFO findInfo; |
2bda0e17 | 1142 | |
0b5efdc7 VZ |
1143 | findInfo.flags = LVFI_STRING; |
1144 | if ( partial ) | |
7edc258e | 1145 | findInfo.flags |= LVFI_PARTIAL; |
3ca6a5f0 | 1146 | findInfo.psz = str; |
2bda0e17 | 1147 | |
3ca6a5f0 BP |
1148 | // ListView_FindItem() excludes the first item from search and to look |
1149 | // through all the items you need to start from -1 which is unnatural and | |
8036af01 JS |
1150 | // inconsistent with the generic version - so we adjust the index |
1151 | if (start != -1) | |
1152 | start --; | |
1153 | return ListView_FindItem(GetHwnd(), (int) start, &findInfo); | |
2bda0e17 KB |
1154 | } |
1155 | ||
1156 | // Find an item whose data matches this data, starting from the item after 'start' | |
1157 | // or the beginning if 'start' is -1. | |
debe6624 | 1158 | long wxListCtrl::FindItem(long start, long data) |
2bda0e17 | 1159 | { |
0b5efdc7 | 1160 | LV_FINDINFO findInfo; |
2bda0e17 | 1161 | |
0b5efdc7 VZ |
1162 | findInfo.flags = LVFI_PARAM; |
1163 | findInfo.lParam = data; | |
2bda0e17 | 1164 | |
edccf428 | 1165 | return ListView_FindItem(GetHwnd(), (int) start, & findInfo); |
2bda0e17 KB |
1166 | } |
1167 | ||
1168 | // Find an item nearest this position in the specified direction, starting from | |
1169 | // the item after 'start' or the beginning if 'start' is -1. | |
debe6624 | 1170 | long wxListCtrl::FindItem(long start, const wxPoint& pt, int direction) |
2bda0e17 | 1171 | { |
0b5efdc7 | 1172 | LV_FINDINFO findInfo; |
2bda0e17 | 1173 | |
0b5efdc7 VZ |
1174 | findInfo.flags = LVFI_NEARESTXY; |
1175 | findInfo.pt.x = pt.x; | |
1176 | findInfo.pt.y = pt.y; | |
acb62b84 | 1177 | findInfo.vkDirection = VK_RIGHT; |
2bda0e17 | 1178 | |
0b5efdc7 VZ |
1179 | if ( direction == wxLIST_FIND_UP ) |
1180 | findInfo.vkDirection = VK_UP; | |
1181 | else if ( direction == wxLIST_FIND_DOWN ) | |
1182 | findInfo.vkDirection = VK_DOWN; | |
1183 | else if ( direction == wxLIST_FIND_LEFT ) | |
1184 | findInfo.vkDirection = VK_LEFT; | |
1185 | else if ( direction == wxLIST_FIND_RIGHT ) | |
1186 | findInfo.vkDirection = VK_RIGHT; | |
1187 | ||
edccf428 | 1188 | return ListView_FindItem(GetHwnd(), (int) start, & findInfo); |
2bda0e17 KB |
1189 | } |
1190 | ||
1191 | // Determines which item (if any) is at the specified point, | |
1192 | // giving details in 'flags' (see wxLIST_HITTEST_... flags above) | |
1193 | long wxListCtrl::HitTest(const wxPoint& point, int& flags) | |
1194 | { | |
1195 | LV_HITTESTINFO hitTestInfo; | |
0b5efdc7 VZ |
1196 | hitTestInfo.pt.x = (int) point.x; |
1197 | hitTestInfo.pt.y = (int) point.y; | |
2bda0e17 | 1198 | |
edccf428 | 1199 | ListView_HitTest(GetHwnd(), & hitTestInfo); |
2bda0e17 | 1200 | |
0b5efdc7 VZ |
1201 | flags = 0; |
1202 | if ( hitTestInfo.flags & LVHT_ABOVE ) | |
1203 | flags |= wxLIST_HITTEST_ABOVE; | |
1204 | if ( hitTestInfo.flags & LVHT_BELOW ) | |
1205 | flags |= wxLIST_HITTEST_BELOW; | |
1206 | if ( hitTestInfo.flags & LVHT_NOWHERE ) | |
1207 | flags |= wxLIST_HITTEST_NOWHERE; | |
1208 | if ( hitTestInfo.flags & LVHT_ONITEMICON ) | |
1209 | flags |= wxLIST_HITTEST_ONITEMICON; | |
1210 | if ( hitTestInfo.flags & LVHT_ONITEMLABEL ) | |
1211 | flags |= wxLIST_HITTEST_ONITEMLABEL; | |
1212 | if ( hitTestInfo.flags & LVHT_ONITEMSTATEICON ) | |
1213 | flags |= wxLIST_HITTEST_ONITEMSTATEICON; | |
1214 | if ( hitTestInfo.flags & LVHT_TOLEFT ) | |
1215 | flags |= wxLIST_HITTEST_TOLEFT; | |
1216 | if ( hitTestInfo.flags & LVHT_TORIGHT ) | |
1217 | flags |= wxLIST_HITTEST_TORIGHT; | |
1218 | ||
edccf428 | 1219 | return (long) hitTestInfo.iItem; |
2bda0e17 KB |
1220 | } |
1221 | ||
1222 | // Inserts an item, returning the index of the new item if successful, | |
1223 | // -1 otherwise. | |
2bda0e17 KB |
1224 | long wxListCtrl::InsertItem(wxListItem& info) |
1225 | { | |
98ec9dbe VZ |
1226 | wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") ); |
1227 | ||
0b5efdc7 VZ |
1228 | LV_ITEM item; |
1229 | wxConvertToMSWListItem(this, info, item); | |
2bda0e17 | 1230 | |
bdc72a22 VZ |
1231 | // check whether it has any custom attributes |
1232 | if ( info.HasAttributes() ) | |
1233 | { | |
2702ed5a | 1234 | |
35ec54d3 VS |
1235 | wxListItemAttr *attr; |
1236 | attr = (wxListItemAttr*) m_attrs.Get(item.iItem); | |
2702ed5a | 1237 | |
35ec54d3 | 1238 | if (attr == NULL) |
2702ed5a | 1239 | |
35ec54d3 | 1240 | m_attrs.Put(item.iItem, (wxObject *)new wxListItemAttr(*info.GetAttributes())); |
2702ed5a | 1241 | |
35ec54d3 | 1242 | else *attr = *info.GetAttributes(); |
bdc72a22 VZ |
1243 | |
1244 | m_hasAnyAttr = TRUE; | |
1245 | } | |
bdc72a22 | 1246 | |
edccf428 | 1247 | return (long) ListView_InsertItem(GetHwnd(), & item); |
2bda0e17 KB |
1248 | } |
1249 | ||
debe6624 | 1250 | long wxListCtrl::InsertItem(long index, const wxString& label) |
2bda0e17 | 1251 | { |
0b5efdc7 VZ |
1252 | wxListItem info; |
1253 | info.m_text = label; | |
1254 | info.m_mask = wxLIST_MASK_TEXT; | |
1255 | info.m_itemId = index; | |
1256 | return InsertItem(info); | |
2bda0e17 KB |
1257 | } |
1258 | ||
1259 | // Inserts an image item | |
debe6624 | 1260 | long wxListCtrl::InsertItem(long index, int imageIndex) |
2bda0e17 | 1261 | { |
0b5efdc7 VZ |
1262 | wxListItem info; |
1263 | info.m_image = imageIndex; | |
1264 | info.m_mask = wxLIST_MASK_IMAGE; | |
1265 | info.m_itemId = index; | |
1266 | return InsertItem(info); | |
2bda0e17 KB |
1267 | } |
1268 | ||
1269 | // Inserts an image/string item | |
debe6624 | 1270 | long wxListCtrl::InsertItem(long index, const wxString& label, int imageIndex) |
2bda0e17 | 1271 | { |
0b5efdc7 VZ |
1272 | wxListItem info; |
1273 | info.m_image = imageIndex; | |
1274 | info.m_text = label; | |
1275 | info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT; | |
1276 | info.m_itemId = index; | |
1277 | return InsertItem(info); | |
2bda0e17 KB |
1278 | } |
1279 | ||
1280 | // For list view mode (only), inserts a column. | |
debe6624 | 1281 | long wxListCtrl::InsertColumn(long col, wxListItem& item) |
2bda0e17 | 1282 | { |
0b5efdc7 VZ |
1283 | LV_COLUMN lvCol; |
1284 | lvCol.mask = 0; | |
1285 | lvCol.fmt = 0; | |
1286 | lvCol.pszText = NULL; | |
1287 | ||
1288 | if ( item.m_mask & wxLIST_MASK_TEXT ) | |
1289 | { | |
1290 | lvCol.mask |= LVCF_TEXT; | |
1291 | lvCol.pszText = WXSTRINGCAST item.m_text; | |
1292 | lvCol.cchTextMax = 0; // Ignored | |
1293 | } | |
1294 | if ( item.m_mask & wxLIST_MASK_FORMAT ) | |
1295 | { | |
1296 | lvCol.mask |= LVCF_FMT; | |
1297 | ||
1298 | if ( item.m_format == wxLIST_FORMAT_LEFT ) | |
1299 | lvCol.fmt = LVCFMT_LEFT; | |
1300 | if ( item.m_format == wxLIST_FORMAT_RIGHT ) | |
1301 | lvCol.fmt = LVCFMT_RIGHT; | |
1302 | if ( item.m_format == wxLIST_FORMAT_CENTRE ) | |
1303 | lvCol.fmt = LVCFMT_CENTER; | |
2bda0e17 KB |
1304 | } |
1305 | ||
e373f51b | 1306 | lvCol.mask |= LVCF_WIDTH; |
0b5efdc7 VZ |
1307 | if ( item.m_mask & wxLIST_MASK_WIDTH ) |
1308 | { | |
e373f51b | 1309 | if ( item.m_width == wxLIST_AUTOSIZE) |
0b5efdc7 | 1310 | lvCol.cx = LVSCW_AUTOSIZE; |
e373f51b | 1311 | else if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER) |
0b5efdc7 | 1312 | lvCol.cx = LVSCW_AUTOSIZE_USEHEADER; |
e373f51b VZ |
1313 | else |
1314 | lvCol.cx = item.m_width; | |
1315 | } | |
1316 | else | |
1317 | { | |
1318 | // always give some width to the new column: this one is compatible | |
1319 | // with wxGTK | |
1320 | lvCol.cx = 80; | |
0b5efdc7 | 1321 | } |
e373f51b | 1322 | |
0b5efdc7 VZ |
1323 | lvCol.mask |= LVCF_SUBITEM; |
1324 | lvCol.iSubItem = col; | |
2bda0e17 | 1325 | |
edccf428 | 1326 | bool success = ListView_InsertColumn(GetHwnd(), col, & lvCol) != -1; |
2bda0e17 | 1327 | if ( success ) |
e373f51b VZ |
1328 | { |
1329 | m_colCount++; | |
1330 | } | |
1331 | else | |
1332 | { | |
223d09f6 | 1333 | wxLogDebug(wxT("Failed to insert the column '%s' into listview!"), |
e373f51b VZ |
1334 | lvCol.pszText); |
1335 | } | |
1336 | ||
2bda0e17 KB |
1337 | return success; |
1338 | } | |
1339 | ||
bdc72a22 VZ |
1340 | long wxListCtrl::InsertColumn(long col, |
1341 | const wxString& heading, | |
1342 | int format, | |
1343 | int width) | |
2bda0e17 | 1344 | { |
0b5efdc7 VZ |
1345 | wxListItem item; |
1346 | item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT; | |
1347 | item.m_text = heading; | |
1348 | if ( width > -1 ) | |
1349 | { | |
1350 | item.m_mask |= wxLIST_MASK_WIDTH; | |
1351 | item.m_width = width; | |
1352 | } | |
1353 | item.m_format = format; | |
2bda0e17 | 1354 | |
0b5efdc7 | 1355 | return InsertColumn(col, item); |
2bda0e17 KB |
1356 | } |
1357 | ||
1358 | // Scrolls the list control. If in icon, small icon or report view mode, | |
1359 | // x specifies the number of pixels to scroll. If in list view mode, x | |
1360 | // specifies the number of columns to scroll. | |
1361 | // If in icon, small icon or list view mode, y specifies the number of pixels | |
1362 | // to scroll. If in report view mode, y specifies the number of lines to scroll. | |
debe6624 | 1363 | bool wxListCtrl::ScrollList(int dx, int dy) |
2bda0e17 | 1364 | { |
edccf428 | 1365 | return (ListView_Scroll(GetHwnd(), dx, dy) != 0); |
2bda0e17 KB |
1366 | } |
1367 | ||
1368 | // Sort items. | |
1369 | ||
1370 | // fn is a function which takes 3 long arguments: item1, item2, data. | |
1371 | // item1 is the long data associated with a first item (NOT the index). | |
1372 | // item2 is the long data associated with a second item (NOT the index). | |
1373 | // data is the same value as passed to SortItems. | |
1374 | // The return value is a negative number if the first item should precede the second | |
1375 | // item, a positive number of the second item should precede the first, | |
1376 | // or zero if the two items are equivalent. | |
1377 | ||
1378 | // data is arbitrary data to be passed to the sort function. | |
19230604 RD |
1379 | |
1380 | // FIXME: this is horrible and MT-unsafe and everything else but I don't have | |
1381 | // time for anything better right now (VZ) | |
1382 | static long gs_sortData = 0; | |
1383 | static wxListCtrl *gs_sortCtrl = NULL; | |
1384 | static wxListCtrlCompare gs_sortFunction = NULL; | |
1385 | ||
1386 | int wxCMPFUNC_CONV wxListCtrlCompareFn(const void *arg1, const void *arg2) | |
1387 | { | |
1388 | int n1 = *(const int *)arg1, | |
1389 | n2 = *(const int *)arg2; | |
1390 | ||
1391 | return gs_sortFunction(gs_sortCtrl->GetItemData(n1), | |
1392 | gs_sortCtrl->GetItemData(n2), | |
1393 | gs_sortData); | |
1394 | } | |
1395 | ||
2bda0e17 KB |
1396 | bool wxListCtrl::SortItems(wxListCtrlCompare fn, long data) |
1397 | { | |
19230604 RD |
1398 | // sort the attributes too |
1399 | if ( m_hasAnyAttr ) | |
1400 | { | |
1401 | int n, | |
1402 | count = GetItemCount(); | |
1403 | int *aItems = new int[count]; | |
1404 | for ( n = 0; n < count; n++ ) | |
1405 | { | |
1406 | aItems[n] = n; | |
1407 | } | |
1408 | ||
1409 | gs_sortData = data; | |
1410 | gs_sortCtrl = this; | |
1411 | gs_sortFunction = fn; | |
1412 | ||
1413 | qsort(aItems, count, sizeof(int), wxListCtrlCompareFn); | |
1414 | ||
1415 | gs_sortData = 0; | |
1416 | gs_sortCtrl = NULL; | |
1417 | gs_sortFunction = NULL; | |
1418 | ||
1419 | wxHashTable attrsNew(wxKEY_INTEGER, 1000); | |
1420 | for ( n = 0; n < count; n++ ) | |
1421 | { | |
7946d7de | 1422 | wxObject *attr = m_attrs.Delete(aItems[n]); |
19230604 RD |
1423 | if ( attr ) |
1424 | { | |
7946d7de | 1425 | attrsNew.Put(n, attr); |
19230604 RD |
1426 | } |
1427 | } | |
1428 | ||
1429 | m_attrs.Destroy(); | |
1430 | m_attrs = attrsNew; | |
1431 | ||
1432 | delete [] aItems; | |
1433 | } | |
1434 | ||
1435 | if ( !ListView_SortItems(GetHwnd(), (PFNLVCOMPARE)fn, data) ) | |
1436 | { | |
1437 | wxLogDebug(_T("ListView_SortItems() failed")); | |
1438 | ||
1439 | return FALSE; | |
1440 | } | |
1441 | ||
1442 | return TRUE; | |
2bda0e17 KB |
1443 | } |
1444 | ||
19230604 RD |
1445 | |
1446 | ||
edccf428 VZ |
1447 | // ---------------------------------------------------------------------------- |
1448 | // message processing | |
1449 | // ---------------------------------------------------------------------------- | |
1450 | ||
debe6624 | 1451 | bool wxListCtrl::MSWCommand(WXUINT cmd, WXWORD id) |
2bda0e17 | 1452 | { |
0b5efdc7 | 1453 | if (cmd == EN_UPDATE) |
acb62b84 | 1454 | { |
0b5efdc7 VZ |
1455 | wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id); |
1456 | event.SetEventObject( this ); | |
1457 | ProcessCommand(event); | |
1458 | return TRUE; | |
acb62b84 | 1459 | } |
0b5efdc7 | 1460 | else if (cmd == EN_KILLFOCUS) |
acb62b84 | 1461 | { |
0b5efdc7 VZ |
1462 | wxCommandEvent event(wxEVT_KILL_FOCUS, id); |
1463 | event.SetEventObject( this ); | |
1464 | ProcessCommand(event); | |
1465 | return TRUE; | |
acb62b84 | 1466 | } |
edccf428 VZ |
1467 | else |
1468 | return FALSE; | |
0b5efdc7 VZ |
1469 | } |
1470 | ||
a23fd0e1 | 1471 | bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) |
0b5efdc7 | 1472 | { |
bdc72a22 VZ |
1473 | // prepare the event |
1474 | // ----------------- | |
1475 | ||
0b5efdc7 VZ |
1476 | wxListEvent event(wxEVT_NULL, m_windowId); |
1477 | wxEventType eventType = wxEVT_NULL; | |
225fe9d6 | 1478 | |
bdc72a22 | 1479 | NMHDR *nmhdr = (NMHDR *)lParam; |
225fe9d6 VZ |
1480 | |
1481 | // almost all messages use NM_LISTVIEW | |
1482 | NM_LISTVIEW *nmLV = (NM_LISTVIEW *)nmhdr; | |
1483 | ||
1484 | // this is true for almost all events | |
1485 | event.m_item.m_data = nmLV->lParam; | |
1486 | ||
bdc72a22 | 1487 | switch ( nmhdr->code ) |
acb62b84 | 1488 | { |
0b5efdc7 | 1489 | case LVN_BEGINRDRAG: |
bdc72a22 | 1490 | eventType = wxEVT_COMMAND_LIST_BEGIN_RDRAG; |
0b5efdc7 | 1491 | // fall through |
cb0f56f9 | 1492 | |
0b5efdc7 VZ |
1493 | case LVN_BEGINDRAG: |
1494 | if ( eventType == wxEVT_NULL ) | |
1495 | { | |
1496 | eventType = wxEVT_COMMAND_LIST_BEGIN_DRAG; | |
1497 | } | |
1498 | ||
225fe9d6 VZ |
1499 | event.m_itemIndex = nmLV->iItem; |
1500 | event.m_pointDrag.x = nmLV->ptAction.x; | |
1501 | event.m_pointDrag.y = nmLV->ptAction.y; | |
0b5efdc7 VZ |
1502 | break; |
1503 | ||
1504 | case LVN_BEGINLABELEDIT: | |
1505 | { | |
1506 | eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT; | |
1507 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
8dff2b5c | 1508 | wxConvertFromMSWListItem(GetHwnd(), event.m_item, info->item); |
7bf1474a | 1509 | event.m_itemIndex = event.m_item.m_itemId; |
0b5efdc7 | 1510 | } |
225fe9d6 | 1511 | break; |
0b5efdc7 VZ |
1512 | |
1513 | case LVN_COLUMNCLICK: | |
225fe9d6 VZ |
1514 | eventType = wxEVT_COMMAND_LIST_COL_CLICK; |
1515 | event.m_itemIndex = -1; | |
1516 | event.m_col = nmLV->iSubItem; | |
1517 | break; | |
5ea47806 | 1518 | |
0b5efdc7 | 1519 | case LVN_DELETEALLITEMS: |
6932a32c | 1520 | eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS; |
5ea47806 | 1521 | event.m_itemIndex = -1; |
5ea47806 | 1522 | |
6932a32c | 1523 | FreeAllAttrs(); |
bdc72a22 | 1524 | |
6932a32c | 1525 | break; |
5ea47806 | 1526 | |
0b5efdc7 | 1527 | case LVN_DELETEITEM: |
225fe9d6 VZ |
1528 | eventType = wxEVT_COMMAND_LIST_DELETE_ITEM; |
1529 | event.m_itemIndex = nmLV->iItem; | |
bdc72a22 | 1530 | |
225fe9d6 VZ |
1531 | if ( m_hasAnyAttr ) |
1532 | { | |
1533 | delete (wxListItemAttr *)m_attrs.Delete(nmLV->iItem); | |
0b5efdc7 | 1534 | } |
bdc72a22 VZ |
1535 | break; |
1536 | ||
0b5efdc7 VZ |
1537 | case LVN_ENDLABELEDIT: |
1538 | { | |
1539 | eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT; | |
1540 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
8dff2b5c | 1541 | wxConvertFromMSWListItem(GetHwnd(), event.m_item, info->item); |
0b5efdc7 | 1542 | if ( info->item.pszText == NULL || info->item.iItem == -1 ) |
1ee4ead5 | 1543 | return FALSE; |
7bf1474a VZ |
1544 | |
1545 | event.m_itemIndex = event.m_item.m_itemId; | |
0b5efdc7 | 1546 | } |
bdc72a22 VZ |
1547 | break; |
1548 | ||
1549 | case LVN_SETDISPINFO: | |
1550 | { | |
1551 | eventType = wxEVT_COMMAND_LIST_SET_INFO; | |
1552 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
8dff2b5c | 1553 | wxConvertFromMSWListItem(GetHwnd(), event.m_item, info->item); |
bdc72a22 VZ |
1554 | } |
1555 | break; | |
edccf428 | 1556 | |
0b5efdc7 | 1557 | case LVN_INSERTITEM: |
225fe9d6 VZ |
1558 | eventType = wxEVT_COMMAND_LIST_INSERT_ITEM; |
1559 | event.m_itemIndex = nmLV->iItem; | |
1560 | break; | |
bdc72a22 | 1561 | |
0b5efdc7 | 1562 | case LVN_ITEMCHANGED: |
225fe9d6 VZ |
1563 | // This needs to be sent to wxListCtrl as a rather more concrete |
1564 | // event. For now, just detect a selection or deselection. | |
1565 | if ( (nmLV->uNewState & LVIS_SELECTED) && !(nmLV->uOldState & LVIS_SELECTED) ) | |
0b5efdc7 | 1566 | { |
225fe9d6 VZ |
1567 | eventType = wxEVT_COMMAND_LIST_ITEM_SELECTED; |
1568 | event.m_itemIndex = nmLV->iItem; | |
1569 | } | |
1570 | else if ( !(nmLV->uNewState & LVIS_SELECTED) && (nmLV->uOldState & LVIS_SELECTED) ) | |
1571 | { | |
1572 | eventType = wxEVT_COMMAND_LIST_ITEM_DESELECTED; | |
1573 | event.m_itemIndex = nmLV->iItem; | |
0b5efdc7 | 1574 | } |
225fe9d6 VZ |
1575 | else |
1576 | { | |
1577 | return FALSE; | |
1578 | } | |
1579 | break; | |
edccf428 | 1580 | |
0b5efdc7 VZ |
1581 | case LVN_KEYDOWN: |
1582 | { | |
0b5efdc7 | 1583 | LV_KEYDOWN *info = (LV_KEYDOWN *)lParam; |
edccf428 VZ |
1584 | WORD wVKey = info->wVKey; |
1585 | ||
1586 | // get the current selection | |
1587 | long lItem = GetNextItem(-1, | |
1588 | wxLIST_NEXT_ALL, | |
1589 | wxLIST_STATE_SELECTED); | |
1590 | ||
d8408fc6 VZ |
1591 | // <Enter> or <Space> activate the selected item if any (but |
1592 | // not with Shift and/or Ctrl as then they have a predefined | |
1593 | // meaning for the list view) | |
1594 | if ( lItem != -1 && | |
1595 | (wVKey == VK_RETURN || wVKey == VK_SPACE) && | |
1596 | !(wxIsShiftDown() || wxIsCtrlDown()) ) | |
edccf428 | 1597 | { |
edccf428 | 1598 | eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED; |
edccf428 VZ |
1599 | } |
1600 | else | |
1601 | { | |
1602 | eventType = wxEVT_COMMAND_LIST_KEY_DOWN; | |
1603 | event.m_code = wxCharCodeMSWToWX(wVKey); | |
1604 | } | |
225fe9d6 | 1605 | |
7db91489 VZ |
1606 | event.m_itemIndex = |
1607 | event.m_item.m_itemId = lItem; | |
1608 | ||
f6bcfd97 BP |
1609 | if ( lItem != -1 ) |
1610 | { | |
1611 | // fill the other fields too | |
1612 | event.m_item.m_text = GetItemText(lItem); | |
1613 | event.m_item.m_data = GetItemData(lItem); | |
1614 | } | |
0b5efdc7 | 1615 | } |
225fe9d6 | 1616 | break; |
edccf428 VZ |
1617 | |
1618 | case NM_DBLCLK: | |
1619 | // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do | |
1620 | // anything else | |
1621 | if ( wxControl::MSWOnNotify(idCtrl, lParam, result) ) | |
1622 | { | |
1623 | return TRUE; | |
1624 | } | |
1625 | ||
1626 | // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event | |
5bd3a2da | 1627 | // if it happened on an item (and not on empty place) |
225fe9d6 | 1628 | if ( nmLV->iItem == -1 ) |
1ee4ead5 | 1629 | { |
225fe9d6 VZ |
1630 | // not on item |
1631 | return FALSE; | |
1ee4ead5 | 1632 | } |
225fe9d6 VZ |
1633 | |
1634 | eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED; | |
1635 | event.m_itemIndex = nmLV->iItem; | |
f6bcfd97 | 1636 | event.m_item.m_text = GetItemText(nmLV->iItem); |
225fe9d6 | 1637 | event.m_item.m_data = GetItemData(nmLV->iItem); |
edccf428 | 1638 | break; |
cb0f56f9 VZ |
1639 | |
1640 | case NM_RCLICK: | |
225fe9d6 VZ |
1641 | /* TECH NOTE: NM_RCLICK isn't really good enough here. We want to |
1642 | subclass and check for the actual WM_RBUTTONDOWN message, | |
1643 | because NM_RCLICK waits for the WM_RBUTTONUP message as well | |
1644 | before firing off. We want to have notify events for both down | |
1645 | -and- up. */ | |
1646 | { | |
1647 | // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(), | |
1648 | // don't do anything else | |
1649 | if ( wxControl::MSWOnNotify(idCtrl, lParam, result) ) | |
1650 | { | |
1651 | return TRUE; | |
1652 | } | |
cb0f56f9 | 1653 | |
225fe9d6 VZ |
1654 | // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event |
1655 | LV_HITTESTINFO lvhti; | |
1656 | wxZeroMemory(lvhti); | |
11c7d5b6 | 1657 | |
225fe9d6 VZ |
1658 | ::GetCursorPos(&(lvhti.pt)); |
1659 | ::ScreenToClient(GetHwnd(),&(lvhti.pt)); | |
1660 | if ( ListView_HitTest(GetHwnd(),&lvhti) != -1 ) | |
cb0f56f9 | 1661 | { |
225fe9d6 VZ |
1662 | if ( lvhti.flags & LVHT_ONITEM ) |
1663 | { | |
1664 | eventType = wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK; | |
1665 | event.m_itemIndex = lvhti.iItem; | |
a1f79c1e VZ |
1666 | event.m_pointDrag.x = lvhti.pt.x; |
1667 | event.m_pointDrag.y = lvhti.pt.y; | |
225fe9d6 | 1668 | } |
cb0f56f9 | 1669 | } |
9bfa7bfc | 1670 | } |
cb0f56f9 VZ |
1671 | break; |
1672 | ||
bdc72a22 VZ |
1673 | #if 0 |
1674 | case NM_MCLICK: // ***** THERE IS NO NM_MCLICK. Subclass anyone? ****** | |
1675 | { | |
1676 | // if the user processes it in wxEVT_COMMAND_MIDDLE_CLICK(), don't do | |
1677 | // anything else | |
1678 | if ( wxControl::MSWOnNotify(idCtrl, lParam, result) ) | |
1679 | { | |
1680 | return TRUE; | |
1681 | } | |
cb0f56f9 | 1682 | |
bdc72a22 VZ |
1683 | // else translate it into wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK event |
1684 | eventType = wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK; | |
1685 | NMITEMACTIVATE* hdr = (NMITEMACTIVATE*)lParam; | |
1686 | event.m_itemIndex = hdr->iItem; | |
1687 | } | |
1688 | break; | |
1689 | #endif // 0 | |
1690 | ||
bf9b6266 VZ |
1691 | #if defined(_WIN32_IE) && _WIN32_IE >= 0x300 \ |
1692 | && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) | |
bdc72a22 | 1693 | case NM_CUSTOMDRAW: |
63166611 VZ |
1694 | *result = OnCustomDraw(lParam); |
1695 | ||
1696 | return TRUE; | |
6ecfe2ac | 1697 | #endif // _WIN32_IE >= 0x300 |
0b5efdc7 | 1698 | |
614391dc VZ |
1699 | case LVN_ODCACHEHINT: |
1700 | { | |
1701 | const NM_CACHEHINT *cacheHint = (NM_CACHEHINT *)lParam; | |
1702 | ||
1703 | eventType = wxEVT_COMMAND_LIST_CACHE_HINT; | |
e623926d VZ |
1704 | |
1705 | // we get some really stupid cache hints like ones for items in | |
1706 | // range 0..0 for an empty control or, after deleting an item, | |
1707 | // for items in invalid range - filter this garbage out | |
1708 | if ( cacheHint->iFrom < cacheHint->iTo ) | |
1709 | { | |
1710 | event.m_oldItemIndex = cacheHint->iFrom; | |
1711 | ||
1712 | long iMax = GetItemCount(); | |
1713 | event.m_itemIndex = cacheHint->iTo < iMax ? cacheHint->iTo | |
1714 | : iMax - 1; | |
1715 | } | |
1716 | else | |
1717 | { | |
1718 | return FALSE; | |
1719 | } | |
614391dc VZ |
1720 | } |
1721 | break; | |
1722 | ||
98ec9dbe VZ |
1723 | case LVN_GETDISPINFO: |
1724 | if ( IsVirtual() ) | |
1725 | { | |
1726 | LV_DISPINFO *info = (LV_DISPINFO *)lParam; | |
1727 | ||
1728 | LV_ITEM& lvi = info->item; | |
1729 | long item = lvi.iItem; | |
1730 | ||
1731 | if ( lvi.mask & LVIF_TEXT ) | |
1732 | { | |
1733 | wxString text = OnGetItemText(item, lvi.iSubItem); | |
1734 | wxStrncpy(lvi.pszText, text, lvi.cchTextMax); | |
1735 | } | |
1736 | ||
1737 | if ( lvi.mask & LVIF_IMAGE ) | |
1738 | { | |
1739 | lvi.iImage = OnGetItemImage(item); | |
1740 | } | |
1741 | ||
1742 | // a little dose of healthy paranoia: as we never use | |
1743 | // LVM_SETCALLBACKMASK we're not supposed to get these ones | |
1744 | wxASSERT_MSG( !(lvi.mask & LVIF_STATE), | |
1745 | _T("we don't support state callbacks yet!") ); | |
1746 | ||
1747 | return TRUE; | |
1748 | } | |
1749 | // fall through | |
1750 | ||
edccf428 | 1751 | default: |
a23fd0e1 | 1752 | return wxControl::MSWOnNotify(idCtrl, lParam, result); |
acb62b84 VZ |
1753 | } |
1754 | ||
bdc72a22 VZ |
1755 | // process the event |
1756 | // ----------------- | |
1757 | ||
0b5efdc7 VZ |
1758 | event.SetEventObject( this ); |
1759 | event.SetEventType(eventType); | |
acb62b84 | 1760 | |
0b5efdc7 VZ |
1761 | if ( !GetEventHandler()->ProcessEvent(event) ) |
1762 | return FALSE; | |
acb62b84 | 1763 | |
bdc72a22 VZ |
1764 | // post processing |
1765 | // --------------- | |
1766 | ||
225fe9d6 | 1767 | switch ( nmhdr->code ) |
acb62b84 | 1768 | { |
6932a32c VZ |
1769 | case LVN_DELETEALLITEMS: |
1770 | // always return TRUE to suppress all additional LVN_DELETEITEM | |
1771 | // notifications - this makes deleting all items from a list ctrl | |
1772 | // much faster | |
1773 | *result = TRUE; | |
1774 | ||
1775 | return TRUE; | |
1776 | ||
1ee4ead5 | 1777 | case LVN_ENDLABELEDIT: |
614391dc VZ |
1778 | // logic here is inversed compared to all the other messages |
1779 | *result = event.IsAllowed(); | |
1780 | ||
1781 | return TRUE; | |
acb62b84 | 1782 | } |
acb62b84 | 1783 | |
0b5efdc7 | 1784 | *result = !event.IsAllowed(); |
fd3f686c | 1785 | |
0b5efdc7 | 1786 | return TRUE; |
2bda0e17 KB |
1787 | } |
1788 | ||
63166611 VZ |
1789 | #if defined(_WIN32_IE) && _WIN32_IE >= 0x300 |
1790 | ||
1791 | WXLPARAM wxListCtrl::OnCustomDraw(WXLPARAM lParam) | |
1792 | { | |
1793 | LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam; | |
1794 | NMCUSTOMDRAW& nmcd = lplvcd->nmcd; | |
1795 | switch ( nmcd.dwDrawStage ) | |
1796 | { | |
1797 | case CDDS_PREPAINT: | |
1798 | // if we've got any items with non standard attributes, | |
1799 | // notify us before painting each item | |
1800 | // | |
1801 | // for virtual controls, always suppose that we have attributes as | |
1802 | // there is no way to check for this | |
1803 | return IsVirtual() || m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW | |
1804 | : CDRF_DODEFAULT; | |
1805 | ||
1806 | case CDDS_ITEMPREPAINT: | |
1807 | { | |
1808 | size_t item = (size_t)nmcd.dwItemSpec; | |
a7f560a2 VZ |
1809 | if ( item >= (size_t)GetItemCount() ) |
1810 | { | |
1811 | // we get this message with item == 0 for an empty control, | |
1812 | // we must ignore it as calling OnGetItemAttr() would be | |
1813 | // wrong | |
1814 | return CDRF_DODEFAULT; | |
1815 | } | |
1816 | ||
63166611 VZ |
1817 | wxListItemAttr *attr = |
1818 | IsVirtual() ? OnGetItemAttr(item) | |
1819 | : (wxListItemAttr *)m_attrs.Get(item); | |
1820 | ||
1821 | if ( !attr ) | |
1822 | { | |
1823 | // nothing to do for this item | |
1824 | return CDRF_DODEFAULT; | |
1825 | } | |
1826 | ||
1827 | HFONT hFont; | |
1828 | wxColour colText, colBack; | |
1829 | if ( attr->HasFont() ) | |
1830 | { | |
1831 | wxFont font = attr->GetFont(); | |
1832 | hFont = (HFONT)font.GetResourceHandle(); | |
1833 | } | |
1834 | else | |
1835 | { | |
1836 | hFont = 0; | |
1837 | } | |
1838 | ||
1839 | if ( attr->HasTextColour() ) | |
1840 | { | |
1841 | colText = attr->GetTextColour(); | |
1842 | } | |
1843 | else | |
1844 | { | |
1845 | colText = GetTextColour(); | |
1846 | } | |
1847 | ||
1848 | if ( attr->HasBackgroundColour() ) | |
1849 | { | |
1850 | colBack = attr->GetBackgroundColour(); | |
1851 | } | |
1852 | else | |
1853 | { | |
1854 | colBack = GetBackgroundColour(); | |
1855 | } | |
1856 | ||
1857 | lplvcd->clrText = wxColourToRGB(colText); | |
1858 | lplvcd->clrTextBk = wxColourToRGB(colBack); | |
1859 | ||
1860 | // note that if we wanted to set colours for | |
1861 | // individual columns (subitems), we would have | |
1862 | // returned CDRF_NOTIFYSUBITEMREDRAW from here | |
1863 | if ( hFont ) | |
1864 | { | |
1865 | ::SelectObject(nmcd.hdc, hFont); | |
1866 | ||
1867 | return CDRF_NEWFONT; | |
1868 | } | |
1869 | } | |
1870 | // fall through to return CDRF_DODEFAULT | |
1871 | ||
1872 | default: | |
1873 | return CDRF_DODEFAULT; | |
1874 | } | |
1875 | } | |
1876 | ||
1877 | #endif // NM_CUSTOMDRAW supported | |
1878 | ||
2702ed5a JS |
1879 | // Necessary for drawing hrules and vrules, if specified |
1880 | void wxListCtrl::OnPaint(wxPaintEvent& event) | |
1881 | { | |
1882 | wxPaintDC dc(this); | |
1883 | ||
1884 | wxControl::OnPaint(event); | |
1885 | ||
1886 | // Reset the device origin since it may have been set | |
1887 | dc.SetDeviceOrigin(0, 0); | |
1888 | ||
1889 | bool drawHRules = ((GetWindowStyle() & wxLC_HRULES) != 0); | |
1890 | bool drawVRules = ((GetWindowStyle() & wxLC_VRULES) != 0); | |
1891 | ||
1892 | if (!drawHRules && !drawVRules) | |
1893 | return; | |
1894 | if ((GetWindowStyle() & wxLC_REPORT) == 0) | |
1895 | return; | |
1896 | ||
1897 | wxPen pen(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DLIGHT), 1, wxSOLID); | |
1898 | dc.SetPen(pen); | |
1899 | dc.SetBrush(* wxTRANSPARENT_BRUSH); | |
1900 | ||
1901 | wxSize clientSize = GetClientSize(); | |
1902 | wxRect itemRect; | |
1903 | int cy=0; | |
1904 | ||
2702ed5a JS |
1905 | int itemCount = GetItemCount(); |
1906 | int i; | |
1907 | for (i = 0; i < itemCount; i++) | |
1908 | { | |
1909 | if (GetItemRect(i, itemRect)) | |
1910 | { | |
1911 | cy = itemRect.GetTop(); | |
1912 | if (i != 0) // Don't draw the first one | |
1913 | { | |
1914 | dc.DrawLine(0, cy, clientSize.x, cy); | |
ca286917 JS |
1915 | } |
1916 | // Draw last line | |
1917 | if (i == (GetItemCount() - 1)) | |
1918 | { | |
1919 | cy = itemRect.GetBottom(); | |
1920 | dc.DrawLine(0, cy, clientSize.x, cy); | |
2702ed5a JS |
1921 | } |
1922 | } | |
1923 | } | |
1924 | i = (GetItemCount() - 1); | |
1925 | if (drawVRules && (i > -1)) | |
1926 | { | |
1927 | wxRect firstItemRect; | |
1928 | GetItemRect(0, firstItemRect); | |
1929 | ||
1930 | if (GetItemRect(i, itemRect)) | |
1931 | { | |
1932 | int col; | |
1933 | int x = itemRect.GetX(); | |
1934 | for (col = 0; col < GetColumnCount(); col++) | |
1935 | { | |
1936 | int colWidth = GetColumnWidth(col); | |
1937 | x += colWidth ; | |
1938 | dc.DrawLine(x, firstItemRect.GetY() - 2, x, itemRect.GetBottom()); | |
1939 | } | |
1940 | } | |
1941 | } | |
1942 | } | |
1943 | ||
98ec9dbe VZ |
1944 | // ---------------------------------------------------------------------------- |
1945 | // virtual list controls | |
1946 | // ---------------------------------------------------------------------------- | |
1947 | ||
d699f48b | 1948 | wxString wxListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const |
98ec9dbe VZ |
1949 | { |
1950 | // this is a pure virtual function, in fact - which is not really pure | |
1951 | // because the controls which are not virtual don't need to implement it | |
1952 | wxFAIL_MSG( _T("not supposed to be called") ); | |
1953 | ||
1954 | return wxEmptyString; | |
1955 | } | |
1956 | ||
d699f48b | 1957 | int wxListCtrl::OnGetItemImage(long WXUNUSED(item)) const |
98ec9dbe VZ |
1958 | { |
1959 | // same as above | |
1960 | wxFAIL_MSG( _T("not supposed to be called") ); | |
1961 | ||
1962 | return -1; | |
1963 | } | |
1964 | ||
d699f48b | 1965 | wxListItemAttr *wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const |
6c02c329 | 1966 | { |
63166611 | 1967 | wxASSERT_MSG( item >= 0 && item < GetItemCount(), |
6c02c329 VZ |
1968 | _T("invalid item index in OnGetItemAttr()") ); |
1969 | ||
1970 | // no attributes by default | |
1971 | return NULL; | |
1972 | } | |
1973 | ||
98ec9dbe VZ |
1974 | void wxListCtrl::SetItemCount(long count) |
1975 | { | |
1976 | wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") ); | |
1977 | ||
1978 | if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT, (WPARAM)count, 0) ) | |
1979 | { | |
1980 | wxLogLastError(_T("ListView_SetItemCount")); | |
1981 | } | |
1982 | } | |
1983 | ||
a7f560a2 VZ |
1984 | void wxListCtrl::RefreshItem(long item) |
1985 | { | |
1986 | if ( !ListView_Update(GetHwnd(), item) ) | |
1987 | { | |
1988 | wxLogLastError(_T("ListView_Update")); | |
1989 | } | |
1990 | } | |
1991 | ||
1992 | void wxListCtrl::RefreshItems(long itemFrom, long itemTo) | |
1993 | { | |
d0debf52 VZ |
1994 | wxRect rect1, rect2; |
1995 | GetItemRect(itemFrom, rect1); | |
1996 | GetItemRect(itemTo, rect2); | |
1997 | ||
1998 | wxRect rect = rect1; | |
1999 | rect.height = rect2.GetBottom() - rect1.GetTop(); | |
2000 | ||
2001 | RefreshRect(rect); | |
a7f560a2 VZ |
2002 | } |
2003 | ||
edccf428 VZ |
2004 | // ---------------------------------------------------------------------------- |
2005 | // wxListItem | |
2006 | // ---------------------------------------------------------------------------- | |
2007 | ||
2bda0e17 | 2008 | // List item structure |
0b5efdc7 | 2009 | wxListItem::wxListItem() |
2bda0e17 KB |
2010 | { |
2011 | m_mask = 0; | |
2012 | m_itemId = 0; | |
2013 | m_col = 0; | |
2014 | m_state = 0; | |
2015 | m_stateMask = 0; | |
2016 | m_image = 0; | |
0b5efdc7 | 2017 | m_data = 0; |
2bda0e17 | 2018 | |
0b5efdc7 VZ |
2019 | m_format = wxLIST_FORMAT_CENTRE; |
2020 | m_width = 0; | |
bdc72a22 VZ |
2021 | |
2022 | m_attr = NULL; | |
2bda0e17 KB |
2023 | } |
2024 | ||
9b00bb16 RR |
2025 | void wxListItem::Clear() |
2026 | { | |
2027 | m_mask = 0; | |
2028 | m_itemId = 0; | |
2029 | m_col = 0; | |
2030 | m_state = 0; | |
2031 | m_stateMask = 0; | |
2032 | m_image = 0; | |
2033 | m_data = 0; | |
2034 | m_format = wxLIST_FORMAT_CENTRE; | |
2035 | m_width = 0; | |
2036 | m_text = wxEmptyString; | |
2037 | ||
2038 | if (m_attr) delete m_attr; | |
2039 | m_attr = NULL; | |
2040 | } | |
2041 | ||
2042 | void wxListItem::ClearAttributes() | |
2043 | { | |
2044 | if (m_attr) delete m_attr; | |
2045 | m_attr = NULL; | |
2046 | } | |
2047 | ||
8dff2b5c VZ |
2048 | static void wxConvertFromMSWListItem(HWND hwndListCtrl, |
2049 | wxListItem& info, | |
2050 | LV_ITEM& lvItem) | |
2bda0e17 | 2051 | { |
0b5efdc7 VZ |
2052 | info.m_data = lvItem.lParam; |
2053 | info.m_mask = 0; | |
2054 | info.m_state = 0; | |
2055 | info.m_stateMask = 0; | |
2056 | info.m_itemId = lvItem.iItem; | |
acb62b84 | 2057 | |
0b5efdc7 | 2058 | long oldMask = lvItem.mask; |
acb62b84 | 2059 | |
0b5efdc7 | 2060 | bool needText = FALSE; |
8dff2b5c | 2061 | if (hwndListCtrl != 0) |
acb62b84 | 2062 | { |
0b5efdc7 VZ |
2063 | if ( lvItem.mask & LVIF_TEXT ) |
2064 | needText = FALSE; | |
2065 | else | |
2066 | needText = TRUE; | |
acb62b84 | 2067 | |
0b5efdc7 VZ |
2068 | if ( needText ) |
2069 | { | |
837e5743 | 2070 | lvItem.pszText = new wxChar[513]; |
0b5efdc7 VZ |
2071 | lvItem.cchTextMax = 512; |
2072 | } | |
edccf428 | 2073 | lvItem.mask |= LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM; |
8dff2b5c | 2074 | ::SendMessage(hwndListCtrl, LVM_GETITEM, 0, (LPARAM)& lvItem); |
0b5efdc7 | 2075 | } |
acb62b84 | 2076 | |
0b5efdc7 | 2077 | if ( lvItem.mask & LVIF_STATE ) |
acb62b84 | 2078 | { |
0b5efdc7 VZ |
2079 | info.m_mask |= wxLIST_MASK_STATE; |
2080 | ||
2081 | if ( lvItem.stateMask & LVIS_CUT) | |
2082 | { | |
edccf428 | 2083 | info.m_stateMask |= wxLIST_STATE_CUT; |
0b5efdc7 | 2084 | if ( lvItem.state & LVIS_CUT ) |
edccf428 | 2085 | info.m_state |= wxLIST_STATE_CUT; |
0b5efdc7 VZ |
2086 | } |
2087 | if ( lvItem.stateMask & LVIS_DROPHILITED) | |
2088 | { | |
edccf428 | 2089 | info.m_stateMask |= wxLIST_STATE_DROPHILITED; |
0b5efdc7 | 2090 | if ( lvItem.state & LVIS_DROPHILITED ) |
edccf428 | 2091 | info.m_state |= wxLIST_STATE_DROPHILITED; |
0b5efdc7 VZ |
2092 | } |
2093 | if ( lvItem.stateMask & LVIS_FOCUSED) | |
2094 | { | |
edccf428 | 2095 | info.m_stateMask |= wxLIST_STATE_FOCUSED; |
0b5efdc7 | 2096 | if ( lvItem.state & LVIS_FOCUSED ) |
edccf428 | 2097 | info.m_state |= wxLIST_STATE_FOCUSED; |
0b5efdc7 VZ |
2098 | } |
2099 | if ( lvItem.stateMask & LVIS_SELECTED) | |
2100 | { | |
edccf428 | 2101 | info.m_stateMask |= wxLIST_STATE_SELECTED; |
0b5efdc7 | 2102 | if ( lvItem.state & LVIS_SELECTED ) |
edccf428 | 2103 | info.m_state |= wxLIST_STATE_SELECTED; |
0b5efdc7 | 2104 | } |
acb62b84 | 2105 | } |
0b5efdc7 VZ |
2106 | |
2107 | if ( lvItem.mask & LVIF_TEXT ) | |
acb62b84 | 2108 | { |
0b5efdc7 VZ |
2109 | info.m_mask |= wxLIST_MASK_TEXT; |
2110 | info.m_text = lvItem.pszText; | |
acb62b84 | 2111 | } |
0b5efdc7 | 2112 | if ( lvItem.mask & LVIF_IMAGE ) |
acb62b84 | 2113 | { |
0b5efdc7 VZ |
2114 | info.m_mask |= wxLIST_MASK_IMAGE; |
2115 | info.m_image = lvItem.iImage; | |
acb62b84 | 2116 | } |
0b5efdc7 VZ |
2117 | if ( lvItem.mask & LVIF_PARAM ) |
2118 | info.m_mask |= wxLIST_MASK_DATA; | |
2119 | if ( lvItem.mask & LVIF_DI_SETITEM ) | |
2120 | info.m_mask |= wxLIST_SET_ITEM; | |
2121 | info.m_col = lvItem.iSubItem; | |
2122 | ||
2123 | if (needText) | |
acb62b84 | 2124 | { |
0b5efdc7 VZ |
2125 | if (lvItem.pszText) |
2126 | delete[] lvItem.pszText; | |
acb62b84 | 2127 | } |
edccf428 | 2128 | lvItem.mask = oldMask; |
2bda0e17 KB |
2129 | } |
2130 | ||
8dff2b5c VZ |
2131 | static void wxConvertToMSWFlags(long state, long stateMask, LV_ITEM& lvItem) |
2132 | { | |
2133 | if (stateMask & wxLIST_STATE_CUT) | |
2134 | { | |
2135 | lvItem.stateMask |= LVIS_CUT; | |
2136 | if (state & wxLIST_STATE_CUT) | |
2137 | lvItem.state |= LVIS_CUT; | |
2138 | } | |
2139 | if (stateMask & wxLIST_STATE_DROPHILITED) | |
2140 | { | |
2141 | lvItem.stateMask |= LVIS_DROPHILITED; | |
2142 | if (state & wxLIST_STATE_DROPHILITED) | |
2143 | lvItem.state |= LVIS_DROPHILITED; | |
2144 | } | |
2145 | if (stateMask & wxLIST_STATE_FOCUSED) | |
2146 | { | |
2147 | lvItem.stateMask |= LVIS_FOCUSED; | |
2148 | if (state & wxLIST_STATE_FOCUSED) | |
2149 | lvItem.state |= LVIS_FOCUSED; | |
2150 | } | |
2151 | if (stateMask & wxLIST_STATE_SELECTED) | |
2152 | { | |
2153 | lvItem.stateMask |= LVIS_SELECTED; | |
2154 | if (state & wxLIST_STATE_SELECTED) | |
2155 | lvItem.state |= LVIS_SELECTED; | |
2156 | } | |
2157 | } | |
2158 | ||
2159 | static void wxConvertToMSWListItem(const wxListCtrl *ctrl, | |
2160 | const wxListItem& info, | |
2161 | LV_ITEM& lvItem) | |
2bda0e17 | 2162 | { |
edccf428 | 2163 | lvItem.iItem = (int) info.m_itemId; |
acb62b84 | 2164 | |
edccf428 | 2165 | lvItem.iImage = info.m_image; |
0b5efdc7 VZ |
2166 | lvItem.lParam = info.m_data; |
2167 | lvItem.stateMask = 0; | |
2168 | lvItem.state = 0; | |
2169 | lvItem.mask = 0; | |
2170 | lvItem.iSubItem = info.m_col; | |
acb62b84 | 2171 | |
0b5efdc7 | 2172 | if (info.m_mask & wxLIST_MASK_STATE) |
acb62b84 | 2173 | { |
edccf428 | 2174 | lvItem.mask |= LVIF_STATE; |
8dff2b5c VZ |
2175 | |
2176 | wxConvertToMSWFlags(info.m_state, info.m_stateMask, lvItem); | |
acb62b84 | 2177 | } |
acb62b84 | 2178 | |
0b5efdc7 | 2179 | if (info.m_mask & wxLIST_MASK_TEXT) |
acb62b84 | 2180 | { |
edccf428 | 2181 | lvItem.mask |= LVIF_TEXT; |
0b5efdc7 VZ |
2182 | if ( ctrl->GetWindowStyleFlag() & wxLC_USER_TEXT ) |
2183 | { | |
2184 | lvItem.pszText = LPSTR_TEXTCALLBACK; | |
2185 | } | |
2186 | else | |
2187 | { | |
e421922f VZ |
2188 | // pszText is not const, hence the cast |
2189 | lvItem.pszText = (wxChar *)info.m_text.c_str(); | |
0b5efdc7 VZ |
2190 | if ( lvItem.pszText ) |
2191 | lvItem.cchTextMax = info.m_text.Length(); | |
2192 | else | |
2193 | lvItem.cchTextMax = 0; | |
2194 | } | |
acb62b84 | 2195 | } |
0b5efdc7 | 2196 | if (info.m_mask & wxLIST_MASK_IMAGE) |
edccf428 | 2197 | lvItem.mask |= LVIF_IMAGE; |
0b5efdc7 | 2198 | if (info.m_mask & wxLIST_MASK_DATA) |
edccf428 | 2199 | lvItem.mask |= LVIF_PARAM; |
2bda0e17 KB |
2200 | } |
2201 | ||
edccf428 | 2202 | // ---------------------------------------------------------------------------- |
2bda0e17 | 2203 | // List event |
edccf428 VZ |
2204 | // ---------------------------------------------------------------------------- |
2205 | ||
92976ab6 | 2206 | IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent) |
2bda0e17 | 2207 | |
fd3f686c | 2208 | wxListEvent::wxListEvent(wxEventType commandType, int id) |
edccf428 | 2209 | : wxNotifyEvent(commandType, id) |
2bda0e17 | 2210 | { |
0b5efdc7 VZ |
2211 | m_code = 0; |
2212 | m_itemIndex = 0; | |
5d47c8a0 | 2213 | m_oldItemIndex = 0; |
0b5efdc7 VZ |
2214 | m_col = 0; |
2215 | m_cancelled = FALSE; | |
2bda0e17 KB |
2216 | } |
2217 | ||
1e6feb95 | 2218 | #endif // wxUSE_LISTCTRL |