1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/listctrl.cpp
4 // Author: Julian Smart
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"
33 #include "wx/settings.h"
36 #include "wx/textctrl.h"
37 #include "wx/imaglist.h"
38 #include "wx/listctrl.h"
39 #include "wx/dcclient.h"
41 #include "wx/msw/private.h"
43 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__)
51 // include <commctrl.h> "properly"
52 #include "wx/msw/wrapcctl.h"
54 // Currently gcc and watcom don't define NMLVFINDITEM, and DMC only defines
55 // it by its old name NM_FINDTIEM.
57 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(NMLVFINDITEM)
58 #define HAVE_NMLVFINDITEM 1
59 #elif defined(__DMC__) || defined(NM_FINDITEM)
60 #define HAVE_NMLVFINDITEM 1
61 #define NMLVFINDITEM NM_FINDITEM
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 // convert our state and mask flags to LV_ITEM constants
69 static void wxConvertToMSWFlags(long state
, long mask
, LV_ITEM
& lvItem
);
71 // convert wxListItem to LV_ITEM
72 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
73 const wxListItem
& info
, LV_ITEM
& lvItem
);
75 // convert LV_ITEM to wxListItem
76 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
78 /* const */ LV_ITEM
& lvItem
);
80 // convert our wxListItem to LV_COLUMN
81 static void wxConvertToMSWListCol(HWND hwndList
,
83 const wxListItem
& item
,
86 // ----------------------------------------------------------------------------
87 // private helper classes
88 // ----------------------------------------------------------------------------
90 // We have to handle both fooW and fooA notifications in several cases
91 // because of broken comctl32.dll and/or unicows.dll. This class is used to
92 // convert LV_ITEMA and LV_ITEMW to LV_ITEM (which is either LV_ITEMA or
93 // LV_ITEMW depending on wxUSE_UNICODE setting), so that it can be processed
94 // by wxConvertToMSWListItem().
96 #define LV_ITEM_NATIVE LV_ITEMW
97 #define LV_ITEM_OTHER LV_ITEMA
99 #define LV_CONV_TO_WX cMB2WX
100 #define LV_CONV_BUF wxMB2WXbuf
102 #define LV_ITEM_NATIVE LV_ITEMA
103 #define LV_ITEM_OTHER LV_ITEMW
105 #define LV_CONV_TO_WX cWC2WX
106 #define LV_CONV_BUF wxWC2WXbuf
107 #endif // Unicode/ANSI
112 // default ctor, use Init() later
113 wxLV_ITEM() { m_buf
= NULL
; m_pItem
= NULL
; }
115 // init without conversion
116 void Init(LV_ITEM_NATIVE
& item
)
118 wxASSERT_MSG( !m_pItem
, _T("Init() called twice?") );
123 // init with conversion
124 void Init(const LV_ITEM_OTHER
& item
)
126 // avoid unnecessary dynamic memory allocation, jjust make m_pItem
127 // point to our own m_item
129 // memcpy() can't work if the struct sizes are different
130 wxCOMPILE_TIME_ASSERT( sizeof(LV_ITEM_OTHER
) == sizeof(LV_ITEM_NATIVE
),
131 CodeCantWorkIfDiffSizes
);
133 memcpy(&m_item
, &item
, sizeof(LV_ITEM_NATIVE
));
135 // convert text from ANSI to Unicod if necessary
136 if ( (item
.mask
& LVIF_TEXT
) && item
.pszText
)
138 m_buf
= new LV_CONV_BUF(wxConvLocal
.LV_CONV_TO_WX(item
.pszText
));
139 m_item
.pszText
= (wxChar
*)m_buf
->data();
143 // ctor without conversion
144 wxLV_ITEM(LV_ITEM_NATIVE
& item
) : m_buf(NULL
), m_pItem(&item
) { }
146 // ctor with conversion
147 wxLV_ITEM(LV_ITEM_OTHER
& item
) : m_buf(NULL
)
152 ~wxLV_ITEM() { delete m_buf
; }
154 // conversion to the real LV_ITEM
155 operator LV_ITEM_NATIVE
&() const { return *m_pItem
; }
160 LV_ITEM_NATIVE
*m_pItem
;
161 LV_ITEM_NATIVE m_item
;
163 DECLARE_NO_COPY_CLASS(wxLV_ITEM
)
166 ///////////////////////////////////////////////////////
168 // The MSW version had problems with SetTextColour() et
169 // al as the wxListItemAttr's were stored keyed on the
170 // item index. If a item was inserted anywhere but the end
171 // of the list the the text attributes (colour etc) for
172 // the following items were out of sync.
175 // Under MSW the only way to associate data with a List
176 // item independent of its position in the list is to
177 // store a pointer to it in its lParam attribute. However
178 // user programs are already using this (via the
179 // SetItemData() GetItemData() calls).
181 // However what we can do is store a pointer to a
182 // structure which contains the attributes we want *and*
183 // a lParam for the users data, e.g.
185 // class wxListItemInternalData
188 // wxListItemAttr *attr;
189 // long lParam; // user data
192 // To conserve memory, a wxListItemInternalData is
193 // only allocated for a LV_ITEM if text attributes or
194 // user data(lparam) are being set.
197 // class wxListItemInternalData
198 class wxListItemInternalData
201 wxListItemAttr
*attr
;
202 LPARAM lParam
; // user data
204 wxListItemInternalData() : attr(NULL
), lParam(0) {}
205 ~wxListItemInternalData()
211 DECLARE_NO_COPY_CLASS(wxListItemInternalData
)
214 // Get the internal data structure
215 static wxListItemInternalData
*wxGetInternalData(HWND hwnd
, long itemId
);
216 static wxListItemInternalData
*wxGetInternalData(const wxListCtrl
*ctl
, long itemId
);
217 static wxListItemAttr
*wxGetInternalDataAttr(const wxListCtrl
*ctl
, long itemId
);
218 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
);
221 // ----------------------------------------------------------------------------
223 // ----------------------------------------------------------------------------
225 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
)
226 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
)
227 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
)
228 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
)
229 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
)
230 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
)
231 #if WXWIN_COMPATIBILITY_2_4
232 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
)
233 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
)
235 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
)
236 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
)
237 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
)
238 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
)
239 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
)
240 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
)
241 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
)
242 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING
)
243 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG
)
244 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
)
245 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
)
246 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
)
247 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED
)
248 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
)
250 #if wxUSE_EXTENDED_RTTI
251 WX_DEFINE_FLAGS( wxListCtrlStyle
)
253 wxBEGIN_FLAGS( wxListCtrlStyle
)
254 // new style border flags, we put them first to
255 // use them for streaming out
256 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
257 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
258 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
259 wxFLAGS_MEMBER(wxBORDER_RAISED
)
260 wxFLAGS_MEMBER(wxBORDER_STATIC
)
261 wxFLAGS_MEMBER(wxBORDER_NONE
)
263 // old style border flags
264 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
265 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
266 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
267 wxFLAGS_MEMBER(wxRAISED_BORDER
)
268 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
269 wxFLAGS_MEMBER(wxBORDER
)
271 // standard window styles
272 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
273 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
274 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
275 wxFLAGS_MEMBER(wxWANTS_CHARS
)
276 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
277 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
278 wxFLAGS_MEMBER(wxVSCROLL
)
279 wxFLAGS_MEMBER(wxHSCROLL
)
281 wxFLAGS_MEMBER(wxLC_LIST
)
282 wxFLAGS_MEMBER(wxLC_REPORT
)
283 wxFLAGS_MEMBER(wxLC_ICON
)
284 wxFLAGS_MEMBER(wxLC_SMALL_ICON
)
285 wxFLAGS_MEMBER(wxLC_ALIGN_TOP
)
286 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT
)
287 wxFLAGS_MEMBER(wxLC_AUTOARRANGE
)
288 wxFLAGS_MEMBER(wxLC_USER_TEXT
)
289 wxFLAGS_MEMBER(wxLC_EDIT_LABELS
)
290 wxFLAGS_MEMBER(wxLC_NO_HEADER
)
291 wxFLAGS_MEMBER(wxLC_SINGLE_SEL
)
292 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING
)
293 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING
)
294 wxFLAGS_MEMBER(wxLC_VIRTUAL
)
296 wxEND_FLAGS( wxListCtrlStyle
)
298 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl
, wxControl
,"wx/listctrl.h")
300 wxBEGIN_PROPERTIES_TABLE(wxListCtrl
)
301 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
303 wxPROPERTY_FLAGS( WindowStyle
, wxListCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
304 wxEND_PROPERTIES_TABLE()
306 wxBEGIN_HANDLERS_TABLE(wxListCtrl
)
307 wxEND_HANDLERS_TABLE()
309 wxCONSTRUCTOR_5( wxListCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
312 TODO : Expose more information of a list's layout etc. via appropriate objects (Ã la NotebookPageInfo)
315 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
318 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
319 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
321 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
323 BEGIN_EVENT_TABLE(wxListCtrl
, wxControl
)
324 EVT_PAINT(wxListCtrl::OnPaint
)
327 // ============================================================================
329 // ============================================================================
331 // ----------------------------------------------------------------------------
332 // wxListCtrl construction
333 // ----------------------------------------------------------------------------
335 void wxListCtrl::Init()
337 m_imageListNormal
= NULL
;
338 m_imageListSmall
= NULL
;
339 m_imageListState
= NULL
;
340 m_ownsImageListNormal
= m_ownsImageListSmall
= m_ownsImageListState
= false;
343 m_ignoreChangeMessages
= false;
345 m_AnyInternalData
= false;
346 m_hasAnyAttr
= false;
349 bool wxListCtrl::Create(wxWindow
*parent
,
354 const wxValidator
& validator
,
355 const wxString
& name
)
357 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
360 if ( !MSWCreateControl(WC_LISTVIEW
, wxEmptyString
, pos
, size
) )
363 // explicitly say that we want to use Unicode because otherwise we get ANSI
364 // versions of _some_ messages (notably LVN_GETDISPINFOA) in MSLU build
365 wxSetCCUnicodeFormat(GetHwnd());
367 // We must set the default text colour to the system/theme color, otherwise
368 // GetTextColour will always return black
369 SetTextColour(GetDefaultAttributes().colFg
);
371 // for comctl32.dll v 4.70+ we want to have some non default extended
372 // styles because it's prettier (and also because wxGTK does it like this)
373 if ( InReportView() && wxApp::GetComCtl32Version() >= 470 )
375 ::SendMessage(GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE
,
376 0, LVS_EX_LABELTIP
| LVS_EX_FULLROWSELECT
| LVS_EX_SUBITEMIMAGES
);
382 WXDWORD
wxListCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
384 WXDWORD wstyle
= wxControl::MSWGetStyle(style
, exstyle
);
386 wstyle
|= LVS_SHAREIMAGELISTS
| LVS_SHOWSELALWAYS
;
391 #define MAP_MODE_STYLE(wx, ms) \
392 if ( style & (wx) ) { wstyle |= (ms); nModes++; }
393 #else // !__WXDEBUG__
394 #define MAP_MODE_STYLE(wx, ms) \
395 if ( style & (wx) ) wstyle |= (ms);
396 #endif // __WXDEBUG__
398 MAP_MODE_STYLE(wxLC_ICON
, LVS_ICON
)
399 MAP_MODE_STYLE(wxLC_SMALL_ICON
, LVS_SMALLICON
)
400 MAP_MODE_STYLE(wxLC_LIST
, LVS_LIST
)
401 MAP_MODE_STYLE(wxLC_REPORT
, LVS_REPORT
)
403 wxASSERT_MSG( nModes
== 1,
404 _T("wxListCtrl style should have exactly one mode bit set") );
406 #undef MAP_MODE_STYLE
408 if ( style
& wxLC_ALIGN_LEFT
)
409 wstyle
|= LVS_ALIGNLEFT
;
411 if ( style
& wxLC_ALIGN_TOP
)
412 wstyle
|= LVS_ALIGNTOP
;
414 if ( style
& wxLC_AUTOARRANGE
)
415 wstyle
|= LVS_AUTOARRANGE
;
417 if ( style
& wxLC_NO_SORT_HEADER
)
418 wstyle
|= LVS_NOSORTHEADER
;
420 if ( style
& wxLC_NO_HEADER
)
421 wstyle
|= LVS_NOCOLUMNHEADER
;
423 if ( style
& wxLC_EDIT_LABELS
)
424 wstyle
|= LVS_EDITLABELS
;
426 if ( style
& wxLC_SINGLE_SEL
)
427 wstyle
|= LVS_SINGLESEL
;
429 if ( style
& wxLC_SORT_ASCENDING
)
431 wstyle
|= LVS_SORTASCENDING
;
433 wxASSERT_MSG( !(style
& wxLC_SORT_DESCENDING
),
434 _T("can't sort in ascending and descending orders at once") );
436 else if ( style
& wxLC_SORT_DESCENDING
)
437 wstyle
|= LVS_SORTDESCENDING
;
439 #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
440 if ( style
& wxLC_VIRTUAL
)
442 int ver
= wxApp::GetComCtl32Version();
445 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."),
446 ver
/ 100, ver
% 100);
449 wstyle
|= LVS_OWNERDATA
;
451 #endif // ancient cygwin
456 void wxListCtrl::UpdateStyle()
460 // The new window view style
461 DWORD dwStyleNew
= MSWGetStyle(m_windowStyle
, NULL
);
463 // some styles are not returned by MSWGetStyle()
465 dwStyleNew
|= WS_VISIBLE
;
467 // Get the current window style.
468 DWORD dwStyleOld
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
470 // we don't have wxVSCROLL style, but the list control may have it,
471 // don't change it then
472 dwStyleNew
|= dwStyleOld
& (WS_HSCROLL
| WS_VSCROLL
);
474 // Only set the window style if the view bits have changed.
475 if ( dwStyleOld
!= dwStyleNew
)
477 ::SetWindowLong(GetHwnd(), GWL_STYLE
, dwStyleNew
);
482 void wxListCtrl::FreeAllInternalData()
484 if (m_AnyInternalData
)
486 int n
= GetItemCount();
488 m_ignoreChangeMessages
= true;
489 for (int i
= 0; i
< n
; i
++)
490 wxDeleteInternalData(this, i
);
491 m_ignoreChangeMessages
= false;
493 m_AnyInternalData
= false;
497 wxListCtrl::~wxListCtrl()
499 FreeAllInternalData();
503 m_textCtrl
->UnsubclassWin();
504 m_textCtrl
->SetHWND(0);
509 if (m_ownsImageListNormal
)
510 delete m_imageListNormal
;
511 if (m_ownsImageListSmall
)
512 delete m_imageListSmall
;
513 if (m_ownsImageListState
)
514 delete m_imageListState
;
517 // ----------------------------------------------------------------------------
518 // set/get/change style
519 // ----------------------------------------------------------------------------
521 // Add or remove a single window style
522 void wxListCtrl::SetSingleStyle(long style
, bool add
)
524 long flag
= GetWindowStyleFlag();
526 // Get rid of conflicting styles
529 if ( style
& wxLC_MASK_TYPE
)
530 flag
= flag
& ~wxLC_MASK_TYPE
;
531 if ( style
& wxLC_MASK_ALIGN
)
532 flag
= flag
& ~wxLC_MASK_ALIGN
;
533 if ( style
& wxLC_MASK_SORT
)
534 flag
= flag
& ~wxLC_MASK_SORT
;
542 SetWindowStyleFlag(flag
);
545 // Set the whole window style
546 void wxListCtrl::SetWindowStyleFlag(long flag
)
548 if ( flag
!= m_windowStyle
)
550 m_windowStyle
= flag
;
558 // ----------------------------------------------------------------------------
560 // ----------------------------------------------------------------------------
562 /* static */ wxVisualAttributes
563 wxListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
565 wxVisualAttributes attrs
= GetCompositeControlsDefaultAttributes(variant
);
567 // common controls have their own default font
568 attrs
.font
= wxGetCCDefaultFont();
573 // Sets the foreground, i.e. text, colour
574 bool wxListCtrl::SetForegroundColour(const wxColour
& col
)
576 if ( !wxWindow::SetForegroundColour(col
) )
579 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col
));
584 // Sets the background colour
585 bool wxListCtrl::SetBackgroundColour(const wxColour
& col
)
587 if ( !wxWindow::SetBackgroundColour(col
) )
590 // we set the same colour for both the "empty" background and the items
592 COLORREF color
= wxColourToRGB(col
);
593 ListView_SetBkColor(GetHwnd(), color
);
594 ListView_SetTextBkColor(GetHwnd(), color
);
599 // Gets information about this column
600 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
605 lvCol
.mask
= LVCF_WIDTH
;
607 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
609 lvCol
.mask
|= LVCF_TEXT
;
610 lvCol
.pszText
= new wxChar
[513];
611 lvCol
.cchTextMax
= 512;
614 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
616 lvCol
.mask
|= LVCF_FMT
;
619 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
621 lvCol
.mask
|= LVCF_IMAGE
;
624 bool success
= ListView_GetColumn(GetHwnd(), col
, &lvCol
) != 0;
626 // item.m_subItem = lvCol.iSubItem;
627 item
.m_width
= lvCol
.cx
;
629 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) && lvCol
.pszText
)
631 item
.m_text
= lvCol
.pszText
;
632 delete[] lvCol
.pszText
;
635 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
637 switch (lvCol
.fmt
& LVCFMT_JUSTIFYMASK
) {
639 item
.m_format
= wxLIST_FORMAT_LEFT
;
642 item
.m_format
= wxLIST_FORMAT_RIGHT
;
645 item
.m_format
= wxLIST_FORMAT_CENTRE
;
648 item
.m_format
= -1; // Unknown?
653 // the column images were not supported in older versions but how to check
654 // for this? we can't use _WIN32_IE because we always define it to a very
655 // high value, so see if another symbol which is only defined starting from
656 // comctl32.dll 4.70 is available
657 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
658 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
660 item
.m_image
= lvCol
.iImage
;
662 #endif // LVCOLUMN::iImage exists
667 // Sets information about this column
668 bool wxListCtrl::SetColumn(int col
, const wxListItem
& item
)
671 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
673 return ListView_SetColumn(GetHwnd(), col
, &lvCol
) != 0;
676 // Gets the column width
677 int wxListCtrl::GetColumnWidth(int col
) const
679 return ListView_GetColumnWidth(GetHwnd(), col
);
682 // Sets the column width
683 bool wxListCtrl::SetColumnWidth(int col
, int width
)
685 if ( m_windowStyle
& wxLC_LIST
)
688 if ( width
== wxLIST_AUTOSIZE
)
689 width
= LVSCW_AUTOSIZE
;
690 else if ( width
== wxLIST_AUTOSIZE_USEHEADER
)
691 width
= LVSCW_AUTOSIZE_USEHEADER
;
693 return ListView_SetColumnWidth(GetHwnd(), col
, width
) != 0;
696 // Gets the number of items that can fit vertically in the
697 // visible area of the list control (list or report view)
698 // or the total number of items in the list control (icon
699 // or small icon view)
700 int wxListCtrl::GetCountPerPage() const
702 return ListView_GetCountPerPage(GetHwnd());
705 // Gets the edit control for editing labels.
706 wxTextCtrl
* wxListCtrl::GetEditControl() const
711 // Gets information about the item
712 bool wxListCtrl::GetItem(wxListItem
& info
) const
715 wxZeroMemory(lvItem
);
717 lvItem
.iItem
= info
.m_itemId
;
718 lvItem
.iSubItem
= info
.m_col
;
720 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
722 lvItem
.mask
|= LVIF_TEXT
;
723 lvItem
.pszText
= new wxChar
[513];
724 lvItem
.cchTextMax
= 512;
728 lvItem
.pszText
= NULL
;
731 if (info
.m_mask
& wxLIST_MASK_DATA
)
732 lvItem
.mask
|= LVIF_PARAM
;
734 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
735 lvItem
.mask
|= LVIF_IMAGE
;
737 if ( info
.m_mask
& wxLIST_MASK_STATE
)
739 lvItem
.mask
|= LVIF_STATE
;
740 wxConvertToMSWFlags(0, info
.m_stateMask
, lvItem
);
743 bool success
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0;
746 wxLogError(_("Couldn't retrieve information about list control item %d."),
751 // give NULL as hwnd as we already have everything we need
752 wxConvertFromMSWListItem(NULL
, info
, lvItem
);
756 delete[] lvItem
.pszText
;
761 // Sets information about the item
762 bool wxListCtrl::SetItem(wxListItem
& info
)
765 wxConvertToMSWListItem(this, info
, item
);
767 // we never update the lParam if it contains our pointer
768 // to the wxListItemInternalData structure
769 item
.mask
&= ~LVIF_PARAM
;
771 // check if setting attributes or lParam
772 if (info
.HasAttributes() || (info
.m_mask
& wxLIST_MASK_DATA
))
774 // get internal item data
775 // perhaps a cache here ?
776 wxListItemInternalData
*data
= wxGetInternalData(this, info
.m_itemId
);
781 m_AnyInternalData
= true;
782 data
= new wxListItemInternalData();
783 item
.lParam
= (LPARAM
) data
;
784 item
.mask
|= LVIF_PARAM
;
789 if (info
.m_mask
& wxLIST_MASK_DATA
)
790 data
->lParam
= info
.m_data
;
793 if ( info
.HasAttributes() )
795 const wxListItemAttr
& attrNew
= *info
.GetAttributes();
797 // don't overwrite the already set attributes if we have them
799 data
->attr
->AssignFrom(attrNew
);
801 data
->attr
= new wxListItemAttr(attrNew
);
806 // we could be changing only the attribute in which case we don't need to
807 // call ListView_SetItem() at all
811 if ( !ListView_SetItem(GetHwnd(), &item
) )
813 wxLogDebug(_T("ListView_SetItem() failed"));
819 // we need to update the item immediately to show the new image
820 bool updateNow
= (info
.m_mask
& wxLIST_MASK_IMAGE
) != 0;
822 // check whether it has any custom attributes
823 if ( info
.HasAttributes() )
827 // if the colour has changed, we must redraw the item
833 // we need this to make the change visible right now
834 RefreshItem(item
.iItem
);
840 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
844 info
.m_mask
= wxLIST_MASK_TEXT
;
845 info
.m_itemId
= index
;
849 info
.m_image
= imageId
;
850 info
.m_mask
|= wxLIST_MASK_IMAGE
;
852 return SetItem(info
);
856 // Gets the item state
857 int wxListCtrl::GetItemState(long item
, long stateMask
) const
861 info
.m_mask
= wxLIST_MASK_STATE
;
862 info
.m_stateMask
= stateMask
;
863 info
.m_itemId
= item
;
871 // Sets the item state
872 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
874 // NB: don't use SetItem() here as it doesn't work with the virtual list
877 wxZeroMemory(lvItem
);
879 wxConvertToMSWFlags(state
, stateMask
, lvItem
);
881 // for the virtual list controls we need to refresh the previously focused
882 // item manually when changing focus without changing selection
883 // programmatically because otherwise it keeps its focus rectangle until
884 // next repaint (yet another comctl32 bug)
887 (stateMask
& wxLIST_STATE_FOCUSED
) &&
888 (state
& wxLIST_STATE_FOCUSED
) )
890 focusOld
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_FOCUSED
);
897 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE
,
898 (WPARAM
)item
, (LPARAM
)&lvItem
) )
900 wxLogLastError(_T("ListView_SetItemState"));
905 if ( focusOld
!= -1 )
907 // no need to refresh the item if it was previously selected, it would
908 // only result in annoying flicker
909 if ( !(GetItemState(focusOld
,
910 wxLIST_STATE_SELECTED
) & wxLIST_STATE_SELECTED
) )
912 RefreshItem(focusOld
);
919 // Sets the item image
920 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
922 return SetItemColumnImage(item
, 0, image
);
925 // Sets the item image
926 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
930 info
.m_mask
= wxLIST_MASK_IMAGE
;
931 info
.m_image
= image
;
932 info
.m_itemId
= item
;
935 return SetItem(info
);
938 // Gets the item text
939 wxString
wxListCtrl::GetItemText(long item
) const
943 info
.m_mask
= wxLIST_MASK_TEXT
;
944 info
.m_itemId
= item
;
947 return wxEmptyString
;
951 // Sets the item text
952 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
956 info
.m_mask
= wxLIST_MASK_TEXT
;
957 info
.m_itemId
= item
;
963 // Gets the item data
964 wxUIntPtr
wxListCtrl::GetItemData(long item
) const
968 info
.m_mask
= wxLIST_MASK_DATA
;
969 info
.m_itemId
= item
;
976 // Sets the item data
977 bool wxListCtrl::SetItemData(long item
, long data
)
981 info
.m_mask
= wxLIST_MASK_DATA
;
982 info
.m_itemId
= item
;
985 return SetItem(info
);
988 wxRect
wxListCtrl::GetViewRect() const
990 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
991 _T("wxListCtrl::GetViewRect() only works in icon mode") );
994 if ( !ListView_GetViewRect(GetHwnd(), &rc
) )
996 wxLogDebug(_T("ListView_GetViewRect() failed."));
1002 wxCopyRECTToRect(rc
, rect
);
1007 // Gets the item rectangle
1008 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
1013 if ( code
== wxLIST_RECT_BOUNDS
)
1014 codeWin
= LVIR_BOUNDS
;
1015 else if ( code
== wxLIST_RECT_ICON
)
1016 codeWin
= LVIR_ICON
;
1017 else if ( code
== wxLIST_RECT_LABEL
)
1018 codeWin
= LVIR_LABEL
;
1021 wxFAIL_MSG( _T("incorrect code in GetItemRect()") );
1023 codeWin
= LVIR_BOUNDS
;
1026 bool success
= ListView_GetItemRect(GetHwnd(), (int) item
, &rectWin
, codeWin
) != 0;
1028 rect
.x
= rectWin
.left
;
1029 rect
.y
= rectWin
.top
;
1030 rect
.width
= rectWin
.right
- rectWin
.left
;
1031 rect
.height
= rectWin
.bottom
- rectWin
.top
;
1036 // Gets the item position
1037 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1041 bool success
= (ListView_GetItemPosition(GetHwnd(), (int) item
, &pt
) != 0);
1043 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
1047 // Sets the item position.
1048 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1050 return (ListView_SetItemPosition(GetHwnd(), (int) item
, pos
.x
, pos
.y
) != 0);
1053 // Gets the number of items in the list control
1054 int wxListCtrl::GetItemCount() const
1059 wxSize
wxListCtrl::GetItemSpacing() const
1061 const int spacing
= ListView_GetItemSpacing(GetHwnd(), (BOOL
)HasFlag(wxLC_SMALL_ICON
));
1063 return wxSize(LOWORD(spacing
), HIWORD(spacing
));
1066 int wxListCtrl::GetItemSpacing(bool isSmall
) const
1068 return ListView_GetItemSpacing(GetHwnd(), (BOOL
) isSmall
);
1071 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1074 info
.m_itemId
= item
;
1075 info
.SetTextColour( col
);
1079 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1082 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1083 if ( data
&& data
->attr
)
1084 col
= data
->attr
->GetTextColour();
1089 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1092 info
.m_itemId
= item
;
1093 info
.SetBackgroundColour( col
);
1097 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1100 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1101 if ( data
&& data
->attr
)
1102 col
= data
->attr
->GetBackgroundColour();
1107 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
1110 info
.m_itemId
= item
;
1115 wxFont
wxListCtrl::GetItemFont( long item
) const
1118 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1119 if ( data
&& data
->attr
)
1120 f
= data
->attr
->GetFont();
1125 // Gets the number of selected items in the list control
1126 int wxListCtrl::GetSelectedItemCount() const
1128 return ListView_GetSelectedCount(GetHwnd());
1131 // Gets the text colour of the listview
1132 wxColour
wxListCtrl::GetTextColour() const
1134 COLORREF ref
= ListView_GetTextColor(GetHwnd());
1135 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
1139 // Sets the text colour of the listview
1140 void wxListCtrl::SetTextColour(const wxColour
& col
)
1142 ListView_SetTextColor(GetHwnd(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue()));
1145 // Gets the index of the topmost visible item when in
1146 // list or report view
1147 long wxListCtrl::GetTopItem() const
1149 return (long) ListView_GetTopIndex(GetHwnd());
1152 // Searches for an item, starting from 'item'.
1153 // 'geometry' is one of
1154 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1155 // 'state' is a state bit flag, one or more of
1156 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1157 // item can be -1 to find the first item that matches the
1159 // Returns the item or -1 if unsuccessful.
1160 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1164 if ( geom
== wxLIST_NEXT_ABOVE
)
1165 flags
|= LVNI_ABOVE
;
1166 if ( geom
== wxLIST_NEXT_ALL
)
1168 if ( geom
== wxLIST_NEXT_BELOW
)
1169 flags
|= LVNI_BELOW
;
1170 if ( geom
== wxLIST_NEXT_LEFT
)
1171 flags
|= LVNI_TOLEFT
;
1172 if ( geom
== wxLIST_NEXT_RIGHT
)
1173 flags
|= LVNI_TORIGHT
;
1175 if ( state
& wxLIST_STATE_CUT
)
1177 if ( state
& wxLIST_STATE_DROPHILITED
)
1178 flags
|= LVNI_DROPHILITED
;
1179 if ( state
& wxLIST_STATE_FOCUSED
)
1180 flags
|= LVNI_FOCUSED
;
1181 if ( state
& wxLIST_STATE_SELECTED
)
1182 flags
|= LVNI_SELECTED
;
1184 return (long) ListView_GetNextItem(GetHwnd(), item
, flags
);
1188 wxImageList
*wxListCtrl::GetImageList(int which
) const
1190 if ( which
== wxIMAGE_LIST_NORMAL
)
1192 return m_imageListNormal
;
1194 else if ( which
== wxIMAGE_LIST_SMALL
)
1196 return m_imageListSmall
;
1198 else if ( which
== wxIMAGE_LIST_STATE
)
1200 return m_imageListState
;
1205 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1208 if ( which
== wxIMAGE_LIST_NORMAL
)
1210 flags
= LVSIL_NORMAL
;
1211 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1212 m_imageListNormal
= imageList
;
1213 m_ownsImageListNormal
= false;
1215 else if ( which
== wxIMAGE_LIST_SMALL
)
1217 flags
= LVSIL_SMALL
;
1218 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1219 m_imageListSmall
= imageList
;
1220 m_ownsImageListSmall
= false;
1222 else if ( which
== wxIMAGE_LIST_STATE
)
1224 flags
= LVSIL_STATE
;
1225 if (m_ownsImageListState
) delete m_imageListState
;
1226 m_imageListState
= imageList
;
1227 m_ownsImageListState
= false;
1229 (void) ListView_SetImageList(GetHwnd(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
1232 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1234 SetImageList(imageList
, which
);
1235 if ( which
== wxIMAGE_LIST_NORMAL
)
1236 m_ownsImageListNormal
= true;
1237 else if ( which
== wxIMAGE_LIST_SMALL
)
1238 m_ownsImageListSmall
= true;
1239 else if ( which
== wxIMAGE_LIST_STATE
)
1240 m_ownsImageListState
= true;
1243 // ----------------------------------------------------------------------------
1245 // ----------------------------------------------------------------------------
1247 // Arranges the items
1248 bool wxListCtrl::Arrange(int flag
)
1251 if ( flag
== wxLIST_ALIGN_LEFT
)
1252 code
= LVA_ALIGNLEFT
;
1253 else if ( flag
== wxLIST_ALIGN_TOP
)
1254 code
= LVA_ALIGNTOP
;
1255 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
1257 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
1258 code
= LVA_SNAPTOGRID
;
1260 return (ListView_Arrange(GetHwnd(), code
) != 0);
1264 bool wxListCtrl::DeleteItem(long item
)
1266 if ( !ListView_DeleteItem(GetHwnd(), (int) item
) )
1268 wxLogLastError(_T("ListView_DeleteItem"));
1273 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1274 wxT("m_count should match ListView_GetItemCount"));
1276 // the virtual list control doesn't refresh itself correctly, help it
1279 // we need to refresh all the lines below the one which was deleted
1281 if ( item
> 0 && GetItemCount() )
1283 GetItemRect(item
- 1, rectItem
);
1288 rectItem
.height
= 0;
1291 wxRect rectWin
= GetRect();
1292 rectWin
.height
= rectWin
.GetBottom() - rectItem
.GetBottom();
1293 rectWin
.y
= rectItem
.GetBottom();
1295 RefreshRect(rectWin
);
1301 // Deletes all items
1302 bool wxListCtrl::DeleteAllItems()
1304 return ListView_DeleteAllItems(GetHwnd()) != 0;
1307 // Deletes all items
1308 bool wxListCtrl::DeleteAllColumns()
1310 while ( m_colCount
> 0 )
1312 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1314 wxLogLastError(wxT("ListView_DeleteColumn"));
1322 wxASSERT_MSG( m_colCount
== 0, wxT("no columns should be left") );
1328 bool wxListCtrl::DeleteColumn(int col
)
1330 bool success
= (ListView_DeleteColumn(GetHwnd(), col
) != 0);
1332 if ( success
&& (m_colCount
> 0) )
1337 // Clears items, and columns if there are any.
1338 void wxListCtrl::ClearAll()
1341 if ( m_colCount
> 0 )
1345 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1347 wxASSERT( (textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
))) );
1349 // ListView_EditLabel requires that the list has focus.
1352 WXHWND hWnd
= (WXHWND
) ListView_EditLabel(GetHwnd(), item
);
1355 // failed to start editing
1359 // [re]create the text control wrapping the HWND we got
1362 m_textCtrl
->UnsubclassWin();
1363 m_textCtrl
->SetHWND(0);
1367 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1368 m_textCtrl
->SetHWND(hWnd
);
1369 m_textCtrl
->SubclassWin(hWnd
);
1370 m_textCtrl
->SetParent(this);
1372 // we must disallow TABbing away from the control while the edit contol is
1373 // shown because this leaves it in some strange state (just try removing
1374 // this line and then pressing TAB while editing an item in listctrl
1376 m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle() | wxTE_PROCESS_TAB
);
1381 // End label editing, optionally cancelling the edit
1382 bool wxListCtrl::EndEditLabel(bool cancel
)
1384 // m_textCtrl is not always ready, ie. in EVT_LIST_BEGIN_LABEL_EDIT
1385 HWND hwnd
= ListView_GetEditControl(GetHwnd());
1386 bool b
= (hwnd
!= NULL
);
1390 ::SetWindowText(hwnd
, wxEmptyString
); // dubious but better than nothing
1393 m_textCtrl
->UnsubclassWin();
1394 m_textCtrl
->SetHWND(0);
1398 ::DestroyWindow(hwnd
);
1403 // Ensures this item is visible
1404 bool wxListCtrl::EnsureVisible(long item
)
1406 return ListView_EnsureVisible(GetHwnd(), (int) item
, FALSE
) != FALSE
;
1409 // Find an item whose label matches this string, starting from the item after 'start'
1410 // or the beginning if 'start' is -1.
1411 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1413 LV_FINDINFO findInfo
;
1415 findInfo
.flags
= LVFI_STRING
;
1417 findInfo
.flags
|= LVFI_PARTIAL
;
1420 // ListView_FindItem() excludes the first item from search and to look
1421 // through all the items you need to start from -1 which is unnatural and
1422 // inconsistent with the generic version - so we adjust the index
1425 return ListView_FindItem(GetHwnd(), (int) start
, &findInfo
);
1428 // Find an item whose data matches this data, starting from the item after 'start'
1429 // or the beginning if 'start' is -1.
1430 // NOTE : Lindsay Mathieson - 14-July-2002
1431 // No longer use ListView_FindItem as the data attribute is now stored
1432 // in a wxListItemInternalData structure refernced by the actual lParam
1433 long wxListCtrl::FindItem(long start
, wxUIntPtr data
)
1435 long idx
= start
+ 1;
1436 long count
= GetItemCount();
1440 if (GetItemData(idx
) == data
)
1448 // Find an item nearest this position in the specified direction, starting from
1449 // the item after 'start' or the beginning if 'start' is -1.
1450 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1452 LV_FINDINFO findInfo
;
1454 findInfo
.flags
= LVFI_NEARESTXY
;
1455 findInfo
.pt
.x
= pt
.x
;
1456 findInfo
.pt
.y
= pt
.y
;
1457 findInfo
.vkDirection
= VK_RIGHT
;
1459 if ( direction
== wxLIST_FIND_UP
)
1460 findInfo
.vkDirection
= VK_UP
;
1461 else if ( direction
== wxLIST_FIND_DOWN
)
1462 findInfo
.vkDirection
= VK_DOWN
;
1463 else if ( direction
== wxLIST_FIND_LEFT
)
1464 findInfo
.vkDirection
= VK_LEFT
;
1465 else if ( direction
== wxLIST_FIND_RIGHT
)
1466 findInfo
.vkDirection
= VK_RIGHT
;
1468 return ListView_FindItem(GetHwnd(), (int) start
, & findInfo
);
1471 // Determines which item (if any) is at the specified point,
1472 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1473 long wxListCtrl::HitTest(const wxPoint
& point
, int& flags
)
1475 LV_HITTESTINFO hitTestInfo
;
1476 hitTestInfo
.pt
.x
= (int) point
.x
;
1477 hitTestInfo
.pt
.y
= (int) point
.y
;
1479 ListView_HitTest(GetHwnd(), & hitTestInfo
);
1483 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
1484 flags
|= wxLIST_HITTEST_ABOVE
;
1485 if ( hitTestInfo
.flags
& LVHT_BELOW
)
1486 flags
|= wxLIST_HITTEST_BELOW
;
1487 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
1488 flags
|= wxLIST_HITTEST_TOLEFT
;
1489 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
1490 flags
|= wxLIST_HITTEST_TORIGHT
;
1492 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
1493 flags
|= wxLIST_HITTEST_NOWHERE
;
1495 // note a bug or at least a very strange feature of comtl32.dll (tested
1496 // with version 4.0 under Win95 and 6.0 under Win 2003): if you click to
1497 // the right of the item label, ListView_HitTest() returns a combination of
1498 // LVHT_ONITEMICON, LVHT_ONITEMLABEL and LVHT_ONITEMSTATEICON -- filter out
1499 // the bits which don't make sense
1500 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
1502 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
1504 // do not translate LVHT_ONITEMICON here, as per above
1508 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
1509 flags
|= wxLIST_HITTEST_ONITEMICON
;
1510 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
1511 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
1514 return (long) hitTestInfo
.iItem
;
1517 // Inserts an item, returning the index of the new item if successful,
1519 long wxListCtrl::InsertItem(const wxListItem
& info
)
1521 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1524 wxConvertToMSWListItem(this, info
, item
);
1525 item
.mask
&= ~LVIF_PARAM
;
1527 // check wether we need to allocate our internal data
1528 bool needInternalData
= ((info
.m_mask
& wxLIST_MASK_DATA
) || info
.HasAttributes());
1529 if (needInternalData
)
1531 m_AnyInternalData
= true;
1532 item
.mask
|= LVIF_PARAM
;
1534 // internal stucture that manages data
1535 wxListItemInternalData
*data
= new wxListItemInternalData();
1536 item
.lParam
= (LPARAM
) data
;
1538 if (info
.m_mask
& wxLIST_MASK_DATA
)
1539 data
->lParam
= info
.m_data
;
1541 // check whether it has any custom attributes
1542 if ( info
.HasAttributes() )
1544 // take copy of attributes
1545 data
->attr
= new wxListItemAttr(*info
.GetAttributes());
1547 // and remember that we have some now...
1548 m_hasAnyAttr
= true;
1552 long rv
= ListView_InsertItem(GetHwnd(), & item
);
1555 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1556 wxT("m_count should match ListView_GetItemCount"));
1561 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1564 info
.m_text
= label
;
1565 info
.m_mask
= wxLIST_MASK_TEXT
;
1566 info
.m_itemId
= index
;
1567 return InsertItem(info
);
1570 // Inserts an image item
1571 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1574 info
.m_image
= imageIndex
;
1575 info
.m_mask
= wxLIST_MASK_IMAGE
;
1576 info
.m_itemId
= index
;
1577 return InsertItem(info
);
1580 // Inserts an image/string item
1581 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1584 info
.m_image
= imageIndex
;
1585 info
.m_text
= label
;
1586 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1587 info
.m_itemId
= index
;
1588 return InsertItem(info
);
1591 // For list view mode (only), inserts a column.
1592 long wxListCtrl::InsertColumn(long col
, const wxListItem
& item
)
1595 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
1597 if ( !(lvCol
.mask
& LVCF_WIDTH
) )
1599 // always give some width to the new column: this one is compatible
1600 // with the generic version
1601 lvCol
.mask
|= LVCF_WIDTH
;
1605 long n
= ListView_InsertColumn(GetHwnd(), col
, &lvCol
);
1610 else // failed to insert?
1612 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
1619 long wxListCtrl::InsertColumn(long col
,
1620 const wxString
& heading
,
1625 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1626 item
.m_text
= heading
;
1629 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1630 item
.m_width
= width
;
1632 item
.m_format
= format
;
1634 return InsertColumn(col
, item
);
1637 // scroll the control by the given number of pixels (exception: in list view,
1638 // dx is interpreted as number of columns)
1639 bool wxListCtrl::ScrollList(int dx
, int dy
)
1641 if ( !ListView_Scroll(GetHwnd(), dx
, dy
) )
1643 wxLogDebug(_T("ListView_Scroll(%d, %d) failed"), dx
, dy
);
1653 // fn is a function which takes 3 long arguments: item1, item2, data.
1654 // item1 is the long data associated with a first item (NOT the index).
1655 // item2 is the long data associated with a second item (NOT the index).
1656 // data is the same value as passed to SortItems.
1657 // The return value is a negative number if the first item should precede the second
1658 // item, a positive number of the second item should precede the first,
1659 // or zero if the two items are equivalent.
1661 // data is arbitrary data to be passed to the sort function.
1663 // Internal structures for proxying the user compare function
1664 // so that we can pass it the *real* user data
1666 // translate lParam data and call user func
1667 struct wxInternalDataSort
1669 wxListCtrlCompare user_fn
;
1673 int CALLBACK
wxInternalDataCompareFunc(LPARAM lParam1
, LPARAM lParam2
, LPARAM lParamSort
)
1675 struct wxInternalDataSort
*internalData
= (struct wxInternalDataSort
*) lParamSort
;
1677 wxListItemInternalData
*data1
= (wxListItemInternalData
*) lParam1
;
1678 wxListItemInternalData
*data2
= (wxListItemInternalData
*) lParam2
;
1680 long d1
= (data1
== NULL
? 0 : data1
->lParam
);
1681 long d2
= (data2
== NULL
? 0 : data2
->lParam
);
1683 return internalData
->user_fn(d1
, d2
, internalData
->data
);
1687 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1689 struct wxInternalDataSort internalData
;
1690 internalData
.user_fn
= fn
;
1691 internalData
.data
= data
;
1693 // WPARAM cast is needed for mingw/cygwin
1694 if ( !ListView_SortItems(GetHwnd(),
1695 wxInternalDataCompareFunc
,
1696 (WPARAM
) &internalData
) )
1698 wxLogDebug(_T("ListView_SortItems() failed"));
1708 // ----------------------------------------------------------------------------
1709 // message processing
1710 // ----------------------------------------------------------------------------
1712 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1714 if (cmd
== EN_UPDATE
)
1716 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1717 event
.SetEventObject( this );
1718 ProcessCommand(event
);
1721 else if (cmd
== EN_KILLFOCUS
)
1723 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1724 event
.SetEventObject( this );
1725 ProcessCommand(event
);
1732 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1735 // prepare the event
1736 // -----------------
1738 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1739 event
.SetEventObject(this);
1741 wxEventType eventType
= wxEVT_NULL
;
1743 NMHDR
*nmhdr
= (NMHDR
*)lParam
;
1745 // if your compiler is as broken as this, you should really change it: this
1746 // code is needed for normal operation! #ifdef below is only useful for
1747 // automatic rebuilds which are done with a very old compiler version
1748 #ifdef HDN_BEGINTRACKA
1750 // check for messages from the header (in report view)
1751 HWND hwndHdr
= ListView_GetHeader(GetHwnd());
1753 // is it a message from the header?
1754 if ( nmhdr
->hwndFrom
== hwndHdr
)
1756 HD_NOTIFY
*nmHDR
= (HD_NOTIFY
*)nmhdr
;
1758 event
.m_itemIndex
= -1;
1760 switch ( nmhdr
->code
)
1762 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1763 // TRACK messages even to ANSI programs: on my system I get
1764 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
1766 // work around is to simply catch both versions and hope that it
1767 // works (why should this message exist in ANSI and Unicode is
1768 // beyond me as it doesn't deal with strings at all...)
1770 // note that fr HDN_TRACK another possibility could be to use
1771 // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when
1772 // something other than the item width changes so we'd have to
1773 // filter out the unwanted events then
1774 case HDN_BEGINTRACKA
:
1775 case HDN_BEGINTRACKW
:
1776 eventType
= wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
;
1781 if ( eventType
== wxEVT_NULL
)
1782 eventType
= wxEVT_COMMAND_LIST_COL_DRAGGING
;
1787 if ( eventType
== wxEVT_NULL
)
1788 eventType
= wxEVT_COMMAND_LIST_COL_END_DRAG
;
1790 event
.m_item
.m_width
= nmHDR
->pitem
->cxy
;
1791 event
.m_col
= nmHDR
->iItem
;
1794 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
1795 case GN_CONTEXTMENU
:
1796 #endif //__WXWINCE__
1799 eventType
= wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
;
1802 // find the column clicked: we have to search for it
1803 // ourselves as the notification message doesn't provide
1806 // where did the click occur?
1808 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
1809 if(nmhdr
->code
== GN_CONTEXTMENU
) {
1810 ptClick
= ((NMRGINFO
*)nmhdr
)->ptAction
;
1812 #endif //__WXWINCE__
1813 if ( !::GetCursorPos(&ptClick
) )
1815 wxLogLastError(_T("GetCursorPos"));
1818 if ( !::ScreenToClient(GetHwnd(), &ptClick
) )
1820 wxLogLastError(_T("ScreenToClient(listctrl header)"));
1823 event
.m_pointDrag
.x
= ptClick
.x
;
1824 event
.m_pointDrag
.y
= ptClick
.y
;
1826 int colCount
= Header_GetItemCount(hwndHdr
);
1829 for ( int col
= 0; col
< colCount
; col
++ )
1831 if ( Header_GetItemRect(hwndHdr
, col
, &rect
) )
1833 if ( ::PtInRect(&rect
, ptClick
) )
1843 case HDN_GETDISPINFOW
:
1844 // letting Windows XP handle this message results in mysterious
1845 // crashes in comctl32.dll seemingly because of bad message
1848 // I have no idea what is the real cause of the bug (which is,
1849 // just to make things interesting, is impossible to reproduce
1850 // reliably) but ignoring all these messages does fix it and
1851 // doesn't seem to have any negative consequences
1855 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
1859 #endif // defined(HDN_BEGINTRACKA)
1860 if ( nmhdr
->hwndFrom
== GetHwnd() )
1862 // almost all messages use NM_LISTVIEW
1863 NM_LISTVIEW
*nmLV
= (NM_LISTVIEW
*)nmhdr
;
1865 const int iItem
= nmLV
->iItem
;
1868 // FreeAllInternalData will cause LVN_ITEMCHANG* messages, which can be
1869 // ignored for efficiency. It is done here because the internal data is in the
1870 // process of being deleted so we don't want to try and access it below.
1871 if ( m_ignoreChangeMessages
&&
1872 ( (nmLV
->hdr
.code
== LVN_ITEMCHANGED
) ||
1873 (nmLV
->hdr
.code
== LVN_ITEMCHANGING
)) )
1879 // If we have a valid item then check if there is a data value
1880 // associated with it and put it in the event.
1881 if ( iItem
>= 0 && iItem
< GetItemCount() )
1883 wxListItemInternalData
*internaldata
=
1884 wxGetInternalData(GetHwnd(), iItem
);
1887 event
.m_item
.m_data
= internaldata
->lParam
;
1890 bool processed
= true;
1891 switch ( nmhdr
->code
)
1893 case LVN_BEGINRDRAG
:
1894 eventType
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1898 if ( eventType
== wxEVT_NULL
)
1900 eventType
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1903 event
.m_itemIndex
= iItem
;
1904 event
.m_pointDrag
.x
= nmLV
->ptAction
.x
;
1905 event
.m_pointDrag
.y
= nmLV
->ptAction
.y
;
1908 // NB: we have to handle both *A and *W versions here because some
1909 // versions of comctl32.dll send ANSI messages even to the
1911 case LVN_BEGINLABELEDITA
:
1912 case LVN_BEGINLABELEDITW
:
1915 if ( nmhdr
->code
== LVN_BEGINLABELEDITA
)
1917 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
1919 else // LVN_BEGINLABELEDITW
1921 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
1924 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
1925 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, item
);
1926 event
.m_itemIndex
= event
.m_item
.m_itemId
;
1930 case LVN_ENDLABELEDITA
:
1931 case LVN_ENDLABELEDITW
:
1934 if ( nmhdr
->code
== LVN_ENDLABELEDITA
)
1936 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
1938 else // LVN_ENDLABELEDITW
1940 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
1943 // was editing cancelled?
1944 const LV_ITEM
& lvi
= (LV_ITEM
)item
;
1945 if ( !lvi
.pszText
|| lvi
.iItem
== -1 )
1947 // don't keep a stale wxTextCtrl around
1950 // EDIT control will be deleted by the list control itself so
1951 // prevent us from deleting it as well
1952 m_textCtrl
->UnsubclassWin();
1953 m_textCtrl
->SetHWND(0);
1958 event
.SetEditCanceled(true);
1961 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
1962 wxConvertFromMSWListItem(NULL
, event
.m_item
, item
);
1963 event
.m_itemIndex
= event
.m_item
.m_itemId
;
1967 case LVN_COLUMNCLICK
:
1968 eventType
= wxEVT_COMMAND_LIST_COL_CLICK
;
1969 event
.m_itemIndex
= -1;
1970 event
.m_col
= nmLV
->iSubItem
;
1973 case LVN_DELETEALLITEMS
:
1974 eventType
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
1975 event
.m_itemIndex
= -1;
1978 case LVN_DELETEITEM
:
1981 // this should be prevented by the post-processing code
1982 // below, but "just in case"
1986 eventType
= wxEVT_COMMAND_LIST_DELETE_ITEM
;
1987 event
.m_itemIndex
= iItem
;
1988 // delete the assoicated internal data
1989 wxDeleteInternalData(this, iItem
);
1992 #if WXWIN_COMPATIBILITY_2_4
1993 case LVN_SETDISPINFO
:
1995 eventType
= wxEVT_COMMAND_LIST_SET_INFO
;
1996 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1997 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, info
->item
);
2002 case LVN_INSERTITEM
:
2003 eventType
= wxEVT_COMMAND_LIST_INSERT_ITEM
;
2004 event
.m_itemIndex
= iItem
;
2007 case LVN_ITEMCHANGED
:
2008 // we translate this catch all message into more interesting
2009 // (and more easy to process) wxWidgets events
2011 // first of all, we deal with the state change events only and
2012 // only for valid items (item == -1 for the virtual list
2014 if ( nmLV
->uChanged
& LVIF_STATE
&& iItem
!= -1 )
2016 // temp vars for readability
2017 const UINT stOld
= nmLV
->uOldState
;
2018 const UINT stNew
= nmLV
->uNewState
;
2020 event
.m_item
.SetId(iItem
);
2021 event
.m_item
.SetMask(wxLIST_MASK_TEXT
|
2024 GetItem(event
.m_item
);
2026 // has the focus changed?
2027 if ( !(stOld
& LVIS_FOCUSED
) && (stNew
& LVIS_FOCUSED
) )
2029 eventType
= wxEVT_COMMAND_LIST_ITEM_FOCUSED
;
2030 event
.m_itemIndex
= iItem
;
2033 if ( (stNew
& LVIS_SELECTED
) != (stOld
& LVIS_SELECTED
) )
2035 if ( eventType
!= wxEVT_NULL
)
2037 // focus and selection have both changed: send the
2038 // focus event from here and the selection one
2040 event
.SetEventType(eventType
);
2041 (void)GetEventHandler()->ProcessEvent(event
);
2043 else // no focus event to send
2045 // then need to set m_itemIndex as it wasn't done
2047 event
.m_itemIndex
= iItem
;
2050 eventType
= stNew
& LVIS_SELECTED
2051 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2052 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
2056 if ( eventType
== wxEVT_NULL
)
2058 // not an interesting event for us
2066 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
2067 WORD wVKey
= info
->wVKey
;
2069 // get the current selection
2070 long lItem
= GetNextItem(-1,
2072 wxLIST_STATE_SELECTED
);
2074 // <Enter> or <Space> activate the selected item if any (but
2075 // not with Shift and/or Ctrl as then they have a predefined
2076 // meaning for the list view)
2078 (wVKey
== VK_RETURN
|| wVKey
== VK_SPACE
) &&
2079 !(wxIsShiftDown() || wxIsCtrlDown()) )
2081 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2085 eventType
= wxEVT_COMMAND_LIST_KEY_DOWN
;
2087 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
2088 // value which should be used as is
2089 int code
= wxCharCodeMSWToWX(wVKey
);
2090 event
.m_code
= code
? code
: wVKey
;
2094 event
.m_item
.m_itemId
= lItem
;
2098 // fill the other fields too
2099 event
.m_item
.m_text
= GetItemText(lItem
);
2100 event
.m_item
.m_data
= GetItemData(lItem
);
2106 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2108 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2113 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2114 // if it happened on an item (and not on empty place)
2121 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2122 event
.m_itemIndex
= iItem
;
2123 event
.m_item
.m_text
= GetItemText(iItem
);
2124 event
.m_item
.m_data
= GetItemData(iItem
);
2127 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2128 case GN_CONTEXTMENU
:
2129 #endif //__WXWINCE__
2131 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2132 // don't do anything else
2133 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2138 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2139 LV_HITTESTINFO lvhti
;
2140 wxZeroMemory(lvhti
);
2142 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2143 if(nmhdr
->code
== GN_CONTEXTMENU
) {
2144 lvhti
.pt
= ((NMRGINFO
*)nmhdr
)->ptAction
;
2146 #endif //__WXWINCE__
2147 ::GetCursorPos(&(lvhti
.pt
));
2148 ::ScreenToClient(GetHwnd(),&(lvhti
.pt
));
2149 if ( ListView_HitTest(GetHwnd(),&lvhti
) != -1 )
2151 if ( lvhti
.flags
& LVHT_ONITEM
)
2153 eventType
= wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
;
2154 event
.m_itemIndex
= lvhti
.iItem
;
2155 event
.m_pointDrag
.x
= lvhti
.pt
.x
;
2156 event
.m_pointDrag
.y
= lvhti
.pt
.y
;
2161 #ifdef NM_CUSTOMDRAW
2163 *result
= OnCustomDraw(lParam
);
2165 return *result
!= CDRF_DODEFAULT
;
2166 #endif // _WIN32_IE >= 0x300
2168 case LVN_ODCACHEHINT
:
2170 const NM_CACHEHINT
*cacheHint
= (NM_CACHEHINT
*)lParam
;
2172 eventType
= wxEVT_COMMAND_LIST_CACHE_HINT
;
2174 // we get some really stupid cache hints like ones for
2175 // items in range 0..0 for an empty control or, after
2176 // deleting an item, for items in invalid range -- filter
2178 if ( cacheHint
->iFrom
> cacheHint
->iTo
)
2181 event
.m_oldItemIndex
= cacheHint
->iFrom
;
2183 const long iMax
= GetItemCount();
2184 event
.m_itemIndex
= cacheHint
->iTo
< iMax
? cacheHint
->iTo
2189 #ifdef HAVE_NMLVFINDITEM
2190 case LVN_ODFINDITEM
:
2191 // this message is only used with the virtual list control but
2192 // even there we don't want to always use it: in a control with
2193 // sufficiently big number of items (defined as > 1000 here),
2194 // accidentally pressing a key could result in hanging an
2195 // application waiting while it performs linear search
2196 if ( IsVirtual() && GetItemCount() <= 1000 )
2198 NMLVFINDITEM
* pFindInfo
= (NMLVFINDITEM
*)lParam
;
2200 // no match by default
2203 // we only handle string-based searches here
2205 // TODO: what about LVFI_PARTIAL, should we handle this?
2206 if ( !(pFindInfo
->lvfi
.flags
& LVFI_STRING
) )
2211 const wxChar
* const searchstr
= pFindInfo
->lvfi
.psz
;
2212 const size_t len
= wxStrlen(searchstr
);
2214 // this is the first item we should examine, search from it
2215 // wrapping if necessary
2216 const int startPos
= pFindInfo
->iStart
;
2217 const int maxPos
= GetItemCount();
2218 wxCHECK_MSG( startPos
<= maxPos
, false,
2219 _T("bad starting position in LVN_ODFINDITEM") );
2221 int currentPos
= startPos
;
2224 // wrap to the beginning if necessary
2225 if ( currentPos
== maxPos
)
2227 // somewhat surprizingly, LVFI_WRAP isn't set in
2228 // flags but we still should wrap
2232 // does this item begin with searchstr?
2233 if ( wxStrnicmp(searchstr
,
2234 GetItemText(currentPos
), len
) == 0 )
2236 *result
= currentPos
;
2240 while ( ++currentPos
!= startPos
);
2242 if ( *result
== -1 )
2248 SetItemState(*result
,
2249 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
,
2250 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
);
2251 EnsureVisible(*result
);
2259 #endif // HAVE_NMLVFINDITEM
2261 case LVN_GETDISPINFO
:
2264 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
2266 LV_ITEM
& lvi
= info
->item
;
2267 long item
= lvi
.iItem
;
2269 if ( lvi
.mask
& LVIF_TEXT
)
2271 wxString text
= OnGetItemText(item
, lvi
.iSubItem
);
2272 wxStrncpy(lvi
.pszText
, text
, lvi
.cchTextMax
);
2275 // see comment at the end of wxListCtrl::GetColumn()
2276 #ifdef NM_CUSTOMDRAW
2277 if ( lvi
.mask
& LVIF_IMAGE
)
2279 lvi
.iImage
= OnGetItemColumnImage(item
, lvi
.iSubItem
);
2281 #endif // NM_CUSTOMDRAW
2283 // a little dose of healthy paranoia: as we never use
2284 // LVM_SETCALLBACKMASK we're not supposed to get these ones
2285 wxASSERT_MSG( !(lvi
.mask
& LVIF_STATE
),
2286 _T("we don't support state callbacks yet!") );
2297 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
2301 // where did this one come from?
2305 // process the event
2306 // -----------------
2308 event
.SetEventType(eventType
);
2310 bool processed
= GetEventHandler()->ProcessEvent(event
);
2314 switch ( nmhdr
->code
)
2316 case LVN_DELETEALLITEMS
:
2317 // always return true to suppress all additional LVN_DELETEITEM
2318 // notifications - this makes deleting all items from a list ctrl
2322 // also, we may free all user data now (couldn't do it before as
2323 // the user should have access to it in OnDeleteAllItems() handler)
2324 FreeAllInternalData();
2326 // the control is empty now, synchronize the cached number of items
2327 // with the real one
2331 case LVN_ENDLABELEDITA
:
2332 case LVN_ENDLABELEDITW
:
2333 // logic here is inverted compared to all the other messages
2334 *result
= event
.IsAllowed();
2336 // don't keep a stale wxTextCtrl around
2339 // EDIT control will be deleted by the list control itself so
2340 // prevent us from deleting it as well
2341 m_textCtrl
->UnsubclassWin();
2342 m_textCtrl
->SetHWND(0);
2351 *result
= !event
.IsAllowed();
2356 // ----------------------------------------------------------------------------
2357 // custom draw stuff
2358 // ----------------------------------------------------------------------------
2360 // see comment at the end of wxListCtrl::GetColumn()
2361 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2363 static RECT
GetCustomDrawnItemRect(const NMCUSTOMDRAW
& nmcd
)
2366 ListView_GetItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, &rc
, LVIR_BOUNDS
);
2369 ListView_GetItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, &rcIcon
, LVIR_ICON
);
2371 // exclude the icon part, neither the selection background nor focus rect
2373 rc
.left
= rcIcon
.right
;
2378 static void HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
)
2380 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2383 HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2384 const DWORD item
= nmcd
.dwItemSpec
;
2387 // the font must be valid, otherwise we wouldn't be painting the item at all
2388 SelectInHDC
selFont(hdc
, hfont
);
2390 // get the rectangle to paint
2392 ListView_GetSubItemRect(hwndList
, item
, pLVCD
->iSubItem
, LVIR_BOUNDS
, &rc
);
2393 if ( !pLVCD
->iSubItem
)
2395 // broken ListView_GetSubItemRect() returns the entire item rect for
2396 // 0th subitem while we really need just the part for this column
2398 ListView_GetSubItemRect(hwndList
, item
, 1, LVIR_BOUNDS
, &rc2
);
2400 rc
.right
= rc2
.left
;
2403 else // not first subitem
2408 // get the image and text to draw
2412 it
.mask
= LVIF_TEXT
| LVIF_IMAGE
;
2414 it
.iSubItem
= pLVCD
->iSubItem
;
2416 it
.cchTextMax
= WXSIZEOF(text
);
2417 ListView_GetItem(hwndList
, &it
);
2419 HIMAGELIST himl
= ListView_GetImageList(hwndList
, LVSIL_SMALL
);
2420 if ( himl
&& ImageList_GetImageCount(himl
) )
2422 if ( it
.iImage
!= -1 )
2424 ImageList_Draw(himl
, it
.iImage
, hdc
, rc
.left
, rc
.top
,
2425 nmcd
.uItemState
& CDIS_SELECTED
? ILD_SELECTED
2429 // notice that even if this item doesn't have any image, the list
2430 // control still leaves space for the image in the first column if the
2431 // image list is not empty (presumably so that items with and without
2433 if ( it
.iImage
!= -1 || it
.iSubItem
== 0 )
2436 ImageList_GetIconSize(himl
, &wImage
, &hImage
);
2438 rc
.left
+= wImage
+ 2;
2442 ::SetBkMode(hdc
, TRANSPARENT
);
2444 // TODO: support for centred/right aligned columns
2445 ::DrawText(hdc
, text
, -1, &rc
,
2448 #endif // __WXWINCE__
2449 DT_NOPREFIX
| DT_SINGLELINE
| DT_VCENTER
);
2452 static void HandleItemPostpaint(NMCUSTOMDRAW nmcd
)
2454 if ( nmcd
.uItemState
& CDIS_FOCUS
)
2456 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2458 // don't use the provided HDC, it's in some strange state by now
2459 ::DrawFocusRect(WindowHDC(nmcd
.hdr
.hwndFrom
), &rc
);
2463 // pLVCD->clrText and clrTextBk should contain the colours to use
2464 static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
)
2466 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
; // just a shortcut
2468 const HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2469 const int item
= nmcd
.dwItemSpec
;
2471 // unfortunately we can't trust CDIS_SELECTED, it is often set even when
2472 // the item is not at all selected for some reason (comctl32 6), but we
2473 // also can't always trust ListView_GetItem() as it could return the old
2474 // item status if we're called just after the (de)selection, so remember
2475 // the last item to gain selection and also check for it here
2476 for ( int i
= -1;; )
2478 i
= ListView_GetNextItem(hwndList
, i
, LVNI_SELECTED
);
2481 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2487 nmcd
.uItemState
|= CDIS_SELECTED
;
2492 // same thing for CDIS_FOCUS (except simpler as there is only one of them)
2493 if ( ::GetFocus() == hwndList
&&
2494 ListView_GetNextItem(hwndList
, (WPARAM
)-1, LVNI_FOCUSED
) == item
)
2496 nmcd
.uItemState
|= CDIS_FOCUS
;
2500 nmcd
.uItemState
&= ~CDIS_FOCUS
;
2503 if ( nmcd
.uItemState
& CDIS_SELECTED
)
2505 int syscolFg
, syscolBg
;
2506 if ( ::GetFocus() == hwndList
)
2508 syscolFg
= COLOR_HIGHLIGHTTEXT
;
2509 syscolBg
= COLOR_HIGHLIGHT
;
2511 else // selected but unfocused
2513 syscolFg
= COLOR_WINDOWTEXT
;
2514 syscolBg
= COLOR_BTNFACE
;
2516 // don't grey out the icon in this case neither
2517 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2520 pLVCD
->clrText
= ::GetSysColor(syscolFg
);
2521 pLVCD
->clrTextBk
= ::GetSysColor(syscolBg
);
2523 //else: not selected, use normal colours from pLVCD
2526 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2528 ::SetTextColor(hdc
, pLVCD
->clrText
);
2529 ::FillRect(hdc
, &rc
, AutoHBRUSH(pLVCD
->clrTextBk
));
2531 // we could use CDRF_NOTIFYSUBITEMDRAW here but it results in weird repaint
2532 // problems so just draw everything except the focus rect from here instead
2533 const int colCount
= Header_GetItemCount(ListView_GetHeader(hwndList
));
2534 for ( int col
= 0; col
< colCount
; col
++ )
2536 pLVCD
->iSubItem
= col
;
2537 HandleSubItemPrepaint(pLVCD
, hfont
);
2540 HandleItemPostpaint(nmcd
);
2543 static WXLPARAM
HandleItemPrepaint(wxListCtrl
*listctrl
,
2544 LPNMLVCUSTOMDRAW pLVCD
,
2545 wxListItemAttr
*attr
)
2549 // nothing to do for this item
2550 return CDRF_DODEFAULT
;
2554 // set the colours to use for text drawing
2555 pLVCD
->clrText
= attr
->HasTextColour()
2556 ? wxColourToRGB(attr
->GetTextColour())
2557 : wxColourToRGB(listctrl
->GetTextColour());
2558 pLVCD
->clrTextBk
= attr
->HasBackgroundColour()
2559 ? wxColourToRGB(attr
->GetBackgroundColour())
2560 : wxColourToRGB(listctrl
->GetBackgroundColour());
2562 // select the font if non default one is specified
2563 if ( attr
->HasFont() )
2565 wxFont font
= attr
->GetFont();
2566 if ( font
.GetEncoding() != wxFONTENCODING_SYSTEM
)
2568 // the standard control ignores the font encoding/charset, at least
2569 // with recent comctl32.dll versions (5 and 6, it uses to work with
2570 // 4.something) so we have to draw the item entirely ourselves in
2572 HandleItemPaint(pLVCD
, GetHfontOf(font
));
2573 return CDRF_SKIPDEFAULT
;
2576 ::SelectObject(pLVCD
->nmcd
.hdc
, GetHfontOf(font
));
2578 return CDRF_NEWFONT
;
2581 return CDRF_DODEFAULT
;
2584 WXLPARAM
wxListCtrl::OnCustomDraw(WXLPARAM lParam
)
2586 LPNMLVCUSTOMDRAW pLVCD
= (LPNMLVCUSTOMDRAW
)lParam
;
2587 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2588 switch ( nmcd
.dwDrawStage
)
2591 // if we've got any items with non standard attributes,
2592 // notify us before painting each item
2594 // for virtual controls, always suppose that we have attributes as
2595 // there is no way to check for this
2596 if ( IsVirtual() || m_hasAnyAttr
)
2597 return CDRF_NOTIFYITEMDRAW
;
2600 case CDDS_ITEMPREPAINT
:
2601 const int item
= nmcd
.dwItemSpec
;
2603 // we get this message with item == 0 for an empty control, we
2604 // must ignore it as calling OnGetItemAttr() would be wrong
2605 if ( item
< 0 || item
>= GetItemCount() )
2608 return HandleItemPrepaint(this, pLVCD
, DoGetItemAttr(item
));
2611 return CDRF_DODEFAULT
;
2614 #endif // NM_CUSTOMDRAW supported
2616 // Necessary for drawing hrules and vrules, if specified
2617 void wxListCtrl::OnPaint(wxPaintEvent
& event
)
2619 bool drawHRules
= HasFlag(wxLC_HRULES
);
2620 bool drawVRules
= HasFlag(wxLC_VRULES
);
2622 if (!InReportView() || !drawHRules
&& !drawVRules
)
2630 wxControl::OnPaint(event
);
2632 // Reset the device origin since it may have been set
2633 dc
.SetDeviceOrigin(0, 0);
2635 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
), 1, wxSOLID
);
2637 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2639 wxSize clientSize
= GetClientSize();
2642 int itemCount
= GetItemCount();
2646 long top
= GetTopItem();
2647 for (i
= top
; i
< top
+ GetCountPerPage() + 1; i
++)
2649 if (GetItemRect(i
, itemRect
))
2651 int cy
= itemRect
.GetTop();
2652 if (i
!= 0) // Don't draw the first one
2654 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2657 if (i
== itemCount
- 1)
2659 cy
= itemRect
.GetBottom();
2660 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2666 if (drawVRules
&& (i
> -1))
2668 wxRect firstItemRect
;
2669 GetItemRect(0, firstItemRect
);
2671 if (GetItemRect(i
, itemRect
))
2673 // this is a fix for bug 673394: erase the pixels which we would
2674 // otherwise leave on the screen
2675 static const int gap
= 2;
2676 dc
.SetPen(*wxTRANSPARENT_PEN
);
2677 dc
.SetBrush(wxBrush(GetBackgroundColour()));
2678 dc
.DrawRectangle(0, firstItemRect
.GetY() - gap
,
2679 clientSize
.GetWidth(), gap
);
2682 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2683 int x
= itemRect
.GetX();
2684 for (int col
= 0; col
< GetColumnCount(); col
++)
2686 int colWidth
= GetColumnWidth(col
);
2688 dc
.DrawLine(x
-1, firstItemRect
.GetY() - gap
,
2689 x
-1, itemRect
.GetBottom());
2696 wxListCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2702 // we should bypass our own WM_PRINT handling as we don't handle
2703 // PRF_CHILDREN flag, so leave it to the native control itself
2704 return MSWDefWindowProc(nMsg
, wParam
, lParam
);
2707 case WM_CONTEXTMENU
:
2708 // because this message is propagated upwards the child-parent
2709 // chain, we get it for the right clicks on the header window but
2710 // this is confusing in wx as right clicking there already
2711 // generates a separate wxEVT_COMMAND_LIST_COL_RIGHT_CLICK event
2712 // so just ignore them
2713 if ( (HWND
)wParam
== ListView_GetHeader(GetHwnd()) )
2718 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
2721 // ----------------------------------------------------------------------------
2722 // virtual list controls
2723 // ----------------------------------------------------------------------------
2725 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
2727 // this is a pure virtual function, in fact - which is not really pure
2728 // because the controls which are not virtual don't need to implement it
2729 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2731 return wxEmptyString
;
2734 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
2736 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
2738 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
2742 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
2745 return OnGetItemImage(item
);
2750 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
2752 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
2753 _T("invalid item index in OnGetItemAttr()") );
2755 // no attributes by default
2759 wxListItemAttr
*wxListCtrl::DoGetItemAttr(long item
) const
2761 return IsVirtual() ? OnGetItemAttr(item
)
2762 : wxGetInternalDataAttr(this, item
);
2765 void wxListCtrl::SetItemCount(long count
)
2767 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2769 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT
, (WPARAM
)count
,
2770 LVSICF_NOSCROLL
| LVSICF_NOINVALIDATEALL
) )
2772 wxLogLastError(_T("ListView_SetItemCount"));
2775 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
2776 wxT("m_count should match ListView_GetItemCount"));
2779 void wxListCtrl::RefreshItem(long item
)
2781 // strangely enough, ListView_Update() results in much more flicker here
2782 // than a dumb Refresh() -- why?
2784 if ( !ListView_Update(GetHwnd(), item
) )
2786 wxLogLastError(_T("ListView_Update"));
2790 GetItemRect(item
, rect
);
2795 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
2797 wxRect rect1
, rect2
;
2798 GetItemRect(itemFrom
, rect1
);
2799 GetItemRect(itemTo
, rect2
);
2801 wxRect rect
= rect1
;
2802 rect
.height
= rect2
.GetBottom() - rect1
.GetTop();
2807 // ----------------------------------------------------------------------------
2808 // internal data stuff
2809 // ----------------------------------------------------------------------------
2811 static wxListItemInternalData
*wxGetInternalData(HWND hwnd
, long itemId
)
2814 it
.mask
= LVIF_PARAM
;
2817 if ( !ListView_GetItem(hwnd
, &it
) )
2820 return (wxListItemInternalData
*) it
.lParam
;
2824 wxListItemInternalData
*wxGetInternalData(const wxListCtrl
*ctl
, long itemId
)
2826 return wxGetInternalData(GetHwndOf(ctl
), itemId
);
2830 wxListItemAttr
*wxGetInternalDataAttr(const wxListCtrl
*ctl
, long itemId
)
2832 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
2834 return data
? data
->attr
: NULL
;
2837 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
)
2839 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
2843 memset(&item
, 0, sizeof(item
));
2844 item
.iItem
= itemId
;
2845 item
.mask
= LVIF_PARAM
;
2846 item
.lParam
= (LPARAM
) 0;
2847 ListView_SetItem((HWND
)ctl
->GetHWND(), &item
);
2852 // ----------------------------------------------------------------------------
2853 // wxWin <-> MSW items conversions
2854 // ----------------------------------------------------------------------------
2856 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
2860 wxListItemInternalData
*internaldata
=
2861 (wxListItemInternalData
*) lvItem
.lParam
;
2864 info
.m_data
= internaldata
->lParam
;
2868 info
.m_stateMask
= 0;
2869 info
.m_itemId
= lvItem
.iItem
;
2871 long oldMask
= lvItem
.mask
;
2873 bool needText
= false;
2874 if (hwndListCtrl
!= 0)
2876 if ( lvItem
.mask
& LVIF_TEXT
)
2883 lvItem
.pszText
= new wxChar
[513];
2884 lvItem
.cchTextMax
= 512;
2886 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
2887 ::SendMessage(hwndListCtrl
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
);
2890 if ( lvItem
.mask
& LVIF_STATE
)
2892 info
.m_mask
|= wxLIST_MASK_STATE
;
2894 if ( lvItem
.stateMask
& LVIS_CUT
)
2896 info
.m_stateMask
|= wxLIST_STATE_CUT
;
2897 if ( lvItem
.state
& LVIS_CUT
)
2898 info
.m_state
|= wxLIST_STATE_CUT
;
2900 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
2902 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
2903 if ( lvItem
.state
& LVIS_DROPHILITED
)
2904 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
2906 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
2908 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
2909 if ( lvItem
.state
& LVIS_FOCUSED
)
2910 info
.m_state
|= wxLIST_STATE_FOCUSED
;
2912 if ( lvItem
.stateMask
& LVIS_SELECTED
)
2914 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
2915 if ( lvItem
.state
& LVIS_SELECTED
)
2916 info
.m_state
|= wxLIST_STATE_SELECTED
;
2920 if ( lvItem
.mask
& LVIF_TEXT
)
2922 info
.m_mask
|= wxLIST_MASK_TEXT
;
2923 info
.m_text
= lvItem
.pszText
;
2925 if ( lvItem
.mask
& LVIF_IMAGE
)
2927 info
.m_mask
|= wxLIST_MASK_IMAGE
;
2928 info
.m_image
= lvItem
.iImage
;
2930 if ( lvItem
.mask
& LVIF_PARAM
)
2931 info
.m_mask
|= wxLIST_MASK_DATA
;
2932 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
2933 info
.m_mask
|= wxLIST_SET_ITEM
;
2934 info
.m_col
= lvItem
.iSubItem
;
2939 delete[] lvItem
.pszText
;
2941 lvItem
.mask
= oldMask
;
2944 static void wxConvertToMSWFlags(long state
, long stateMask
, LV_ITEM
& lvItem
)
2946 if (stateMask
& wxLIST_STATE_CUT
)
2948 lvItem
.stateMask
|= LVIS_CUT
;
2949 if (state
& wxLIST_STATE_CUT
)
2950 lvItem
.state
|= LVIS_CUT
;
2952 if (stateMask
& wxLIST_STATE_DROPHILITED
)
2954 lvItem
.stateMask
|= LVIS_DROPHILITED
;
2955 if (state
& wxLIST_STATE_DROPHILITED
)
2956 lvItem
.state
|= LVIS_DROPHILITED
;
2958 if (stateMask
& wxLIST_STATE_FOCUSED
)
2960 lvItem
.stateMask
|= LVIS_FOCUSED
;
2961 if (state
& wxLIST_STATE_FOCUSED
)
2962 lvItem
.state
|= LVIS_FOCUSED
;
2964 if (stateMask
& wxLIST_STATE_SELECTED
)
2966 lvItem
.stateMask
|= LVIS_SELECTED
;
2967 if (state
& wxLIST_STATE_SELECTED
)
2968 lvItem
.state
|= LVIS_SELECTED
;
2972 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
2973 const wxListItem
& info
,
2976 lvItem
.iItem
= (int) info
.m_itemId
;
2978 lvItem
.iImage
= info
.m_image
;
2979 lvItem
.stateMask
= 0;
2982 lvItem
.iSubItem
= info
.m_col
;
2984 if (info
.m_mask
& wxLIST_MASK_STATE
)
2986 lvItem
.mask
|= LVIF_STATE
;
2988 wxConvertToMSWFlags(info
.m_state
, info
.m_stateMask
, lvItem
);
2991 if (info
.m_mask
& wxLIST_MASK_TEXT
)
2993 lvItem
.mask
|= LVIF_TEXT
;
2994 if ( ctrl
->HasFlag(wxLC_USER_TEXT
) )
2996 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
3000 // pszText is not const, hence the cast
3001 lvItem
.pszText
= (wxChar
*)info
.m_text
.c_str();
3002 if ( lvItem
.pszText
)
3003 lvItem
.cchTextMax
= info
.m_text
.length();
3005 lvItem
.cchTextMax
= 0;
3008 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
3009 lvItem
.mask
|= LVIF_IMAGE
;
3012 static void wxConvertToMSWListCol(HWND hwndList
,
3014 const wxListItem
& item
,
3017 wxZeroMemory(lvCol
);
3019 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
3021 lvCol
.mask
|= LVCF_TEXT
;
3022 lvCol
.pszText
= (wxChar
*)item
.m_text
.c_str(); // cast is safe
3025 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
3027 lvCol
.mask
|= LVCF_FMT
;
3029 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
3030 lvCol
.fmt
= LVCFMT_LEFT
;
3031 else if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
3032 lvCol
.fmt
= LVCFMT_RIGHT
;
3033 else if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
3034 lvCol
.fmt
= LVCFMT_CENTER
;
3037 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
3039 lvCol
.mask
|= LVCF_WIDTH
;
3040 if ( item
.m_width
== wxLIST_AUTOSIZE
)
3041 lvCol
.cx
= LVSCW_AUTOSIZE
;
3042 else if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3043 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
3045 lvCol
.cx
= item
.m_width
;
3048 // see comment at the end of wxListCtrl::GetColumn()
3049 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
3050 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
3052 if ( wxTheApp
->GetComCtl32Version() >= 470 )
3054 lvCol
.mask
|= LVCF_IMAGE
;
3056 // we use LVCFMT_BITMAP_ON_RIGHT because the images on the right
3057 // seem to be generally nicer than on the left and the generic
3058 // version only draws them on the right (we don't have a flag to
3059 // specify the image location anyhow)
3061 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
3062 // make any difference in my tests -- but maybe we should?
3063 if ( item
.m_image
!= -1 )
3065 // as we're going to overwrite the format field, get its
3066 // current value first -- unless we want to overwrite it anyhow
3067 if ( !(lvCol
.mask
& LVCF_FMT
) )
3070 wxZeroMemory(lvColOld
);
3071 lvColOld
.mask
= LVCF_FMT
;
3072 if ( ListView_GetColumn(hwndList
, col
, &lvColOld
) )
3074 lvCol
.fmt
= lvColOld
.fmt
;
3077 lvCol
.mask
|= LVCF_FMT
;
3080 lvCol
.fmt
|= LVCFMT_BITMAP_ON_RIGHT
| LVCFMT_IMAGE
;
3083 lvCol
.iImage
= item
.m_image
;
3085 //else: it doesn't support item images anyhow
3087 #endif // _WIN32_IE >= 0x0300
3090 #endif // wxUSE_LISTCTRL