1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/listctrl.cpp
4 // Author: Julian Smart
5 // Modified by: Agron Selimaj
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/listctrl.h"
32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
36 #include "wx/settings.h"
37 #include "wx/dcclient.h"
38 #include "wx/textctrl.h"
41 #include "wx/imaglist.h"
43 #include "wx/msw/private.h"
45 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__)
53 // Currently gcc and watcom don't define NMLVFINDITEM, and DMC only defines
54 // it by its old name NM_FINDTIEM.
56 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(NMLVFINDITEM)
57 #define HAVE_NMLVFINDITEM 1
58 #elif defined(__DMC__) || defined(NM_FINDITEM)
59 #define HAVE_NMLVFINDITEM 1
60 #define NMLVFINDITEM NM_FINDITEM
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 // convert our state and mask flags to LV_ITEM constants
68 static void wxConvertToMSWFlags(long state
, long mask
, LV_ITEM
& lvItem
);
70 // convert wxListItem to LV_ITEM
71 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
72 const wxListItem
& info
, LV_ITEM
& lvItem
);
74 // convert LV_ITEM to wxListItem
75 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
77 /* const */ LV_ITEM
& lvItem
);
79 // convert our wxListItem to LV_COLUMN
80 static void wxConvertToMSWListCol(HWND hwndList
,
82 const wxListItem
& item
,
85 // ----------------------------------------------------------------------------
86 // private helper classes
87 // ----------------------------------------------------------------------------
89 // We have to handle both fooW and fooA notifications in several cases
90 // because of broken comctl32.dll and/or unicows.dll. This class is used to
91 // convert LV_ITEMA and LV_ITEMW to LV_ITEM (which is either LV_ITEMA or
92 // LV_ITEMW depending on wxUSE_UNICODE setting), so that it can be processed
93 // by wxConvertToMSWListItem().
95 #define LV_ITEM_NATIVE LV_ITEMW
96 #define LV_ITEM_OTHER LV_ITEMA
98 #define LV_CONV_TO_WX cMB2WX
99 #define LV_CONV_BUF wxMB2WXbuf
101 #define LV_ITEM_NATIVE LV_ITEMA
102 #define LV_ITEM_OTHER LV_ITEMW
104 #define LV_CONV_TO_WX cWC2WX
105 #define LV_CONV_BUF wxWC2WXbuf
106 #endif // Unicode/ANSI
111 // default ctor, use Init() later
112 wxLV_ITEM() { m_buf
= NULL
; m_pItem
= NULL
; }
114 // init without conversion
115 void Init(LV_ITEM_NATIVE
& item
)
117 wxASSERT_MSG( !m_pItem
, _T("Init() called twice?") );
122 // init with conversion
123 void Init(const LV_ITEM_OTHER
& item
)
125 // avoid unnecessary dynamic memory allocation, jjust make m_pItem
126 // point to our own m_item
128 // memcpy() can't work if the struct sizes are different
129 wxCOMPILE_TIME_ASSERT( sizeof(LV_ITEM_OTHER
) == sizeof(LV_ITEM_NATIVE
),
130 CodeCantWorkIfDiffSizes
);
132 memcpy(&m_item
, &item
, sizeof(LV_ITEM_NATIVE
));
134 // convert text from ANSI to Unicod if necessary
135 if ( (item
.mask
& LVIF_TEXT
) && item
.pszText
)
137 m_buf
= new LV_CONV_BUF(wxConvLocal
.LV_CONV_TO_WX(item
.pszText
));
138 m_item
.pszText
= (wxChar
*)m_buf
->data();
142 // ctor without conversion
143 wxLV_ITEM(LV_ITEM_NATIVE
& item
) : m_buf(NULL
), m_pItem(&item
) { }
145 // ctor with conversion
146 wxLV_ITEM(LV_ITEM_OTHER
& item
) : m_buf(NULL
)
151 ~wxLV_ITEM() { delete m_buf
; }
153 // conversion to the real LV_ITEM
154 operator LV_ITEM_NATIVE
&() const { return *m_pItem
; }
159 LV_ITEM_NATIVE
*m_pItem
;
160 LV_ITEM_NATIVE m_item
;
162 DECLARE_NO_COPY_CLASS(wxLV_ITEM
)
165 ///////////////////////////////////////////////////////
167 // The MSW version had problems with SetTextColour() et
168 // al as the wxListItemAttr's were stored keyed on the
169 // item index. If a item was inserted anywhere but the end
170 // of the list the the text attributes (colour etc) for
171 // the following items were out of sync.
174 // Under MSW the only way to associate data with a List
175 // item independent of its position in the list is to
176 // store a pointer to it in its lParam attribute. However
177 // user programs are already using this (via the
178 // SetItemData() GetItemData() calls).
180 // However what we can do is store a pointer to a
181 // structure which contains the attributes we want *and*
182 // a lParam for the users data, e.g.
184 // class wxListItemInternalData
187 // wxListItemAttr *attr;
188 // long lParam; // user data
191 // To conserve memory, a wxListItemInternalData is
192 // only allocated for a LV_ITEM if text attributes or
193 // user data(lparam) are being set.
196 // class wxListItemInternalData
197 class wxListItemInternalData
200 wxListItemAttr
*attr
;
201 LPARAM lParam
; // user data
203 wxListItemInternalData() : attr(NULL
), lParam(0) {}
204 ~wxListItemInternalData()
210 DECLARE_NO_COPY_CLASS(wxListItemInternalData
)
213 // Get the internal data structure
214 static wxListItemInternalData
*wxGetInternalData(HWND hwnd
, long itemId
);
215 static wxListItemInternalData
*wxGetInternalData(const wxListCtrl
*ctl
, long itemId
);
216 static wxListItemAttr
*wxGetInternalDataAttr(const wxListCtrl
*ctl
, long itemId
);
217 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
);
220 #if wxUSE_EXTENDED_RTTI
221 WX_DEFINE_FLAGS( wxListCtrlStyle
)
223 wxBEGIN_FLAGS( wxListCtrlStyle
)
224 // new style border flags, we put them first to
225 // use them for streaming out
226 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
227 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
228 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
229 wxFLAGS_MEMBER(wxBORDER_RAISED
)
230 wxFLAGS_MEMBER(wxBORDER_STATIC
)
231 wxFLAGS_MEMBER(wxBORDER_NONE
)
233 // old style border flags
234 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
235 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
236 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
237 wxFLAGS_MEMBER(wxRAISED_BORDER
)
238 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
239 wxFLAGS_MEMBER(wxBORDER
)
241 // standard window styles
242 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
243 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
244 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
245 wxFLAGS_MEMBER(wxWANTS_CHARS
)
246 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
247 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
248 wxFLAGS_MEMBER(wxVSCROLL
)
249 wxFLAGS_MEMBER(wxHSCROLL
)
251 wxFLAGS_MEMBER(wxLC_LIST
)
252 wxFLAGS_MEMBER(wxLC_REPORT
)
253 wxFLAGS_MEMBER(wxLC_ICON
)
254 wxFLAGS_MEMBER(wxLC_SMALL_ICON
)
255 wxFLAGS_MEMBER(wxLC_ALIGN_TOP
)
256 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT
)
257 wxFLAGS_MEMBER(wxLC_AUTOARRANGE
)
258 wxFLAGS_MEMBER(wxLC_USER_TEXT
)
259 wxFLAGS_MEMBER(wxLC_EDIT_LABELS
)
260 wxFLAGS_MEMBER(wxLC_NO_HEADER
)
261 wxFLAGS_MEMBER(wxLC_SINGLE_SEL
)
262 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING
)
263 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING
)
264 wxFLAGS_MEMBER(wxLC_VIRTUAL
)
266 wxEND_FLAGS( wxListCtrlStyle
)
268 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl
, wxControl
,"wx/listctrl.h")
270 wxBEGIN_PROPERTIES_TABLE(wxListCtrl
)
271 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
273 wxPROPERTY_FLAGS( WindowStyle
, wxListCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
274 wxEND_PROPERTIES_TABLE()
276 wxBEGIN_HANDLERS_TABLE(wxListCtrl
)
277 wxEND_HANDLERS_TABLE()
279 wxCONSTRUCTOR_5( wxListCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
282 TODO : Expose more information of a list's layout etc. via appropriate objects (Ã la NotebookPageInfo)
285 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
288 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
289 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
291 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
293 BEGIN_EVENT_TABLE(wxListCtrl
, wxControl
)
294 EVT_PAINT(wxListCtrl::OnPaint
)
297 // ============================================================================
299 // ============================================================================
301 // ----------------------------------------------------------------------------
302 // wxListCtrl construction
303 // ----------------------------------------------------------------------------
305 void wxListCtrl::Init()
307 m_imageListNormal
= NULL
;
308 m_imageListSmall
= NULL
;
309 m_imageListState
= NULL
;
310 m_ownsImageListNormal
= m_ownsImageListSmall
= m_ownsImageListState
= false;
313 m_ignoreChangeMessages
= false;
315 m_AnyInternalData
= false;
316 m_hasAnyAttr
= false;
319 bool wxListCtrl::Create(wxWindow
*parent
,
324 const wxValidator
& validator
,
325 const wxString
& name
)
327 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
330 if ( !MSWCreateControl(WC_LISTVIEW
, wxEmptyString
, pos
, size
) )
333 // explicitly say that we want to use Unicode because otherwise we get ANSI
334 // versions of _some_ messages (notably LVN_GETDISPINFOA) in MSLU build
335 wxSetCCUnicodeFormat(GetHwnd());
337 // We must set the default text colour to the system/theme color, otherwise
338 // GetTextColour will always return black
339 SetTextColour(GetDefaultAttributes().colFg
);
341 // for comctl32.dll v 4.70+ we want to have some non default extended
342 // styles because it's prettier (and also because wxGTK does it like this)
343 if ( InReportView() && wxApp::GetComCtl32Version() >= 470 )
345 ::SendMessage(GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE
,
346 0, LVS_EX_LABELTIP
| LVS_EX_FULLROWSELECT
| LVS_EX_SUBITEMIMAGES
);
352 WXDWORD
wxListCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
354 WXDWORD wstyle
= wxControl::MSWGetStyle(style
, exstyle
);
356 wstyle
|= LVS_SHAREIMAGELISTS
| LVS_SHOWSELALWAYS
;
361 #define MAP_MODE_STYLE(wx, ms) \
362 if ( style & (wx) ) { wstyle |= (ms); nModes++; }
363 #else // !__WXDEBUG__
364 #define MAP_MODE_STYLE(wx, ms) \
365 if ( style & (wx) ) wstyle |= (ms);
366 #endif // __WXDEBUG__
368 MAP_MODE_STYLE(wxLC_ICON
, LVS_ICON
)
369 MAP_MODE_STYLE(wxLC_SMALL_ICON
, LVS_SMALLICON
)
370 MAP_MODE_STYLE(wxLC_LIST
, LVS_LIST
)
371 MAP_MODE_STYLE(wxLC_REPORT
, LVS_REPORT
)
373 wxASSERT_MSG( nModes
== 1,
374 _T("wxListCtrl style should have exactly one mode bit set") );
376 #undef MAP_MODE_STYLE
378 if ( style
& wxLC_ALIGN_LEFT
)
379 wstyle
|= LVS_ALIGNLEFT
;
381 if ( style
& wxLC_ALIGN_TOP
)
382 wstyle
|= LVS_ALIGNTOP
;
384 if ( style
& wxLC_AUTOARRANGE
)
385 wstyle
|= LVS_AUTOARRANGE
;
387 if ( style
& wxLC_NO_SORT_HEADER
)
388 wstyle
|= LVS_NOSORTHEADER
;
390 if ( style
& wxLC_NO_HEADER
)
391 wstyle
|= LVS_NOCOLUMNHEADER
;
393 if ( style
& wxLC_EDIT_LABELS
)
394 wstyle
|= LVS_EDITLABELS
;
396 if ( style
& wxLC_SINGLE_SEL
)
397 wstyle
|= LVS_SINGLESEL
;
399 if ( style
& wxLC_SORT_ASCENDING
)
401 wstyle
|= LVS_SORTASCENDING
;
403 wxASSERT_MSG( !(style
& wxLC_SORT_DESCENDING
),
404 _T("can't sort in ascending and descending orders at once") );
406 else if ( style
& wxLC_SORT_DESCENDING
)
407 wstyle
|= LVS_SORTDESCENDING
;
409 #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
410 if ( style
& wxLC_VIRTUAL
)
412 int ver
= wxApp::GetComCtl32Version();
415 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."),
416 ver
/ 100, ver
% 100);
419 wstyle
|= LVS_OWNERDATA
;
421 #endif // ancient cygwin
426 void wxListCtrl::UpdateStyle()
430 // The new window view style
431 DWORD dwStyleNew
= MSWGetStyle(m_windowStyle
, NULL
);
433 // some styles are not returned by MSWGetStyle()
435 dwStyleNew
|= WS_VISIBLE
;
437 // Get the current window style.
438 DWORD dwStyleOld
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
440 // we don't have wxVSCROLL style, but the list control may have it,
441 // don't change it then
442 dwStyleNew
|= dwStyleOld
& (WS_HSCROLL
| WS_VSCROLL
);
444 // Only set the window style if the view bits have changed.
445 if ( dwStyleOld
!= dwStyleNew
)
447 ::SetWindowLong(GetHwnd(), GWL_STYLE
, dwStyleNew
);
452 void wxListCtrl::FreeAllInternalData()
454 if (m_AnyInternalData
)
456 int n
= GetItemCount();
458 m_ignoreChangeMessages
= true;
459 for (int i
= 0; i
< n
; i
++)
460 wxDeleteInternalData(this, i
);
461 m_ignoreChangeMessages
= false;
463 m_AnyInternalData
= false;
467 wxListCtrl::~wxListCtrl()
469 FreeAllInternalData();
473 m_textCtrl
->UnsubclassWin();
474 m_textCtrl
->SetHWND(0);
479 if (m_ownsImageListNormal
)
480 delete m_imageListNormal
;
481 if (m_ownsImageListSmall
)
482 delete m_imageListSmall
;
483 if (m_ownsImageListState
)
484 delete m_imageListState
;
487 // ----------------------------------------------------------------------------
488 // set/get/change style
489 // ----------------------------------------------------------------------------
491 // Add or remove a single window style
492 void wxListCtrl::SetSingleStyle(long style
, bool add
)
494 long flag
= GetWindowStyleFlag();
496 // Get rid of conflicting styles
499 if ( style
& wxLC_MASK_TYPE
)
500 flag
= flag
& ~wxLC_MASK_TYPE
;
501 if ( style
& wxLC_MASK_ALIGN
)
502 flag
= flag
& ~wxLC_MASK_ALIGN
;
503 if ( style
& wxLC_MASK_SORT
)
504 flag
= flag
& ~wxLC_MASK_SORT
;
512 SetWindowStyleFlag(flag
);
515 // Set the whole window style
516 void wxListCtrl::SetWindowStyleFlag(long flag
)
518 if ( flag
!= m_windowStyle
)
520 m_windowStyle
= flag
;
528 // ----------------------------------------------------------------------------
530 // ----------------------------------------------------------------------------
532 /* static */ wxVisualAttributes
533 wxListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
535 wxVisualAttributes attrs
= GetCompositeControlsDefaultAttributes(variant
);
537 // common controls have their own default font
538 attrs
.font
= wxGetCCDefaultFont();
543 // Sets the foreground, i.e. text, colour
544 bool wxListCtrl::SetForegroundColour(const wxColour
& col
)
546 if ( !wxWindow::SetForegroundColour(col
) )
549 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col
));
554 // Sets the background colour
555 bool wxListCtrl::SetBackgroundColour(const wxColour
& col
)
557 if ( !wxWindow::SetBackgroundColour(col
) )
560 // we set the same colour for both the "empty" background and the items
562 COLORREF color
= wxColourToRGB(col
);
563 ListView_SetBkColor(GetHwnd(), color
);
564 ListView_SetTextBkColor(GetHwnd(), color
);
569 // Gets information about this column
570 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
575 lvCol
.mask
= LVCF_WIDTH
;
577 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
579 lvCol
.mask
|= LVCF_TEXT
;
580 lvCol
.pszText
= new wxChar
[513];
581 lvCol
.cchTextMax
= 512;
584 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
586 lvCol
.mask
|= LVCF_FMT
;
589 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
591 lvCol
.mask
|= LVCF_IMAGE
;
594 bool success
= ListView_GetColumn(GetHwnd(), col
, &lvCol
) != 0;
596 // item.m_subItem = lvCol.iSubItem;
597 item
.m_width
= lvCol
.cx
;
599 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) && lvCol
.pszText
)
601 item
.m_text
= lvCol
.pszText
;
602 delete[] lvCol
.pszText
;
605 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
607 switch (lvCol
.fmt
& LVCFMT_JUSTIFYMASK
) {
609 item
.m_format
= wxLIST_FORMAT_LEFT
;
612 item
.m_format
= wxLIST_FORMAT_RIGHT
;
615 item
.m_format
= wxLIST_FORMAT_CENTRE
;
618 item
.m_format
= -1; // Unknown?
623 // the column images were not supported in older versions but how to check
624 // for this? we can't use _WIN32_IE because we always define it to a very
625 // high value, so see if another symbol which is only defined starting from
626 // comctl32.dll 4.70 is available
627 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
628 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
630 item
.m_image
= lvCol
.iImage
;
632 #endif // LVCOLUMN::iImage exists
637 // Sets information about this column
638 bool wxListCtrl::SetColumn(int col
, const wxListItem
& item
)
641 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
643 return ListView_SetColumn(GetHwnd(), col
, &lvCol
) != 0;
646 // Gets the column width
647 int wxListCtrl::GetColumnWidth(int col
) const
649 return ListView_GetColumnWidth(GetHwnd(), col
);
652 // Sets the column width
653 bool wxListCtrl::SetColumnWidth(int col
, int width
)
655 if ( m_windowStyle
& wxLC_LIST
)
658 if ( width
== wxLIST_AUTOSIZE
)
659 width
= LVSCW_AUTOSIZE
;
660 else if ( width
== wxLIST_AUTOSIZE_USEHEADER
)
661 width
= LVSCW_AUTOSIZE_USEHEADER
;
663 return ListView_SetColumnWidth(GetHwnd(), col
, width
) != 0;
666 // Gets the number of items that can fit vertically in the
667 // visible area of the list control (list or report view)
668 // or the total number of items in the list control (icon
669 // or small icon view)
670 int wxListCtrl::GetCountPerPage() const
672 return ListView_GetCountPerPage(GetHwnd());
675 // Gets the edit control for editing labels.
676 wxTextCtrl
* wxListCtrl::GetEditControl() const
681 // Gets information about the item
682 bool wxListCtrl::GetItem(wxListItem
& info
) const
685 wxZeroMemory(lvItem
);
687 lvItem
.iItem
= info
.m_itemId
;
688 lvItem
.iSubItem
= info
.m_col
;
690 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
692 lvItem
.mask
|= LVIF_TEXT
;
693 lvItem
.pszText
= new wxChar
[513];
694 lvItem
.cchTextMax
= 512;
698 lvItem
.pszText
= NULL
;
701 if (info
.m_mask
& wxLIST_MASK_DATA
)
702 lvItem
.mask
|= LVIF_PARAM
;
704 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
705 lvItem
.mask
|= LVIF_IMAGE
;
707 if ( info
.m_mask
& wxLIST_MASK_STATE
)
709 lvItem
.mask
|= LVIF_STATE
;
710 wxConvertToMSWFlags(0, info
.m_stateMask
, lvItem
);
713 bool success
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0;
716 wxLogError(_("Couldn't retrieve information about list control item %d."),
721 // give NULL as hwnd as we already have everything we need
722 wxConvertFromMSWListItem(NULL
, info
, lvItem
);
726 delete[] lvItem
.pszText
;
731 // Sets information about the item
732 bool wxListCtrl::SetItem(wxListItem
& info
)
734 const long id
= info
.GetId();
735 wxCHECK_MSG( id
>= 0 && id
< GetItemCount(), false,
736 _T("invalid item index in SetItem") );
739 wxConvertToMSWListItem(this, info
, item
);
741 // we never update the lParam if it contains our pointer
742 // to the wxListItemInternalData structure
743 item
.mask
&= ~LVIF_PARAM
;
745 // check if setting attributes or lParam
746 if (info
.HasAttributes() || (info
.m_mask
& wxLIST_MASK_DATA
))
748 // get internal item data
749 // perhaps a cache here ?
750 wxListItemInternalData
*data
= wxGetInternalData(this, id
);
755 m_AnyInternalData
= true;
756 data
= new wxListItemInternalData();
757 item
.lParam
= (LPARAM
) data
;
758 item
.mask
|= LVIF_PARAM
;
763 if (info
.m_mask
& wxLIST_MASK_DATA
)
764 data
->lParam
= info
.m_data
;
767 if ( info
.HasAttributes() )
769 const wxListItemAttr
& attrNew
= *info
.GetAttributes();
771 // don't overwrite the already set attributes if we have them
773 data
->attr
->AssignFrom(attrNew
);
775 data
->attr
= new wxListItemAttr(attrNew
);
780 // we could be changing only the attribute in which case we don't need to
781 // call ListView_SetItem() at all
785 if ( !ListView_SetItem(GetHwnd(), &item
) )
787 wxLogDebug(_T("ListView_SetItem() failed"));
793 // we need to update the item immediately to show the new image
794 bool updateNow
= (info
.m_mask
& wxLIST_MASK_IMAGE
) != 0;
796 // check whether it has any custom attributes
797 if ( info
.HasAttributes() )
801 // if the colour has changed, we must redraw the item
807 // we need this to make the change visible right now
808 RefreshItem(item
.iItem
);
814 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
818 info
.m_mask
= wxLIST_MASK_TEXT
;
819 info
.m_itemId
= index
;
823 info
.m_image
= imageId
;
824 info
.m_mask
|= wxLIST_MASK_IMAGE
;
826 return SetItem(info
);
830 // Gets the item state
831 int wxListCtrl::GetItemState(long item
, long stateMask
) const
835 info
.m_mask
= wxLIST_MASK_STATE
;
836 info
.m_stateMask
= stateMask
;
837 info
.m_itemId
= item
;
845 // Sets the item state
846 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
848 // NB: don't use SetItem() here as it doesn't work with the virtual list
851 wxZeroMemory(lvItem
);
853 wxConvertToMSWFlags(state
, stateMask
, lvItem
);
855 // for the virtual list controls we need to refresh the previously focused
856 // item manually when changing focus without changing selection
857 // programmatically because otherwise it keeps its focus rectangle until
858 // next repaint (yet another comctl32 bug)
861 (stateMask
& wxLIST_STATE_FOCUSED
) &&
862 (state
& wxLIST_STATE_FOCUSED
) )
864 focusOld
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_FOCUSED
);
871 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE
,
872 (WPARAM
)item
, (LPARAM
)&lvItem
) )
874 wxLogLastError(_T("ListView_SetItemState"));
879 if ( focusOld
!= -1 )
881 // no need to refresh the item if it was previously selected, it would
882 // only result in annoying flicker
883 if ( !(GetItemState(focusOld
,
884 wxLIST_STATE_SELECTED
) & wxLIST_STATE_SELECTED
) )
886 RefreshItem(focusOld
);
893 // Sets the item image
894 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
896 return SetItemColumnImage(item
, 0, image
);
899 // Sets the item image
900 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
904 info
.m_mask
= wxLIST_MASK_IMAGE
;
905 info
.m_image
= image
;
906 info
.m_itemId
= item
;
909 return SetItem(info
);
912 // Gets the item text
913 wxString
wxListCtrl::GetItemText(long item
) const
917 info
.m_mask
= wxLIST_MASK_TEXT
;
918 info
.m_itemId
= item
;
921 return wxEmptyString
;
925 // Sets the item text
926 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
930 info
.m_mask
= wxLIST_MASK_TEXT
;
931 info
.m_itemId
= item
;
937 // Gets the item data
938 wxUIntPtr
wxListCtrl::GetItemData(long item
) const
942 info
.m_mask
= wxLIST_MASK_DATA
;
943 info
.m_itemId
= item
;
950 // Sets the item data
951 bool wxListCtrl::SetItemPtrData(long item
, wxUIntPtr data
)
955 info
.m_mask
= wxLIST_MASK_DATA
;
956 info
.m_itemId
= item
;
959 return SetItem(info
);
962 wxRect
wxListCtrl::GetViewRect() const
964 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
965 _T("wxListCtrl::GetViewRect() only works in icon mode") );
968 if ( !ListView_GetViewRect(GetHwnd(), &rc
) )
970 wxLogDebug(_T("ListView_GetViewRect() failed."));
976 wxCopyRECTToRect(rc
, rect
);
981 // Gets the item rectangle
982 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
984 return GetSubItemRect( item
, wxLIST_GETSUBITEMRECT_WHOLEITEM
, rect
, code
) ;
988 * Retrieve coordinates and size of a specified subitem of a listview control.
989 * This function only works if the listview control is in the report mode.
991 * @param item : Item number
992 * @param subItem : Subitem or column number, use -1 for the whole row including
993 * all columns or subitems
994 * @param rect : A pointer to an allocated wxRect object
995 * @param code : Specify the part of the subitem coordinates you need. Choices are
996 * wxLIST_RECT_BOUNDS, wxLIST_RECT_ICON, wxLIST_RECT_LABEL
998 * @return bool : True if successful.
1000 bool wxListCtrl::GetSubItemRect(long item
, long subItem
, wxRect
& rect
, int code
) const
1005 if ( code
== wxLIST_RECT_BOUNDS
)
1006 codeWin
= LVIR_BOUNDS
;
1007 else if ( code
== wxLIST_RECT_ICON
)
1008 codeWin
= LVIR_ICON
;
1009 else if ( code
== wxLIST_RECT_LABEL
)
1010 codeWin
= LVIR_LABEL
;
1013 wxFAIL_MSG( _T("incorrect code in GetItemRect() / GetSubItemRect()") );
1014 codeWin
= LVIR_BOUNDS
;
1018 if( subItem
== wxLIST_GETSUBITEMRECT_WHOLEITEM
)
1020 success
= ListView_GetItemRect(GetHwnd(), (int) item
, &rectWin
, codeWin
) != 0;
1022 else if( subItem
>= 0)
1024 success
= ListView_GetSubItemRect( GetHwnd(), (int) item
, (int) subItem
, codeWin
, &rectWin
) != 0;
1028 wxFAIL_MSG( _T("incorrect subItem number in GetSubItemRect()") );
1032 rect
.x
= rectWin
.left
;
1033 rect
.y
= rectWin
.top
;
1034 rect
.width
= rectWin
.right
- rectWin
.left
;
1035 rect
.height
= rectWin
.bottom
- rectWin
.top
;
1043 // Gets the item position
1044 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1048 bool success
= (ListView_GetItemPosition(GetHwnd(), (int) item
, &pt
) != 0);
1050 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
1054 // Sets the item position.
1055 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1057 return (ListView_SetItemPosition(GetHwnd(), (int) item
, pos
.x
, pos
.y
) != 0);
1060 // Gets the number of items in the list control
1061 int wxListCtrl::GetItemCount() const
1066 wxSize
wxListCtrl::GetItemSpacing() const
1068 const int spacing
= ListView_GetItemSpacing(GetHwnd(), (BOOL
)HasFlag(wxLC_SMALL_ICON
));
1070 return wxSize(LOWORD(spacing
), HIWORD(spacing
));
1073 #if WXWIN_COMPATIBILITY_2_6
1075 int wxListCtrl::GetItemSpacing(bool isSmall
) const
1077 return ListView_GetItemSpacing(GetHwnd(), (BOOL
) isSmall
);
1080 #endif // WXWIN_COMPATIBILITY_2_6
1082 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1085 info
.m_itemId
= item
;
1086 info
.SetTextColour( col
);
1090 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1093 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1094 if ( data
&& data
->attr
)
1095 col
= data
->attr
->GetTextColour();
1100 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1103 info
.m_itemId
= item
;
1104 info
.SetBackgroundColour( col
);
1108 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1111 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1112 if ( data
&& data
->attr
)
1113 col
= data
->attr
->GetBackgroundColour();
1118 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
1121 info
.m_itemId
= item
;
1126 wxFont
wxListCtrl::GetItemFont( long item
) const
1129 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1130 if ( data
&& data
->attr
)
1131 f
= data
->attr
->GetFont();
1136 // Gets the number of selected items in the list control
1137 int wxListCtrl::GetSelectedItemCount() const
1139 return ListView_GetSelectedCount(GetHwnd());
1142 // Gets the text colour of the listview
1143 wxColour
wxListCtrl::GetTextColour() const
1145 COLORREF ref
= ListView_GetTextColor(GetHwnd());
1146 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
1150 // Sets the text colour of the listview
1151 void wxListCtrl::SetTextColour(const wxColour
& col
)
1153 ListView_SetTextColor(GetHwnd(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue()));
1156 // Gets the index of the topmost visible item when in
1157 // list or report view
1158 long wxListCtrl::GetTopItem() const
1160 return (long) ListView_GetTopIndex(GetHwnd());
1163 // Searches for an item, starting from 'item'.
1164 // 'geometry' is one of
1165 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1166 // 'state' is a state bit flag, one or more of
1167 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1168 // item can be -1 to find the first item that matches the
1170 // Returns the item or -1 if unsuccessful.
1171 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1175 if ( geom
== wxLIST_NEXT_ABOVE
)
1176 flags
|= LVNI_ABOVE
;
1177 if ( geom
== wxLIST_NEXT_ALL
)
1179 if ( geom
== wxLIST_NEXT_BELOW
)
1180 flags
|= LVNI_BELOW
;
1181 if ( geom
== wxLIST_NEXT_LEFT
)
1182 flags
|= LVNI_TOLEFT
;
1183 if ( geom
== wxLIST_NEXT_RIGHT
)
1184 flags
|= LVNI_TORIGHT
;
1186 if ( state
& wxLIST_STATE_CUT
)
1188 if ( state
& wxLIST_STATE_DROPHILITED
)
1189 flags
|= LVNI_DROPHILITED
;
1190 if ( state
& wxLIST_STATE_FOCUSED
)
1191 flags
|= LVNI_FOCUSED
;
1192 if ( state
& wxLIST_STATE_SELECTED
)
1193 flags
|= LVNI_SELECTED
;
1195 return (long) ListView_GetNextItem(GetHwnd(), item
, flags
);
1199 wxImageList
*wxListCtrl::GetImageList(int which
) const
1201 if ( which
== wxIMAGE_LIST_NORMAL
)
1203 return m_imageListNormal
;
1205 else if ( which
== wxIMAGE_LIST_SMALL
)
1207 return m_imageListSmall
;
1209 else if ( which
== wxIMAGE_LIST_STATE
)
1211 return m_imageListState
;
1216 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1219 if ( which
== wxIMAGE_LIST_NORMAL
)
1221 flags
= LVSIL_NORMAL
;
1222 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1223 m_imageListNormal
= imageList
;
1224 m_ownsImageListNormal
= false;
1226 else if ( which
== wxIMAGE_LIST_SMALL
)
1228 flags
= LVSIL_SMALL
;
1229 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1230 m_imageListSmall
= imageList
;
1231 m_ownsImageListSmall
= false;
1233 else if ( which
== wxIMAGE_LIST_STATE
)
1235 flags
= LVSIL_STATE
;
1236 if (m_ownsImageListState
) delete m_imageListState
;
1237 m_imageListState
= imageList
;
1238 m_ownsImageListState
= false;
1240 (void) ListView_SetImageList(GetHwnd(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
1243 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1245 SetImageList(imageList
, which
);
1246 if ( which
== wxIMAGE_LIST_NORMAL
)
1247 m_ownsImageListNormal
= true;
1248 else if ( which
== wxIMAGE_LIST_SMALL
)
1249 m_ownsImageListSmall
= true;
1250 else if ( which
== wxIMAGE_LIST_STATE
)
1251 m_ownsImageListState
= true;
1254 // ----------------------------------------------------------------------------
1256 // ----------------------------------------------------------------------------
1258 // Arranges the items
1259 bool wxListCtrl::Arrange(int flag
)
1262 if ( flag
== wxLIST_ALIGN_LEFT
)
1263 code
= LVA_ALIGNLEFT
;
1264 else if ( flag
== wxLIST_ALIGN_TOP
)
1265 code
= LVA_ALIGNTOP
;
1266 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
1268 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
1269 code
= LVA_SNAPTOGRID
;
1271 return (ListView_Arrange(GetHwnd(), code
) != 0);
1275 bool wxListCtrl::DeleteItem(long item
)
1277 if ( !ListView_DeleteItem(GetHwnd(), (int) item
) )
1279 wxLogLastError(_T("ListView_DeleteItem"));
1284 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1285 wxT("m_count should match ListView_GetItemCount"));
1287 // the virtual list control doesn't refresh itself correctly, help it
1290 // we need to refresh all the lines below the one which was deleted
1292 if ( item
> 0 && GetItemCount() )
1294 GetItemRect(item
- 1, rectItem
);
1299 rectItem
.height
= 0;
1302 wxRect rectWin
= GetRect();
1303 rectWin
.height
= rectWin
.GetBottom() - rectItem
.GetBottom();
1304 rectWin
.y
= rectItem
.GetBottom();
1306 RefreshRect(rectWin
);
1312 // Deletes all items
1313 bool wxListCtrl::DeleteAllItems()
1315 return ListView_DeleteAllItems(GetHwnd()) != 0;
1318 // Deletes all items
1319 bool wxListCtrl::DeleteAllColumns()
1321 while ( m_colCount
> 0 )
1323 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1325 wxLogLastError(wxT("ListView_DeleteColumn"));
1333 wxASSERT_MSG( m_colCount
== 0, wxT("no columns should be left") );
1339 bool wxListCtrl::DeleteColumn(int col
)
1341 bool success
= (ListView_DeleteColumn(GetHwnd(), col
) != 0);
1343 if ( success
&& (m_colCount
> 0) )
1348 // Clears items, and columns if there are any.
1349 void wxListCtrl::ClearAll()
1352 if ( m_colCount
> 0 )
1356 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1358 wxASSERT( (textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
))) );
1360 // ListView_EditLabel requires that the list has focus.
1363 WXHWND hWnd
= (WXHWND
) ListView_EditLabel(GetHwnd(), item
);
1366 // failed to start editing
1370 // [re]create the text control wrapping the HWND we got
1373 m_textCtrl
->UnsubclassWin();
1374 m_textCtrl
->SetHWND(0);
1378 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1379 m_textCtrl
->SetHWND(hWnd
);
1380 m_textCtrl
->SubclassWin(hWnd
);
1381 m_textCtrl
->SetParent(this);
1383 // we must disallow TABbing away from the control while the edit contol is
1384 // shown because this leaves it in some strange state (just try removing
1385 // this line and then pressing TAB while editing an item in listctrl
1387 m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle() | wxTE_PROCESS_TAB
);
1392 // End label editing, optionally cancelling the edit
1393 bool wxListCtrl::EndEditLabel(bool cancel
)
1395 // m_textCtrl is not always ready, ie. in EVT_LIST_BEGIN_LABEL_EDIT
1396 HWND hwnd
= ListView_GetEditControl(GetHwnd());
1401 ::SetWindowText(hwnd
, wxEmptyString
); // dubious but better than nothing
1403 // we shouldn't destroy the control ourselves according to MSDN, which
1404 // proposes WM_CANCELMODE to do this, but it doesn't seem to work
1406 // posting WM_CLOSE to it does seem to work without any side effects
1407 ::PostMessage(hwnd
, WM_CLOSE
, 0, 0);
1412 // Ensures this item is visible
1413 bool wxListCtrl::EnsureVisible(long item
)
1415 return ListView_EnsureVisible(GetHwnd(), (int) item
, FALSE
) != FALSE
;
1418 // Find an item whose label matches this string, starting from the item after 'start'
1419 // or the beginning if 'start' is -1.
1420 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1422 LV_FINDINFO findInfo
;
1424 findInfo
.flags
= LVFI_STRING
;
1426 findInfo
.flags
|= LVFI_PARTIAL
;
1427 findInfo
.psz
= str
.wx_str();
1429 // ListView_FindItem() excludes the first item from search and to look
1430 // through all the items you need to start from -1 which is unnatural and
1431 // inconsistent with the generic version - so we adjust the index
1434 return ListView_FindItem(GetHwnd(), (int) start
, &findInfo
);
1437 // Find an item whose data matches this data, starting from the item after 'start'
1438 // or the beginning if 'start' is -1.
1439 // NOTE : Lindsay Mathieson - 14-July-2002
1440 // No longer use ListView_FindItem as the data attribute is now stored
1441 // in a wxListItemInternalData structure refernced by the actual lParam
1442 long wxListCtrl::FindItem(long start
, wxUIntPtr data
)
1444 long idx
= start
+ 1;
1445 long count
= GetItemCount();
1449 if (GetItemData(idx
) == data
)
1457 // Find an item nearest this position in the specified direction, starting from
1458 // the item after 'start' or the beginning if 'start' is -1.
1459 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1461 LV_FINDINFO findInfo
;
1463 findInfo
.flags
= LVFI_NEARESTXY
;
1464 findInfo
.pt
.x
= pt
.x
;
1465 findInfo
.pt
.y
= pt
.y
;
1466 findInfo
.vkDirection
= VK_RIGHT
;
1468 if ( direction
== wxLIST_FIND_UP
)
1469 findInfo
.vkDirection
= VK_UP
;
1470 else if ( direction
== wxLIST_FIND_DOWN
)
1471 findInfo
.vkDirection
= VK_DOWN
;
1472 else if ( direction
== wxLIST_FIND_LEFT
)
1473 findInfo
.vkDirection
= VK_LEFT
;
1474 else if ( direction
== wxLIST_FIND_RIGHT
)
1475 findInfo
.vkDirection
= VK_RIGHT
;
1477 return ListView_FindItem(GetHwnd(), (int) start
, & findInfo
);
1480 // Determines which item (if any) is at the specified point,
1481 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1483 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const
1485 LV_HITTESTINFO hitTestInfo
;
1486 hitTestInfo
.pt
.x
= (int) point
.x
;
1487 hitTestInfo
.pt
.y
= (int) point
.y
;
1490 #ifdef LVM_SUBITEMHITTEST
1491 if ( ptrSubItem
&& wxApp::GetComCtl32Version() >= 470 )
1493 item
= ListView_SubItemHitTest(GetHwnd(), &hitTestInfo
);
1494 *ptrSubItem
= hitTestInfo
.iSubItem
;
1497 #endif // LVM_SUBITEMHITTEST
1499 item
= ListView_HitTest(GetHwnd(), &hitTestInfo
);
1504 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
1505 flags
|= wxLIST_HITTEST_ABOVE
;
1506 if ( hitTestInfo
.flags
& LVHT_BELOW
)
1507 flags
|= wxLIST_HITTEST_BELOW
;
1508 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
1509 flags
|= wxLIST_HITTEST_TOLEFT
;
1510 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
1511 flags
|= wxLIST_HITTEST_TORIGHT
;
1513 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
1514 flags
|= wxLIST_HITTEST_NOWHERE
;
1516 // note a bug or at least a very strange feature of comtl32.dll (tested
1517 // with version 4.0 under Win95 and 6.0 under Win 2003): if you click to
1518 // the right of the item label, ListView_HitTest() returns a combination of
1519 // LVHT_ONITEMICON, LVHT_ONITEMLABEL and LVHT_ONITEMSTATEICON -- filter out
1520 // the bits which don't make sense
1521 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
1523 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
1525 // do not translate LVHT_ONITEMICON here, as per above
1529 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
1530 flags
|= wxLIST_HITTEST_ONITEMICON
;
1531 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
1532 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
1539 // Inserts an item, returning the index of the new item if successful,
1541 long wxListCtrl::InsertItem(const wxListItem
& info
)
1543 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1546 wxConvertToMSWListItem(this, info
, item
);
1547 item
.mask
&= ~LVIF_PARAM
;
1549 // check wether we need to allocate our internal data
1550 bool needInternalData
= ((info
.m_mask
& wxLIST_MASK_DATA
) || info
.HasAttributes());
1551 if (needInternalData
)
1553 m_AnyInternalData
= true;
1554 item
.mask
|= LVIF_PARAM
;
1556 // internal stucture that manages data
1557 wxListItemInternalData
*data
= new wxListItemInternalData();
1558 item
.lParam
= (LPARAM
) data
;
1560 if (info
.m_mask
& wxLIST_MASK_DATA
)
1561 data
->lParam
= info
.m_data
;
1563 // check whether it has any custom attributes
1564 if ( info
.HasAttributes() )
1566 // take copy of attributes
1567 data
->attr
= new wxListItemAttr(*info
.GetAttributes());
1569 // and remember that we have some now...
1570 m_hasAnyAttr
= true;
1574 long rv
= ListView_InsertItem(GetHwnd(), & item
);
1577 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1578 wxT("m_count should match ListView_GetItemCount"));
1583 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1586 info
.m_text
= label
;
1587 info
.m_mask
= wxLIST_MASK_TEXT
;
1588 info
.m_itemId
= index
;
1589 return InsertItem(info
);
1592 // Inserts an image item
1593 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1596 info
.m_image
= imageIndex
;
1597 info
.m_mask
= wxLIST_MASK_IMAGE
;
1598 info
.m_itemId
= index
;
1599 return InsertItem(info
);
1602 // Inserts an image/string item
1603 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1606 info
.m_image
= imageIndex
;
1607 info
.m_text
= label
;
1608 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1609 info
.m_itemId
= index
;
1610 return InsertItem(info
);
1613 // For list view mode (only), inserts a column.
1614 long wxListCtrl::InsertColumn(long col
, const wxListItem
& item
)
1617 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
1619 if ( !(lvCol
.mask
& LVCF_WIDTH
) )
1621 // always give some width to the new column: this one is compatible
1622 // with the generic version
1623 lvCol
.mask
|= LVCF_WIDTH
;
1627 long n
= ListView_InsertColumn(GetHwnd(), col
, &lvCol
);
1632 else // failed to insert?
1634 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
1641 long wxListCtrl::InsertColumn(long col
,
1642 const wxString
& heading
,
1647 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1648 item
.m_text
= heading
;
1651 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1652 item
.m_width
= width
;
1654 item
.m_format
= format
;
1656 return InsertColumn(col
, item
);
1659 // scroll the control by the given number of pixels (exception: in list view,
1660 // dx is interpreted as number of columns)
1661 bool wxListCtrl::ScrollList(int dx
, int dy
)
1663 if ( !ListView_Scroll(GetHwnd(), dx
, dy
) )
1665 wxLogDebug(_T("ListView_Scroll(%d, %d) failed"), dx
, dy
);
1675 // fn is a function which takes 3 long arguments: item1, item2, data.
1676 // item1 is the long data associated with a first item (NOT the index).
1677 // item2 is the long data associated with a second item (NOT the index).
1678 // data is the same value as passed to SortItems.
1679 // The return value is a negative number if the first item should precede the second
1680 // item, a positive number of the second item should precede the first,
1681 // or zero if the two items are equivalent.
1683 // data is arbitrary data to be passed to the sort function.
1685 // Internal structures for proxying the user compare function
1686 // so that we can pass it the *real* user data
1688 // translate lParam data and call user func
1689 struct wxInternalDataSort
1691 wxListCtrlCompare user_fn
;
1695 int CALLBACK
wxInternalDataCompareFunc(LPARAM lParam1
, LPARAM lParam2
, LPARAM lParamSort
)
1697 struct wxInternalDataSort
*internalData
= (struct wxInternalDataSort
*) lParamSort
;
1699 wxListItemInternalData
*data1
= (wxListItemInternalData
*) lParam1
;
1700 wxListItemInternalData
*data2
= (wxListItemInternalData
*) lParam2
;
1702 long d1
= (data1
== NULL
? 0 : data1
->lParam
);
1703 long d2
= (data2
== NULL
? 0 : data2
->lParam
);
1705 return internalData
->user_fn(d1
, d2
, internalData
->data
);
1709 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1711 struct wxInternalDataSort internalData
;
1712 internalData
.user_fn
= fn
;
1713 internalData
.data
= data
;
1715 // WPARAM cast is needed for mingw/cygwin
1716 if ( !ListView_SortItems(GetHwnd(),
1717 wxInternalDataCompareFunc
,
1718 (WPARAM
) &internalData
) )
1720 wxLogDebug(_T("ListView_SortItems() failed"));
1730 // ----------------------------------------------------------------------------
1731 // message processing
1732 // ----------------------------------------------------------------------------
1734 bool wxListCtrl::MSWShouldPreProcessMessage(WXMSG
* msg
)
1736 if ( msg
->message
== WM_KEYDOWN
)
1738 if ( msg
->wParam
== VK_RETURN
)
1740 // We need VK_RETURN to generate wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
1741 // but only if none of the modifiers is down. We'll let normal
1742 // accelerators handle those.
1743 if ( !wxIsCtrlDown() && !wxIsCtrlDown() &&
1744 !((HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
))
1749 return wxControl::MSWShouldPreProcessMessage(msg
);
1752 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id_
)
1754 const int id
= (signed short)id_
;
1755 if (cmd
== EN_UPDATE
)
1757 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1758 event
.SetEventObject( this );
1759 ProcessCommand(event
);
1762 else if (cmd
== EN_KILLFOCUS
)
1764 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1765 event
.SetEventObject( this );
1766 ProcessCommand(event
);
1773 // utility used by wxListCtrl::MSWOnNotify and by wxDataViewHeaderWindowMSW::MSWOnNotify
1774 int WXDLLIMPEXP_CORE
wxMSWGetColumnClicked(NMHDR
*nmhdr
, POINT
*ptClick
)
1776 wxASSERT(nmhdr
&& ptClick
);
1778 // find the column clicked: we have to search for it
1779 // ourselves as the notification message doesn't provide
1782 // where did the click occur?
1783 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
1784 if (nmhdr
->code
== GN_CONTEXTMENU
)
1786 *ptClick
= ((NMRGINFO
*)nmhdr
)->ptAction
;
1789 #endif //__WXWINCE__
1790 if ( !::GetCursorPos(ptClick
) )
1792 wxLogLastError(_T("GetCursorPos"));
1795 if ( !::ScreenToClient(nmhdr
->hwndFrom
, ptClick
) )
1797 wxLogLastError(_T("ScreenToClient(header)"));
1800 int colCount
= Header_GetItemCount(nmhdr
->hwndFrom
);
1803 for ( int col
= 0; col
< colCount
; col
++ )
1805 if ( Header_GetItemRect(nmhdr
->hwndFrom
, col
, &rect
) )
1807 if ( ::PtInRect(&rect
, *ptClick
) )
1817 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1820 // prepare the event
1821 // -----------------
1823 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1824 event
.SetEventObject(this);
1826 wxEventType eventType
= wxEVT_NULL
;
1828 NMHDR
*nmhdr
= (NMHDR
*)lParam
;
1830 // if your compiler is as broken as this, you should really change it: this
1831 // code is needed for normal operation! #ifdef below is only useful for
1832 // automatic rebuilds which are done with a very old compiler version
1833 #ifdef HDN_BEGINTRACKA
1835 // check for messages from the header (in report view)
1836 HWND hwndHdr
= ListView_GetHeader(GetHwnd());
1838 // is it a message from the header?
1839 if ( nmhdr
->hwndFrom
== hwndHdr
)
1841 HD_NOTIFY
*nmHDR
= (HD_NOTIFY
*)nmhdr
;
1843 event
.m_itemIndex
= -1;
1845 switch ( nmhdr
->code
)
1847 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1848 // TRACK messages even to ANSI programs: on my system I get
1849 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
1851 // work around is to simply catch both versions and hope that it
1852 // works (why should this message exist in ANSI and Unicode is
1853 // beyond me as it doesn't deal with strings at all...)
1855 // note that fr HDN_TRACK another possibility could be to use
1856 // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when
1857 // something other than the item width changes so we'd have to
1858 // filter out the unwanted events then
1859 case HDN_BEGINTRACKA
:
1860 case HDN_BEGINTRACKW
:
1861 eventType
= wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
;
1866 if ( eventType
== wxEVT_NULL
)
1867 eventType
= wxEVT_COMMAND_LIST_COL_DRAGGING
;
1872 if ( eventType
== wxEVT_NULL
)
1873 eventType
= wxEVT_COMMAND_LIST_COL_END_DRAG
;
1875 event
.m_item
.m_width
= nmHDR
->pitem
->cxy
;
1876 event
.m_col
= nmHDR
->iItem
;
1879 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
1880 case GN_CONTEXTMENU
:
1881 #endif //__WXWINCE__
1886 eventType
= wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
;
1887 event
.m_col
= wxMSWGetColumnClicked(nmhdr
, &ptClick
);
1888 event
.m_pointDrag
.x
= ptClick
.x
;
1889 event
.m_pointDrag
.y
= ptClick
.y
;
1893 case HDN_GETDISPINFOW
:
1894 // letting Windows XP handle this message results in mysterious
1895 // crashes in comctl32.dll seemingly because of bad message
1898 // I have no idea what is the real cause of the bug (which is,
1899 // just to make things interesting, impossible to reproduce
1900 // reliably) but ignoring all these messages does fix it and
1901 // doesn't seem to have any negative consequences
1905 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
1909 #endif // defined(HDN_BEGINTRACKA)
1910 if ( nmhdr
->hwndFrom
== GetHwnd() )
1912 // almost all messages use NM_LISTVIEW
1913 NM_LISTVIEW
*nmLV
= (NM_LISTVIEW
*)nmhdr
;
1915 const int iItem
= nmLV
->iItem
;
1918 // FreeAllInternalData will cause LVN_ITEMCHANG* messages, which can be
1919 // ignored for efficiency. It is done here because the internal data is in the
1920 // process of being deleted so we don't want to try and access it below.
1921 if ( m_ignoreChangeMessages
&&
1922 ( (nmLV
->hdr
.code
== LVN_ITEMCHANGED
) ||
1923 (nmLV
->hdr
.code
== LVN_ITEMCHANGING
)) )
1929 // If we have a valid item then check if there is a data value
1930 // associated with it and put it in the event.
1931 if ( iItem
>= 0 && iItem
< GetItemCount() )
1933 wxListItemInternalData
*internaldata
=
1934 wxGetInternalData(GetHwnd(), iItem
);
1937 event
.m_item
.m_data
= internaldata
->lParam
;
1940 bool processed
= true;
1941 switch ( nmhdr
->code
)
1943 case LVN_BEGINRDRAG
:
1944 eventType
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1948 if ( eventType
== wxEVT_NULL
)
1950 eventType
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1953 event
.m_itemIndex
= iItem
;
1954 event
.m_pointDrag
.x
= nmLV
->ptAction
.x
;
1955 event
.m_pointDrag
.y
= nmLV
->ptAction
.y
;
1958 // NB: we have to handle both *A and *W versions here because some
1959 // versions of comctl32.dll send ANSI messages even to the
1961 case LVN_BEGINLABELEDITA
:
1962 case LVN_BEGINLABELEDITW
:
1965 if ( nmhdr
->code
== LVN_BEGINLABELEDITA
)
1967 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
1969 else // LVN_BEGINLABELEDITW
1971 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
1974 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
1975 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, item
);
1976 event
.m_itemIndex
= event
.m_item
.m_itemId
;
1980 case LVN_ENDLABELEDITA
:
1981 case LVN_ENDLABELEDITW
:
1984 if ( nmhdr
->code
== LVN_ENDLABELEDITA
)
1986 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
1988 else // LVN_ENDLABELEDITW
1990 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
1993 // was editing cancelled?
1994 const LV_ITEM
& lvi
= (LV_ITEM
)item
;
1995 if ( !lvi
.pszText
|| lvi
.iItem
== -1 )
1997 // don't keep a stale wxTextCtrl around
2000 // EDIT control will be deleted by the list control itself so
2001 // prevent us from deleting it as well
2002 m_textCtrl
->UnsubclassWin();
2003 m_textCtrl
->SetHWND(0);
2008 event
.SetEditCanceled(true);
2011 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
2012 wxConvertFromMSWListItem(NULL
, event
.m_item
, item
);
2013 event
.m_itemIndex
= event
.m_item
.m_itemId
;
2017 case LVN_COLUMNCLICK
:
2018 eventType
= wxEVT_COMMAND_LIST_COL_CLICK
;
2019 event
.m_itemIndex
= -1;
2020 event
.m_col
= nmLV
->iSubItem
;
2023 case LVN_DELETEALLITEMS
:
2024 eventType
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
2025 event
.m_itemIndex
= -1;
2028 case LVN_DELETEITEM
:
2031 // this should be prevented by the post-processing code
2032 // below, but "just in case"
2036 eventType
= wxEVT_COMMAND_LIST_DELETE_ITEM
;
2037 event
.m_itemIndex
= iItem
;
2038 // delete the assoicated internal data
2039 wxDeleteInternalData(this, iItem
);
2042 case LVN_INSERTITEM
:
2043 eventType
= wxEVT_COMMAND_LIST_INSERT_ITEM
;
2044 event
.m_itemIndex
= iItem
;
2047 case LVN_ITEMCHANGED
:
2048 // we translate this catch all message into more interesting
2049 // (and more easy to process) wxWidgets events
2051 // first of all, we deal with the state change events only and
2052 // only for valid items (item == -1 for the virtual list
2054 if ( nmLV
->uChanged
& LVIF_STATE
&& iItem
!= -1 )
2056 // temp vars for readability
2057 const UINT stOld
= nmLV
->uOldState
;
2058 const UINT stNew
= nmLV
->uNewState
;
2060 event
.m_item
.SetId(iItem
);
2061 event
.m_item
.SetMask(wxLIST_MASK_TEXT
|
2064 GetItem(event
.m_item
);
2066 // has the focus changed?
2067 if ( !(stOld
& LVIS_FOCUSED
) && (stNew
& LVIS_FOCUSED
) )
2069 eventType
= wxEVT_COMMAND_LIST_ITEM_FOCUSED
;
2070 event
.m_itemIndex
= iItem
;
2073 if ( (stNew
& LVIS_SELECTED
) != (stOld
& LVIS_SELECTED
) )
2075 if ( eventType
!= wxEVT_NULL
)
2077 // focus and selection have both changed: send the
2078 // focus event from here and the selection one
2080 event
.SetEventType(eventType
);
2081 (void)GetEventHandler()->ProcessEvent(event
);
2083 else // no focus event to send
2085 // then need to set m_itemIndex as it wasn't done
2087 event
.m_itemIndex
= iItem
;
2090 eventType
= stNew
& LVIS_SELECTED
2091 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2092 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
2096 if ( eventType
== wxEVT_NULL
)
2098 // not an interesting event for us
2106 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
2107 WORD wVKey
= info
->wVKey
;
2109 // get the current selection
2110 long lItem
= GetNextItem(-1,
2112 wxLIST_STATE_SELECTED
);
2114 // <Enter> or <Space> activate the selected item if any (but
2115 // not with Shift and/or Ctrl as then they have a predefined
2116 // meaning for the list view)
2118 (wVKey
== VK_RETURN
|| wVKey
== VK_SPACE
) &&
2119 !(wxIsShiftDown() || wxIsCtrlDown()) )
2121 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2125 eventType
= wxEVT_COMMAND_LIST_KEY_DOWN
;
2127 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
2128 // value which should be used as is
2129 int code
= wxCharCodeMSWToWX(wVKey
);
2130 event
.m_code
= code
? code
: wVKey
;
2134 event
.m_item
.m_itemId
= lItem
;
2138 // fill the other fields too
2139 event
.m_item
.m_text
= GetItemText(lItem
);
2140 event
.m_item
.m_data
= GetItemData(lItem
);
2146 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2148 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2153 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2154 // if it happened on an item (and not on empty place)
2161 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2162 event
.m_itemIndex
= iItem
;
2163 event
.m_item
.m_text
= GetItemText(iItem
);
2164 event
.m_item
.m_data
= GetItemData(iItem
);
2167 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2168 case GN_CONTEXTMENU
:
2169 #endif //__WXWINCE__
2171 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2172 // don't do anything else
2173 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2178 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2179 LV_HITTESTINFO lvhti
;
2180 wxZeroMemory(lvhti
);
2182 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2183 if(nmhdr
->code
== GN_CONTEXTMENU
) {
2184 lvhti
.pt
= ((NMRGINFO
*)nmhdr
)->ptAction
;
2186 #endif //__WXWINCE__
2187 ::GetCursorPos(&(lvhti
.pt
));
2188 ::ScreenToClient(GetHwnd(),&(lvhti
.pt
));
2189 if ( ListView_HitTest(GetHwnd(),&lvhti
) != -1 )
2191 if ( lvhti
.flags
& LVHT_ONITEM
)
2193 eventType
= wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
;
2194 event
.m_itemIndex
= lvhti
.iItem
;
2195 event
.m_pointDrag
.x
= lvhti
.pt
.x
;
2196 event
.m_pointDrag
.y
= lvhti
.pt
.y
;
2201 #ifdef NM_CUSTOMDRAW
2203 *result
= OnCustomDraw(lParam
);
2205 return *result
!= CDRF_DODEFAULT
;
2206 #endif // _WIN32_IE >= 0x300
2208 case LVN_ODCACHEHINT
:
2210 const NM_CACHEHINT
*cacheHint
= (NM_CACHEHINT
*)lParam
;
2212 eventType
= wxEVT_COMMAND_LIST_CACHE_HINT
;
2214 // we get some really stupid cache hints like ones for
2215 // items in range 0..0 for an empty control or, after
2216 // deleting an item, for items in invalid range -- filter
2218 if ( cacheHint
->iFrom
> cacheHint
->iTo
)
2221 event
.m_oldItemIndex
= cacheHint
->iFrom
;
2223 const long iMax
= GetItemCount();
2224 event
.m_itemIndex
= cacheHint
->iTo
< iMax
? cacheHint
->iTo
2229 #ifdef HAVE_NMLVFINDITEM
2230 case LVN_ODFINDITEM
:
2231 // this message is only used with the virtual list control but
2232 // even there we don't want to always use it: in a control with
2233 // sufficiently big number of items (defined as > 1000 here),
2234 // accidentally pressing a key could result in hanging an
2235 // application waiting while it performs linear search
2236 if ( IsVirtual() && GetItemCount() <= 1000 )
2238 NMLVFINDITEM
* pFindInfo
= (NMLVFINDITEM
*)lParam
;
2240 // no match by default
2243 // we only handle string-based searches here
2245 // TODO: what about LVFI_PARTIAL, should we handle this?
2246 if ( !(pFindInfo
->lvfi
.flags
& LVFI_STRING
) )
2251 const wxChar
* const searchstr
= pFindInfo
->lvfi
.psz
;
2252 const size_t len
= wxStrlen(searchstr
);
2254 // this is the first item we should examine, search from it
2255 // wrapping if necessary
2256 const int startPos
= pFindInfo
->iStart
;
2257 const int maxPos
= GetItemCount();
2258 wxCHECK_MSG( startPos
<= maxPos
, false,
2259 _T("bad starting position in LVN_ODFINDITEM") );
2261 int currentPos
= startPos
;
2264 // wrap to the beginning if necessary
2265 if ( currentPos
== maxPos
)
2267 // somewhat surprizingly, LVFI_WRAP isn't set in
2268 // flags but we still should wrap
2272 // does this item begin with searchstr?
2273 if ( wxStrnicmp(searchstr
,
2274 GetItemText(currentPos
), len
) == 0 )
2276 *result
= currentPos
;
2280 while ( ++currentPos
!= startPos
);
2282 if ( *result
== -1 )
2288 SetItemState(*result
,
2289 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
,
2290 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
);
2291 EnsureVisible(*result
);
2299 #endif // HAVE_NMLVFINDITEM
2301 case LVN_GETDISPINFO
:
2304 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
2306 LV_ITEM
& lvi
= info
->item
;
2307 long item
= lvi
.iItem
;
2309 if ( lvi
.mask
& LVIF_TEXT
)
2311 wxString text
= OnGetItemText(item
, lvi
.iSubItem
);
2312 wxStrncpy(lvi
.pszText
, text
, lvi
.cchTextMax
);
2315 // see comment at the end of wxListCtrl::GetColumn()
2316 #ifdef NM_CUSTOMDRAW
2317 if ( lvi
.mask
& LVIF_IMAGE
)
2319 lvi
.iImage
= OnGetItemColumnImage(item
, lvi
.iSubItem
);
2321 #endif // NM_CUSTOMDRAW
2323 // even though we never use LVM_SETCALLBACKMASK, we still
2324 // can get messages with LVIF_STATE in lvi.mask under Vista
2325 if ( lvi
.mask
& LVIF_STATE
)
2327 // we don't have anything to return from here...
2340 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
2344 // where did this one come from?
2348 // process the event
2349 // -----------------
2351 event
.SetEventType(eventType
);
2353 bool processed
= GetEventHandler()->ProcessEvent(event
);
2357 switch ( nmhdr
->code
)
2359 case LVN_DELETEALLITEMS
:
2360 // always return true to suppress all additional LVN_DELETEITEM
2361 // notifications - this makes deleting all items from a list ctrl
2365 // also, we may free all user data now (couldn't do it before as
2366 // the user should have access to it in OnDeleteAllItems() handler)
2367 FreeAllInternalData();
2369 // the control is empty now, synchronize the cached number of items
2370 // with the real one
2374 case LVN_ENDLABELEDITA
:
2375 case LVN_ENDLABELEDITW
:
2376 // logic here is inverted compared to all the other messages
2377 *result
= event
.IsAllowed();
2379 // don't keep a stale wxTextCtrl around
2382 // EDIT control will be deleted by the list control itself so
2383 // prevent us from deleting it as well
2384 m_textCtrl
->UnsubclassWin();
2385 m_textCtrl
->SetHWND(0);
2394 *result
= !event
.IsAllowed();
2399 // ----------------------------------------------------------------------------
2400 // custom draw stuff
2401 // ----------------------------------------------------------------------------
2403 // see comment at the end of wxListCtrl::GetColumn()
2404 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2406 static RECT
GetCustomDrawnItemRect(const NMCUSTOMDRAW
& nmcd
)
2409 ListView_GetItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, &rc
, LVIR_BOUNDS
);
2412 ListView_GetItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, &rcIcon
, LVIR_ICON
);
2414 // exclude the icon part, neither the selection background nor focus rect
2416 rc
.left
= rcIcon
.right
;
2422 bool HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
, int colCount
)
2424 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2427 HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2428 const int col
= pLVCD
->iSubItem
;
2429 const DWORD item
= nmcd
.dwItemSpec
;
2431 // the font must be valid, otherwise we wouldn't be painting the item at all
2432 SelectInHDC
selFont(hdc
, hfont
);
2434 // get the rectangle to paint
2436 ListView_GetSubItemRect(hwndList
, item
, col
, LVIR_BOUNDS
, &rc
);
2437 if ( !col
&& colCount
> 1 )
2439 // broken ListView_GetSubItemRect() returns the entire item rect for
2440 // 0th subitem while we really need just the part for this column
2442 ListView_GetSubItemRect(hwndList
, item
, 1, LVIR_BOUNDS
, &rc2
);
2444 rc
.right
= rc2
.left
;
2447 else // not first subitem
2452 // get the image and text to draw
2456 it
.mask
= LVIF_TEXT
| LVIF_IMAGE
;
2460 it
.cchTextMax
= WXSIZEOF(text
);
2461 ListView_GetItem(hwndList
, &it
);
2463 HIMAGELIST himl
= ListView_GetImageList(hwndList
, LVSIL_SMALL
);
2464 if ( himl
&& ImageList_GetImageCount(himl
) )
2466 if ( it
.iImage
!= -1 )
2468 ImageList_Draw(himl
, it
.iImage
, hdc
, rc
.left
, rc
.top
,
2469 nmcd
.uItemState
& CDIS_SELECTED
? ILD_SELECTED
2473 // notice that even if this item doesn't have any image, the list
2474 // control still leaves space for the image in the first column if the
2475 // image list is not empty (presumably so that items with and without
2477 if ( it
.iImage
!= -1 || it
.iSubItem
== 0 )
2480 ImageList_GetIconSize(himl
, &wImage
, &hImage
);
2482 rc
.left
+= wImage
+ 2;
2486 ::SetBkMode(hdc
, TRANSPARENT
);
2488 UINT fmt
= DT_SINGLELINE
|
2491 #endif // __WXWINCE__
2496 wxZeroMemory(lvCol
);
2497 lvCol
.mask
= LVCF_FMT
;
2498 if ( ListView_GetColumn(hwndList
, col
, &lvCol
) )
2500 switch ( lvCol
.fmt
& LVCFMT_JUSTIFYMASK
)
2515 //else: failed to get alignment, assume it's DT_LEFT (default)
2517 DrawText(hdc
, text
, -1, &rc
, fmt
);
2522 static void HandleItemPostpaint(NMCUSTOMDRAW nmcd
)
2524 if ( nmcd
.uItemState
& CDIS_FOCUS
)
2526 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2528 // don't use the provided HDC, it's in some strange state by now
2529 ::DrawFocusRect(WindowHDC(nmcd
.hdr
.hwndFrom
), &rc
);
2533 // pLVCD->clrText and clrTextBk should contain the colours to use
2534 static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
)
2536 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
; // just a shortcut
2538 const HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2539 const int item
= nmcd
.dwItemSpec
;
2541 // unfortunately we can't trust CDIS_SELECTED, it is often set even when
2542 // the item is not at all selected for some reason (comctl32 6), but we
2543 // also can't always trust ListView_GetItem() as it could return the old
2544 // item status if we're called just after the (de)selection, so remember
2545 // the last item to gain selection and also check for it here
2546 for ( int i
= -1;; )
2548 i
= ListView_GetNextItem(hwndList
, i
, LVNI_SELECTED
);
2551 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2557 nmcd
.uItemState
|= CDIS_SELECTED
;
2562 // same thing for CDIS_FOCUS (except simpler as there is only one of them)
2563 if ( ::GetFocus() == hwndList
&&
2564 ListView_GetNextItem(hwndList
, (WPARAM
)-1, LVNI_FOCUSED
) == item
)
2566 nmcd
.uItemState
|= CDIS_FOCUS
;
2570 nmcd
.uItemState
&= ~CDIS_FOCUS
;
2573 if ( nmcd
.uItemState
& CDIS_SELECTED
)
2575 int syscolFg
, syscolBg
;
2576 if ( ::GetFocus() == hwndList
)
2578 syscolFg
= COLOR_HIGHLIGHTTEXT
;
2579 syscolBg
= COLOR_HIGHLIGHT
;
2581 else // selected but unfocused
2583 syscolFg
= COLOR_WINDOWTEXT
;
2584 syscolBg
= COLOR_BTNFACE
;
2586 // don't grey out the icon in this case neither
2587 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2590 pLVCD
->clrText
= ::GetSysColor(syscolFg
);
2591 pLVCD
->clrTextBk
= ::GetSysColor(syscolBg
);
2593 //else: not selected, use normal colours from pLVCD
2596 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2598 ::SetTextColor(hdc
, pLVCD
->clrText
);
2599 ::FillRect(hdc
, &rc
, AutoHBRUSH(pLVCD
->clrTextBk
));
2601 // we could use CDRF_NOTIFYSUBITEMDRAW here but it results in weird repaint
2602 // problems so just draw everything except the focus rect from here instead
2603 const int colCount
= Header_GetItemCount(ListView_GetHeader(hwndList
));
2604 for ( int col
= 0; col
< colCount
; col
++ )
2606 pLVCD
->iSubItem
= col
;
2607 HandleSubItemPrepaint(pLVCD
, hfont
, colCount
);
2610 HandleItemPostpaint(nmcd
);
2613 static WXLPARAM
HandleItemPrepaint(wxListCtrl
*listctrl
,
2614 LPNMLVCUSTOMDRAW pLVCD
,
2615 wxListItemAttr
*attr
)
2619 // nothing to do for this item
2620 return CDRF_DODEFAULT
;
2624 // set the colours to use for text drawing
2625 pLVCD
->clrText
= attr
->HasTextColour()
2626 ? wxColourToRGB(attr
->GetTextColour())
2627 : wxColourToRGB(listctrl
->GetTextColour());
2628 pLVCD
->clrTextBk
= attr
->HasBackgroundColour()
2629 ? wxColourToRGB(attr
->GetBackgroundColour())
2630 : wxColourToRGB(listctrl
->GetBackgroundColour());
2632 // select the font if non default one is specified
2633 if ( attr
->HasFont() )
2635 wxFont font
= attr
->GetFont();
2636 if ( font
.GetEncoding() != wxFONTENCODING_SYSTEM
)
2638 // the standard control ignores the font encoding/charset, at least
2639 // with recent comctl32.dll versions (5 and 6, it uses to work with
2640 // 4.something) so we have to draw the item entirely ourselves in
2642 HandleItemPaint(pLVCD
, GetHfontOf(font
));
2643 return CDRF_SKIPDEFAULT
;
2646 ::SelectObject(pLVCD
->nmcd
.hdc
, GetHfontOf(font
));
2648 return CDRF_NEWFONT
;
2651 return CDRF_DODEFAULT
;
2654 WXLPARAM
wxListCtrl::OnCustomDraw(WXLPARAM lParam
)
2656 LPNMLVCUSTOMDRAW pLVCD
= (LPNMLVCUSTOMDRAW
)lParam
;
2657 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2658 switch ( nmcd
.dwDrawStage
)
2661 // if we've got any items with non standard attributes,
2662 // notify us before painting each item
2664 // for virtual controls, always suppose that we have attributes as
2665 // there is no way to check for this
2666 if ( IsVirtual() || m_hasAnyAttr
)
2667 return CDRF_NOTIFYITEMDRAW
;
2670 case CDDS_ITEMPREPAINT
:
2671 const int item
= nmcd
.dwItemSpec
;
2673 // we get this message with item == 0 for an empty control, we
2674 // must ignore it as calling OnGetItemAttr() would be wrong
2675 if ( item
< 0 || item
>= GetItemCount() )
2678 return HandleItemPrepaint(this, pLVCD
, DoGetItemAttr(item
));
2681 return CDRF_DODEFAULT
;
2684 #endif // NM_CUSTOMDRAW supported
2686 // Necessary for drawing hrules and vrules, if specified
2687 void wxListCtrl::OnPaint(wxPaintEvent
& event
)
2689 bool drawHRules
= HasFlag(wxLC_HRULES
);
2690 bool drawVRules
= HasFlag(wxLC_VRULES
);
2692 if (!InReportView() || !drawHRules
&& !drawVRules
)
2700 wxControl::OnPaint(event
);
2702 // Reset the device origin since it may have been set
2703 dc
.SetDeviceOrigin(0, 0);
2705 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
), 1, wxSOLID
);
2707 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2709 wxSize clientSize
= GetClientSize();
2712 int itemCount
= GetItemCount();
2716 long top
= GetTopItem();
2717 for (i
= top
; i
< top
+ GetCountPerPage() + 1; i
++)
2719 if (GetItemRect(i
, itemRect
))
2721 int cy
= itemRect
.GetTop();
2722 if (i
!= 0) // Don't draw the first one
2724 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2727 if (i
== itemCount
- 1)
2729 cy
= itemRect
.GetBottom();
2730 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2736 if (drawVRules
&& (i
> -1))
2738 wxRect firstItemRect
;
2739 GetItemRect(0, firstItemRect
);
2741 if (GetItemRect(i
, itemRect
))
2743 // this is a fix for bug 673394: erase the pixels which we would
2744 // otherwise leave on the screen
2745 static const int gap
= 2;
2746 dc
.SetPen(*wxTRANSPARENT_PEN
);
2747 dc
.SetBrush(wxBrush(GetBackgroundColour()));
2748 dc
.DrawRectangle(0, firstItemRect
.GetY() - gap
,
2749 clientSize
.GetWidth(), gap
);
2752 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2753 int x
= itemRect
.GetX();
2754 for (int col
= 0; col
< GetColumnCount(); col
++)
2756 int colWidth
= GetColumnWidth(col
);
2758 dc
.DrawLine(x
-1, firstItemRect
.GetY() - gap
,
2759 x
-1, itemRect
.GetBottom());
2766 wxListCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2772 // we should bypass our own WM_PRINT handling as we don't handle
2773 // PRF_CHILDREN flag, so leave it to the native control itself
2774 return MSWDefWindowProc(nMsg
, wParam
, lParam
);
2777 case WM_CONTEXTMENU
:
2778 // because this message is propagated upwards the child-parent
2779 // chain, we get it for the right clicks on the header window but
2780 // this is confusing in wx as right clicking there already
2781 // generates a separate wxEVT_COMMAND_LIST_COL_RIGHT_CLICK event
2782 // so just ignore them
2783 if ( (HWND
)wParam
== ListView_GetHeader(GetHwnd()) )
2788 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
2791 // ----------------------------------------------------------------------------
2792 // virtual list controls
2793 // ----------------------------------------------------------------------------
2795 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
2797 // this is a pure virtual function, in fact - which is not really pure
2798 // because the controls which are not virtual don't need to implement it
2799 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2801 return wxEmptyString
;
2804 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
2806 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
2808 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
2812 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
2815 return OnGetItemImage(item
);
2820 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
2822 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
2823 _T("invalid item index in OnGetItemAttr()") );
2825 // no attributes by default
2829 wxListItemAttr
*wxListCtrl::DoGetItemAttr(long item
) const
2831 return IsVirtual() ? OnGetItemAttr(item
)
2832 : wxGetInternalDataAttr(this, item
);
2835 void wxListCtrl::SetItemCount(long count
)
2837 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2839 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT
, (WPARAM
)count
,
2840 LVSICF_NOSCROLL
| LVSICF_NOINVALIDATEALL
) )
2842 wxLogLastError(_T("ListView_SetItemCount"));
2845 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
2846 wxT("m_count should match ListView_GetItemCount"));
2849 void wxListCtrl::RefreshItem(long item
)
2851 RefreshItems(item
, item
);
2854 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
2856 ListView_RedrawItems(GetHwnd(), itemFrom
, itemTo
);
2859 // ----------------------------------------------------------------------------
2860 // internal data stuff
2861 // ----------------------------------------------------------------------------
2863 static wxListItemInternalData
*wxGetInternalData(HWND hwnd
, long itemId
)
2866 it
.mask
= LVIF_PARAM
;
2869 if ( !ListView_GetItem(hwnd
, &it
) )
2872 return (wxListItemInternalData
*) it
.lParam
;
2876 wxListItemInternalData
*wxGetInternalData(const wxListCtrl
*ctl
, long itemId
)
2878 return wxGetInternalData(GetHwndOf(ctl
), itemId
);
2882 wxListItemAttr
*wxGetInternalDataAttr(const wxListCtrl
*ctl
, long itemId
)
2884 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
2886 return data
? data
->attr
: NULL
;
2889 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
)
2891 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
2895 memset(&item
, 0, sizeof(item
));
2896 item
.iItem
= itemId
;
2897 item
.mask
= LVIF_PARAM
;
2898 item
.lParam
= (LPARAM
) 0;
2899 ListView_SetItem((HWND
)ctl
->GetHWND(), &item
);
2904 // ----------------------------------------------------------------------------
2905 // wxWin <-> MSW items conversions
2906 // ----------------------------------------------------------------------------
2908 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
2912 wxListItemInternalData
*internaldata
=
2913 (wxListItemInternalData
*) lvItem
.lParam
;
2916 info
.m_data
= internaldata
->lParam
;
2920 info
.m_stateMask
= 0;
2921 info
.m_itemId
= lvItem
.iItem
;
2923 long oldMask
= lvItem
.mask
;
2925 bool needText
= false;
2926 if (hwndListCtrl
!= 0)
2928 if ( lvItem
.mask
& LVIF_TEXT
)
2935 lvItem
.pszText
= new wxChar
[513];
2936 lvItem
.cchTextMax
= 512;
2938 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
2939 ::SendMessage(hwndListCtrl
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
);
2942 if ( lvItem
.mask
& LVIF_STATE
)
2944 info
.m_mask
|= wxLIST_MASK_STATE
;
2946 if ( lvItem
.stateMask
& LVIS_CUT
)
2948 info
.m_stateMask
|= wxLIST_STATE_CUT
;
2949 if ( lvItem
.state
& LVIS_CUT
)
2950 info
.m_state
|= wxLIST_STATE_CUT
;
2952 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
2954 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
2955 if ( lvItem
.state
& LVIS_DROPHILITED
)
2956 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
2958 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
2960 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
2961 if ( lvItem
.state
& LVIS_FOCUSED
)
2962 info
.m_state
|= wxLIST_STATE_FOCUSED
;
2964 if ( lvItem
.stateMask
& LVIS_SELECTED
)
2966 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
2967 if ( lvItem
.state
& LVIS_SELECTED
)
2968 info
.m_state
|= wxLIST_STATE_SELECTED
;
2972 if ( lvItem
.mask
& LVIF_TEXT
)
2974 info
.m_mask
|= wxLIST_MASK_TEXT
;
2975 info
.m_text
= lvItem
.pszText
;
2977 if ( lvItem
.mask
& LVIF_IMAGE
)
2979 info
.m_mask
|= wxLIST_MASK_IMAGE
;
2980 info
.m_image
= lvItem
.iImage
;
2982 if ( lvItem
.mask
& LVIF_PARAM
)
2983 info
.m_mask
|= wxLIST_MASK_DATA
;
2984 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
2985 info
.m_mask
|= wxLIST_SET_ITEM
;
2986 info
.m_col
= lvItem
.iSubItem
;
2991 delete[] lvItem
.pszText
;
2993 lvItem
.mask
= oldMask
;
2996 static void wxConvertToMSWFlags(long state
, long stateMask
, LV_ITEM
& lvItem
)
2998 if (stateMask
& wxLIST_STATE_CUT
)
3000 lvItem
.stateMask
|= LVIS_CUT
;
3001 if (state
& wxLIST_STATE_CUT
)
3002 lvItem
.state
|= LVIS_CUT
;
3004 if (stateMask
& wxLIST_STATE_DROPHILITED
)
3006 lvItem
.stateMask
|= LVIS_DROPHILITED
;
3007 if (state
& wxLIST_STATE_DROPHILITED
)
3008 lvItem
.state
|= LVIS_DROPHILITED
;
3010 if (stateMask
& wxLIST_STATE_FOCUSED
)
3012 lvItem
.stateMask
|= LVIS_FOCUSED
;
3013 if (state
& wxLIST_STATE_FOCUSED
)
3014 lvItem
.state
|= LVIS_FOCUSED
;
3016 if (stateMask
& wxLIST_STATE_SELECTED
)
3018 lvItem
.stateMask
|= LVIS_SELECTED
;
3019 if (state
& wxLIST_STATE_SELECTED
)
3020 lvItem
.state
|= LVIS_SELECTED
;
3024 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
3025 const wxListItem
& info
,
3028 lvItem
.iItem
= (int) info
.m_itemId
;
3030 lvItem
.iImage
= info
.m_image
;
3031 lvItem
.stateMask
= 0;
3034 lvItem
.iSubItem
= info
.m_col
;
3036 if (info
.m_mask
& wxLIST_MASK_STATE
)
3038 lvItem
.mask
|= LVIF_STATE
;
3040 wxConvertToMSWFlags(info
.m_state
, info
.m_stateMask
, lvItem
);
3043 if (info
.m_mask
& wxLIST_MASK_TEXT
)
3045 lvItem
.mask
|= LVIF_TEXT
;
3046 if ( ctrl
->HasFlag(wxLC_USER_TEXT
) )
3048 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
3052 // pszText is not const, hence the cast
3053 lvItem
.pszText
= (wxChar
*)info
.m_text
.wx_str();
3054 if ( lvItem
.pszText
)
3055 lvItem
.cchTextMax
= info
.m_text
.length();
3057 lvItem
.cchTextMax
= 0;
3060 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
3061 lvItem
.mask
|= LVIF_IMAGE
;
3064 static void wxConvertToMSWListCol(HWND hwndList
,
3066 const wxListItem
& item
,
3069 wxZeroMemory(lvCol
);
3071 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
3073 lvCol
.mask
|= LVCF_TEXT
;
3074 lvCol
.pszText
= (wxChar
*)item
.m_text
.wx_str(); // cast is safe
3077 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
3079 lvCol
.mask
|= LVCF_FMT
;
3081 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
3082 lvCol
.fmt
= LVCFMT_LEFT
;
3083 else if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
3084 lvCol
.fmt
= LVCFMT_RIGHT
;
3085 else if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
3086 lvCol
.fmt
= LVCFMT_CENTER
;
3089 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
3091 lvCol
.mask
|= LVCF_WIDTH
;
3092 if ( item
.m_width
== wxLIST_AUTOSIZE
)
3093 lvCol
.cx
= LVSCW_AUTOSIZE
;
3094 else if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3095 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
3097 lvCol
.cx
= item
.m_width
;
3100 // see comment at the end of wxListCtrl::GetColumn()
3101 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
3102 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
3104 if ( wxApp::GetComCtl32Version() >= 470 )
3106 lvCol
.mask
|= LVCF_IMAGE
;
3108 // we use LVCFMT_BITMAP_ON_RIGHT because the images on the right
3109 // seem to be generally nicer than on the left and the generic
3110 // version only draws them on the right (we don't have a flag to
3111 // specify the image location anyhow)
3113 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
3114 // make any difference in my tests -- but maybe we should?
3115 if ( item
.m_image
!= -1 )
3117 // as we're going to overwrite the format field, get its
3118 // current value first -- unless we want to overwrite it anyhow
3119 if ( !(lvCol
.mask
& LVCF_FMT
) )
3122 wxZeroMemory(lvColOld
);
3123 lvColOld
.mask
= LVCF_FMT
;
3124 if ( ListView_GetColumn(hwndList
, col
, &lvColOld
) )
3126 lvCol
.fmt
= lvColOld
.fmt
;
3129 lvCol
.mask
|= LVCF_FMT
;
3132 lvCol
.fmt
|= LVCFMT_BITMAP_ON_RIGHT
| LVCFMT_IMAGE
;
3135 lvCol
.iImage
= item
.m_image
;
3137 //else: it doesn't support item images anyhow
3139 #endif // _WIN32_IE >= 0x0300
3142 #endif // wxUSE_LISTCTRL