replaced wxNO_FULL_REPAINT_ON_RESIZE with wxFULL_REPAINT_ON_RESIZE in XTI declarations
[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(wxBORDER)
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(wxFULL_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& wxVALIDATOR_PARAM(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
1048 wxRect rect;
1049 wxCopyRECTToRect(rc, rect);
1050
1051 return rect;
1052 }
1053
1054 // Gets the item rectangle
1055 bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const
1056 {
1057 RECT rectWin;
1058
1059 int codeWin;
1060 if ( code == wxLIST_RECT_BOUNDS )
1061 codeWin = LVIR_BOUNDS;
1062 else if ( code == wxLIST_RECT_ICON )
1063 codeWin = LVIR_ICON;
1064 else if ( code == wxLIST_RECT_LABEL )
1065 codeWin = LVIR_LABEL;
1066 else
1067 {
1068 wxFAIL_MSG( _T("incorrect code in GetItemRect()") );
1069
1070 codeWin = LVIR_BOUNDS;
1071 }
1072
1073 bool success = ListView_GetItemRect(GetHwnd(), (int) item, &rectWin, codeWin) != 0;
1074
1075 rect.x = rectWin.left;
1076 rect.y = rectWin.top;
1077 rect.width = rectWin.right - rectWin.left;
1078 rect.height = rectWin.bottom - rectWin.top;
1079
1080 return success;
1081 }
1082
1083 // Gets the item position
1084 bool wxListCtrl::GetItemPosition(long item, wxPoint& pos) const
1085 {
1086 POINT pt;
1087
1088 bool success = (ListView_GetItemPosition(GetHwnd(), (int) item, &pt) != 0);
1089
1090 pos.x = pt.x; pos.y = pt.y;
1091 return success;
1092 }
1093
1094 // Sets the item position.
1095 bool wxListCtrl::SetItemPosition(long item, const wxPoint& pos)
1096 {
1097 return (ListView_SetItemPosition(GetHwnd(), (int) item, pos.x, pos.y) != 0);
1098 }
1099
1100 // Gets the number of items in the list control
1101 int wxListCtrl::GetItemCount() const
1102 {
1103 return m_count;
1104 }
1105
1106 wxSize wxListCtrl::GetItemSpacing() const
1107 {
1108 const int spacing = ListView_GetItemSpacing(GetHwnd(), (BOOL)HasFlag(wxLC_SMALL_ICON));
1109
1110 return wxSize(LOWORD(spacing), HIWORD(spacing));
1111 }
1112
1113 int wxListCtrl::GetItemSpacing(bool isSmall) const
1114 {
1115 return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall);
1116 }
1117
1118 void wxListCtrl::SetItemTextColour( long item, const wxColour &col )
1119 {
1120 wxListItem info;
1121 info.m_itemId = item;
1122 info.SetTextColour( col );
1123 SetItem( info );
1124 }
1125
1126 wxColour wxListCtrl::GetItemTextColour( long item ) const
1127 {
1128 wxListItem info;
1129 info.m_itemId = item;
1130 GetItem( info );
1131 return info.GetTextColour();
1132 }
1133
1134 void wxListCtrl::SetItemBackgroundColour( long item, const wxColour &col )
1135 {
1136 wxListItem info;
1137 info.m_itemId = item;
1138 info.SetBackgroundColour( col );
1139 SetItem( info );
1140 }
1141
1142 wxColour wxListCtrl::GetItemBackgroundColour( long item ) const
1143 {
1144 wxListItem info;
1145 info.m_itemId = item;
1146 GetItem( info );
1147 return info.GetBackgroundColour();
1148 }
1149
1150 // Gets the number of selected items in the list control
1151 int wxListCtrl::GetSelectedItemCount() const
1152 {
1153 return ListView_GetSelectedCount(GetHwnd());
1154 }
1155
1156 // Gets the text colour of the listview
1157 wxColour wxListCtrl::GetTextColour() const
1158 {
1159 COLORREF ref = ListView_GetTextColor(GetHwnd());
1160 wxColour col(GetRValue(ref), GetGValue(ref), GetBValue(ref));
1161 return col;
1162 }
1163
1164 // Sets the text colour of the listview
1165 void wxListCtrl::SetTextColour(const wxColour& col)
1166 {
1167 ListView_SetTextColor(GetHwnd(), PALETTERGB(col.Red(), col.Green(), col.Blue()));
1168 }
1169
1170 // Gets the index of the topmost visible item when in
1171 // list or report view
1172 long wxListCtrl::GetTopItem() const
1173 {
1174 return (long) ListView_GetTopIndex(GetHwnd());
1175 }
1176
1177 // Searches for an item, starting from 'item'.
1178 // 'geometry' is one of
1179 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1180 // 'state' is a state bit flag, one or more of
1181 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1182 // item can be -1 to find the first item that matches the
1183 // specified flags.
1184 // Returns the item or -1 if unsuccessful.
1185 long wxListCtrl::GetNextItem(long item, int geom, int state) const
1186 {
1187 long flags = 0;
1188
1189 if ( geom == wxLIST_NEXT_ABOVE )
1190 flags |= LVNI_ABOVE;
1191 if ( geom == wxLIST_NEXT_ALL )
1192 flags |= LVNI_ALL;
1193 if ( geom == wxLIST_NEXT_BELOW )
1194 flags |= LVNI_BELOW;
1195 if ( geom == wxLIST_NEXT_LEFT )
1196 flags |= LVNI_TOLEFT;
1197 if ( geom == wxLIST_NEXT_RIGHT )
1198 flags |= LVNI_TORIGHT;
1199
1200 if ( state & wxLIST_STATE_CUT )
1201 flags |= LVNI_CUT;
1202 if ( state & wxLIST_STATE_DROPHILITED )
1203 flags |= LVNI_DROPHILITED;
1204 if ( state & wxLIST_STATE_FOCUSED )
1205 flags |= LVNI_FOCUSED;
1206 if ( state & wxLIST_STATE_SELECTED )
1207 flags |= LVNI_SELECTED;
1208
1209 return (long) ListView_GetNextItem(GetHwnd(), item, flags);
1210 }
1211
1212
1213 wxImageList *wxListCtrl::GetImageList(int which) const
1214 {
1215 if ( which == wxIMAGE_LIST_NORMAL )
1216 {
1217 return m_imageListNormal;
1218 }
1219 else if ( which == wxIMAGE_LIST_SMALL )
1220 {
1221 return m_imageListSmall;
1222 }
1223 else if ( which == wxIMAGE_LIST_STATE )
1224 {
1225 return m_imageListState;
1226 }
1227 return NULL;
1228 }
1229
1230 void wxListCtrl::SetImageList(wxImageList *imageList, int which)
1231 {
1232 int flags = 0;
1233 if ( which == wxIMAGE_LIST_NORMAL )
1234 {
1235 flags = LVSIL_NORMAL;
1236 if (m_ownsImageListNormal) delete m_imageListNormal;
1237 m_imageListNormal = imageList;
1238 m_ownsImageListNormal = FALSE;
1239 }
1240 else if ( which == wxIMAGE_LIST_SMALL )
1241 {
1242 flags = LVSIL_SMALL;
1243 if (m_ownsImageListSmall) delete m_imageListSmall;
1244 m_imageListSmall = imageList;
1245 m_ownsImageListSmall = FALSE;
1246 }
1247 else if ( which == wxIMAGE_LIST_STATE )
1248 {
1249 flags = LVSIL_STATE;
1250 if (m_ownsImageListState) delete m_imageListState;
1251 m_imageListState = imageList;
1252 m_ownsImageListState = FALSE;
1253 }
1254 ListView_SetImageList(GetHwnd(), (HIMAGELIST) imageList ? imageList->GetHIMAGELIST() : 0, flags);
1255 }
1256
1257 void wxListCtrl::AssignImageList(wxImageList *imageList, int which)
1258 {
1259 SetImageList(imageList, which);
1260 if ( which == wxIMAGE_LIST_NORMAL )
1261 m_ownsImageListNormal = TRUE;
1262 else if ( which == wxIMAGE_LIST_SMALL )
1263 m_ownsImageListSmall = TRUE;
1264 else if ( which == wxIMAGE_LIST_STATE )
1265 m_ownsImageListState = TRUE;
1266 }
1267
1268 // ----------------------------------------------------------------------------
1269 // Operations
1270 // ----------------------------------------------------------------------------
1271
1272 // Arranges the items
1273 bool wxListCtrl::Arrange(int flag)
1274 {
1275 UINT code = 0;
1276 if ( flag == wxLIST_ALIGN_LEFT )
1277 code = LVA_ALIGNLEFT;
1278 else if ( flag == wxLIST_ALIGN_TOP )
1279 code = LVA_ALIGNTOP;
1280 else if ( flag == wxLIST_ALIGN_DEFAULT )
1281 code = LVA_DEFAULT;
1282 else if ( flag == wxLIST_ALIGN_SNAP_TO_GRID )
1283 code = LVA_SNAPTOGRID;
1284
1285 return (ListView_Arrange(GetHwnd(), code) != 0);
1286 }
1287
1288 // Deletes an item
1289 bool wxListCtrl::DeleteItem(long item)
1290 {
1291 if ( !ListView_DeleteItem(GetHwnd(), (int) item) )
1292 {
1293 wxLogLastError(_T("ListView_DeleteItem"));
1294 return FALSE;
1295 }
1296
1297 m_count -= 1;
1298 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
1299 wxT("m_count should match ListView_GetItemCount"));
1300
1301 // the virtual list control doesn't refresh itself correctly, help it
1302 if ( IsVirtual() )
1303 {
1304 // we need to refresh all the lines below the one which was deleted
1305 wxRect rectItem;
1306 if ( item > 0 && GetItemCount() )
1307 {
1308 GetItemRect(item - 1, rectItem);
1309 }
1310 else
1311 {
1312 rectItem.y =
1313 rectItem.height = 0;
1314 }
1315
1316 wxRect rectWin = GetRect();
1317 rectWin.height = rectWin.GetBottom() - rectItem.GetBottom();
1318 rectWin.y = rectItem.GetBottom();
1319
1320 RefreshRect(rectWin);
1321 }
1322
1323 return TRUE;
1324 }
1325
1326 // Deletes all items
1327 bool wxListCtrl::DeleteAllItems()
1328 {
1329 FreeAllInternalData();
1330 return ListView_DeleteAllItems(GetHwnd()) != 0;
1331 }
1332
1333 // Deletes all items
1334 bool wxListCtrl::DeleteAllColumns()
1335 {
1336 while ( m_colCount > 0 )
1337 {
1338 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1339 {
1340 wxLogLastError(wxT("ListView_DeleteColumn"));
1341
1342 return FALSE;
1343 }
1344
1345 m_colCount--;
1346 }
1347
1348 wxASSERT_MSG( m_colCount == 0, wxT("no columns should be left") );
1349
1350 return TRUE;
1351 }
1352
1353 // Deletes a column
1354 bool wxListCtrl::DeleteColumn(int col)
1355 {
1356 bool success = (ListView_DeleteColumn(GetHwnd(), col) != 0);
1357
1358 if ( success && (m_colCount > 0) )
1359 m_colCount --;
1360 return success;
1361 }
1362
1363 // Clears items, and columns if there are any.
1364 void wxListCtrl::ClearAll()
1365 {
1366 DeleteAllItems();
1367 if ( m_colCount > 0 )
1368 DeleteAllColumns();
1369 }
1370
1371 wxTextCtrl* wxListCtrl::EditLabel(long item, wxClassInfo* textControlClass)
1372 {
1373 wxASSERT( (textControlClass->IsKindOf(CLASSINFO(wxTextCtrl))) );
1374
1375 // ListView_EditLabel requires that the list has focus.
1376 SetFocus();
1377
1378 WXHWND hWnd = (WXHWND) ListView_EditLabel(GetHwnd(), item);
1379 if ( !hWnd )
1380 {
1381 // failed to start editing
1382 return NULL;
1383 }
1384
1385 // [re]create the text control wrapping the HWND we got
1386 if ( m_textCtrl )
1387 {
1388 m_textCtrl->UnsubclassWin();
1389 m_textCtrl->SetHWND(0);
1390 delete m_textCtrl;
1391 }
1392
1393 m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject();
1394 m_textCtrl->SetHWND(hWnd);
1395 m_textCtrl->SubclassWin(hWnd);
1396 m_textCtrl->SetParent(this);
1397
1398 // we must disallow TABbing away from the control while the edit contol is
1399 // shown because this leaves it in some strange state (just try removing
1400 // this line and then pressing TAB while editing an item in listctrl
1401 // inside a panel)
1402 m_textCtrl->SetWindowStyle(m_textCtrl->GetWindowStyle() | wxTE_PROCESS_TAB);
1403
1404 return m_textCtrl;
1405 }
1406
1407 // End label editing, optionally cancelling the edit
1408 bool wxListCtrl::EndEditLabel(bool WXUNUSED(cancel))
1409 {
1410 wxFAIL_MSG( _T("not implemented") );
1411
1412 return FALSE;
1413 }
1414
1415 // Ensures this item is visible
1416 bool wxListCtrl::EnsureVisible(long item)
1417 {
1418 return ListView_EnsureVisible(GetHwnd(), (int) item, FALSE) != 0;
1419 }
1420
1421 // Find an item whose label matches this string, starting from the item after 'start'
1422 // or the beginning if 'start' is -1.
1423 long wxListCtrl::FindItem(long start, const wxString& str, bool partial)
1424 {
1425 LV_FINDINFO findInfo;
1426
1427 findInfo.flags = LVFI_STRING;
1428 if ( partial )
1429 findInfo.flags |= LVFI_PARTIAL;
1430 findInfo.psz = str;
1431
1432 // ListView_FindItem() excludes the first item from search and to look
1433 // through all the items you need to start from -1 which is unnatural and
1434 // inconsistent with the generic version - so we adjust the index
1435 if (start != -1)
1436 start --;
1437 return ListView_FindItem(GetHwnd(), (int) start, &findInfo);
1438 }
1439
1440 // Find an item whose data matches this data, starting from the item after 'start'
1441 // or the beginning if 'start' is -1.
1442 // NOTE : Lindsay Mathieson - 14-July-2002
1443 // No longer use ListView_FindItem as the data attribute is now stored
1444 // in a wxListItemInternalData structure refernced by the actual lParam
1445 long wxListCtrl::FindItem(long start, long data)
1446 {
1447 long idx = start + 1;
1448 long count = GetItemCount();
1449
1450 while (idx < count)
1451 {
1452 if (GetItemData(idx) == data)
1453 return idx;
1454 idx++;
1455 };
1456
1457 return -1;
1458 }
1459
1460 // Find an item nearest this position in the specified direction, starting from
1461 // the item after 'start' or the beginning if 'start' is -1.
1462 long wxListCtrl::FindItem(long start, const wxPoint& pt, int direction)
1463 {
1464 LV_FINDINFO findInfo;
1465
1466 findInfo.flags = LVFI_NEARESTXY;
1467 findInfo.pt.x = pt.x;
1468 findInfo.pt.y = pt.y;
1469 findInfo.vkDirection = VK_RIGHT;
1470
1471 if ( direction == wxLIST_FIND_UP )
1472 findInfo.vkDirection = VK_UP;
1473 else if ( direction == wxLIST_FIND_DOWN )
1474 findInfo.vkDirection = VK_DOWN;
1475 else if ( direction == wxLIST_FIND_LEFT )
1476 findInfo.vkDirection = VK_LEFT;
1477 else if ( direction == wxLIST_FIND_RIGHT )
1478 findInfo.vkDirection = VK_RIGHT;
1479
1480 return ListView_FindItem(GetHwnd(), (int) start, & findInfo);
1481 }
1482
1483 // Determines which item (if any) is at the specified point,
1484 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1485 long wxListCtrl::HitTest(const wxPoint& point, int& flags)
1486 {
1487 LV_HITTESTINFO hitTestInfo;
1488 hitTestInfo.pt.x = (int) point.x;
1489 hitTestInfo.pt.y = (int) point.y;
1490
1491 ListView_HitTest(GetHwnd(), & hitTestInfo);
1492
1493 flags = 0;
1494 if ( hitTestInfo.flags & LVHT_ABOVE )
1495 flags |= wxLIST_HITTEST_ABOVE;
1496 if ( hitTestInfo.flags & LVHT_BELOW )
1497 flags |= wxLIST_HITTEST_BELOW;
1498 if ( hitTestInfo.flags & LVHT_NOWHERE )
1499 flags |= wxLIST_HITTEST_NOWHERE;
1500 if ( hitTestInfo.flags & LVHT_ONITEMICON )
1501 flags |= wxLIST_HITTEST_ONITEMICON;
1502 if ( hitTestInfo.flags & LVHT_ONITEMLABEL )
1503 flags |= wxLIST_HITTEST_ONITEMLABEL;
1504 if ( hitTestInfo.flags & LVHT_ONITEMSTATEICON )
1505 flags |= wxLIST_HITTEST_ONITEMSTATEICON;
1506 if ( hitTestInfo.flags & LVHT_TOLEFT )
1507 flags |= wxLIST_HITTEST_TOLEFT;
1508 if ( hitTestInfo.flags & LVHT_TORIGHT )
1509 flags |= wxLIST_HITTEST_TORIGHT;
1510
1511 return (long) hitTestInfo.iItem;
1512 }
1513
1514 // Inserts an item, returning the index of the new item if successful,
1515 // -1 otherwise.
1516 long wxListCtrl::InsertItem(wxListItem& info)
1517 {
1518 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1519
1520 LV_ITEM item;
1521 wxConvertToMSWListItem(this, info, item);
1522 item.mask &= ~LVIF_PARAM;
1523
1524 // check wether we need to allocate our internal data
1525 bool needInternalData = ((info.m_mask & wxLIST_MASK_DATA) || info.HasAttributes());
1526 if (needInternalData)
1527 {
1528 m_AnyInternalData = TRUE;
1529 item.mask |= LVIF_PARAM;
1530
1531 // internal stucture that manages data
1532 wxListItemInternalData *data = new wxListItemInternalData();
1533 item.lParam = (LPARAM) data;
1534
1535 if (info.m_mask & wxLIST_MASK_DATA)
1536 data->lParam = info.m_data;
1537
1538 // check whether it has any custom attributes
1539 if ( info.HasAttributes() )
1540 {
1541 // take copy of attributes
1542 data->attr = new wxListItemAttr(*info.GetAttributes());
1543 }
1544 };
1545
1546 long rv = ListView_InsertItem(GetHwnd(), & item);
1547
1548 m_count++;
1549 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
1550 wxT("m_count should match ListView_GetItemCount"));
1551
1552 return rv;
1553 }
1554
1555 long wxListCtrl::InsertItem(long index, const wxString& label)
1556 {
1557 wxListItem info;
1558 info.m_text = label;
1559 info.m_mask = wxLIST_MASK_TEXT;
1560 info.m_itemId = index;
1561 return InsertItem(info);
1562 }
1563
1564 // Inserts an image item
1565 long wxListCtrl::InsertItem(long index, int imageIndex)
1566 {
1567 wxListItem info;
1568 info.m_image = imageIndex;
1569 info.m_mask = wxLIST_MASK_IMAGE;
1570 info.m_itemId = index;
1571 return InsertItem(info);
1572 }
1573
1574 // Inserts an image/string item
1575 long wxListCtrl::InsertItem(long index, const wxString& label, int imageIndex)
1576 {
1577 wxListItem info;
1578 info.m_image = imageIndex;
1579 info.m_text = label;
1580 info.m_mask = wxLIST_MASK_IMAGE | wxLIST_MASK_TEXT;
1581 info.m_itemId = index;
1582 return InsertItem(info);
1583 }
1584
1585 // For list view mode (only), inserts a column.
1586 long wxListCtrl::InsertColumn(long col, wxListItem& item)
1587 {
1588 LV_COLUMN lvCol;
1589 wxConvertToMSWListCol(col, item, lvCol);
1590
1591 if ( !(lvCol.mask & LVCF_WIDTH) )
1592 {
1593 // always give some width to the new column: this one is compatible
1594 // with the generic version
1595 lvCol.mask |= LVCF_WIDTH;
1596 lvCol.cx = 80;
1597 }
1598
1599 long n = ListView_InsertColumn(GetHwnd(), col, &lvCol);
1600 if ( n != -1 )
1601 {
1602 m_colCount++;
1603 }
1604 else // failed to insert?
1605 {
1606 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
1607 lvCol.pszText);
1608 }
1609
1610 return n;
1611 }
1612
1613 long wxListCtrl::InsertColumn(long col,
1614 const wxString& heading,
1615 int format,
1616 int width)
1617 {
1618 wxListItem item;
1619 item.m_mask = wxLIST_MASK_TEXT | wxLIST_MASK_FORMAT;
1620 item.m_text = heading;
1621 if ( width > -1 )
1622 {
1623 item.m_mask |= wxLIST_MASK_WIDTH;
1624 item.m_width = width;
1625 }
1626 item.m_format = format;
1627
1628 return InsertColumn(col, item);
1629 }
1630
1631 // scroll the control by the given number of pixels (exception: in list view,
1632 // dx is interpreted as number of columns)
1633 bool wxListCtrl::ScrollList(int dx, int dy)
1634 {
1635 if ( !ListView_Scroll(GetHwnd(), dx, dy) )
1636 {
1637 wxLogDebug(_T("ListView_Scroll(%d, %d) failed"), dx, dy);
1638
1639 return FALSE;
1640 }
1641
1642 return TRUE;
1643 }
1644
1645 // Sort items.
1646
1647 // fn is a function which takes 3 long arguments: item1, item2, data.
1648 // item1 is the long data associated with a first item (NOT the index).
1649 // item2 is the long data associated with a second item (NOT the index).
1650 // data is the same value as passed to SortItems.
1651 // The return value is a negative number if the first item should precede the second
1652 // item, a positive number of the second item should precede the first,
1653 // or zero if the two items are equivalent.
1654
1655 // data is arbitrary data to be passed to the sort function.
1656
1657 // Internal structures for proxying the user compare function
1658 // so that we can pass it the *real* user data
1659
1660 // translate lParam data and call user func
1661 struct wxInternalDataSort
1662 {
1663 wxListCtrlCompare user_fn;
1664 long data;
1665 };
1666
1667 int CALLBACK wxInternalDataCompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
1668 {
1669 struct wxInternalDataSort *internalData = (struct wxInternalDataSort *) lParamSort;
1670
1671 wxListItemInternalData *data1 = (wxListItemInternalData *) lParam1;
1672 wxListItemInternalData *data2 = (wxListItemInternalData *) lParam2;
1673
1674 long d1 = (data1 == NULL ? 0 : data1->lParam);
1675 long d2 = (data2 == NULL ? 0 : data2->lParam);
1676
1677 return internalData->user_fn(d1, d2, internalData->data);
1678
1679 };
1680
1681 bool wxListCtrl::SortItems(wxListCtrlCompare fn, long data)
1682 {
1683 struct wxInternalDataSort internalData;
1684 internalData.user_fn = fn;
1685 internalData.data = data;
1686
1687 // WPARAM cast is needed for mingw/cygwin
1688 if ( !ListView_SortItems(GetHwnd(),
1689 wxInternalDataCompareFunc,
1690 (WPARAM) &internalData) )
1691 {
1692 wxLogDebug(_T("ListView_SortItems() failed"));
1693
1694 return FALSE;
1695 }
1696
1697 return TRUE;
1698 }
1699
1700
1701
1702 // ----------------------------------------------------------------------------
1703 // message processing
1704 // ----------------------------------------------------------------------------
1705
1706 bool wxListCtrl::MSWCommand(WXUINT cmd, WXWORD id)
1707 {
1708 if (cmd == EN_UPDATE)
1709 {
1710 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
1711 event.SetEventObject( this );
1712 ProcessCommand(event);
1713 return TRUE;
1714 }
1715 else if (cmd == EN_KILLFOCUS)
1716 {
1717 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
1718 event.SetEventObject( this );
1719 ProcessCommand(event);
1720 return TRUE;
1721 }
1722 else
1723 return FALSE;
1724 }
1725
1726 bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
1727 {
1728
1729 // prepare the event
1730 // -----------------
1731
1732 wxListEvent event(wxEVT_NULL, m_windowId);
1733 event.SetEventObject(this);
1734
1735 wxEventType eventType = wxEVT_NULL;
1736
1737 NMHDR *nmhdr = (NMHDR *)lParam;
1738
1739 // if your compiler is as broken as this, you should really change it: this
1740 // code is needed for normal operation! #ifdef below is only useful for
1741 // automatic rebuilds which are done with a very old compiler version
1742 #ifdef HDN_BEGINTRACKA
1743
1744 // check for messages from the header (in report view)
1745 HWND hwndHdr = ListView_GetHeader(GetHwnd());
1746
1747 // is it a message from the header?
1748 if ( nmhdr->hwndFrom == hwndHdr )
1749 {
1750 HD_NOTIFY *nmHDR = (HD_NOTIFY *)nmhdr;
1751
1752 event.m_itemIndex = -1;
1753
1754 switch ( nmhdr->code )
1755 {
1756 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1757 // TRACK messages even to ANSI programs: on my system I get
1758 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
1759 //
1760 // work around is to simply catch both versions and hope that it
1761 // works (why should this message exist in ANSI and Unicode is
1762 // beyond me as it doesn't deal with strings at all...)
1763 //
1764 // note that fr HDN_TRACK another possibility could be to use
1765 // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when
1766 // something other than the item width changes so we'd have to
1767 // filter out the unwanted events then
1768 case HDN_BEGINTRACKA:
1769 case HDN_BEGINTRACKW:
1770 eventType = wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
1771 // fall through
1772
1773 case HDN_TRACKA:
1774 case HDN_TRACKW:
1775 if ( eventType == wxEVT_NULL )
1776 eventType = wxEVT_COMMAND_LIST_COL_DRAGGING;
1777 // fall through
1778
1779 case HDN_ENDTRACKA:
1780 case HDN_ENDTRACKW:
1781 if ( eventType == wxEVT_NULL )
1782 eventType = wxEVT_COMMAND_LIST_COL_END_DRAG;
1783
1784 event.m_item.m_width = nmHDR->pitem->cxy;
1785 event.m_col = nmHDR->iItem;
1786 break;
1787
1788 case NM_RCLICK:
1789 {
1790 eventType = wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
1791 event.m_col = -1;
1792
1793 // find the column clicked: we have to search for it
1794 // ourselves as the notification message doesn't provide
1795 // this info
1796
1797 // where did the click occur?
1798 POINT ptClick;
1799 if ( !::GetCursorPos(&ptClick) )
1800 {
1801 wxLogLastError(_T("GetCursorPos"));
1802 }
1803
1804 if ( !::ScreenToClient(hwndHdr, &ptClick) )
1805 {
1806 wxLogLastError(_T("ScreenToClient(listctrl header)"));
1807 }
1808
1809 event.m_pointDrag.x = ptClick.x;
1810 event.m_pointDrag.y = ptClick.y;
1811
1812 int colCount = Header_GetItemCount(hwndHdr);
1813
1814 RECT rect;
1815 for ( int col = 0; col < colCount; col++ )
1816 {
1817 if ( Header_GetItemRect(hwndHdr, col, &rect) )
1818 {
1819 if ( ::PtInRect(&rect, ptClick) )
1820 {
1821 event.m_col = col;
1822 break;
1823 }
1824 }
1825 }
1826 }
1827 break;
1828
1829 case HDN_GETDISPINFOW:
1830 {
1831 LPNMHDDISPINFOW info = (LPNMHDDISPINFOW) lParam;
1832 // This is a fix for a strange bug under XP.
1833 // Normally, info->iItem is a valid index, but
1834 // sometimes this is a silly (large) number
1835 // and when we return FALSE via wxControl::MSWOnNotify
1836 // to indicate that it hasn't yet been processed,
1837 // there's a GPF in Windows.
1838 // By returning TRUE here, we avoid further processing
1839 // of this strange message.
1840 if ( info->iItem >= GetColumnCount() )
1841 return TRUE;
1842 }
1843 // fall through
1844
1845 default:
1846 return wxControl::MSWOnNotify(idCtrl, lParam, result);
1847 }
1848 }
1849 else
1850 #endif // defined(HDN_BEGINTRACKA)
1851 if ( nmhdr->hwndFrom == GetHwnd() )
1852 {
1853 // almost all messages use NM_LISTVIEW
1854 NM_LISTVIEW *nmLV = (NM_LISTVIEW *)nmhdr;
1855
1856 const int iItem = nmLV->iItem;
1857
1858
1859 // FreeAllInternalData will cause LVN_ITEMCHANG* messages, which can be
1860 // ignored for efficiency. It is done here because the internal data is in the
1861 // process of being deleted so we don't want to try and access it below.
1862 if ( m_ignoreChangeMessages &&
1863 ( (nmLV->hdr.code == LVN_ITEMCHANGED) || (nmLV->hdr.code == LVN_ITEMCHANGING)))
1864 {
1865 return TRUE;
1866 }
1867
1868
1869 // If we have a valid item then check if there is a data value
1870 // associated with it and put it in the event.
1871 if ( iItem >= 0 && iItem < GetItemCount() )
1872 {
1873 wxListItemInternalData *internaldata =
1874 wxGetInternalData(GetHwnd(), iItem);
1875
1876 if ( internaldata )
1877 event.m_item.m_data = internaldata->lParam;
1878 }
1879
1880
1881 switch ( nmhdr->code )
1882 {
1883 case LVN_BEGINRDRAG:
1884 eventType = wxEVT_COMMAND_LIST_BEGIN_RDRAG;
1885 // fall through
1886
1887 case LVN_BEGINDRAG:
1888 if ( eventType == wxEVT_NULL )
1889 {
1890 eventType = wxEVT_COMMAND_LIST_BEGIN_DRAG;
1891 }
1892
1893 event.m_itemIndex = iItem;
1894 event.m_pointDrag.x = nmLV->ptAction.x;
1895 event.m_pointDrag.y = nmLV->ptAction.y;
1896 break;
1897
1898 // NB: we have to handle both *A and *W versions here because some
1899 // versions of comctl32.dll send ANSI message to an Unicode app
1900 case LVN_BEGINLABELEDITA:
1901 {
1902 eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
1903 wxLV_ITEM item(((LV_DISPINFOA *)lParam)->item);
1904 wxConvertFromMSWListItem(GetHwnd(), event.m_item, item);
1905 event.m_itemIndex = event.m_item.m_itemId;
1906 }
1907 break;
1908 case LVN_BEGINLABELEDITW:
1909 {
1910 eventType = wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
1911 wxLV_ITEM item(((LV_DISPINFOW *)lParam)->item);
1912 wxConvertFromMSWListItem(GetHwnd(), event.m_item, item);
1913 event.m_itemIndex = event.m_item.m_itemId;
1914 }
1915 break;
1916
1917 case LVN_ENDLABELEDITA:
1918 {
1919 eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT;
1920 wxLV_ITEM item(((LV_DISPINFOA *)lParam)->item);
1921 wxConvertFromMSWListItem(NULL, event.m_item, item);
1922 if ( ((LV_ITEM)item).pszText == NULL ||
1923 ((LV_ITEM)item).iItem == -1 )
1924 {
1925 // don't keep a stale wxTextCtrl around
1926 if ( m_textCtrl )
1927 {
1928 // EDIT control will be deleted by the list control itself so
1929 // prevent us from deleting it as well
1930 m_textCtrl->UnsubclassWin();
1931 m_textCtrl->SetHWND(0);
1932 delete m_textCtrl;
1933 m_textCtrl = NULL;
1934 }
1935 return FALSE;
1936 }
1937
1938 event.m_itemIndex = event.m_item.m_itemId;
1939 }
1940 break;
1941 case LVN_ENDLABELEDITW:
1942 {
1943 eventType = wxEVT_COMMAND_LIST_END_LABEL_EDIT;
1944 wxLV_ITEM item(((LV_DISPINFOW *)lParam)->item);
1945 wxConvertFromMSWListItem(NULL, event.m_item, item);
1946 if ( ((LV_ITEM)item).pszText == NULL ||
1947 ((LV_ITEM)item).iItem == -1 )
1948 {
1949 // don't keep a stale wxTextCtrl around
1950 if ( m_textCtrl )
1951 {
1952 // EDIT control will be deleted by the list control itself so
1953 // prevent us from deleting it as well
1954 m_textCtrl->UnsubclassWin();
1955 m_textCtrl->SetHWND(0);
1956 delete m_textCtrl;
1957 m_textCtrl = NULL;
1958 }
1959 return FALSE;
1960 }
1961
1962 event.m_itemIndex = event.m_item.m_itemId;
1963 }
1964 break;
1965
1966 case LVN_COLUMNCLICK:
1967 eventType = wxEVT_COMMAND_LIST_COL_CLICK;
1968 event.m_itemIndex = -1;
1969 event.m_col = nmLV->iSubItem;
1970 break;
1971
1972 case LVN_DELETEALLITEMS:
1973 m_count = 0;
1974 eventType = wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
1975 event.m_itemIndex = -1;
1976 break;
1977
1978 case LVN_DELETEITEM:
1979 if (m_count == 0)
1980 // this should be prevented by the post-processing code below,
1981 // but "just in case"
1982 return FALSE;
1983
1984 eventType = wxEVT_COMMAND_LIST_DELETE_ITEM;
1985 event.m_itemIndex = iItem;
1986 // delete the assoicated internal data
1987 wxDeleteInternalData(this, iItem);
1988 break;
1989
1990 case LVN_SETDISPINFO:
1991 {
1992 eventType = wxEVT_COMMAND_LIST_SET_INFO;
1993 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
1994 wxConvertFromMSWListItem(GetHwnd(), event.m_item, info->item);
1995 }
1996 break;
1997
1998 case LVN_INSERTITEM:
1999 eventType = wxEVT_COMMAND_LIST_INSERT_ITEM;
2000 event.m_itemIndex = iItem;
2001 break;
2002
2003 case LVN_ITEMCHANGED:
2004 // we translate this catch all message into more interesting
2005 // (and more easy to process) wxWindows events
2006
2007 // first of all, we deal with the state change events only and
2008 // only for valid items (item == -1 for the virtual list
2009 // control)
2010 if ( nmLV->uChanged & LVIF_STATE && iItem != -1 )
2011 {
2012 // temp vars for readability
2013 const UINT stOld = nmLV->uOldState;
2014 const UINT stNew = nmLV->uNewState;
2015
2016 event.m_item.SetId(iItem);
2017 event.m_item.SetMask(wxLIST_MASK_TEXT |
2018 wxLIST_MASK_IMAGE |
2019 wxLIST_MASK_DATA);
2020 GetItem(event.m_item);
2021
2022 // has the focus changed?
2023 if ( !(stOld & LVIS_FOCUSED) && (stNew & LVIS_FOCUSED) )
2024 {
2025 eventType = wxEVT_COMMAND_LIST_ITEM_FOCUSED;
2026 event.m_itemIndex = iItem;
2027 }
2028
2029 if ( (stNew & LVIS_SELECTED) != (stOld & LVIS_SELECTED) )
2030 {
2031 if ( eventType != wxEVT_NULL )
2032 {
2033 // focus and selection have both changed: send the
2034 // focus event from here and the selection one
2035 // below
2036 event.SetEventType(eventType);
2037 (void)GetEventHandler()->ProcessEvent(event);
2038 }
2039 else // no focus event to send
2040 {
2041 // then need to set m_itemIndex as it wasn't done
2042 // above
2043 event.m_itemIndex = iItem;
2044 }
2045
2046 eventType = stNew & LVIS_SELECTED
2047 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2048 : wxEVT_COMMAND_LIST_ITEM_DESELECTED;
2049 }
2050 }
2051
2052 if ( eventType == wxEVT_NULL )
2053 {
2054 // not an interesting event for us
2055 return FALSE;
2056 }
2057
2058 break;
2059
2060 case LVN_KEYDOWN:
2061 {
2062 LV_KEYDOWN *info = (LV_KEYDOWN *)lParam;
2063 WORD wVKey = info->wVKey;
2064
2065 // get the current selection
2066 long lItem = GetNextItem(-1,
2067 wxLIST_NEXT_ALL,
2068 wxLIST_STATE_SELECTED);
2069
2070 // <Enter> or <Space> activate the selected item if any (but
2071 // not with Shift and/or Ctrl as then they have a predefined
2072 // meaning for the list view)
2073 if ( lItem != -1 &&
2074 (wVKey == VK_RETURN || wVKey == VK_SPACE) &&
2075 !(wxIsShiftDown() || wxIsCtrlDown()) )
2076 {
2077 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2078 }
2079 else
2080 {
2081 eventType = wxEVT_COMMAND_LIST_KEY_DOWN;
2082
2083 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
2084 // value which should be used as is
2085 int code = wxCharCodeMSWToWX(wVKey);
2086 event.m_code = code ? code : wVKey;
2087 }
2088
2089 event.m_itemIndex =
2090 event.m_item.m_itemId = lItem;
2091
2092 if ( lItem != -1 )
2093 {
2094 // fill the other fields too
2095 event.m_item.m_text = GetItemText(lItem);
2096 event.m_item.m_data = GetItemData(lItem);
2097 }
2098 }
2099 break;
2100
2101 case NM_DBLCLK:
2102 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2103 // anything else
2104 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
2105 {
2106 return TRUE;
2107 }
2108
2109 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2110 // if it happened on an item (and not on empty place)
2111 if ( iItem == -1 )
2112 {
2113 // not on item
2114 return FALSE;
2115 }
2116
2117 eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
2118 event.m_itemIndex = iItem;
2119 event.m_item.m_text = GetItemText(iItem);
2120 event.m_item.m_data = GetItemData(iItem);
2121 break;
2122
2123 case NM_RCLICK:
2124 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2125 // don't do anything else
2126 if ( wxControl::MSWOnNotify(idCtrl, lParam, result) )
2127 {
2128 return TRUE;
2129 }
2130
2131 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2132 LV_HITTESTINFO lvhti;
2133 wxZeroMemory(lvhti);
2134
2135 ::GetCursorPos(&(lvhti.pt));
2136 ::ScreenToClient(GetHwnd(),&(lvhti.pt));
2137 if ( ListView_HitTest(GetHwnd(),&lvhti) != -1 )
2138 {
2139 if ( lvhti.flags & LVHT_ONITEM )
2140 {
2141 eventType = wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
2142 event.m_itemIndex = lvhti.iItem;
2143 event.m_pointDrag.x = lvhti.pt.x;
2144 event.m_pointDrag.y = lvhti.pt.y;
2145 }
2146 }
2147 break;
2148
2149 #ifdef NM_CUSTOMDRAW
2150 case NM_CUSTOMDRAW:
2151 *result = OnCustomDraw(lParam);
2152
2153 return TRUE;
2154 #endif // _WIN32_IE >= 0x300
2155
2156 case LVN_ODCACHEHINT:
2157 {
2158 const NM_CACHEHINT *cacheHint = (NM_CACHEHINT *)lParam;
2159
2160 eventType = wxEVT_COMMAND_LIST_CACHE_HINT;
2161
2162 // we get some really stupid cache hints like ones for
2163 // items in range 0..0 for an empty control or, after
2164 // deleting an item, for items in invalid range -- filter
2165 // this garbage out
2166 if ( cacheHint->iFrom > cacheHint->iTo )
2167 return FALSE;
2168
2169 event.m_oldItemIndex = cacheHint->iFrom;
2170
2171 const long iMax = GetItemCount();
2172 event.m_itemIndex = cacheHint->iTo < iMax ? cacheHint->iTo
2173 : iMax - 1;
2174 }
2175 break;
2176
2177 case LVN_GETDISPINFO:
2178 if ( IsVirtual() )
2179 {
2180 LV_DISPINFO *info = (LV_DISPINFO *)lParam;
2181
2182 LV_ITEM& lvi = info->item;
2183 long item = lvi.iItem;
2184
2185 if ( lvi.mask & LVIF_TEXT )
2186 {
2187 wxString text = OnGetItemText(item, lvi.iSubItem);
2188 wxStrncpy(lvi.pszText, text, lvi.cchTextMax);
2189 }
2190
2191 // see comment at the end of wxListCtrl::GetColumn()
2192 #ifdef NM_CUSTOMDRAW
2193 if ( lvi.mask & LVIF_IMAGE )
2194 {
2195 lvi.iImage = OnGetItemImage(item);
2196 }
2197 #endif // NM_CUSTOMDRAW
2198
2199 // a little dose of healthy paranoia: as we never use
2200 // LVM_SETCALLBACKMASK we're not supposed to get these ones
2201 wxASSERT_MSG( !(lvi.mask & LVIF_STATE),
2202 _T("we don't support state callbacks yet!") );
2203
2204 return TRUE;
2205 }
2206 // fall through
2207
2208 default:
2209 return wxControl::MSWOnNotify(idCtrl, lParam, result);
2210 }
2211 }
2212 else
2213 {
2214 // where did this one come from?
2215 return FALSE;
2216 }
2217
2218 // process the event
2219 // -----------------
2220
2221 event.SetEventType(eventType);
2222
2223 bool processed = GetEventHandler()->ProcessEvent(event);
2224
2225 // post processing
2226 // ---------------
2227 switch ( nmhdr->code )
2228 {
2229 case LVN_DELETEALLITEMS:
2230 // always return TRUE to suppress all additional LVN_DELETEITEM
2231 // notifications - this makes deleting all items from a list ctrl
2232 // much faster
2233 *result = TRUE;
2234 return TRUE;
2235
2236 case LVN_ENDLABELEDITA:
2237 case LVN_ENDLABELEDITW:
2238 // logic here is inversed compared to all the other messages
2239 *result = event.IsAllowed();
2240
2241 // don't keep a stale wxTextCtrl around
2242 if ( m_textCtrl )
2243 {
2244 // EDIT control will be deleted by the list control itself so
2245 // prevent us from deleting it as well
2246 m_textCtrl->UnsubclassWin();
2247 m_textCtrl->SetHWND(0);
2248 delete m_textCtrl;
2249 m_textCtrl = NULL;
2250 }
2251
2252 return TRUE;
2253 }
2254
2255 if ( processed )
2256 *result = !event.IsAllowed();
2257
2258 return processed;
2259 }
2260
2261 // see comment at the end of wxListCtrl::GetColumn()
2262 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2263
2264 WXLPARAM wxListCtrl::OnCustomDraw(WXLPARAM lParam)
2265 {
2266 LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam;
2267 NMCUSTOMDRAW& nmcd = lplvcd->nmcd;
2268 switch ( nmcd.dwDrawStage )
2269 {
2270 case CDDS_PREPAINT:
2271 // if we've got any items with non standard attributes,
2272 // notify us before painting each item
2273 //
2274 // for virtual controls, always suppose that we have attributes as
2275 // there is no way to check for this
2276 return IsVirtual() || m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW
2277 : CDRF_DODEFAULT;
2278
2279 case CDDS_ITEMPREPAINT:
2280 {
2281 size_t item = (size_t)nmcd.dwItemSpec;
2282 if ( item >= (size_t)GetItemCount() )
2283 {
2284 // we get this message with item == 0 for an empty control,
2285 // we must ignore it as calling OnGetItemAttr() would be
2286 // wrong
2287 return CDRF_DODEFAULT;
2288 }
2289
2290 wxListItemAttr *attr =
2291 IsVirtual() ? OnGetItemAttr(item)
2292 : wxGetInternalDataAttr(this, item);
2293
2294 if ( !attr )
2295 {
2296 // nothing to do for this item
2297 return CDRF_DODEFAULT;
2298 }
2299
2300 HFONT hFont;
2301 wxColour colText, colBack;
2302 if ( attr->HasFont() )
2303 {
2304 wxFont font = attr->GetFont();
2305 hFont = (HFONT)font.GetResourceHandle();
2306 }
2307 else
2308 {
2309 hFont = 0;
2310 }
2311
2312 if ( attr->HasTextColour() )
2313 {
2314 colText = attr->GetTextColour();
2315 }
2316 else
2317 {
2318 colText = GetTextColour();
2319 }
2320
2321 if ( attr->HasBackgroundColour() )
2322 {
2323 colBack = attr->GetBackgroundColour();
2324 }
2325 else
2326 {
2327 colBack = GetBackgroundColour();
2328 }
2329
2330 lplvcd->clrText = wxColourToRGB(colText);
2331 lplvcd->clrTextBk = wxColourToRGB(colBack);
2332
2333 // note that if we wanted to set colours for
2334 // individual columns (subitems), we would have
2335 // returned CDRF_NOTIFYSUBITEMREDRAW from here
2336 if ( hFont )
2337 {
2338 ::SelectObject(nmcd.hdc, hFont);
2339
2340 return CDRF_NEWFONT;
2341 }
2342 }
2343 // fall through to return CDRF_DODEFAULT
2344
2345 default:
2346 return CDRF_DODEFAULT;
2347 }
2348 }
2349
2350 #endif // NM_CUSTOMDRAW supported
2351
2352 // Necessary for drawing hrules and vrules, if specified
2353 void wxListCtrl::OnPaint(wxPaintEvent& event)
2354 {
2355 wxPaintDC dc(this);
2356
2357 wxControl::OnPaint(event);
2358
2359 // Reset the device origin since it may have been set
2360 dc.SetDeviceOrigin(0, 0);
2361
2362 bool drawHRules = ((GetWindowStyle() & wxLC_HRULES) != 0);
2363 bool drawVRules = ((GetWindowStyle() & wxLC_VRULES) != 0);
2364
2365 if (!drawHRules && !drawVRules)
2366 return;
2367 if ((GetWindowStyle() & wxLC_REPORT) == 0)
2368 return;
2369
2370 wxPen pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT), 1, wxSOLID);
2371 dc.SetPen(pen);
2372 dc.SetBrush(* wxTRANSPARENT_BRUSH);
2373
2374 wxSize clientSize = GetClientSize();
2375 wxRect itemRect;
2376 int cy=0;
2377
2378 int itemCount = GetItemCount();
2379 int i;
2380 if (drawHRules)
2381 {
2382 long top = GetTopItem();
2383 for (i = top; i < top + GetCountPerPage() + 1; i++)
2384 {
2385 if (GetItemRect(i, itemRect))
2386 {
2387 cy = itemRect.GetTop();
2388 if (i != 0) // Don't draw the first one
2389 {
2390 dc.DrawLine(0, cy, clientSize.x, cy);
2391 }
2392 // Draw last line
2393 if (i == itemCount - 1)
2394 {
2395 cy = itemRect.GetBottom();
2396 dc.DrawLine(0, cy, clientSize.x, cy);
2397 }
2398 }
2399 }
2400 }
2401 i = itemCount - 1;
2402 if (drawVRules && (i > -1))
2403 {
2404 wxRect firstItemRect;
2405 GetItemRect(0, firstItemRect);
2406
2407 if (GetItemRect(i, itemRect))
2408 {
2409 int col;
2410 int x = itemRect.GetX();
2411 for (col = 0; col < GetColumnCount(); col++)
2412 {
2413 int colWidth = GetColumnWidth(col);
2414 x += colWidth ;
2415 dc.DrawLine(x-1, firstItemRect.GetY() - 2, x-1, itemRect.GetBottom());
2416 }
2417 }
2418 }
2419 }
2420
2421 // ----------------------------------------------------------------------------
2422 // virtual list controls
2423 // ----------------------------------------------------------------------------
2424
2425 wxString wxListCtrl::OnGetItemText(long WXUNUSED(item), long WXUNUSED(col)) const
2426 {
2427 // this is a pure virtual function, in fact - which is not really pure
2428 // because the controls which are not virtual don't need to implement it
2429 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2430
2431 return wxEmptyString;
2432 }
2433
2434 int wxListCtrl::OnGetItemImage(long WXUNUSED(item)) const
2435 {
2436 // same as above
2437 wxFAIL_MSG( _T("wxListCtrl::OnGetItemImage not supposed to be called") );
2438
2439 return -1;
2440 }
2441
2442 wxListItemAttr *wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item)) const
2443 {
2444 wxASSERT_MSG( item >= 0 && item < GetItemCount(),
2445 _T("invalid item index in OnGetItemAttr()") );
2446
2447 // no attributes by default
2448 return NULL;
2449 }
2450
2451 void wxListCtrl::SetItemCount(long count)
2452 {
2453 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2454
2455 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT, (WPARAM)count, LVSICF_NOSCROLL) )
2456 {
2457 wxLogLastError(_T("ListView_SetItemCount"));
2458 }
2459 m_count = count;
2460 wxASSERT_MSG( m_count == ListView_GetItemCount(GetHwnd()),
2461 wxT("m_count should match ListView_GetItemCount"));
2462 }
2463
2464 void wxListCtrl::RefreshItem(long item)
2465 {
2466 // strangely enough, ListView_Update() results in much more flicker here
2467 // than a dumb Refresh() -- why?
2468 #if 0
2469 if ( !ListView_Update(GetHwnd(), item) )
2470 {
2471 wxLogLastError(_T("ListView_Update"));
2472 }
2473 #else // 1
2474 wxRect rect;
2475 GetItemRect(item, rect);
2476 RefreshRect(rect);
2477 #endif // 0/1
2478 }
2479
2480 void wxListCtrl::RefreshItems(long itemFrom, long itemTo)
2481 {
2482 wxRect rect1, rect2;
2483 GetItemRect(itemFrom, rect1);
2484 GetItemRect(itemTo, rect2);
2485
2486 wxRect rect = rect1;
2487 rect.height = rect2.GetBottom() - rect1.GetTop();
2488
2489 RefreshRect(rect);
2490 }
2491
2492 static wxListItemInternalData *wxGetInternalData(HWND hwnd, long itemId)
2493 {
2494 LV_ITEM it;
2495 it.mask = LVIF_PARAM;
2496 it.iItem = itemId;
2497
2498 bool success = ListView_GetItem(hwnd, &it) != 0;
2499 if (success)
2500 return (wxListItemInternalData *) it.lParam;
2501 else
2502 return NULL;
2503 };
2504
2505 static wxListItemInternalData *wxGetInternalData(wxListCtrl *ctl, long itemId)
2506 {
2507 return wxGetInternalData((HWND) ctl->GetHWND(), itemId);
2508 };
2509
2510 static wxListItemAttr *wxGetInternalDataAttr(wxListCtrl *ctl, long itemId)
2511 {
2512 wxListItemInternalData *data = wxGetInternalData(ctl, itemId);
2513 if (data)
2514 return data->attr;
2515 else
2516 return NULL;
2517 };
2518
2519 static void wxDeleteInternalData(wxListCtrl* ctl, long itemId)
2520 {
2521 wxListItemInternalData *data = wxGetInternalData(ctl, itemId);
2522 if (data)
2523 {
2524 LV_ITEM item;
2525 memset(&item, 0, sizeof(item));
2526 item.iItem = itemId;
2527 item.mask = LVIF_PARAM;
2528 item.lParam = (LPARAM) 0;
2529 ListView_SetItem((HWND)ctl->GetHWND(), &item);
2530 delete data;
2531 }
2532 }
2533
2534 static void wxConvertFromMSWListItem(HWND hwndListCtrl,
2535 wxListItem& info,
2536 LV_ITEM& lvItem)
2537 {
2538 wxListItemInternalData *internaldata =
2539 (wxListItemInternalData *) lvItem.lParam;
2540
2541 if (internaldata)
2542 info.m_data = internaldata->lParam;
2543
2544 info.m_mask = 0;
2545 info.m_state = 0;
2546 info.m_stateMask = 0;
2547 info.m_itemId = lvItem.iItem;
2548
2549 long oldMask = lvItem.mask;
2550
2551 bool needText = FALSE;
2552 if (hwndListCtrl != 0)
2553 {
2554 if ( lvItem.mask & LVIF_TEXT )
2555 needText = FALSE;
2556 else
2557 needText = TRUE;
2558
2559 if ( needText )
2560 {
2561 lvItem.pszText = new wxChar[513];
2562 lvItem.cchTextMax = 512;
2563 }
2564 lvItem.mask |= LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
2565 ::SendMessage(hwndListCtrl, LVM_GETITEM, 0, (LPARAM)& lvItem);
2566 }
2567
2568 if ( lvItem.mask & LVIF_STATE )
2569 {
2570 info.m_mask |= wxLIST_MASK_STATE;
2571
2572 if ( lvItem.stateMask & LVIS_CUT)
2573 {
2574 info.m_stateMask |= wxLIST_STATE_CUT;
2575 if ( lvItem.state & LVIS_CUT )
2576 info.m_state |= wxLIST_STATE_CUT;
2577 }
2578 if ( lvItem.stateMask & LVIS_DROPHILITED)
2579 {
2580 info.m_stateMask |= wxLIST_STATE_DROPHILITED;
2581 if ( lvItem.state & LVIS_DROPHILITED )
2582 info.m_state |= wxLIST_STATE_DROPHILITED;
2583 }
2584 if ( lvItem.stateMask & LVIS_FOCUSED)
2585 {
2586 info.m_stateMask |= wxLIST_STATE_FOCUSED;
2587 if ( lvItem.state & LVIS_FOCUSED )
2588 info.m_state |= wxLIST_STATE_FOCUSED;
2589 }
2590 if ( lvItem.stateMask & LVIS_SELECTED)
2591 {
2592 info.m_stateMask |= wxLIST_STATE_SELECTED;
2593 if ( lvItem.state & LVIS_SELECTED )
2594 info.m_state |= wxLIST_STATE_SELECTED;
2595 }
2596 }
2597
2598 if ( lvItem.mask & LVIF_TEXT )
2599 {
2600 info.m_mask |= wxLIST_MASK_TEXT;
2601 info.m_text = lvItem.pszText;
2602 }
2603 if ( lvItem.mask & LVIF_IMAGE )
2604 {
2605 info.m_mask |= wxLIST_MASK_IMAGE;
2606 info.m_image = lvItem.iImage;
2607 }
2608 if ( lvItem.mask & LVIF_PARAM )
2609 info.m_mask |= wxLIST_MASK_DATA;
2610 if ( lvItem.mask & LVIF_DI_SETITEM )
2611 info.m_mask |= wxLIST_SET_ITEM;
2612 info.m_col = lvItem.iSubItem;
2613
2614 if (needText)
2615 {
2616 if (lvItem.pszText)
2617 delete[] lvItem.pszText;
2618 }
2619 lvItem.mask = oldMask;
2620 }
2621
2622 static void wxConvertToMSWFlags(long state, long stateMask, LV_ITEM& lvItem)
2623 {
2624 if (stateMask & wxLIST_STATE_CUT)
2625 {
2626 lvItem.stateMask |= LVIS_CUT;
2627 if (state & wxLIST_STATE_CUT)
2628 lvItem.state |= LVIS_CUT;
2629 }
2630 if (stateMask & wxLIST_STATE_DROPHILITED)
2631 {
2632 lvItem.stateMask |= LVIS_DROPHILITED;
2633 if (state & wxLIST_STATE_DROPHILITED)
2634 lvItem.state |= LVIS_DROPHILITED;
2635 }
2636 if (stateMask & wxLIST_STATE_FOCUSED)
2637 {
2638 lvItem.stateMask |= LVIS_FOCUSED;
2639 if (state & wxLIST_STATE_FOCUSED)
2640 lvItem.state |= LVIS_FOCUSED;
2641 }
2642 if (stateMask & wxLIST_STATE_SELECTED)
2643 {
2644 lvItem.stateMask |= LVIS_SELECTED;
2645 if (state & wxLIST_STATE_SELECTED)
2646 lvItem.state |= LVIS_SELECTED;
2647 }
2648 }
2649
2650 static void wxConvertToMSWListItem(const wxListCtrl *ctrl,
2651 const wxListItem& info,
2652 LV_ITEM& lvItem)
2653 {
2654 lvItem.iItem = (int) info.m_itemId;
2655
2656 lvItem.iImage = info.m_image;
2657 lvItem.stateMask = 0;
2658 lvItem.state = 0;
2659 lvItem.mask = 0;
2660 lvItem.iSubItem = info.m_col;
2661
2662 if (info.m_mask & wxLIST_MASK_STATE)
2663 {
2664 lvItem.mask |= LVIF_STATE;
2665
2666 wxConvertToMSWFlags(info.m_state, info.m_stateMask, lvItem);
2667 }
2668
2669 if (info.m_mask & wxLIST_MASK_TEXT)
2670 {
2671 lvItem.mask |= LVIF_TEXT;
2672 if ( ctrl->GetWindowStyleFlag() & wxLC_USER_TEXT )
2673 {
2674 lvItem.pszText = LPSTR_TEXTCALLBACK;
2675 }
2676 else
2677 {
2678 // pszText is not const, hence the cast
2679 lvItem.pszText = (wxChar *)info.m_text.c_str();
2680 if ( lvItem.pszText )
2681 lvItem.cchTextMax = info.m_text.Length();
2682 else
2683 lvItem.cchTextMax = 0;
2684 }
2685 }
2686 if (info.m_mask & wxLIST_MASK_IMAGE)
2687 lvItem.mask |= LVIF_IMAGE;
2688 }
2689
2690 static void wxConvertToMSWListCol(int WXUNUSED(col), const wxListItem& item,
2691 LV_COLUMN& lvCol)
2692 {
2693 wxZeroMemory(lvCol);
2694
2695 if ( item.m_mask & wxLIST_MASK_TEXT )
2696 {
2697 lvCol.mask |= LVCF_TEXT;
2698 lvCol.pszText = (wxChar *)item.m_text.c_str(); // cast is safe
2699 }
2700
2701 if ( item.m_mask & wxLIST_MASK_FORMAT )
2702 {
2703 lvCol.mask |= LVCF_FMT;
2704
2705 if ( item.m_format == wxLIST_FORMAT_LEFT )
2706 lvCol.fmt = LVCFMT_LEFT;
2707 else if ( item.m_format == wxLIST_FORMAT_RIGHT )
2708 lvCol.fmt = LVCFMT_RIGHT;
2709 else if ( item.m_format == wxLIST_FORMAT_CENTRE )
2710 lvCol.fmt = LVCFMT_CENTER;
2711 }
2712
2713 if ( item.m_mask & wxLIST_MASK_WIDTH )
2714 {
2715 lvCol.mask |= LVCF_WIDTH;
2716 if ( item.m_width == wxLIST_AUTOSIZE)
2717 lvCol.cx = LVSCW_AUTOSIZE;
2718 else if ( item.m_width == wxLIST_AUTOSIZE_USEHEADER)
2719 lvCol.cx = LVSCW_AUTOSIZE_USEHEADER;
2720 else
2721 lvCol.cx = item.m_width;
2722 }
2723
2724 // see comment at the end of wxListCtrl::GetColumn()
2725 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2726 if ( item.m_mask & wxLIST_MASK_IMAGE )
2727 {
2728 if ( wxTheApp->GetComCtl32Version() >= 470 )
2729 {
2730 lvCol.mask |= LVCF_IMAGE | LVCF_FMT;
2731
2732 // we use LVCFMT_BITMAP_ON_RIGHT because thei mages on the right
2733 // seem to be generally nicer than on the left and the generic
2734 // version only draws them on the right (we don't have a flag to
2735 // specify the image location anyhow)
2736 //
2737 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
2738 // make any difference in my tests -- but maybe we should?
2739 lvCol.fmt |= LVCFMT_BITMAP_ON_RIGHT | LVCFMT_IMAGE;
2740
2741 lvCol.iImage = item.m_image;
2742 }
2743 //else: it doesn't support item images anyhow
2744 }
2745 #endif // _WIN32_IE >= 0x0300
2746 }
2747
2748 #endif // wxUSE_LISTCTRL
2749