]> git.saurik.com Git - wxWidgets.git/blob - src/msw/listctrl.cpp
added wxListCtrl::GetViewRect()
[wxWidgets.git] / src / msw / listctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "listctrl.h"
22 #pragma implementation "listctrlbase.h"
23 #endif
24
25 // For compilers that support precompilation, includes "wx.h".
26 #include "wx/wxprec.h"
27
28 #ifdef __BORLANDC__
29 #pragma hdrstop
30 #endif
31
32 #if wxUSE_LISTCTRL && defined(__WIN95__)
33
34 #ifndef WX_PRECOMP
35 #include "wx/app.h"
36 #include "wx/intl.h"
37 #include "wx/log.h"
38 #include "wx/settings.h"
39 #endif
40
41 #include "wx/textctrl.h"
42 #include "wx/imaglist.h"
43 #include "wx/listctrl.h"
44 #include "wx/dcclient.h"
45
46 #include "wx/msw/private.h"
47
48 // include <commctrl.h> "properly"
49 #include "wx/msw/wrapcctl.h"
50
51 // ----------------------------------------------------------------------------
52 // private functions
53 // ----------------------------------------------------------------------------
54
55 // convert our state and mask flags to LV_ITEM constants
56 static void wxConvertToMSWFlags(long state, long mask, LV_ITEM& lvItem);
57
58 // convert wxListItem to LV_ITEM
59 static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
60 const wxListItem& info, LV_ITEM& lvItem);
61
62 // convert LV_ITEM to wxListItem
63 static void wxConvertFromMSWListItem(HWND hwndListCtrl,
64 wxListItem& info,
65 /* const */ LV_ITEM& lvItem);
66
67 // convert our wxListItem to LV_COLUMN
68 static void wxConvertToMSWListCol(int col, const wxListItem& item,
69 LV_COLUMN& lvCol);
70
71 // ----------------------------------------------------------------------------
72 // private helper classes
73 // ----------------------------------------------------------------------------
74
75 // We have to handle both fooW and fooA notifications in several cases
76 // because of broken commctl.dll and/or unicows.dll. This class is used to
77 // convert LV_ITEMA and LV_ITEMW to LV_ITEM (which is either LV_ITEMA or
78 // LV_ITEMW depending on wxUSE_UNICODE setting), so that it can be processed
79 // by wxConvertToMSWListItem().
80 class wxLV_ITEM
81 {
82 public:
83 ~wxLV_ITEM() { delete m_buf; }
84 operator LV_ITEM&() const { return *m_item; }
85
86 #if wxUSE_UNICODE
87 wxLV_ITEM(LV_ITEMW &item) : m_buf(NULL), m_item(&item) {}
88 wxLV_ITEM(LV_ITEMA &item)
89 {
90 m_item = new LV_ITEM((LV_ITEM&)item);
91 if ( (item.mask & LVIF_TEXT) && item.pszText )
92 {
93 m_buf = new wxMB2WXbuf(wxConvLocal.cMB2WX(item.pszText));
94 m_item->pszText = (wxChar*)m_buf->data();
95 }
96 else
97 m_buf = NULL;
98 }
99 private:
100 wxMB2WXbuf *m_buf;
101
102 #else // !wxUSE_UNICODE
103 wxLV_ITEM(LV_ITEMW &item)
104 {
105 m_item = new LV_ITEM((LV_ITEM&)item);
106
107 // the code below doesn't compile without wxUSE_WCHAR_T and as I don't
108 // know if it's useful to have it at all (do we ever get Unicode
109 // notifications in ANSI mode? I don't think so...) I'm not going to
110 // write alternative implementation right now
111 //
112 // but if it is indeed used, we should simply directly use
113 // ::WideCharToMultiByte() here
114 #if wxUSE_WCHAR_T
115 if ( (item.mask & LVIF_TEXT) && item.pszText )
116 {
117 m_buf = new wxWC2WXbuf(wxConvLocal.cWC2WX(item.pszText));
118 m_item->pszText = (wxChar*)m_buf->data();
119 }
120 else
121 #endif // wxUSE_WCHAR_T
122 m_buf = NULL;
123 }
124 wxLV_ITEM(LV_ITEMA &item) : m_buf(NULL), m_item(&item) {}
125 private:
126 wxWC2WXbuf *m_buf;
127 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
128
129 LV_ITEM *m_item;
130
131 DECLARE_NO_COPY_CLASS(wxLV_ITEM)
132 };
133
134 ///////////////////////////////////////////////////////
135 // Problem:
136 // The MSW version had problems with SetTextColour() et
137 // al as the wxListItemAttr's were stored keyed on the
138 // item index. If a item was inserted anywhere but the end
139 // of the list the the text attributes (colour etc) for
140 // the following items were out of sync.
141 //
142 // Solution:
143 // Under MSW the only way to associate data with a List
144 // item independant of its position in the list is to
145 // store a pointer to it in its lParam attribute. However
146 // user programs are already using this (via the
147 // SetItemData() GetItemData() calls).
148 //
149 // However what we can do is store a pointer to a
150 // structure which contains the attributes we want *and*
151 // a lParam for the users data, e.g.
152 //
153 // class wxListItemInternalData
154 // {
155 // public:
156 // wxListItemAttr *attr;
157 // long lParam; // user data
158 // };
159 //
160 // To conserve memory, a wxListItemInternalData is
161 // only allocated for a LV_ITEM if text attributes or
162 // user data(lparam) are being set.
163
164
165 // class wxListItemInternalData
166 class wxListItemInternalData
167 {
168 public:
169 wxListItemAttr *attr;
170 LPARAM lParam; // user data
171
172 wxListItemInternalData() : attr(NULL), lParam(0) {}
173 ~wxListItemInternalData()
174 {
175 if (attr)
176 delete attr;
177 };
178
179 DECLARE_NO_COPY_CLASS(wxListItemInternalData)
180 };
181
182 // Get the internal data structure
183 static wxListItemInternalData *wxGetInternalData(HWND hwnd, long itemId);
184 static wxListItemInternalData *wxGetInternalData(wxListCtrl *ctl, long itemId);
185 static wxListItemAttr *wxGetInternalDataAttr(wxListCtrl *ctl, long itemId);
186 static void wxDeleteInternalData(wxListCtrl* ctl, long itemId);
187
188
189 // ----------------------------------------------------------------------------
190 // events
191 // ----------------------------------------------------------------------------
192
193 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG)
194 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG)
195 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT)
196 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT)
197 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM)
198 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS)
199 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO)
200 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO)
201 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED)
202 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED)
203 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN)
204 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM)
205 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK)
206 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK)
207 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG)
208 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING)
209 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG)
210 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK)
211 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK)
212 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED)
213 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED)
214 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT)
215
216 #if wxUSE_EXTENDED_RTTI
217 WX_DEFINE_FLAGS( wxListCtrlStyle )
218
219 wxBEGIN_FLAGS( wxListCtrlStyle )
220 // new style border flags, we put them first to
221 // use them for streaming out
222 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
223 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
224 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
225 wxFLAGS_MEMBER(wxBORDER_RAISED)
226 wxFLAGS_MEMBER(wxBORDER_STATIC)
227 wxFLAGS_MEMBER(wxBORDER_NONE)
228
229 // old style border flags
230 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
231 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
232 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
233 wxFLAGS_MEMBER(wxRAISED_BORDER)
234 wxFLAGS_MEMBER(wxSTATIC_BORDER)
235 wxFLAGS_MEMBER(wxNO_BORDER)
236
237 // standard window styles
238 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
239 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
240 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
241 wxFLAGS_MEMBER(wxWANTS_CHARS)
242 wxFLAGS_MEMBER(wxNO_FULL_REPAINT_ON_RESIZE)
243 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
244 wxFLAGS_MEMBER(wxVSCROLL)
245 wxFLAGS_MEMBER(wxHSCROLL)
246
247 wxFLAGS_MEMBER(wxLC_LIST)
248 wxFLAGS_MEMBER(wxLC_REPORT)
249 wxFLAGS_MEMBER(wxLC_ICON)
250 wxFLAGS_MEMBER(wxLC_SMALL_ICON)
251 wxFLAGS_MEMBER(wxLC_ALIGN_TOP)
252 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT)
253 wxFLAGS_MEMBER(wxLC_AUTOARRANGE)
254 wxFLAGS_MEMBER(wxLC_USER_TEXT)
255 wxFLAGS_MEMBER(wxLC_EDIT_LABELS)
256 wxFLAGS_MEMBER(wxLC_NO_HEADER)
257 wxFLAGS_MEMBER(wxLC_SINGLE_SEL)
258 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING)
259 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING)
260 wxFLAGS_MEMBER(wxLC_VIRTUAL)
261
262 wxEND_FLAGS( wxListCtrlStyle )
263
264 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl, wxControl,"wx/listctrl.h")
265
266 wxBEGIN_PROPERTIES_TABLE(wxListCtrl)
267 wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent )
268
269 wxPROPERTY_FLAGS( WindowStyle , wxListCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
270 wxEND_PROPERTIES_TABLE()
271
272 wxBEGIN_HANDLERS_TABLE(wxListCtrl)
273 wxEND_HANDLERS_TABLE()
274
275 wxCONSTRUCTOR_5( wxListCtrl , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
276
277 /*
278 TODO : Expose more information of a list's layout etc. via appropriate objects (à la NotebookPageInfo)
279 */
280 #else
281 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl, wxControl)
282 #endif
283
284 IMPLEMENT_DYNAMIC_CLASS(wxListView, wxListCtrl)
285 IMPLEMENT_DYNAMIC_CLASS(wxListItem, wxObject)
286
287 IMPLEMENT_DYNAMIC_CLASS(wxListEvent, wxNotifyEvent)
288
289 BEGIN_EVENT_TABLE(wxListCtrl, wxControl)
290 EVT_PAINT(wxListCtrl::OnPaint)
291 END_EVENT_TABLE()
292
293 // ============================================================================
294 // implementation
295 // ============================================================================
296
297 // ----------------------------------------------------------------------------
298 // wxListCtrl construction
299 // ----------------------------------------------------------------------------
300
301 void wxListCtrl::Init()
302 {
303 m_imageListNormal = NULL;
304 m_imageListSmall = NULL;
305 m_imageListState = NULL;
306 m_ownsImageListNormal = m_ownsImageListSmall = m_ownsImageListState = FALSE;
307 m_baseStyle = 0;
308 m_colCount = 0;
309 m_count = 0;
310 m_ignoreChangeMessages = FALSE;
311 m_textCtrl = NULL;
312 m_AnyInternalData = FALSE;
313 m_hasAnyAttr = FALSE;
314 }
315
316 bool wxListCtrl::Create(wxWindow *parent,
317 wxWindowID id,
318 const wxPoint& pos,
319 const wxSize& size,
320 long style,
321 const wxValidator& validator,
322 const wxString& name)
323 {
324 #if wxUSE_VALIDATORS
325 SetValidator(validator);
326 #endif // wxUSE_VALIDATORS
327
328 SetName(name);
329
330 int x = pos.x;
331 int y = pos.y;
332 int width = size.x;
333 int height = size.y;
334
335 m_windowStyle = style;
336
337 SetParent(parent);
338
339 if (width <= 0)
340 width = 100;
341 if (height <= 0)
342 height = 30;
343 if (x < 0)
344 x = 0;
345 if (y < 0)
346 y = 0;
347
348 m_windowId = (id == -1) ? NewControlId() : id;
349
350 DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP |
351 LVS_SHAREIMAGELISTS | LVS_SHOWSELALWAYS;
352
353 m_baseStyle = wstyle;
354
355 if ( !DoCreateControl(x, y, width, height) )
356 return FALSE;
357
358 if (parent)
359 parent->AddChild(this);
360
361 return TRUE;
362 }
363
364 bool wxListCtrl::DoCreateControl(int x, int y, int w, int h)
365 {
366 DWORD wstyle = m_baseStyle;
367
368 WXDWORD exStyle = 0;
369 WXDWORD standardStyle = MSWGetStyle(GetWindowStyle(), & exStyle) ;
370
371 long oldStyle = 0; // Dummy
372 wstyle |= ConvertToMSWStyle(oldStyle, m_windowStyle);
373 wstyle |= standardStyle;
374
375 // Create the ListView control.
376 m_hWnd = (WXHWND)CreateWindowEx(exStyle,
377 WC_LISTVIEW,
378 wxEmptyString,
379 wstyle,
380 x, y, w, h,
381 GetWinHwnd(GetParent()),
382 (HMENU)m_windowId,
383 wxGetInstance(),
384 NULL);
385
386 if ( !m_hWnd )
387 {
388 wxLogError(_("Can't create list control window, check that comctl32.dll is installed."));
389
390 return FALSE;
391 }
392
393 // explicitly say that we want to use Unicode because otherwise we get ANSI
394 // versions of _some_ messages (notably LVN_GETDISPINFOA) in MSLU build
395 #if wxUSE_UNICODE
396 ::SendMessage(GetHwnd(), LVM_SETUNICODEFORMAT, TRUE, 0);
397 #endif
398
399 // for comctl32.dll v 4.70+ we want to have this attribute because it's
400 // prettier (and also because wxGTK does it like this)
401 if ( (wstyle & LVS_REPORT) && wxTheApp->GetComCtl32Version() >= 470 )
402 {
403 ::SendMessage(GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE,
404 0, LVS_EX_FULLROWSELECT);
405 }
406
407 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
408 SetForegroundColour(GetParent()->GetForegroundColour());
409
410 SubclassWin(m_hWnd);
411
412 return TRUE;
413 }
414
415 void wxListCtrl::UpdateStyle()
416 {
417 if ( GetHWND() )
418 {
419 // The new window view style
420 long dummy;
421 DWORD dwStyleNew = ConvertToMSWStyle(dummy, m_windowStyle);
422 dwStyleNew |= m_baseStyle;
423
424 // Get the current window style.
425 DWORD dwStyleOld = ::GetWindowLong(GetHwnd(), GWL_STYLE);
426
427 // Only set the window style if the view bits have changed.
428 if ( dwStyleOld != dwStyleNew )
429 {
430 ::SetWindowLong(GetHwnd(), GWL_STYLE, dwStyleNew);
431 }
432 }
433 }
434
435 void wxListCtrl::FreeAllInternalData()
436 {
437 if (m_AnyInternalData)
438 {
439 int n = GetItemCount();
440 int i = 0;
441
442 m_ignoreChangeMessages = TRUE;
443 for (i = 0; i < n; i++)
444 wxDeleteInternalData(this, i);
445 m_ignoreChangeMessages = FALSE;
446
447 m_AnyInternalData = FALSE;
448 }
449 }
450
451 wxListCtrl::~wxListCtrl()
452 {
453 FreeAllInternalData();
454
455 if ( m_textCtrl )
456 {
457 m_textCtrl->UnsubclassWin();
458 m_textCtrl->SetHWND(0);
459 delete m_textCtrl;
460 m_textCtrl = NULL;
461 }
462
463 if (m_ownsImageListNormal) delete m_imageListNormal;
464 if (m_ownsImageListSmall) delete m_imageListSmall;
465 if (m_ownsImageListState) delete m_imageListState;
466 }
467
468 // ----------------------------------------------------------------------------
469 // set/get/change style
470 // ----------------------------------------------------------------------------
471
472 // Add or remove a single window style
473 void wxListCtrl::SetSingleStyle(long style, bool add)
474 {
475 long flag = GetWindowStyleFlag();
476
477 // Get rid of conflicting styles
478 if ( add )
479 {
480 if ( style & wxLC_MASK_TYPE)
481 flag = flag & ~wxLC_MASK_TYPE;
482 if ( style & wxLC_MASK_ALIGN )
483 flag = flag & ~wxLC_MASK_ALIGN;
484 if ( style & wxLC_MASK_SORT )
485 flag = flag & ~wxLC_MASK_SORT;
486 }
487
488 if ( flag & style )
489 {
490 if ( !add )
491 flag -= style;
492 }
493 else
494 {
495 if ( add )
496 {
497 flag |= style;
498 }
499 }
500
501 m_windowStyle = flag;
502
503 UpdateStyle();
504 }
505
506 // Set the whole window style
507 void wxListCtrl::SetWindowStyleFlag(long flag)
508 {
509 m_windowStyle = flag;
510
511 UpdateStyle();
512 }
513
514 // Can be just a single style, or a bitlist
515 long wxListCtrl::ConvertToMSWStyle(long& oldStyle, long style) const
516 {
517 long wstyle = 0;
518 if ( style & wxLC_ICON )
519 {
520 if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON )
521 oldStyle -= LVS_SMALLICON;
522 if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT )
523 oldStyle -= LVS_REPORT;
524 if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST )
525 oldStyle -= LVS_LIST;
526 wstyle |= LVS_ICON;
527 }
528
529 if ( style & wxLC_SMALL_ICON )
530 {
531 if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON )
532 oldStyle -= LVS_ICON;
533 if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT )
534 oldStyle -= LVS_REPORT;
535 if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST )
536 oldStyle -= LVS_LIST;
537 wstyle |= LVS_SMALLICON;
538 }
539
540 if ( style & wxLC_LIST )
541 {
542 if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON )
543 oldStyle -= LVS_ICON;
544 if ( (oldStyle & LVS_TYPEMASK) == LVS_REPORT )
545 oldStyle -= LVS_REPORT;
546 if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON )
547 oldStyle -= LVS_SMALLICON;
548 wstyle |= LVS_LIST;
549 }
550
551 if ( style & wxLC_REPORT )
552 {
553 if ( (oldStyle & LVS_TYPEMASK) == LVS_ICON )
554 oldStyle -= LVS_ICON;
555 if ( (oldStyle & LVS_TYPEMASK) == LVS_LIST )
556 oldStyle -= LVS_LIST;
557 if ( (oldStyle & LVS_TYPEMASK) == LVS_SMALLICON )
558 oldStyle -= LVS_SMALLICON;
559
560 wstyle |= LVS_REPORT;
561 }
562
563 if ( style & wxLC_ALIGN_LEFT )
564 {
565 if ( oldStyle & LVS_ALIGNTOP )
566 oldStyle -= LVS_ALIGNTOP;
567 wstyle |= LVS_ALIGNLEFT;
568 }
569
570 if ( style & wxLC_ALIGN_TOP )
571 {
572 if ( oldStyle & LVS_ALIGNLEFT )
573 oldStyle -= LVS_ALIGNLEFT;
574 wstyle |= LVS_ALIGNTOP;
575 }
576
577 if ( style & wxLC_AUTOARRANGE )
578 wstyle |= LVS_AUTOARRANGE;
579
580 if ( style & wxLC_NO_SORT_HEADER )
581 wstyle |= LVS_NOSORTHEADER;
582
583 if ( style & wxLC_NO_HEADER )
584 wstyle |= LVS_NOCOLUMNHEADER;
585
586 if ( style & wxLC_EDIT_LABELS )
587 wstyle |= LVS_EDITLABELS;
588
589 if ( style & wxLC_SINGLE_SEL )
590 wstyle |= LVS_SINGLESEL;
591
592 if ( style & wxLC_SORT_ASCENDING )
593 {
594 if ( oldStyle & LVS_SORTDESCENDING )
595 oldStyle -= LVS_SORTDESCENDING;
596 wstyle |= LVS_SORTASCENDING;
597 }
598
599 if ( style & wxLC_SORT_DESCENDING )
600 {
601 if ( oldStyle & LVS_SORTASCENDING )
602 oldStyle -= LVS_SORTASCENDING;
603 wstyle |= LVS_SORTDESCENDING;
604 }
605
606 #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
607 if ( style & wxLC_VIRTUAL )
608 {
609 int ver = wxTheApp->GetComCtl32Version();
610 if ( ver < 470 )
611 {
612 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."),
613 ver / 100, ver % 100);
614 }
615
616 wstyle |= LVS_OWNERDATA;
617 }
618 #endif
619
620 return wstyle;
621 }
622
623 // ----------------------------------------------------------------------------
624 // accessors
625 // ----------------------------------------------------------------------------
626
627 // Sets the foreground, i.e. text, colour
628 bool wxListCtrl::SetForegroundColour(const wxColour& col)
629 {
630 if ( !wxWindow::SetForegroundColour(col) )
631 return FALSE;
632
633 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col));
634
635 return TRUE;
636 }
637
638 // Sets the background colour
639 bool wxListCtrl::SetBackgroundColour(const wxColour& col)
640 {
641 if ( !wxWindow::SetBackgroundColour(col) )
642 return FALSE;
643
644 // we set the same colour for both the "empty" background and the items
645 // background
646 COLORREF color = wxColourToRGB(col);
647 ListView_SetBkColor(GetHwnd(), color);
648 ListView_SetTextBkColor(GetHwnd(), color);
649
650 return TRUE;
651 }
652
653 // Gets information about this column
654 bool wxListCtrl::GetColumn(int col, wxListItem& item) const
655 {
656 LV_COLUMN lvCol;
657 wxZeroMemory(lvCol);
658
659 lvCol.mask = LVCF_WIDTH;
660
661 if ( item.m_mask & wxLIST_MASK_TEXT )
662 {
663 lvCol.mask |= LVCF_TEXT;
664 lvCol.pszText = new wxChar[513];
665 lvCol.cchTextMax = 512;
666 }
667
668 if ( item.m_mask & wxLIST_MASK_FORMAT )
669 {
670 lvCol.mask |= LVCF_FMT;
671 }
672
673 if ( item.m_mask & wxLIST_MASK_IMAGE )
674 {
675 lvCol.mask |= LVCF_IMAGE;
676 }
677
678 bool success = ListView_GetColumn(GetHwnd(), col, &lvCol) != 0;
679
680 // item.m_subItem = lvCol.iSubItem;
681 item.m_width = lvCol.cx;
682
683 if ( (item.m_mask & wxLIST_MASK_TEXT) && lvCol.pszText )
684 {
685 item.m_text = lvCol.pszText;
686 delete[] lvCol.pszText;
687 }
688
689 if ( item.m_mask & wxLIST_MASK_FORMAT )
690 {
691 switch (lvCol.fmt & LVCFMT_JUSTIFYMASK) {
692 case LVCFMT_LEFT:
693 item.m_format = wxLIST_FORMAT_LEFT;
694 break;
695 case LVCFMT_RIGHT:
696 item.m_format = wxLIST_FORMAT_RIGHT;
697 break;
698 case LVCFMT_CENTER:
699 item.m_format = wxLIST_FORMAT_CENTRE;
700 break;
701 default:
702 item.m_format = -1; // Unknown?
703 break;
704 }
705 }
706
707 // the column images were not supported in older versions but how to check
708 // for this? we can't use _WIN32_IE because we always define it to a very
709 // high value, so see if another symbol which is only defined starting from
710 // comctl32.dll 4.70 is available
711 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
712 if ( item.m_mask & wxLIST_MASK_IMAGE )
713 {
714 item.m_image = lvCol.iImage;
715 }
716 #endif // LVCOLUMN::iImage exists
717
718 return success;
719 }
720
721 // Sets information about this column
722 bool wxListCtrl::SetColumn(int col, wxListItem& item)
723 {
724 LV_COLUMN lvCol;
725 wxConvertToMSWListCol(col, item, lvCol);
726
727 return ListView_SetColumn(GetHwnd(), col, &lvCol) != 0;
728 }
729
730 // Gets the column width
731 int wxListCtrl::GetColumnWidth(int col) const
732 {
733 return ListView_GetColumnWidth(GetHwnd(), col);
734 }
735
736 // Sets the column width
737 bool wxListCtrl::SetColumnWidth(int col, int width)
738 {
739 int col2 = col;
740 if ( m_windowStyle & wxLC_LIST )
741 col2 = -1;
742
743 int width2 = width;
744 if ( width2 == wxLIST_AUTOSIZE)
745 width2 = LVSCW_AUTOSIZE;
746 else if ( width2 == wxLIST_AUTOSIZE_USEHEADER)
747 width2 = LVSCW_AUTOSIZE_USEHEADER;
748
749 return ListView_SetColumnWidth(GetHwnd(), col2, width2) != 0;
750 }
751
752 // Gets the number of items that can fit vertically in the
753 // visible area of the list control (list or report view)
754 // or the total number of items in the list control (icon
755 // or small icon view)
756 int wxListCtrl::GetCountPerPage() const
757 {
758 return ListView_GetCountPerPage(GetHwnd());
759 }
760
761 // Gets the edit control for editing labels.
762 wxTextCtrl* wxListCtrl::GetEditControl() const
763 {
764 return m_textCtrl;
765 }
766
767 // Gets information about the item
768 bool wxListCtrl::GetItem(wxListItem& info) const
769 {
770 LV_ITEM lvItem;
771 wxZeroMemory(lvItem);
772
773 lvItem.iItem = info.m_itemId;
774 lvItem.iSubItem = info.m_col;
775
776 if ( info.m_mask & wxLIST_MASK_TEXT )
777 {
778 lvItem.mask |= LVIF_TEXT;
779 lvItem.pszText = new wxChar[513];
780 lvItem.cchTextMax = 512;
781 }
782 else
783 {
784 lvItem.pszText = NULL;
785 }
786
787 if (info.m_mask & wxLIST_MASK_DATA)
788 lvItem.mask |= LVIF_PARAM;
789
790 if (info.m_mask & wxLIST_MASK_IMAGE)
791 lvItem.mask |= LVIF_IMAGE;
792
793 if ( info.m_mask & wxLIST_MASK_STATE )
794 {
795 lvItem.mask |= LVIF_STATE;
796 // the other bits are hardly interesting anyhow
797 lvItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
798 }
799
800 bool success = ListView_GetItem((HWND)GetHWND(), &lvItem) != 0;
801 if ( !success )
802 {
803 wxLogError(_("Couldn't retrieve information about list control item %d."),
804 lvItem.iItem);
805 }
806 else
807 {
808 // give NULL as hwnd as we already have everything we need
809 wxConvertFromMSWListItem(NULL, info, lvItem);
810 }
811
812 if (lvItem.pszText)
813 delete[] lvItem.pszText;
814
815 return success;
816 }
817
818 // Sets information about the item
819 bool wxListCtrl::SetItem(wxListItem& info)
820 {
821 LV_ITEM item;
822 wxConvertToMSWListItem(this, info, item);
823
824 // we never update the lParam if it contains our pointer
825 // to the wxListItemInternalData structure
826 item.mask &= ~LVIF_PARAM;
827
828 // check if setting attributes or lParam
829 if (info.HasAttributes() || (info.m_mask & wxLIST_MASK_DATA))
830 {
831 // get internal item data
832 // perhaps a cache here ?
833 wxListItemInternalData *data = wxGetInternalData(this, info.m_itemId);
834
835 if (! data)
836 {
837 // need to set it
838 m_AnyInternalData = TRUE;
839 data = new wxListItemInternalData();
840 item.lParam = (LPARAM) data;
841 item.mask |= LVIF_PARAM;
842 };
843
844
845 // user data
846 if (info.m_mask & wxLIST_MASK_DATA)
847 data->lParam = info.m_data;
848
849 // attributes
850 if (info.HasAttributes())
851 {
852 if (data->attr)
853 *data->attr = *info.GetAttributes();
854 else
855 data->attr = new wxListItemAttr(*info.GetAttributes());
856 };
857 };
858
859
860 // we could be changing only the attribute in which case we don't need to
861 // call ListView_SetItem() at all
862 if ( item.mask )
863 {
864 item.cchTextMax = 0;
865 if ( !ListView_SetItem(GetHwnd(), &item) )
866 {
867 wxLogDebug(_T("ListView_SetItem() failed"));
868
869 return FALSE;
870 }
871 }
872
873 // we need to update the item immediately to show the new image
874 bool updateNow = (info.m_mask & wxLIST_MASK_IMAGE) != 0;
875
876 // check whether it has any custom attributes
877 if ( info.HasAttributes() )
878 {
879 m_hasAnyAttr = TRUE;
880
881 // if the colour has changed, we must redraw the item
882 updateNow = TRUE;
883 }
884
885 if ( updateNow )
886 {
887 // we need this to make the change visible right now
888 RefreshItem(item.iItem);
889 }
890
891 return TRUE;
892 }
893
894 long wxListCtrl::SetItem(long index, int col, const wxString& label, int imageId)
895 {
896 wxListItem info;
897 info.m_text = label;
898 info.m_mask = wxLIST_MASK_TEXT;
899 info.m_itemId = index;
900 info.m_col = col;
901 if ( imageId > -1 )
902 {
903 info.m_image = imageId;
904 info.m_mask |= wxLIST_MASK_IMAGE;
905 }
906 return SetItem(info);
907 }
908
909
910 // Gets the item state
911 int wxListCtrl::GetItemState(long item, long stateMask) const
912 {
913 wxListItem info;
914
915 info.m_mask = wxLIST_MASK_STATE;
916 info.m_stateMask = stateMask;
917 info.m_itemId = item;
918
919 if (!GetItem(info))
920 return 0;
921
922 return info.m_state;
923 }
924
925 // Sets the item state
926 bool wxListCtrl::SetItemState(long item, long state, long stateMask)
927 {
928 // NB: don't use SetItem() here as it doesn't work with the virtual list
929 // controls
930 LV_ITEM lvItem;
931 wxZeroMemory(lvItem);
932
933 wxConvertToMSWFlags(state, stateMask, lvItem);
934
935 // for the virtual list controls we need to refresh the previously focused
936 // item manually when changing focus without changing selection
937 // programmatically because otherwise it keeps its focus rectangle until
938 // next repaint (yet another comctl32 bug)
939 long focusOld;
940 if ( IsVirtual() &&
941 (stateMask & wxLIST_STATE_FOCUSED) &&
942 (state & wxLIST_STATE_FOCUSED) )
943 {
944 focusOld = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED);
945 }
946 else
947 {
948 focusOld = -1;
949 }
950
951 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE,
952 (WPARAM)item, (LPARAM)&lvItem) )
953 {
954 wxLogLastError(_T("ListView_SetItemState"));
955
956 return FALSE;
957 }
958
959 if ( focusOld != -1 )
960 {
961 // no need to refresh the item if it was previously selected, it would
962 // only result in annoying flicker
963 if ( !(GetItemState(focusOld,
964 wxLIST_STATE_SELECTED) & wxLIST_STATE_SELECTED) )
965 {
966 RefreshItem(focusOld);
967 }
968 }
969
970 return TRUE;
971 }
972
973 // Sets the item image
974 bool wxListCtrl::SetItemImage(long item, int image, int WXUNUSED(selImage))
975 {
976 wxListItem info;
977
978 info.m_mask = wxLIST_MASK_IMAGE;
979 info.m_image = image;
980 info.m_itemId = item;
981
982 return SetItem(info);
983 }
984
985 // Gets the item text
986 wxString wxListCtrl::GetItemText(long item) const
987 {
988 wxListItem info;
989
990 info.m_mask = wxLIST_MASK_TEXT;
991 info.m_itemId = item;
992
993 if (!GetItem(info))
994 return wxEmptyString;
995 return info.m_text;
996 }
997
998 // Sets the item text
999 void wxListCtrl::SetItemText(long item, const wxString& str)
1000 {
1001 wxListItem info;
1002
1003 info.m_mask = wxLIST_MASK_TEXT;
1004 info.m_itemId = item;
1005 info.m_text = str;
1006
1007 SetItem(info);
1008 }
1009
1010 // Gets the item data
1011 long wxListCtrl::GetItemData(long item) const
1012 {
1013 wxListItem info;
1014
1015 info.m_mask = wxLIST_MASK_DATA;
1016 info.m_itemId = item;
1017
1018 if (!GetItem(info))
1019 return 0;
1020 return info.m_data;
1021 }
1022
1023 // Sets the item data
1024 bool wxListCtrl::SetItemData(long item, long data)
1025 {
1026 wxListItem info;
1027
1028 info.m_mask = wxLIST_MASK_DATA;
1029 info.m_itemId = item;
1030 info.m_data = data;
1031
1032 return SetItem(info);
1033 }
1034
1035 wxRect wxListCtrl::GetViewRect() const
1036 {
1037 wxASSERT_MSG( !HasFlag(wxLC_REPORT | wxLC_LIST),
1038 _T("wxListCtrl::GetViewRect() only works in icon mode") );
1039
1040 RECT rc;
1041 if ( !ListView_GetViewRect(GetHwnd(), &rc) )
1042 {
1043 wxLogDebug(_T("ListView_GetViewRect() failed."));
1044
1045 wxZeroMemory(rc);
1046 }
1047 else
1048 {
1049 // VZ: I have no idea why is this needed but without it the listbook
1050 // control shows a tiny vertical scrollbar, make sure that it works
1051 // correctly if you decide to change this
1052 rc.bottom += 5;
1053 }
1054
1055 wxRect rect;
1056 wxCopyRECTToRect(rc, rect);
1057
1058 return rect;
1059 }
1060
1061 // Gets the item rectangle
1062 bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const
1063 {
1064 RECT rectWin;
1065
1066 int codeWin;
1067 if ( code == wxLIST_RECT_BOUNDS )
1068 codeWin = LVIR_BOUNDS;
1069 else if ( code == wxLIST_RECT_ICON )
1070 codeWin = LVIR_ICON;
1071 else if ( code == wxLIST_RECT_LABEL )
1072 codeWin = LVIR_LABEL;
1073 else
1074 {
1075 wxFAIL_MSG( _T("incorrect code in GetItemRect()") );
1076
1077 codeWin = LVIR_BOUNDS;
1078 }
1079
1080 bool success = ListView_GetItemRect(GetHwnd(), (int) item, &rectWin, codeWin) != 0;
1081
1082 rect.x = rectWin.left;
1083 rect.y = rectWin.top;
1084 rect.width = rectWin.right - rectWin.left;
1085 rect.height = rectWin.bottom - rectWin.top;
1086
1087 return success;
1088 }
1089
1090 // Gets the item position
1091 bool wxListCtrl::GetItemPosition(long item, wxPoint& pos) const
1092 {
1093 POINT pt;
1094
1095 bool success = (ListView_GetItemPosition(GetHwnd(), (int) item, &pt) != 0);
1096
1097 pos.x = pt.x; pos.y = pt.y;
1098 return success;
1099 }
1100
1101 // Sets the item position.
1102 bool wxListCtrl::SetItemPosition(long item, const wxPoint& pos)
1103 {
1104 return (ListView_SetItemPosition(GetHwnd(), (int) item, pos.x, pos.y) != 0);
1105 }
1106
1107 // Gets the number of items in the list control
1108 int wxListCtrl::GetItemCount() const
1109 {
1110 return m_count;
1111 }
1112
1113 // Retrieves the spacing between icons in pixels.
1114 // If small is TRUE, gets the spacing for the small icon
1115 // view, otherwise the large icon view.
1116 int wxListCtrl::GetItemSpacing(bool isSmall) const
1117 {
1118 return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall);
1119 }
1120
1121 void wxListCtrl::SetItemTextColour( long item, const wxColour &col )
1122 {
1123 wxListItem info;
1124 info.m_itemId = item;
1125 info.SetTextColour( col );
1126 SetItem( info );
1127 }
1128
1129 wxColour wxListCtrl::GetItemTextColour( long item ) const
1130 {
1131 wxListItem info;
1132 info.m_itemId = item;
1133 GetItem( info );
1134 return info.GetTextColour();
1135 }
1136
1137 void wxListCtrl::SetItemBackgroundColour( long item, const wxColour &col )
1138 {
1139 wxListItem info;
1140 info.m_itemId = item;
1141 info.SetBackgroundColour( col );
1142 SetItem( info );
1143 }
1144
1145 wxColour wxListCtrl::GetItemBackgroundColour( long item ) const
1146 {
1147 wxListItem info;
1148 info.m_itemId = item;
1149 GetItem( info );
1150 return info.GetBackgroundColour();
1151 }
1152
1153 // Gets the number of selected items in the list control
1154 int wxListCtrl::GetSelectedItemCount() const
1155 {
1156 return ListView_GetSelectedCount(GetHwnd());
1157 }
1158
1159 // Gets the text colour of the listview
1160 wxColour wxListCtrl::GetTextColour() const
1161 {
1162 COLORREF ref = ListView_GetTextColor(GetHwnd());
1163 wxColour col(GetRValue(ref), GetGValue(ref), GetBValue(ref));
1164 return col;
1165 }
1166
1167 // Sets the text colour of the listview
1168 void wxListCtrl::SetTextColour(const wxColour& col)
1169 {
1170 ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue()));
1171 }
1172
1173 // Gets the index of the topmost visible item when in
1174 // list or report view
1175 long wxListCtrl::GetTopItem() const
1176 {
1177 return (long) ListView_GetTopIndex(GetHwnd());
1178 }
1179
1180 // Searches for an item, starting from 'item'.
1181 // 'geometry' is one of
1182 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1183 // 'state' is a state bit flag, one or more of
1184 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1185 // item can be -1 to find the first item that matches the
1186 // specified flags.
1187 // Returns the item or -1 if unsuccessful.
1188 long wxListCtrl::GetNextItem(long item, int geom, int state) const
1189 {
1190 long flags = 0;
1191
1192 if ( geom == wxLIST_NEXT_ABOVE )
1193 flags |= LVNI_ABOVE;
1194 if ( geom == wxLIST_NEXT_ALL )
1195 flags |= LVNI_ALL;
1196 if ( geom == wxLIST_NEXT_BELOW )
1197 flags |= LVNI_BELOW;
1198 if ( geom == wxLIST_NEXT_LEFT )
1199 flags |= LVNI_TOLEFT;
1200 if ( geom == wxLIST_NEXT_RIGHT )
1201 flags |= LVNI_TORIGHT;
1202
1203 if ( state & wxLIST_STATE_CUT )
1204 flags |= LVNI_CUT;
1205 if ( state & wxLIST_STATE_DROPHILITED )
1206 flags |= LVNI_DROPHILITED;
1207 if ( state & wxLIST_STATE_FOCUSED )
1208 flags |= LVNI_FOCUSED;
1209 if ( state & wxLIST_STATE_SELECTED )
1210 flags |= LVNI_SELECTED;
1211
1212 return (long) ListView_GetNextItem(GetHwnd(), item, flags);
1213 }
1214
1215
1216 wxImageList *wxListCtrl::GetImageList(int which) const
1217 {
1218 if ( which == wxIMAGE_LIST_NORMAL )
1219 {
1220 return m_imageListNormal;
1221 }
1222 else if ( which == wxIMAGE_LIST_SMALL )
1223 {
1224 return m_imageListSmall;
1225 }
1226 else if ( which == wxIMAGE_LIST_STATE )
1227 {
1228 return m_imageListState;
1229 }
1230 return NULL;
1231 }
1232
1233 void wxListCtrl::SetImageList(wxImageList *imageList, int which)
1234 {
1235 int flags = 0;
1236 if ( which == wxIMAGE_LIST_NORMAL )
1237 {
1238 flags = LVSIL_NORMAL;
1239 if (m_ownsImageListNormal) delete m_imageListNormal;
1240 m_imageListNormal = imageList;
1241 m_ownsImageListNormal = FALSE;
1242 }
1243 else if ( which == wxIMAGE_LIST_SMALL )
1244 {
1245 flags = LVSIL_SMALL;
1246 if (m_ownsImageListSmall) delete m_imageListSmall;
1247 m_imageListSmall = imageList;
1248 m_ownsImageListSmall = FALSE;
1249 }
1250 else if ( which == wxIMAGE_LIST_STATE )
1251 {
1252 flags = LVSIL_STATE;
1253 if (m_ownsImageListState) delete m_imageListState;
1254 m_imageListState = imageList;
1255 m_ownsImageListState = FALSE;
1256 }
1257 ListView_SetImageList(GetHwnd(), (HIMAGELIST) imageList ? imageList->GetHIMAGELIST() : 0, flags);
1258 }
1259
1260 void wxListCtrl::AssignImageList(wxImageList *imageList, int which)
1261 {
1262 SetImageList(imageList, which);
1263 if ( which == wxIMAGE_LIST_NORMAL )
1264 m_ownsImageListNormal = TRUE;
1265 else if ( which == wxIMAGE_LIST_SMALL )
1266 m_ownsImageListSmall = TRUE;
1267 else if ( which == wxIMAGE_LIST_STATE )
1268 m_ownsImageListState = TRUE;
1269 }
1270
1271 // ----------------------------------------------------------------------------
1272 // Operations
1273 // ----------------------------------------------------------------------------
1274
1275 // Arranges the items
1276 bool wxListCtrl::Arrange(int flag)
1277 {
1278 UINT code = 0;
1279 if ( flag == wxLIST_ALIGN_LEFT )
1280 code = LVA_ALIGNLEFT;
1281 else if ( flag == wxLIST_ALIGN_TOP )
1282 code = LVA_ALIGNTOP;
1283 else if ( flag == wxLIST_ALIGN_DEFAULT )
1284 code = LVA_DEFAULT;
1285 else if ( flag == wxLIST_ALIGN_SNAP_TO_GRID )
1286 code = LVA_SNAPTOGRID;
1287
1288 return (ListView_Arrange(GetHwnd(), code) != 0);
1289 }
1290
1291 // Deletes an item
1292 bool wxListCtrl::DeleteItem(long item)
1293 {
1294 if ( !ListView_DeleteItem(GetHwnd(), (int) item) )
1295 {
1296 wxLogLastError(_T("ListView_DeleteItem"));
1297 return FALSE;
1298 }
1299
1300 m_count -= 1;
1301 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
1302 wxT("m_count should match ListView_GetItemCount"));
1303
1304 // the virtual list control doesn't refresh itself correctly, help it
1305 if ( IsVirtual() )
1306 {
1307 // we need to refresh all the lines below the one which was deleted
1308 wxRect rectItem;
1309 if ( item > 0 && GetItemCount() )
1310 {
1311 GetItemRect(item - 1, rectItem);
1312 }
1313 else
1314 {
1315 rectItem.y =
1316 rectItem.height = 0;
1317 }
1318
1319 wxRect rectWin = GetRect();
1320 rectWin.height = rectWin.GetBottom() - rectItem.GetBottom();
1321 rectWin.y = rectItem.GetBottom();
1322
1323 RefreshRect(rectWin);
1324 }
1325
1326 return TRUE;
1327 }
1328
1329 // Deletes all items
1330 bool wxListCtrl::DeleteAllItems()
1331 {
1332 FreeAllInternalData();
1333 return ListView_DeleteAllItems(GetHwnd()) != 0;
1334 }
1335
1336 // Deletes all items
1337 bool wxListCtrl::DeleteAllColumns()
1338 {
1339 while ( m_colCount > 0 )
1340 {
1341 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1342 {
1343 wxLogLastError(wxT("ListView_DeleteColumn"));
1344
1345 return FALSE;
1346 }
1347
1348 m_colCount--;
1349 }
1350
1351 wxASSERT_MSG( m_colCount == 0, wxT("no columns should be left") );
1352
1353 return TRUE;
1354 }
1355
1356 // Deletes a column
1357 bool wxListCtrl::DeleteColumn(int col)
1358 {
1359 bool success = (ListView_DeleteColumn(GetHwnd(), col) != 0);
1360
1361 if ( success && (m_colCount > 0) )
1362 m_colCount --;
1363 return success;
1364 }
1365
1366 // Clears items, and columns if there are any.
1367 void wxListCtrl::ClearAll()
1368 {
1369 DeleteAllItems();
1370 if ( m_colCount > 0 )
1371 DeleteAllColumns();
1372 }
1373
1374 wxTextCtrl* wxListCtrl::EditLabel(long item, wxClassInfo* textControlClass)
1375 {
1376 wxASSERT( (textControlClass->IsKindOf(CLASSINFO(wxTextCtrl))) );
1377
1378 // ListView_EditLabel requires that the list has focus.
1379 SetFocus();
1380
1381 WXHWND hWnd = (WXHWND) ListView_EditLabel(GetHwnd(), item);
1382 if ( !hWnd )
1383 {
1384 // failed to start editing
1385 return NULL;
1386 }
1387
1388 // [re]create the text control wrapping the HWND we got
1389 if ( m_textCtrl )
1390 {
1391 m_textCtrl->UnsubclassWin();
1392 m_textCtrl->SetHWND(0);
1393 delete m_textCtrl;
1394 }
1395
1396 m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject();
1397 m_textCtrl->SetHWND(hWnd);
1398 m_textCtrl->SubclassWin(hWnd);
1399 m_textCtrl->SetParent(this);
1400
1401 // we must disallow TABbing away from the control while the edit contol is
1402 // shown because this leaves it in some strange state (just try removing
1403 // this line and then pressing TAB while editing an item in listctrl
1404 // inside a panel)
1405 m_textCtrl->SetWindowStyle(m_textCtrl->GetWindowStyle() | wxTE_PROCESS_TAB);
1406
1407 return m_textCtrl;
1408 }
1409
1410 // End label editing, optionally cancelling the edit
1411 bool wxListCtrl::EndEditLabel(bool WXUNUSED(cancel))
1412 {
1413 wxFAIL_MSG( _T("not implemented") );
1414
1415 return FALSE;
1416 }
1417
1418 // Ensures this item is visible
1419 bool wxListCtrl::EnsureVisible(long item)
1420 {
1421 return ListView_EnsureVisible(GetHwnd(), (int) item, FALSE) != 0;
1422 }
1423
1424 // Find an item whose label matches this string, starting from the item after 'start'
1425 // or the beginning if 'start' is -1.
1426 long wxListCtrl::FindItem(long start, const wxString& str, bool partial)
1427 {
1428 LV_FINDINFO findInfo;
1429
1430 findInfo.flags = LVFI_STRING;
1431 if ( partial )
1432 findInfo.flags |= LVFI_PARTIAL;
1433 findInfo.psz = str;
1434
1435 // ListView_FindItem() excludes the first item from search and to look
1436 // through all the items you need to start from -1 which is unnatural and
1437 // inconsistent with the generic version - so we adjust the index
1438 if (start != -1)
1439 start --;
1440 return ListView_FindItem(GetHwnd(), (int) start, &findInfo);
1441 }
1442
1443 // Find an item whose data matches this data, starting from the item after 'start'
1444 // or the beginning if 'start' is -1.
1445 // NOTE : Lindsay Mathieson - 14-July-2002
1446 // No longer use ListView_FindItem as the data attribute is now stored
1447 // in a wxListItemInternalData structure refernced by the actual lParam
1448 long wxListCtrl::FindItem(long start, long data)
1449 {
1450 long idx = start + 1;
1451 long count = GetItemCount();
1452
1453 while (idx < count)
1454 {
1455 if (GetItemData(idx) == data)
1456 return idx;
1457 idx++;
1458 };
1459
1460 return -1;
1461 }
1462
1463 // Find an item nearest this position in the specified direction, starting from
1464 // the item after 'start' or the beginning if 'start' is -1.
1465 long wxListCtrl::FindItem(long start, const wxPoint& pt, int direction)
1466 {
1467 LV_FINDINFO findInfo;
1468
1469 findInfo.flags = LVFI_NEARESTXY;
1470 findInfo.pt.x = pt.x;
1471 findInfo.pt.y = pt.y;
1472 findInfo.vkDirection = VK_RIGHT;
1473
1474 if ( direction == wxLIST_FIND_UP )
1475 findInfo.vkDirection = VK_UP;
1476 else if ( direction == wxLIST_FIND_DOWN )
1477 findInfo.vkDirection = VK_DOWN;
1478 else if ( direction == wxLIST_FIND_LEFT )
1479 findInfo.vkDirection = VK_LEFT;
1480 else if ( direction == wxLIST_FIND_RIGHT )
1481 findInfo.vkDirection = VK_RIGHT;
1482
1483 return ListView_FindItem(GetHwnd(), (int) start, & findInfo);
1484 }
1485
1486 // Determines which item (if any) is at the specified point,
1487 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1488 long wxListCtrl::HitTest(const wxPoint& point, int& flags)
1489 {
1490 LV_HITTESTINFO hitTestInfo;
1491 hitTestInfo.pt.x = (int) point.x;
1492 hitTestInfo.pt.y = (int) point.y;
1493
1494 ListView_HitTest(GetHwnd(), & hitTestInfo);
1495
1496 flags = 0;
1497 if ( hitTestInfo.flags & LVHT_ABOVE )
1498 flags |= wxLIST_HITTEST_ABOVE;
1499 if ( hitTestInfo.flags & LVHT_BELOW )
1500 flags |= wxLIST_HITTEST_BELOW;
1501 if ( hitTestInfo.flags & LVHT_NOWHERE )
1502 flags |= wxLIST_HITTEST_NOWHERE;
1503 if ( hitTestInfo.flags & LVHT_ONITEMICON )
1504 flags |= wxLIST_HITTEST_ONITEMICON;
1505 if ( hitTestInfo.flags & LVHT_ONITEMLABEL )
1506 flags |= wxLIST_HITTEST_ONITEMLABEL;
1507 if ( hitTestInfo.flags & LVHT_ONITEMSTATEICON )
1508 flags |= wxLIST_HITTEST_ONITEMSTATEICON;
1509 if ( hitTestInfo.flags & LVHT_TOLEFT )
1510 flags |= wxLIST_HITTEST_TOLEFT;
1511 if ( hitTestInfo.flags & LVHT_TORIGHT )
1512 flags |= wxLIST_HITTEST_TORIGHT;
1513
1514 return (long) hitTestInfo.iItem;
1515 }
1516
1517 // Inserts an item, returning the index of the new item if successful,
1518 // -1 otherwise.
1519 long wxListCtrl::InsertItem(wxListItem& info)
1520 {
1521 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1522
1523 LV_ITEM item;
1524 wxConvertToMSWListItem(this, info, item);
1525 item.mask &= ~LVIF_PARAM;
1526
1527 // check wether we need to allocate our internal data
1528 bool needInternalData = ((info.m_mask & wxLIST_MASK_DATA) || info.HasAttributes());
1529 if (needInternalData)
1530 {
1531 m_AnyInternalData = TRUE;
1532 item.mask |= LVIF_PARAM;
1533
1534 // internal stucture that manages data
1535 wxListItemInternalData *data = new wxListItemInternalData();
1536 item.lParam = (LPARAM) data;
1537
1538 if (info.m_mask & wxLIST_MASK_DATA)
1539 data->lParam = info.m_data;
1540
1541 // check whether it has any custom attributes
1542 if ( info.HasAttributes() )
1543 {
1544 // take copy of attributes
1545 data->attr = new wxListItemAttr(*info.GetAttributes());
1546 }
1547 };
1548
1549 long rv = ListView_InsertItem(GetHwnd(), & item);
1550
1551 m_count++;
1552 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
1553 wxT("m_count should match ListView_GetItemCount"));
1554
1555 return rv;
1556 }
1557
1558 long wxListCtrl::InsertItem(long index, const wxString& label)
1559 {
1560 wxListItem info;
1561 info.m_text = label;
1562 info.m_mask = wxLIST_MASK_TEXT;
1563 info.m_itemId = index;
1564 return InsertItem(info);
1565 }
1566
1567 // Inserts an image item
1568 long wxListCtrl::InsertItem(long index, int imageIndex)
1569 {
1570 wxListItem info;
1571 info.m_image = imageIndex;
1572 info.m_mask = wxLIST_MASK_IMAGE;
1573 info.m_itemId = index;
1574 return InsertItem(info);
1575 }
1576
1577 // Inserts an image/string item
1578 long wxListCtrl::InsertItem(long index, const wxString& label, int imageIndex)
1579 {
1580 wxListItem info;
1581 info.m_image = imageIndex;
1582 info.m_text = label;
1583 info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT;
1584 info.m_itemId = index;
1585 return InsertItem(info);
1586 }
1587
1588 // For list view mode (only), inserts a column.
1589 long wxListCtrl::InsertColumn(long col, wxListItem& item)
1590 {
1591 LV_COLUMN lvCol;
1592 wxConvertToMSWListCol(col, item, lvCol);
1593
1594 if ( !(lvCol.mask & LVCF_WIDTH) )
1595 {
1596 // always give some width to the new column: this one is compatible
1597 // with the generic version
1598 lvCol.mask |= LVCF_WIDTH;
1599 lvCol.cx = 80;
1600 }
1601
1602 long n = ListView_InsertColumn(GetHwnd(), col, &lvCol);
1603 if ( n != -1 )
1604 {
1605 m_colCount++;
1606 }
1607 else // failed to insert?
1608 {
1609 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
1610 lvCol.pszText);
1611 }
1612
1613 return n;
1614 }
1615
1616 long wxListCtrl::InsertColumn(long col,
1617 const wxString& heading,
1618 int format,
1619 int width)
1620 {
1621 wxListItem item;
1622 item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT;
1623 item.m_text = heading;
1624 if ( width > -1 )
1625 {
1626 item.m_mask |= wxLIST_MASK_WIDTH;
1627 item.m_width = width;
1628 }
1629 item.m_format = format;
1630
1631 return InsertColumn(col, item);
1632 }
1633
1634 // scroll the control by the given number of pixels (exception: in list view,
1635 // dx is interpreted as number of columns)
1636 bool wxListCtrl::ScrollList(int dx, int dy)
1637 {
1638 if ( !ListView_Scroll(GetHwnd(), dx, dy) )
1639 {
1640 wxLogDebug(_T("ListView_Scroll(%d, %d) failed"), dx, dy);
1641
1642 return FALSE;
1643 }
1644
1645 return TRUE;
1646 }
1647
1648 // Sort items.
1649
1650 // fn is a function which takes 3 long arguments: item1, item2, data.
1651 // item1 is the long data associated with a first item (NOT the index).
1652 // item2 is the long data associated with a second item (NOT the index).
1653 // data is the same value as passed to SortItems.
1654 // The return value is a negative number if the first item should precede the second
1655 // item, a positive number of the second item should precede the first,
1656 // or zero if the two items are equivalent.
1657
1658 // data is arbitrary data to be passed to the sort function.
1659
1660 // Internal structures for proxying the user compare function
1661 // so that we can pass it the *real* user data
1662
1663 // translate lParam data and call user func
1664 struct wxInternalDataSort
1665 {
1666 wxListCtrlCompare user_fn;
1667 long data;
1668 };
1669
1670 int CALLBACK wxInternalDataCompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
1671 {
1672 struct wxInternalDataSort *internalData = (struct wxInternalDataSort *) lParamSort;
1673
1674 wxListItemInternalData *data1 = (wxListItemInternalData *) lParam1;
1675 wxListItemInternalData *data2 = (wxListItemInternalData *) lParam2;
1676
1677 long d1 = (data1 == NULL ? 0 : data1->lParam);
1678 long d2 = (data2 == NULL ? 0 : data2->lParam);
1679
1680 return internalData->user_fn(d1, d2, internalData->data);
1681
1682 };
1683
1684 bool wxListCtrl::SortItems(wxListCtrlCompare fn, long data)
1685 {
1686 struct wxInternalDataSort internalData;
1687 internalData.user_fn = fn;
1688 internalData.data = data;
1689
1690 // WPARAM cast is needed for mingw/cygwin
1691 if ( !ListView_SortItems(GetHwnd(),
1692 wxInternalDataCompareFunc,
1693 (WPARAM) &internalData) )
1694 {
1695 wxLogDebug(_T("ListView_SortItems() failed"));
1696
1697 return FALSE;
1698 }
1699
1700 return TRUE;
1701 }
1702
1703
1704
1705 // ----------------------------------------------------------------------------
1706 // message processing
1707 // ----------------------------------------------------------------------------
1708
1709 bool wxListCtrl::MSWCommand(WXUINT cmd, WXWORD id)
1710 {
1711 if (cmd == EN_UPDATE)
1712 {
1713 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
1714 event.SetEventObject( this );
1715 ProcessCommand(event);
1716 return TRUE;
1717 }
1718 else if (cmd == EN_KILLFOCUS)
1719 {
1720 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
1721 event.SetEventObject( this );
1722 ProcessCommand(event);
1723 return TRUE;
1724 }
1725 else
1726 return FALSE;
1727 }
1728
1729 bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
1730 {
1731
1732 // prepare the event
1733 // -----------------
1734
1735 wxListEvent event(wxEVT_NULL, m_windowId);
1736 event.SetEventObject(this);
1737
1738 wxEventType eventType = wxEVT_NULL;
1739
1740 NMHDR *nmhdr = (NMHDR *)lParam;
1741
1742 // if your compiler is as broken as this, you should really change it: this
1743 // code is needed for normal operation! #ifdef below is only useful for
1744 // automatic rebuilds which are done with a very old compiler version
1745 #ifdef HDN_BEGINTRACKA
1746
1747 // check for messages from the header (in report view)
1748 HWND hwndHdr = ListView_GetHeader(GetHwnd());
1749
1750 // is it a message from the header?
1751 if ( nmhdr->hwndFrom == hwndHdr )
1752 {
1753 HD_NOTIFY *nmHDR = (HD_NOTIFY *)nmhdr;
1754
1755 event.m_itemIndex = -1;
1756
1757 switch ( nmhdr->code )
1758 {
1759 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1760 // TRACK messages even to ANSI programs: on my system I get
1761 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
1762 //
1763 // work around is to simply catch both versions and hope that it
1764 // works (why should this message exist in ANSI and Unicode is
1765 // beyond me as it doesn't deal with strings at all...)
1766 //
1767 // note that fr HDN_TRACK another possibility could be to use
1768 // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when
1769 // something other than the item width changes so we'd have to
1770 // filter out the unwanted events then
1771 case HDN_BEGINTRACKA:
1772 case HDN_BEGINTRACKW:
1773 eventType = wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
1774 // fall through
1775
1776 case HDN_TRACKA:
1777 case HDN_TRACKW:
1778 if ( eventType == wxEVT_NULL )
1779 eventType = wxEVT_COMMAND_LIST_COL_DRAGGING;
1780 // fall through
1781
1782 case HDN_ENDTRACKA:
1783 case HDN_ENDTRACKW:
1784 if ( eventType == wxEVT_NULL )
1785 eventType = wxEVT_COMMAND_LIST_COL_END_DRAG;
1786
1787 event.m_item.m_width = nmHDR->pitem->cxy;
1788 event.m_col = nmHDR->iItem;
1789 break;
1790
1791 case NM_RCLICK:
1792 {
1793 eventType = wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
1794 event.m_col = -1;
1795
1796 // find the column clicked: we have to search for it
1797 // ourselves as the notification message doesn't provide
1798 // this info
1799
1800 // where did the click occur?
1801 POINT ptClick;
1802 if ( !::GetCursorPos(&ptClick) )
1803 {
1804 wxLogLastError(_T("GetCursorPos"));
1805 }
1806
1807 if ( !::ScreenToClient(hwndHdr, &ptClick) )
1808 {
1809 wxLogLastError(_T("ScreenToClient(listctrl header)"));
1810 }
1811
1812 event.m_pointDrag.x = ptClick.x;
1813 event.m_pointDrag.y = ptClick.y;
1814
1815 int colCount = Header_GetItemCount(hwndHdr);
1816
1817 RECT rect;
1818 for ( int col = 0; col < colCount; col++ )
1819 {
1820 if ( Header_GetItemRect(hwndHdr, col, &rect) )
1821 {
1822 if ( ::PtInRect(&rect, ptClick) )
1823 {
1824 event.m_col = col;
1825 break;
1826 }
1827 }
1828 }
1829 }
1830 break;
1831
1832 case HDN_GETDISPINFOW:
1833 {
1834 LPNMHDDISPINFOW info = (LPNMHDDISPINFOW) lParam;
1835 // This is a fix for a strange bug under XP.
1836 // Normally, info->iItem is a valid index, but
1837 // sometimes this is a silly (large) number
1838 // and when we return FALSE via wxControl::MSWOnNotify
1839 // to indicate that it hasn't yet been processed,
1840 // there's a GPF in Windows.
1841 // By returning TRUE here, we avoid further processing
1842 // of this strange message.
1843 if ( info->iItem >= GetColumnCount() )
1844 return TRUE;
1845 }
1846 // fall through
1847
1848 default:
1849 return wxControl::MSWOnNotify(idCtrl, lParam, result);
1850 }
1851 }
1852 else
1853 #endif // defined(HDN_BEGINTRACKA)
1854 if ( nmhdr->hwndFrom == GetHwnd() )
1855 {
1856 // almost all messages use NM_LISTVIEW
1857 NM_LISTVIEW *nmLV = (NM_LISTVIEW *)nmhdr;
1858
1859 const int iItem = nmLV->iItem;
1860
1861
1862 // FreeAllInternalData will cause LVN_ITEMCHANG* messages, which can be
1863 // ignored for efficiency. It is done here because the internal data is in the
1864 // process of being deleted so we don't want to try and access it below.
1865 if ( m_ignoreChangeMessages &&
1866 ( (nmLV->hdr.code == LVN_ITEMCHANGED) || (nmLV->hdr.code == LVN_ITEMCHANGING)))
1867 {
1868 return TRUE;
1869 }
1870
1871
1872 // If we have a valid item then check if there is a data value
1873 // associated with it and put it in the event.
1874 if ( iItem >= 0 && iItem < GetItemCount() )
1875 {
1876 wxListItemInternalData *internaldata =
1877 wxGetInternalData(GetHwnd(), iItem);
1878
1879 if ( internaldata )
1880 event.m_item.m_data = internaldata->lParam;
1881 }
1882
1883
1884 switch ( nmhdr->code )
1885 {
1886 case LVN_BEGINRDRAG:
1887 eventType = wxEVT_COMMAND_LIST_BEGIN_RDRAG;
1888 // fall through
1889
1890 case LVN_BEGINDRAG:
1891 if ( eventType == wxEVT_NULL )
1892 {
1893 eventType = wxEVT_COMMAND_LIST_BEGIN_DRAG;
1894 }
1895
1896 event.m_itemIndex = iItem;
1897 event.m_pointDrag.x = nmLV->ptAction.x;
1898 event.m_pointDrag.y = nmLV->ptAction.y;
1899 break;
1900
1901 // NB: we have to handle both *A and *W versions here because some
1902 // versions of comctl32.dll send ANSI message to an Unicode app
1903 case LVN_BEGINLABELEDITA:
1904 {
1905 eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
1906 wxLV_ITEM item(((LV_DISPINFOA *)lParam)->item);
1907 wxConvertFromMSWListItem(GetHwnd(), event.m_item, item);
1908 event.m_itemIndex = event.m_item.m_itemId;
1909 }
1910 break;
1911 case LVN_BEGINLABELEDITW:
1912 {
1913 eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
1914 wxLV_ITEM item(((LV_DISPINFOW *)lParam)->item);
1915 wxConvertFromMSWListItem(GetHwnd(), event.m_item, item);
1916 event.m_itemIndex = event.m_item.m_itemId;
1917 }
1918 break;
1919
1920 case LVN_ENDLABELEDITA:
1921 {
1922 eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT;
1923 wxLV_ITEM item(((LV_DISPINFOA *)lParam)->item);
1924 wxConvertFromMSWListItem(NULL, event.m_item, item);
1925 if ( ((LV_ITEM)item).pszText == NULL ||
1926 ((LV_ITEM)item).iItem == -1 )
1927 {
1928 // don't keep a stale wxTextCtrl around
1929 if ( m_textCtrl )
1930 {
1931 // EDIT control will be deleted by the list control itself so
1932 // prevent us from deleting it as well
1933 m_textCtrl->UnsubclassWin();
1934 m_textCtrl->SetHWND(0);
1935 delete m_textCtrl;
1936 m_textCtrl = NULL;
1937 }
1938 return FALSE;
1939 }
1940
1941 event.m_itemIndex = event.m_item.m_itemId;
1942 }
1943 break;
1944 case LVN_ENDLABELEDITW:
1945 {
1946 eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT;
1947 wxLV_ITEM item(((LV_DISPINFOW *)lParam)->item);
1948 wxConvertFromMSWListItem(NULL, event.m_item, item);
1949 if ( ((LV_ITEM)item).pszText == NULL ||
1950 ((LV_ITEM)item).iItem == -1 )
1951 {
1952 // don't keep a stale wxTextCtrl around
1953 if ( m_textCtrl )
1954 {
1955 // EDIT control will be deleted by the list control itself so
1956 // prevent us from deleting it as well
1957 m_textCtrl->UnsubclassWin();
1958 m_textCtrl->SetHWND(0);
1959 delete m_textCtrl;
1960 m_textCtrl = NULL;
1961 }
1962 return FALSE;
1963 }
1964
1965 event.m_itemIndex = event.m_item.m_itemId;
1966 }
1967 break;
1968
1969 case LVN_COLUMNCLICK:
1970 eventType = wxEVT_COMMAND_LIST_COL_CLICK;
1971 event.m_itemIndex = -1;
1972 event.m_col = nmLV->iSubItem;
1973 break;
1974
1975 case LVN_DELETEALLITEMS:
1976 m_count = 0;
1977 eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
1978 event.m_itemIndex = -1;
1979 break;
1980
1981 case LVN_DELETEITEM:
1982 if (m_count == 0)
1983 // this should be prevented by the post-processing code below,
1984 // but "just in case"
1985 return FALSE;
1986
1987 eventType = wxEVT_COMMAND_LIST_DELETE_ITEM;
1988 event.m_itemIndex = iItem;
1989 // delete the assoicated internal data
1990 wxDeleteInternalData(this, iItem);
1991 break;
1992
1993 case LVN_SETDISPINFO:
1994 {
1995 eventType = wxEVT_COMMAND_LIST_SET_INFO;
1996 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
1997 wxConvertFromMSWListItem(GetHwnd(), event.m_item, info->item);
1998 }
1999 break;
2000
2001 case LVN_INSERTITEM:
2002 eventType = wxEVT_COMMAND_LIST_INSERT_ITEM;
2003 event.m_itemIndex = iItem;
2004 break;
2005
2006 case LVN_ITEMCHANGED:
2007 // we translate this catch all message into more interesting
2008 // (and more easy to process) wxWindows events
2009
2010 // first of all, we deal with the state change events only and
2011 // only for valid items (item == -1 for the virtual list
2012 // control)
2013 if ( nmLV->uChanged & LVIF_STATE && iItem != -1 )
2014 {
2015 // temp vars for readability
2016 const UINT stOld = nmLV->uOldState;
2017 const UINT stNew = nmLV->uNewState;
2018
2019 event.m_item.SetId(iItem);
2020 event.m_item.SetMask(wxLIST_MASK_TEXT |
2021 wxLIST_MASK_IMAGE |
2022 wxLIST_MASK_DATA);
2023 GetItem(event.m_item);
2024
2025 // has the focus changed?
2026 if ( !(stOld & LVIS_FOCUSED) && (stNew & LVIS_FOCUSED) )
2027 {
2028 eventType = wxEVT_COMMAND_LIST_ITEM_FOCUSED;
2029 event.m_itemIndex = iItem;
2030 }
2031
2032 if ( (stNew & LVIS_SELECTED) != (stOld & LVIS_SELECTED) )
2033 {
2034 if ( eventType != wxEVT_NULL )
2035 {
2036 // focus and selection have both changed: send the
2037 // focus event from here and the selection one
2038 // below
2039 event.SetEventType(eventType);
2040 (void)GetEventHandler()->ProcessEvent(event);
2041 }
2042 else // no focus event to send
2043 {
2044 // then need to set m_itemIndex as it wasn't done
2045 // above
2046 event.m_itemIndex = iItem;
2047 }
2048
2049 eventType = stNew & LVIS_SELECTED
2050 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2051 : wxEVT_COMMAND_LIST_ITEM_DESELECTED;
2052 }
2053 }
2054
2055 if ( eventType == wxEVT_NULL )
2056 {
2057 // not an interesting event for us
2058 return FALSE;
2059 }
2060
2061 break;
2062
2063 case LVN_KEYDOWN:
2064 {
2065 LV_KEYDOWN *info = (LV_KEYDOWN *)lParam;
2066 WORD wVKey = info->wVKey;
2067
2068 // get the current selection
2069 long lItem = GetNextItem(-1,
2070 wxLIST_NEXT_ALL,
2071 wxLIST_STATE_SELECTED);
2072
2073 // <Enter> or <Space> activate the selected item if any (but
2074 // not with Shift and/or Ctrl as then they have a predefined
2075 // meaning for the list view)
2076 if ( lItem != -1 &&
2077 (wVKey == VK_RETURN || wVKey == VK_SPACE) &&
2078 !(wxIsShiftDown() || wxIsCtrlDown()) )
2079 {
2080 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2081 }
2082 else
2083 {
2084 eventType = wxEVT_COMMAND_LIST_KEY_DOWN;
2085
2086 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
2087 // value which should be used as is
2088 int code = wxCharCodeMSWToWX(wVKey);
2089 event.m_code = code ? code : wVKey;
2090 }
2091
2092 event.m_itemIndex =
2093 event.m_item.m_itemId = lItem;
2094
2095 if ( lItem != -1 )
2096 {
2097 // fill the other fields too
2098 event.m_item.m_text = GetItemText(lItem);
2099 event.m_item.m_data = GetItemData(lItem);
2100 }
2101 }
2102 break;
2103
2104 case NM_DBLCLK:
2105 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2106 // anything else
2107 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
2108 {
2109 return TRUE;
2110 }
2111
2112 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2113 // if it happened on an item (and not on empty place)
2114 if ( iItem == -1 )
2115 {
2116 // not on item
2117 return FALSE;
2118 }
2119
2120 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2121 event.m_itemIndex = iItem;
2122 event.m_item.m_text = GetItemText(iItem);
2123 event.m_item.m_data = GetItemData(iItem);
2124 break;
2125
2126 case NM_RCLICK:
2127 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2128 // don't do anything else
2129 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
2130 {
2131 return TRUE;
2132 }
2133
2134 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2135 LV_HITTESTINFO lvhti;
2136 wxZeroMemory(lvhti);
2137
2138 ::GetCursorPos(&(lvhti.pt));
2139 ::ScreenToClient(GetHwnd(),&(lvhti.pt));
2140 if ( ListView_HitTest(GetHwnd(),&lvhti) != -1 )
2141 {
2142 if ( lvhti.flags & LVHT_ONITEM )
2143 {
2144 eventType = wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
2145 event.m_itemIndex = lvhti.iItem;
2146 event.m_pointDrag.x = lvhti.pt.x;
2147 event.m_pointDrag.y = lvhti.pt.y;
2148 }
2149 }
2150 break;
2151
2152 #ifdef NM_CUSTOMDRAW
2153 case NM_CUSTOMDRAW:
2154 *result = OnCustomDraw(lParam);
2155
2156 return TRUE;
2157 #endif // _WIN32_IE >= 0x300
2158
2159 case LVN_ODCACHEHINT:
2160 {
2161 const NM_CACHEHINT *cacheHint = (NM_CACHEHINT *)lParam;
2162
2163 eventType = wxEVT_COMMAND_LIST_CACHE_HINT;
2164
2165 // we get some really stupid cache hints like ones for
2166 // items in range 0..0 for an empty control or, after
2167 // deleting an item, for items in invalid range -- filter
2168 // this garbage out
2169 if ( cacheHint->iFrom > cacheHint->iTo )
2170 return FALSE;
2171
2172 event.m_oldItemIndex = cacheHint->iFrom;
2173
2174 const long iMax = GetItemCount();
2175 event.m_itemIndex = cacheHint->iTo < iMax ? cacheHint->iTo
2176 : iMax - 1;
2177 }
2178 break;
2179
2180 case LVN_GETDISPINFO:
2181 if ( IsVirtual() )
2182 {
2183 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
2184
2185 LV_ITEM& lvi = info->item;
2186 long item = lvi.iItem;
2187
2188 if ( lvi.mask & LVIF_TEXT )
2189 {
2190 wxString text = OnGetItemText(item, lvi.iSubItem);
2191 wxStrncpy(lvi.pszText, text, lvi.cchTextMax);
2192 }
2193
2194 // see comment at the end of wxListCtrl::GetColumn()
2195 #ifdef NM_CUSTOMDRAW
2196 if ( lvi.mask & LVIF_IMAGE )
2197 {
2198 lvi.iImage = OnGetItemImage(item);
2199 }
2200 #endif // NM_CUSTOMDRAW
2201
2202 // a little dose of healthy paranoia: as we never use
2203 // LVM_SETCALLBACKMASK we're not supposed to get these ones
2204 wxASSERT_MSG( !(lvi.mask & LVIF_STATE),
2205 _T("we don't support state callbacks yet!") );
2206
2207 return TRUE;
2208 }
2209 // fall through
2210
2211 default:
2212 return wxControl::MSWOnNotify(idCtrl, lParam, result);
2213 }
2214 }
2215 else
2216 {
2217 // where did this one come from?
2218 return FALSE;
2219 }
2220
2221 // process the event
2222 // -----------------
2223
2224 event.SetEventType(eventType);
2225
2226 bool processed = GetEventHandler()->ProcessEvent(event);
2227
2228 // post processing
2229 // ---------------
2230 switch ( nmhdr->code )
2231 {
2232 case LVN_DELETEALLITEMS:
2233 // always return TRUE to suppress all additional LVN_DELETEITEM
2234 // notifications - this makes deleting all items from a list ctrl
2235 // much faster
2236 *result = TRUE;
2237 return TRUE;
2238
2239 case LVN_ENDLABELEDITA:
2240 case LVN_ENDLABELEDITW:
2241 // logic here is inversed compared to all the other messages
2242 *result = event.IsAllowed();
2243
2244 // don't keep a stale wxTextCtrl around
2245 if ( m_textCtrl )
2246 {
2247 // EDIT control will be deleted by the list control itself so
2248 // prevent us from deleting it as well
2249 m_textCtrl->UnsubclassWin();
2250 m_textCtrl->SetHWND(0);
2251 delete m_textCtrl;
2252 m_textCtrl = NULL;
2253 }
2254
2255 return TRUE;
2256 }
2257
2258 if ( processed )
2259 *result = !event.IsAllowed();
2260
2261 return processed;
2262 }
2263
2264 // see comment at the end of wxListCtrl::GetColumn()
2265 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2266
2267 WXLPARAM wxListCtrl::OnCustomDraw(WXLPARAM lParam)
2268 {
2269 LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam;
2270 NMCUSTOMDRAW& nmcd = lplvcd->nmcd;
2271 switch ( nmcd.dwDrawStage )
2272 {
2273 case CDDS_PREPAINT:
2274 // if we've got any items with non standard attributes,
2275 // notify us before painting each item
2276 //
2277 // for virtual controls, always suppose that we have attributes as
2278 // there is no way to check for this
2279 return IsVirtual() || m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW
2280 : CDRF_DODEFAULT;
2281
2282 case CDDS_ITEMPREPAINT:
2283 {
2284 size_t item = (size_t)nmcd.dwItemSpec;
2285 if ( item >= (size_t)GetItemCount() )
2286 {
2287 // we get this message with item == 0 for an empty control,
2288 // we must ignore it as calling OnGetItemAttr() would be
2289 // wrong
2290 return CDRF_DODEFAULT;
2291 }
2292
2293 wxListItemAttr *attr =
2294 IsVirtual() ? OnGetItemAttr(item)
2295 : wxGetInternalDataAttr(this, item);
2296
2297 if ( !attr )
2298 {
2299 // nothing to do for this item
2300 return CDRF_DODEFAULT;
2301 }
2302
2303 HFONT hFont;
2304 wxColour colText, colBack;
2305 if ( attr->HasFont() )
2306 {
2307 wxFont font = attr->GetFont();
2308 hFont = (HFONT)font.GetResourceHandle();
2309 }
2310 else
2311 {
2312 hFont = 0;
2313 }
2314
2315 if ( attr->HasTextColour() )
2316 {
2317 colText = attr->GetTextColour();
2318 }
2319 else
2320 {
2321 colText = GetTextColour();
2322 }
2323
2324 if ( attr->HasBackgroundColour() )
2325 {
2326 colBack = attr->GetBackgroundColour();
2327 }
2328 else
2329 {
2330 colBack = GetBackgroundColour();
2331 }
2332
2333 lplvcd->clrText = wxColourToRGB(colText);
2334 lplvcd->clrTextBk = wxColourToRGB(colBack);
2335
2336 // note that if we wanted to set colours for
2337 // individual columns (subitems), we would have
2338 // returned CDRF_NOTIFYSUBITEMREDRAW from here
2339 if ( hFont )
2340 {
2341 ::SelectObject(nmcd.hdc, hFont);
2342
2343 return CDRF_NEWFONT;
2344 }
2345 }
2346 // fall through to return CDRF_DODEFAULT
2347
2348 default:
2349 return CDRF_DODEFAULT;
2350 }
2351 }
2352
2353 #endif // NM_CUSTOMDRAW supported
2354
2355 // Necessary for drawing hrules and vrules, if specified
2356 void wxListCtrl::OnPaint(wxPaintEvent& event)
2357 {
2358 wxPaintDC dc(this);
2359
2360 wxControl::OnPaint(event);
2361
2362 // Reset the device origin since it may have been set
2363 dc.SetDeviceOrigin(0, 0);
2364
2365 bool drawHRules = ((GetWindowStyle() & wxLC_HRULES) != 0);
2366 bool drawVRules = ((GetWindowStyle() & wxLC_VRULES) != 0);
2367
2368 if (!drawHRules && !drawVRules)
2369 return;
2370 if ((GetWindowStyle() & wxLC_REPORT) == 0)
2371 return;
2372
2373 wxPen pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT), 1, wxSOLID);
2374 dc.SetPen(pen);
2375 dc.SetBrush(* wxTRANSPARENT_BRUSH);
2376
2377 wxSize clientSize = GetClientSize();
2378 wxRect itemRect;
2379 int cy=0;
2380
2381 int itemCount = GetItemCount();
2382 int i;
2383 if (drawHRules)
2384 {
2385 long top = GetTopItem();
2386 for (i = top; i < top + GetCountPerPage() + 1; i++)
2387 {
2388 if (GetItemRect(i, itemRect))
2389 {
2390 cy = itemRect.GetTop();
2391 if (i != 0) // Don't draw the first one
2392 {
2393 dc.DrawLine(0, cy, clientSize.x, cy);
2394 }
2395 // Draw last line
2396 if (i == itemCount - 1)
2397 {
2398 cy = itemRect.GetBottom();
2399 dc.DrawLine(0, cy, clientSize.x, cy);
2400 }
2401 }
2402 }
2403 }
2404 i = itemCount - 1;
2405 if (drawVRules && (i > -1))
2406 {
2407 wxRect firstItemRect;
2408 GetItemRect(0, firstItemRect);
2409
2410 if (GetItemRect(i, itemRect))
2411 {
2412 int col;
2413 int x = itemRect.GetX();
2414 for (col = 0; col < GetColumnCount(); col++)
2415 {
2416 int colWidth = GetColumnWidth(col);
2417 x += colWidth ;
2418 dc.DrawLine(x-1, firstItemRect.GetY() - 2, x-1, itemRect.GetBottom());
2419 }
2420 }
2421 }
2422 }
2423
2424 // ----------------------------------------------------------------------------
2425 // virtual list controls
2426 // ----------------------------------------------------------------------------
2427
2428 wxString wxListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const
2429 {
2430 // this is a pure virtual function, in fact - which is not really pure
2431 // because the controls which are not virtual don't need to implement it
2432 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2433
2434 return wxEmptyString;
2435 }
2436
2437 int wxListCtrl::OnGetItemImage(long WXUNUSED(item)) const
2438 {
2439 // same as above
2440 wxFAIL_MSG( _T("wxListCtrl::OnGetItemImage not supposed to be called") );
2441
2442 return -1;
2443 }
2444
2445 wxListItemAttr *wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const
2446 {
2447 wxASSERT_MSG( item >= 0 && item < GetItemCount(),
2448 _T("invalid item index in OnGetItemAttr()") );
2449
2450 // no attributes by default
2451 return NULL;
2452 }
2453
2454 void wxListCtrl::SetItemCount(long count)
2455 {
2456 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2457
2458 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT, (WPARAM)count, LVSICF_NOSCROLL) )
2459 {
2460 wxLogLastError(_T("ListView_SetItemCount"));
2461 }
2462 m_count = count;
2463 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
2464 wxT("m_count should match ListView_GetItemCount"));
2465 }
2466
2467 void wxListCtrl::RefreshItem(long item)
2468 {
2469 // strangely enough, ListView_Update() results in much more flicker here
2470 // than a dumb Refresh() -- why?
2471 #if 0
2472 if ( !ListView_Update(GetHwnd(), item) )
2473 {
2474 wxLogLastError(_T("ListView_Update"));
2475 }
2476 #else // 1
2477 wxRect rect;
2478 GetItemRect(item, rect);
2479 RefreshRect(rect);
2480 #endif // 0/1
2481 }
2482
2483 void wxListCtrl::RefreshItems(long itemFrom, long itemTo)
2484 {
2485 wxRect rect1, rect2;
2486 GetItemRect(itemFrom, rect1);
2487 GetItemRect(itemTo, rect2);
2488
2489 wxRect rect = rect1;
2490 rect.height = rect2.GetBottom() - rect1.GetTop();
2491
2492 RefreshRect(rect);
2493 }
2494
2495 static wxListItemInternalData *wxGetInternalData(HWND hwnd, long itemId)
2496 {
2497 LV_ITEM it;
2498 it.mask = LVIF_PARAM;
2499 it.iItem = itemId;
2500
2501 bool success = ListView_GetItem(hwnd, &it) != 0;
2502 if (success)
2503 return (wxListItemInternalData *) it.lParam;
2504 else
2505 return NULL;
2506 };
2507
2508 static wxListItemInternalData *wxGetInternalData(wxListCtrl *ctl, long itemId)
2509 {
2510 return wxGetInternalData((HWND) ctl->GetHWND(), itemId);
2511 };
2512
2513 static wxListItemAttr *wxGetInternalDataAttr(wxListCtrl *ctl, long itemId)
2514 {
2515 wxListItemInternalData *data = wxGetInternalData(ctl, itemId);
2516 if (data)
2517 return data->attr;
2518 else
2519 return NULL;
2520 };
2521
2522 static void wxDeleteInternalData(wxListCtrl* ctl, long itemId)
2523 {
2524 wxListItemInternalData *data = wxGetInternalData(ctl, itemId);
2525 if (data)
2526 {
2527 LV_ITEM item;
2528 memset(&item, 0, sizeof(item));
2529 item.iItem = itemId;
2530 item.mask = LVIF_PARAM;
2531 item.lParam = (LPARAM) 0;
2532 ListView_SetItem((HWND)ctl->GetHWND(), &item);
2533 delete data;
2534 }
2535 }
2536
2537 static void wxConvertFromMSWListItem(HWND hwndListCtrl,
2538 wxListItem& info,
2539 LV_ITEM& lvItem)
2540 {
2541 wxListItemInternalData *internaldata =
2542 (wxListItemInternalData *) lvItem.lParam;
2543
2544 if (internaldata)
2545 info.m_data = internaldata->lParam;
2546
2547 info.m_mask = 0;
2548 info.m_state = 0;
2549 info.m_stateMask = 0;
2550 info.m_itemId = lvItem.iItem;
2551
2552 long oldMask = lvItem.mask;
2553
2554 bool needText = FALSE;
2555 if (hwndListCtrl != 0)
2556 {
2557 if ( lvItem.mask & LVIF_TEXT )
2558 needText = FALSE;
2559 else
2560 needText = TRUE;
2561
2562 if ( needText )
2563 {
2564 lvItem.pszText = new wxChar[513];
2565 lvItem.cchTextMax = 512;
2566 }
2567 lvItem.mask |= LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
2568 ::SendMessage(hwndListCtrl, LVM_GETITEM, 0, (LPARAM)& lvItem);
2569 }
2570
2571 if ( lvItem.mask & LVIF_STATE )
2572 {
2573 info.m_mask |= wxLIST_MASK_STATE;
2574
2575 if ( lvItem.stateMask & LVIS_CUT)
2576 {
2577 info.m_stateMask |= wxLIST_STATE_CUT;
2578 if ( lvItem.state & LVIS_CUT )
2579 info.m_state |= wxLIST_STATE_CUT;
2580 }
2581 if ( lvItem.stateMask & LVIS_DROPHILITED)
2582 {
2583 info.m_stateMask |= wxLIST_STATE_DROPHILITED;
2584 if ( lvItem.state & LVIS_DROPHILITED )
2585 info.m_state |= wxLIST_STATE_DROPHILITED;
2586 }
2587 if ( lvItem.stateMask & LVIS_FOCUSED)
2588 {
2589 info.m_stateMask |= wxLIST_STATE_FOCUSED;
2590 if ( lvItem.state & LVIS_FOCUSED )
2591 info.m_state |= wxLIST_STATE_FOCUSED;
2592 }
2593 if ( lvItem.stateMask & LVIS_SELECTED)
2594 {
2595 info.m_stateMask |= wxLIST_STATE_SELECTED;
2596 if ( lvItem.state & LVIS_SELECTED )
2597 info.m_state |= wxLIST_STATE_SELECTED;
2598 }
2599 }
2600
2601 if ( lvItem.mask & LVIF_TEXT )
2602 {
2603 info.m_mask |= wxLIST_MASK_TEXT;
2604 info.m_text = lvItem.pszText;
2605 }
2606 if ( lvItem.mask & LVIF_IMAGE )
2607 {
2608 info.m_mask |= wxLIST_MASK_IMAGE;
2609 info.m_image = lvItem.iImage;
2610 }
2611 if ( lvItem.mask & LVIF_PARAM )
2612 info.m_mask |= wxLIST_MASK_DATA;
2613 if ( lvItem.mask & LVIF_DI_SETITEM )
2614 info.m_mask |= wxLIST_SET_ITEM;
2615 info.m_col = lvItem.iSubItem;
2616
2617 if (needText)
2618 {
2619 if (lvItem.pszText)
2620 delete[] lvItem.pszText;
2621 }
2622 lvItem.mask = oldMask;
2623 }
2624
2625 static void wxConvertToMSWFlags(long state, long stateMask, LV_ITEM& lvItem)
2626 {
2627 if (stateMask & wxLIST_STATE_CUT)
2628 {
2629 lvItem.stateMask |= LVIS_CUT;
2630 if (state & wxLIST_STATE_CUT)
2631 lvItem.state |= LVIS_CUT;
2632 }
2633 if (stateMask & wxLIST_STATE_DROPHILITED)
2634 {
2635 lvItem.stateMask |= LVIS_DROPHILITED;
2636 if (state & wxLIST_STATE_DROPHILITED)
2637 lvItem.state |= LVIS_DROPHILITED;
2638 }
2639 if (stateMask & wxLIST_STATE_FOCUSED)
2640 {
2641 lvItem.stateMask |= LVIS_FOCUSED;
2642 if (state & wxLIST_STATE_FOCUSED)
2643 lvItem.state |= LVIS_FOCUSED;
2644 }
2645 if (stateMask & wxLIST_STATE_SELECTED)
2646 {
2647 lvItem.stateMask |= LVIS_SELECTED;
2648 if (state & wxLIST_STATE_SELECTED)
2649 lvItem.state |= LVIS_SELECTED;
2650 }
2651 }
2652
2653 static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
2654 const wxListItem& info,
2655 LV_ITEM& lvItem)
2656 {
2657 lvItem.iItem = (int) info.m_itemId;
2658
2659 lvItem.iImage = info.m_image;
2660 lvItem.stateMask = 0;
2661 lvItem.state = 0;
2662 lvItem.mask = 0;
2663 lvItem.iSubItem = info.m_col;
2664
2665 if (info.m_mask & wxLIST_MASK_STATE)
2666 {
2667 lvItem.mask |= LVIF_STATE;
2668
2669 wxConvertToMSWFlags(info.m_state, info.m_stateMask, lvItem);
2670 }
2671
2672 if (info.m_mask & wxLIST_MASK_TEXT)
2673 {
2674 lvItem.mask |= LVIF_TEXT;
2675 if ( ctrl->GetWindowStyleFlag() & wxLC_USER_TEXT )
2676 {
2677 lvItem.pszText = LPSTR_TEXTCALLBACK;
2678 }
2679 else
2680 {
2681 // pszText is not const, hence the cast
2682 lvItem.pszText = (wxChar *)info.m_text.c_str();
2683 if ( lvItem.pszText )
2684 lvItem.cchTextMax = info.m_text.Length();
2685 else
2686 lvItem.cchTextMax = 0;
2687 }
2688 }
2689 if (info.m_mask & wxLIST_MASK_IMAGE)
2690 lvItem.mask |= LVIF_IMAGE;
2691 }
2692
2693 static void wxConvertToMSWListCol(int WXUNUSED(col), const wxListItem& item,
2694 LV_COLUMN& lvCol)
2695 {
2696 wxZeroMemory(lvCol);
2697
2698 if ( item.m_mask & wxLIST_MASK_TEXT )
2699 {
2700 lvCol.mask |= LVCF_TEXT;
2701 lvCol.pszText = (wxChar *)item.m_text.c_str(); // cast is safe
2702 }
2703
2704 if ( item.m_mask & wxLIST_MASK_FORMAT )
2705 {
2706 lvCol.mask |= LVCF_FMT;
2707
2708 if ( item.m_format == wxLIST_FORMAT_LEFT )
2709 lvCol.fmt = LVCFMT_LEFT;
2710 else if ( item.m_format == wxLIST_FORMAT_RIGHT )
2711 lvCol.fmt = LVCFMT_RIGHT;
2712 else if ( item.m_format == wxLIST_FORMAT_CENTRE )
2713 lvCol.fmt = LVCFMT_CENTER;
2714 }
2715
2716 if ( item.m_mask & wxLIST_MASK_WIDTH )
2717 {
2718 lvCol.mask |= LVCF_WIDTH;
2719 if ( item.m_width == wxLIST_AUTOSIZE)
2720 lvCol.cx = LVSCW_AUTOSIZE;
2721 else if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER)
2722 lvCol.cx = LVSCW_AUTOSIZE_USEHEADER;
2723 else
2724 lvCol.cx = item.m_width;
2725 }
2726
2727 // see comment at the end of wxListCtrl::GetColumn()
2728 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2729 if ( item.m_mask & wxLIST_MASK_IMAGE )
2730 {
2731 if ( wxTheApp->GetComCtl32Version() >= 470 )
2732 {
2733 lvCol.mask |= LVCF_IMAGE | LVCF_FMT;
2734
2735 // we use LVCFMT_BITMAP_ON_RIGHT because thei mages on the right
2736 // seem to be generally nicer than on the left and the generic
2737 // version only draws them on the right (we don't have a flag to
2738 // specify the image location anyhow)
2739 //
2740 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
2741 // make any difference in my tests -- but maybe we should?
2742 lvCol.fmt |= LVCFMT_BITMAP_ON_RIGHT | LVCFMT_IMAGE;
2743
2744 lvCol.iImage = item.m_image;
2745 }
2746 //else: it doesn't support item images anyhow
2747 }
2748 #endif // _WIN32_IE >= 0x0300
2749 }
2750
2751 #endif // wxUSE_LISTCTRL
2752