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 (a 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 if ( InReportView() )
342 MSWSetExListStyles();
347 void wxListCtrl::MSWSetExListStyles()
349 // for comctl32.dll v 4.70+ we want to have some non default extended
350 // styles because it's prettier (and also because wxGTK does it like this)
351 if ( wxApp::GetComCtl32Version() >= 470 )
355 GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE
, 0,
356 // LVS_EX_LABELTIP shouldn't be used under Windows CE where it's
357 // not defined in the SDK headers
358 #ifdef LVS_EX_LABELTIP
361 LVS_EX_FULLROWSELECT
|
362 LVS_EX_SUBITEMIMAGES
|
363 // normally this should be governed by a style as it's probably not
364 // always appropriate, but we don't have any free styles left and
365 // it seems better to enable it by default than disable
366 LVS_EX_HEADERDRAGDROP
371 WXDWORD
wxListCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
373 WXDWORD wstyle
= wxControl::MSWGetStyle(style
, exstyle
);
375 wstyle
|= LVS_SHAREIMAGELISTS
| LVS_SHOWSELALWAYS
;
380 #define MAP_MODE_STYLE(wx, ms) \
381 if ( style & (wx) ) { wstyle |= (ms); nModes++; }
382 #else // !__WXDEBUG__
383 #define MAP_MODE_STYLE(wx, ms) \
384 if ( style & (wx) ) wstyle |= (ms);
385 #endif // __WXDEBUG__
387 MAP_MODE_STYLE(wxLC_ICON
, LVS_ICON
)
388 MAP_MODE_STYLE(wxLC_SMALL_ICON
, LVS_SMALLICON
)
389 MAP_MODE_STYLE(wxLC_LIST
, LVS_LIST
)
390 MAP_MODE_STYLE(wxLC_REPORT
, LVS_REPORT
)
392 wxASSERT_MSG( nModes
== 1,
393 _T("wxListCtrl style should have exactly one mode bit set") );
395 #undef MAP_MODE_STYLE
397 if ( style
& wxLC_ALIGN_LEFT
)
398 wstyle
|= LVS_ALIGNLEFT
;
400 if ( style
& wxLC_ALIGN_TOP
)
401 wstyle
|= LVS_ALIGNTOP
;
403 if ( style
& wxLC_AUTOARRANGE
)
404 wstyle
|= LVS_AUTOARRANGE
;
406 if ( style
& wxLC_NO_SORT_HEADER
)
407 wstyle
|= LVS_NOSORTHEADER
;
409 if ( style
& wxLC_NO_HEADER
)
410 wstyle
|= LVS_NOCOLUMNHEADER
;
412 if ( style
& wxLC_EDIT_LABELS
)
413 wstyle
|= LVS_EDITLABELS
;
415 if ( style
& wxLC_SINGLE_SEL
)
416 wstyle
|= LVS_SINGLESEL
;
418 if ( style
& wxLC_SORT_ASCENDING
)
420 wstyle
|= LVS_SORTASCENDING
;
422 wxASSERT_MSG( !(style
& wxLC_SORT_DESCENDING
),
423 _T("can't sort in ascending and descending orders at once") );
425 else if ( style
& wxLC_SORT_DESCENDING
)
426 wstyle
|= LVS_SORTDESCENDING
;
428 #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
429 if ( style
& wxLC_VIRTUAL
)
431 int ver
= wxApp::GetComCtl32Version();
434 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."),
435 ver
/ 100, ver
% 100);
438 wstyle
|= LVS_OWNERDATA
;
440 #endif // ancient cygwin
445 void wxListCtrl::UpdateStyle()
449 // The new window view style
450 DWORD dwStyleNew
= MSWGetStyle(m_windowStyle
, NULL
);
452 // some styles are not returned by MSWGetStyle()
454 dwStyleNew
|= WS_VISIBLE
;
456 // Get the current window style.
457 DWORD dwStyleOld
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
459 // we don't have wxVSCROLL style, but the list control may have it,
460 // don't change it then
461 dwStyleNew
|= dwStyleOld
& (WS_HSCROLL
| WS_VSCROLL
);
463 // Only set the window style if the view bits have changed.
464 if ( dwStyleOld
!= dwStyleNew
)
466 ::SetWindowLong(GetHwnd(), GWL_STYLE
, dwStyleNew
);
468 // if we switched to the report view, set the extended styles for
470 if ( !(dwStyleOld
& LVS_REPORT
) && (dwStyleNew
& LVS_REPORT
) )
471 MSWSetExListStyles();
476 void wxListCtrl::FreeAllInternalData()
478 if (m_AnyInternalData
)
480 int n
= GetItemCount();
482 m_ignoreChangeMessages
= true;
483 for (int i
= 0; i
< n
; i
++)
484 wxDeleteInternalData(this, i
);
485 m_ignoreChangeMessages
= false;
487 m_AnyInternalData
= false;
491 void wxListCtrl::DeleteEditControl()
495 m_textCtrl
->UnsubclassWin();
496 m_textCtrl
->SetHWND(0);
502 wxListCtrl::~wxListCtrl()
504 FreeAllInternalData();
508 if (m_ownsImageListNormal
)
509 delete m_imageListNormal
;
510 if (m_ownsImageListSmall
)
511 delete m_imageListSmall
;
512 if (m_ownsImageListState
)
513 delete m_imageListState
;
516 // ----------------------------------------------------------------------------
517 // set/get/change style
518 // ----------------------------------------------------------------------------
520 // Add or remove a single window style
521 void wxListCtrl::SetSingleStyle(long style
, bool add
)
523 long flag
= GetWindowStyleFlag();
525 // Get rid of conflicting styles
528 if ( style
& wxLC_MASK_TYPE
)
529 flag
= flag
& ~wxLC_MASK_TYPE
;
530 if ( style
& wxLC_MASK_ALIGN
)
531 flag
= flag
& ~wxLC_MASK_ALIGN
;
532 if ( style
& wxLC_MASK_SORT
)
533 flag
= flag
& ~wxLC_MASK_SORT
;
541 SetWindowStyleFlag(flag
);
544 // Set the whole window style
545 void wxListCtrl::SetWindowStyleFlag(long flag
)
547 if ( flag
!= m_windowStyle
)
549 wxControl::SetWindowStyleFlag(flag
);
557 // ----------------------------------------------------------------------------
559 // ----------------------------------------------------------------------------
561 /* static */ wxVisualAttributes
562 wxListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
564 wxVisualAttributes attrs
= GetCompositeControlsDefaultAttributes(variant
);
566 // common controls have their own default font
567 attrs
.font
= wxGetCCDefaultFont();
572 // Sets the foreground, i.e. text, colour
573 bool wxListCtrl::SetForegroundColour(const wxColour
& col
)
575 if ( !wxWindow::SetForegroundColour(col
) )
578 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col
));
583 // Sets the background colour
584 bool wxListCtrl::SetBackgroundColour(const wxColour
& col
)
586 if ( !wxWindow::SetBackgroundColour(col
) )
589 // we set the same colour for both the "empty" background and the items
591 COLORREF color
= wxColourToRGB(col
);
592 ListView_SetBkColor(GetHwnd(), color
);
593 ListView_SetTextBkColor(GetHwnd(), color
);
598 // Gets information about this column
599 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
604 lvCol
.mask
= LVCF_WIDTH
;
606 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
608 lvCol
.mask
|= LVCF_TEXT
;
609 lvCol
.pszText
= new wxChar
[513];
610 lvCol
.cchTextMax
= 512;
613 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
615 lvCol
.mask
|= LVCF_FMT
;
618 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
620 lvCol
.mask
|= LVCF_IMAGE
;
623 bool success
= ListView_GetColumn(GetHwnd(), col
, &lvCol
) != 0;
625 // item.m_subItem = lvCol.iSubItem;
626 item
.m_width
= lvCol
.cx
;
628 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) && lvCol
.pszText
)
630 item
.m_text
= lvCol
.pszText
;
631 delete[] lvCol
.pszText
;
634 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
636 switch (lvCol
.fmt
& LVCFMT_JUSTIFYMASK
) {
638 item
.m_format
= wxLIST_FORMAT_LEFT
;
641 item
.m_format
= wxLIST_FORMAT_RIGHT
;
644 item
.m_format
= wxLIST_FORMAT_CENTRE
;
647 item
.m_format
= -1; // Unknown?
652 // the column images were not supported in older versions but how to check
653 // for this? we can't use _WIN32_IE because we always define it to a very
654 // high value, so see if another symbol which is only defined starting from
655 // comctl32.dll 4.70 is available
656 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
657 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
659 item
.m_image
= lvCol
.iImage
;
661 #endif // LVCOLUMN::iImage exists
666 // Sets information about this column
667 bool wxListCtrl::SetColumn(int col
, const wxListItem
& item
)
670 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
672 return ListView_SetColumn(GetHwnd(), col
, &lvCol
) != 0;
675 // Gets the column width
676 int wxListCtrl::GetColumnWidth(int col
) const
678 return ListView_GetColumnWidth(GetHwnd(), col
);
681 // Sets the column width
682 bool wxListCtrl::SetColumnWidth(int col
, int width
)
684 if ( m_windowStyle
& wxLC_LIST
)
687 if ( width
== wxLIST_AUTOSIZE
)
688 width
= LVSCW_AUTOSIZE
;
689 else if ( width
== wxLIST_AUTOSIZE_USEHEADER
)
690 width
= LVSCW_AUTOSIZE_USEHEADER
;
692 return ListView_SetColumnWidth(GetHwnd(), col
, width
) != 0;
695 // ----------------------------------------------------------------------------
697 // ----------------------------------------------------------------------------
699 int wxListCtrl::GetColumnOrder(int col
) const
701 const int numCols
= GetColumnCount();
702 wxCHECK_MSG( col
>= 0 && col
< numCols
, -1, _T("Col index out of bounds") );
704 wxArrayInt
indexArray(numCols
);
706 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &indexArray
[0]) )
709 return indexArray
[col
];
712 int wxListCtrl::GetColumnIndexFromOrder(int order
) const
714 const int numCols
= GetColumnCount();
715 wxASSERT_MSG( order
>= 0 && order
< numCols
, _T("Col order out of bounds") );
717 wxArrayInt
indexArray(numCols
);
719 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &indexArray
[0]) )
722 for ( int col
= 0; col
< numCols
; col
++ )
724 if ( indexArray
[col
] == order
)
728 wxFAIL_MSG( _T("no column with with given order?") );
733 // Gets the column order for all columns
734 wxArrayInt
wxListCtrl::GetColumnsOrder() const
736 const int numCols
= GetColumnCount();
738 wxArrayInt
orders(numCols
);
739 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &orders
[0]) )
745 // Sets the column order for all columns
746 bool wxListCtrl::SetColumnsOrder(const wxArrayInt
& orders
)
748 const int numCols
= GetColumnCount();
750 wxCHECK_MSG( orders
.size() == (size_t)numCols
, false,
751 _T("wrong number of elements in column orders array") );
753 return ListView_SetColumnOrderArray(GetHwnd(), numCols
, &orders
[0]) != 0;
757 // Gets the number of items that can fit vertically in the
758 // visible area of the list control (list or report view)
759 // or the total number of items in the list control (icon
760 // or small icon view)
761 int wxListCtrl::GetCountPerPage() const
763 return ListView_GetCountPerPage(GetHwnd());
766 // Gets the edit control for editing labels.
767 wxTextCtrl
* wxListCtrl::GetEditControl() const
769 // first check corresponds to the case when the label editing was started
770 // by user and hence m_textCtrl wasn't created by EditLabel() at all, while
771 // the second case corresponds to us being called from inside EditLabel()
772 // (e.g. from a user wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT handler): in this
773 // case EditLabel() did create the control but it didn't have an HWND to
774 // initialize it with yet
775 if ( !m_textCtrl
|| !m_textCtrl
->GetHWND() )
777 HWND hwndEdit
= ListView_GetEditControl(GetHwnd());
780 wxListCtrl
* const self
= wx_const_cast(wxListCtrl
*, this);
783 self
->m_textCtrl
= new wxTextCtrl
;
784 self
->InitEditControl((WXHWND
)hwndEdit
);
791 // Gets information about the item
792 bool wxListCtrl::GetItem(wxListItem
& info
) const
795 wxZeroMemory(lvItem
);
797 lvItem
.iItem
= info
.m_itemId
;
798 lvItem
.iSubItem
= info
.m_col
;
800 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
802 lvItem
.mask
|= LVIF_TEXT
;
803 lvItem
.pszText
= new wxChar
[513];
804 lvItem
.cchTextMax
= 512;
808 lvItem
.pszText
= NULL
;
811 if (info
.m_mask
& wxLIST_MASK_DATA
)
812 lvItem
.mask
|= LVIF_PARAM
;
814 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
815 lvItem
.mask
|= LVIF_IMAGE
;
817 if ( info
.m_mask
& wxLIST_MASK_STATE
)
819 lvItem
.mask
|= LVIF_STATE
;
820 wxConvertToMSWFlags(0, info
.m_stateMask
, lvItem
);
823 bool success
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0;
826 wxLogError(_("Couldn't retrieve information about list control item %d."),
831 // give NULL as hwnd as we already have everything we need
832 wxConvertFromMSWListItem(NULL
, info
, lvItem
);
836 delete[] lvItem
.pszText
;
841 // Sets information about the item
842 bool wxListCtrl::SetItem(wxListItem
& info
)
844 const long id
= info
.GetId();
845 wxCHECK_MSG( id
>= 0 && id
< GetItemCount(), false,
846 _T("invalid item index in SetItem") );
849 wxConvertToMSWListItem(this, info
, item
);
851 // we never update the lParam if it contains our pointer
852 // to the wxListItemInternalData structure
853 item
.mask
&= ~LVIF_PARAM
;
855 // check if setting attributes or lParam
856 if (info
.HasAttributes() || (info
.m_mask
& wxLIST_MASK_DATA
))
858 // get internal item data
859 // perhaps a cache here ?
860 wxListItemInternalData
*data
= wxGetInternalData(this, id
);
865 m_AnyInternalData
= true;
866 data
= new wxListItemInternalData();
867 item
.lParam
= (LPARAM
) data
;
868 item
.mask
|= LVIF_PARAM
;
873 if (info
.m_mask
& wxLIST_MASK_DATA
)
874 data
->lParam
= info
.m_data
;
877 if ( info
.HasAttributes() )
879 const wxListItemAttr
& attrNew
= *info
.GetAttributes();
881 // don't overwrite the already set attributes if we have them
883 data
->attr
->AssignFrom(attrNew
);
885 data
->attr
= new wxListItemAttr(attrNew
);
890 // we could be changing only the attribute in which case we don't need to
891 // call ListView_SetItem() at all
895 if ( !ListView_SetItem(GetHwnd(), &item
) )
897 wxLogDebug(_T("ListView_SetItem() failed"));
903 // we need to update the item immediately to show the new image
904 bool updateNow
= (info
.m_mask
& wxLIST_MASK_IMAGE
) != 0;
906 // check whether it has any custom attributes
907 if ( info
.HasAttributes() )
911 // if the colour has changed, we must redraw the item
917 // we need this to make the change visible right now
918 RefreshItem(item
.iItem
);
924 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
928 info
.m_mask
= wxLIST_MASK_TEXT
;
929 info
.m_itemId
= index
;
933 info
.m_image
= imageId
;
934 info
.m_mask
|= wxLIST_MASK_IMAGE
;
936 return SetItem(info
);
940 // Gets the item state
941 int wxListCtrl::GetItemState(long item
, long stateMask
) const
945 info
.m_mask
= wxLIST_MASK_STATE
;
946 info
.m_stateMask
= stateMask
;
947 info
.m_itemId
= item
;
955 // Sets the item state
956 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
958 // NB: don't use SetItem() here as it doesn't work with the virtual list
961 wxZeroMemory(lvItem
);
963 wxConvertToMSWFlags(state
, stateMask
, lvItem
);
965 const bool changingFocus
= (stateMask
& wxLIST_STATE_FOCUSED
) &&
966 (state
& wxLIST_STATE_FOCUSED
);
968 // for the virtual list controls we need to refresh the previously focused
969 // item manually when changing focus without changing selection
970 // programmatically because otherwise it keeps its focus rectangle until
971 // next repaint (yet another comctl32 bug)
973 if ( IsVirtual() && changingFocus
)
975 focusOld
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_FOCUSED
);
982 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE
,
983 (WPARAM
)item
, (LPARAM
)&lvItem
) )
985 wxLogLastError(_T("ListView_SetItemState"));
990 if ( focusOld
!= -1 )
992 // no need to refresh the item if it was previously selected, it would
993 // only result in annoying flicker
994 if ( !(GetItemState(focusOld
,
995 wxLIST_STATE_SELECTED
) & wxLIST_STATE_SELECTED
) )
997 RefreshItem(focusOld
);
1001 // we expect the selection anchor, i.e. the item from which multiple
1002 // selection (such as performed with e.g. Shift-arrows) starts, to be the
1003 // same as the currently focused item but the native control doesn't update
1004 // it when we change focus and leaves at the last item it set itself focus
1005 // to, so do it explicitly
1006 if ( changingFocus
&& !HasFlag(wxLC_SINGLE_SEL
) )
1008 ListView_SetSelectionMark(GetHwnd(), item
);
1014 // Sets the item image
1015 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
1017 return SetItemColumnImage(item
, 0, image
);
1020 // Sets the item image
1021 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
1025 info
.m_mask
= wxLIST_MASK_IMAGE
;
1026 info
.m_image
= image
;
1027 info
.m_itemId
= item
;
1028 info
.m_col
= column
;
1030 return SetItem(info
);
1033 // Gets the item text
1034 wxString
wxListCtrl::GetItemText(long item
) const
1038 info
.m_mask
= wxLIST_MASK_TEXT
;
1039 info
.m_itemId
= item
;
1042 return wxEmptyString
;
1046 // Sets the item text
1047 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
1051 info
.m_mask
= wxLIST_MASK_TEXT
;
1052 info
.m_itemId
= item
;
1058 // Gets the item data
1059 wxUIntPtr
wxListCtrl::GetItemData(long item
) const
1063 info
.m_mask
= wxLIST_MASK_DATA
;
1064 info
.m_itemId
= item
;
1071 // Sets the item data
1072 bool wxListCtrl::SetItemPtrData(long item
, wxUIntPtr data
)
1076 info
.m_mask
= wxLIST_MASK_DATA
;
1077 info
.m_itemId
= item
;
1080 return SetItem(info
);
1083 wxRect
wxListCtrl::GetViewRect() const
1085 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
1086 _T("wxListCtrl::GetViewRect() only works in icon mode") );
1089 if ( !ListView_GetViewRect(GetHwnd(), &rc
) )
1091 wxLogDebug(_T("ListView_GetViewRect() failed."));
1097 wxCopyRECTToRect(rc
, rect
);
1102 // Gets the item rectangle
1103 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
1105 return GetSubItemRect( item
, wxLIST_GETSUBITEMRECT_WHOLEITEM
, rect
, code
) ;
1109 * Retrieve coordinates and size of a specified subitem of a listview control.
1110 * This function only works if the listview control is in the report mode.
1112 * @param item : Item number
1113 * @param subItem : Subitem or column number, use -1 for the whole row including
1114 * all columns or subitems
1115 * @param rect : A pointer to an allocated wxRect object
1116 * @param code : Specify the part of the subitem coordinates you need. Choices are
1117 * wxLIST_RECT_BOUNDS, wxLIST_RECT_ICON, wxLIST_RECT_LABEL
1119 * @return bool : True if successful.
1121 bool wxListCtrl::GetSubItemRect(long item
, long subItem
, wxRect
& rect
, int code
) const
1126 if ( code
== wxLIST_RECT_BOUNDS
)
1127 codeWin
= LVIR_BOUNDS
;
1128 else if ( code
== wxLIST_RECT_ICON
)
1129 codeWin
= LVIR_ICON
;
1130 else if ( code
== wxLIST_RECT_LABEL
)
1131 codeWin
= LVIR_LABEL
;
1134 wxFAIL_MSG( _T("incorrect code in GetItemRect() / GetSubItemRect()") );
1135 codeWin
= LVIR_BOUNDS
;
1139 if( subItem
== wxLIST_GETSUBITEMRECT_WHOLEITEM
)
1141 success
= ListView_GetItemRect(GetHwnd(), (int) item
, &rectWin
, codeWin
) != 0;
1143 else if( subItem
>= 0)
1145 success
= ListView_GetSubItemRect( GetHwnd(), (int) item
, (int) subItem
, codeWin
, &rectWin
) != 0;
1149 wxFAIL_MSG( _T("incorrect subItem number in GetSubItemRect()") );
1153 rect
.x
= rectWin
.left
;
1154 rect
.y
= rectWin
.top
;
1155 rect
.width
= rectWin
.right
- rectWin
.left
;
1156 rect
.height
= rectWin
.bottom
- rectWin
.top
;
1164 // Gets the item position
1165 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1169 bool success
= (ListView_GetItemPosition(GetHwnd(), (int) item
, &pt
) != 0);
1171 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
1175 // Sets the item position.
1176 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1178 return (ListView_SetItemPosition(GetHwnd(), (int) item
, pos
.x
, pos
.y
) != 0);
1181 // Gets the number of items in the list control
1182 int wxListCtrl::GetItemCount() const
1187 wxSize
wxListCtrl::GetItemSpacing() const
1189 const int spacing
= ListView_GetItemSpacing(GetHwnd(), (BOOL
)HasFlag(wxLC_SMALL_ICON
));
1191 return wxSize(LOWORD(spacing
), HIWORD(spacing
));
1194 #if WXWIN_COMPATIBILITY_2_6
1196 int wxListCtrl::GetItemSpacing(bool isSmall
) const
1198 return ListView_GetItemSpacing(GetHwnd(), (BOOL
) isSmall
);
1201 #endif // WXWIN_COMPATIBILITY_2_6
1203 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1206 info
.m_itemId
= item
;
1207 info
.SetTextColour( col
);
1211 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1214 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1215 if ( data
&& data
->attr
)
1216 col
= data
->attr
->GetTextColour();
1221 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1224 info
.m_itemId
= item
;
1225 info
.SetBackgroundColour( col
);
1229 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1232 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1233 if ( data
&& data
->attr
)
1234 col
= data
->attr
->GetBackgroundColour();
1239 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
1242 info
.m_itemId
= item
;
1247 wxFont
wxListCtrl::GetItemFont( long item
) const
1250 wxListItemInternalData
*data
= wxGetInternalData(this, item
);
1251 if ( data
&& data
->attr
)
1252 f
= data
->attr
->GetFont();
1257 // Gets the number of selected items in the list control
1258 int wxListCtrl::GetSelectedItemCount() const
1260 return ListView_GetSelectedCount(GetHwnd());
1263 // Gets the text colour of the listview
1264 wxColour
wxListCtrl::GetTextColour() const
1266 COLORREF ref
= ListView_GetTextColor(GetHwnd());
1267 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
1271 // Sets the text colour of the listview
1272 void wxListCtrl::SetTextColour(const wxColour
& col
)
1274 ListView_SetTextColor(GetHwnd(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue()));
1277 // Gets the index of the topmost visible item when in
1278 // list or report view
1279 long wxListCtrl::GetTopItem() const
1281 return (long) ListView_GetTopIndex(GetHwnd());
1284 // Searches for an item, starting from 'item'.
1285 // 'geometry' is one of
1286 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1287 // 'state' is a state bit flag, one or more of
1288 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1289 // item can be -1 to find the first item that matches the
1291 // Returns the item or -1 if unsuccessful.
1292 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1296 if ( geom
== wxLIST_NEXT_ABOVE
)
1297 flags
|= LVNI_ABOVE
;
1298 if ( geom
== wxLIST_NEXT_ALL
)
1300 if ( geom
== wxLIST_NEXT_BELOW
)
1301 flags
|= LVNI_BELOW
;
1302 if ( geom
== wxLIST_NEXT_LEFT
)
1303 flags
|= LVNI_TOLEFT
;
1304 if ( geom
== wxLIST_NEXT_RIGHT
)
1305 flags
|= LVNI_TORIGHT
;
1307 if ( state
& wxLIST_STATE_CUT
)
1309 if ( state
& wxLIST_STATE_DROPHILITED
)
1310 flags
|= LVNI_DROPHILITED
;
1311 if ( state
& wxLIST_STATE_FOCUSED
)
1312 flags
|= LVNI_FOCUSED
;
1313 if ( state
& wxLIST_STATE_SELECTED
)
1314 flags
|= LVNI_SELECTED
;
1316 return (long) ListView_GetNextItem(GetHwnd(), item
, flags
);
1320 wxImageList
*wxListCtrl::GetImageList(int which
) const
1322 if ( which
== wxIMAGE_LIST_NORMAL
)
1324 return m_imageListNormal
;
1326 else if ( which
== wxIMAGE_LIST_SMALL
)
1328 return m_imageListSmall
;
1330 else if ( which
== wxIMAGE_LIST_STATE
)
1332 return m_imageListState
;
1337 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1340 if ( which
== wxIMAGE_LIST_NORMAL
)
1342 flags
= LVSIL_NORMAL
;
1343 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1344 m_imageListNormal
= imageList
;
1345 m_ownsImageListNormal
= false;
1347 else if ( which
== wxIMAGE_LIST_SMALL
)
1349 flags
= LVSIL_SMALL
;
1350 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1351 m_imageListSmall
= imageList
;
1352 m_ownsImageListSmall
= false;
1354 else if ( which
== wxIMAGE_LIST_STATE
)
1356 flags
= LVSIL_STATE
;
1357 if (m_ownsImageListState
) delete m_imageListState
;
1358 m_imageListState
= imageList
;
1359 m_ownsImageListState
= false;
1361 (void) ListView_SetImageList(GetHwnd(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
1364 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1366 SetImageList(imageList
, which
);
1367 if ( which
== wxIMAGE_LIST_NORMAL
)
1368 m_ownsImageListNormal
= true;
1369 else if ( which
== wxIMAGE_LIST_SMALL
)
1370 m_ownsImageListSmall
= true;
1371 else if ( which
== wxIMAGE_LIST_STATE
)
1372 m_ownsImageListState
= true;
1375 // ----------------------------------------------------------------------------
1377 // ----------------------------------------------------------------------------
1379 // Arranges the items
1380 bool wxListCtrl::Arrange(int flag
)
1383 if ( flag
== wxLIST_ALIGN_LEFT
)
1384 code
= LVA_ALIGNLEFT
;
1385 else if ( flag
== wxLIST_ALIGN_TOP
)
1386 code
= LVA_ALIGNTOP
;
1387 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
1389 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
1390 code
= LVA_SNAPTOGRID
;
1392 return (ListView_Arrange(GetHwnd(), code
) != 0);
1396 bool wxListCtrl::DeleteItem(long item
)
1398 if ( !ListView_DeleteItem(GetHwnd(), (int) item
) )
1400 wxLogLastError(_T("ListView_DeleteItem"));
1405 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1406 wxT("m_count should match ListView_GetItemCount"));
1408 // the virtual list control doesn't refresh itself correctly, help it
1411 // we need to refresh all the lines below the one which was deleted
1413 if ( item
> 0 && GetItemCount() )
1415 GetItemRect(item
- 1, rectItem
);
1420 rectItem
.height
= 0;
1423 wxRect rectWin
= GetRect();
1424 rectWin
.height
= rectWin
.GetBottom() - rectItem
.GetBottom();
1425 rectWin
.y
= rectItem
.GetBottom();
1427 RefreshRect(rectWin
);
1433 // Deletes all items
1434 bool wxListCtrl::DeleteAllItems()
1436 return ListView_DeleteAllItems(GetHwnd()) != 0;
1439 // Deletes all items
1440 bool wxListCtrl::DeleteAllColumns()
1442 while ( m_colCount
> 0 )
1444 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1446 wxLogLastError(wxT("ListView_DeleteColumn"));
1454 wxASSERT_MSG( m_colCount
== 0, wxT("no columns should be left") );
1460 bool wxListCtrl::DeleteColumn(int col
)
1462 bool success
= (ListView_DeleteColumn(GetHwnd(), col
) != 0);
1464 if ( success
&& (m_colCount
> 0) )
1469 // Clears items, and columns if there are any.
1470 void wxListCtrl::ClearAll()
1473 if ( m_colCount
> 0 )
1477 void wxListCtrl::InitEditControl(WXHWND hWnd
)
1479 m_textCtrl
->SetHWND(hWnd
);
1480 m_textCtrl
->SubclassWin(hWnd
);
1481 m_textCtrl
->SetParent(this);
1483 // we must disallow TABbing away from the control while the edit contol is
1484 // shown because this leaves it in some strange state (just try removing
1485 // this line and then pressing TAB while editing an item in listctrl
1487 m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle() | wxTE_PROCESS_TAB
);
1490 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1492 wxCHECK_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)), NULL
,
1493 "control used for label editing must be a wxTextCtrl" );
1495 // ListView_EditLabel requires that the list has focus.
1498 // create m_textCtrl here before calling ListView_EditLabel() because it
1499 // generates wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT event from inside it and
1500 // the user handler for it can call GetEditControl() resulting in an on
1501 // demand creation of a stock wxTextCtrl instead of the control of a
1502 // (possibly) custom wxClassInfo
1503 DeleteEditControl();
1504 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1506 WXHWND hWnd
= (WXHWND
) ListView_EditLabel(GetHwnd(), item
);
1509 // failed to start editing
1516 // if GetEditControl() hasn't been called, we need to initialize the edit
1517 // control ourselves
1518 if ( !m_textCtrl
->GetHWND() )
1519 InitEditControl(hWnd
);
1524 // End label editing, optionally cancelling the edit
1525 bool wxListCtrl::EndEditLabel(bool cancel
)
1527 // m_textCtrl is not always ready, ie. in EVT_LIST_BEGIN_LABEL_EDIT
1528 HWND hwnd
= ListView_GetEditControl(GetHwnd());
1533 ::SetWindowText(hwnd
, wxEmptyString
); // dubious but better than nothing
1535 // we shouldn't destroy the control ourselves according to MSDN, which
1536 // proposes WM_CANCELMODE to do this, but it doesn't seem to work
1538 // posting WM_CLOSE to it does seem to work without any side effects
1539 ::PostMessage(hwnd
, WM_CLOSE
, 0, 0);
1544 // Ensures this item is visible
1545 bool wxListCtrl::EnsureVisible(long item
)
1547 return ListView_EnsureVisible(GetHwnd(), (int) item
, FALSE
) != FALSE
;
1550 // Find an item whose label matches this string, starting from the item after 'start'
1551 // or the beginning if 'start' is -1.
1552 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1554 LV_FINDINFO findInfo
;
1556 findInfo
.flags
= LVFI_STRING
;
1558 findInfo
.flags
|= LVFI_PARTIAL
;
1559 findInfo
.psz
= str
.wx_str();
1561 // ListView_FindItem() excludes the first item from search and to look
1562 // through all the items you need to start from -1 which is unnatural and
1563 // inconsistent with the generic version - so we adjust the index
1566 return ListView_FindItem(GetHwnd(), (int) start
, &findInfo
);
1569 // Find an item whose data matches this data, starting from the item after 'start'
1570 // or the beginning if 'start' is -1.
1571 // NOTE : Lindsay Mathieson - 14-July-2002
1572 // No longer use ListView_FindItem as the data attribute is now stored
1573 // in a wxListItemInternalData structure refernced by the actual lParam
1574 long wxListCtrl::FindItem(long start
, wxUIntPtr data
)
1576 long idx
= start
+ 1;
1577 long count
= GetItemCount();
1581 if (GetItemData(idx
) == data
)
1589 // Find an item nearest this position in the specified direction, starting from
1590 // the item after 'start' or the beginning if 'start' is -1.
1591 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1593 LV_FINDINFO findInfo
;
1595 findInfo
.flags
= LVFI_NEARESTXY
;
1596 findInfo
.pt
.x
= pt
.x
;
1597 findInfo
.pt
.y
= pt
.y
;
1598 findInfo
.vkDirection
= VK_RIGHT
;
1600 if ( direction
== wxLIST_FIND_UP
)
1601 findInfo
.vkDirection
= VK_UP
;
1602 else if ( direction
== wxLIST_FIND_DOWN
)
1603 findInfo
.vkDirection
= VK_DOWN
;
1604 else if ( direction
== wxLIST_FIND_LEFT
)
1605 findInfo
.vkDirection
= VK_LEFT
;
1606 else if ( direction
== wxLIST_FIND_RIGHT
)
1607 findInfo
.vkDirection
= VK_RIGHT
;
1609 return ListView_FindItem(GetHwnd(), (int) start
, & findInfo
);
1612 // Determines which item (if any) is at the specified point,
1613 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1615 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const
1617 LV_HITTESTINFO hitTestInfo
;
1618 hitTestInfo
.pt
.x
= (int) point
.x
;
1619 hitTestInfo
.pt
.y
= (int) point
.y
;
1622 #ifdef LVM_SUBITEMHITTEST
1623 if ( ptrSubItem
&& wxApp::GetComCtl32Version() >= 470 )
1625 item
= ListView_SubItemHitTest(GetHwnd(), &hitTestInfo
);
1626 *ptrSubItem
= hitTestInfo
.iSubItem
;
1629 #endif // LVM_SUBITEMHITTEST
1631 item
= ListView_HitTest(GetHwnd(), &hitTestInfo
);
1636 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
1637 flags
|= wxLIST_HITTEST_ABOVE
;
1638 if ( hitTestInfo
.flags
& LVHT_BELOW
)
1639 flags
|= wxLIST_HITTEST_BELOW
;
1640 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
1641 flags
|= wxLIST_HITTEST_TOLEFT
;
1642 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
1643 flags
|= wxLIST_HITTEST_TORIGHT
;
1645 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
1646 flags
|= wxLIST_HITTEST_NOWHERE
;
1648 // note a bug or at least a very strange feature of comtl32.dll (tested
1649 // with version 4.0 under Win95 and 6.0 under Win 2003): if you click to
1650 // the right of the item label, ListView_HitTest() returns a combination of
1651 // LVHT_ONITEMICON, LVHT_ONITEMLABEL and LVHT_ONITEMSTATEICON -- filter out
1652 // the bits which don't make sense
1653 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
1655 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
1657 // do not translate LVHT_ONITEMICON here, as per above
1661 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
1662 flags
|= wxLIST_HITTEST_ONITEMICON
;
1663 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
1664 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
1671 // Inserts an item, returning the index of the new item if successful,
1673 long wxListCtrl::InsertItem(const wxListItem
& info
)
1675 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1678 wxConvertToMSWListItem(this, info
, item
);
1679 item
.mask
&= ~LVIF_PARAM
;
1681 // check wether we need to allocate our internal data
1682 bool needInternalData
= ((info
.m_mask
& wxLIST_MASK_DATA
) || info
.HasAttributes());
1683 if (needInternalData
)
1685 m_AnyInternalData
= true;
1686 item
.mask
|= LVIF_PARAM
;
1688 // internal stucture that manages data
1689 wxListItemInternalData
*data
= new wxListItemInternalData();
1690 item
.lParam
= (LPARAM
) data
;
1692 if (info
.m_mask
& wxLIST_MASK_DATA
)
1693 data
->lParam
= info
.m_data
;
1695 // check whether it has any custom attributes
1696 if ( info
.HasAttributes() )
1698 // take copy of attributes
1699 data
->attr
= new wxListItemAttr(*info
.GetAttributes());
1701 // and remember that we have some now...
1702 m_hasAnyAttr
= true;
1706 long rv
= ListView_InsertItem(GetHwnd(), & item
);
1709 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1710 wxT("m_count should match ListView_GetItemCount"));
1715 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1718 info
.m_text
= label
;
1719 info
.m_mask
= wxLIST_MASK_TEXT
;
1720 info
.m_itemId
= index
;
1721 return InsertItem(info
);
1724 // Inserts an image item
1725 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1728 info
.m_image
= imageIndex
;
1729 info
.m_mask
= wxLIST_MASK_IMAGE
;
1730 info
.m_itemId
= index
;
1731 return InsertItem(info
);
1734 // Inserts an image/string item
1735 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1738 info
.m_image
= imageIndex
;
1739 info
.m_text
= label
;
1740 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1741 info
.m_itemId
= index
;
1742 return InsertItem(info
);
1745 // For list view mode (only), inserts a column.
1746 long wxListCtrl::InsertColumn(long col
, const wxListItem
& item
)
1749 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
1751 if ( !(lvCol
.mask
& LVCF_WIDTH
) )
1753 // always give some width to the new column: this one is compatible
1754 // with the generic version
1755 lvCol
.mask
|= LVCF_WIDTH
;
1759 long n
= ListView_InsertColumn(GetHwnd(), col
, &lvCol
);
1764 else // failed to insert?
1766 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
1773 long wxListCtrl::InsertColumn(long col
,
1774 const wxString
& heading
,
1779 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1780 item
.m_text
= heading
;
1783 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1784 item
.m_width
= width
;
1786 item
.m_format
= format
;
1788 return InsertColumn(col
, item
);
1791 // scroll the control by the given number of pixels (exception: in list view,
1792 // dx is interpreted as number of columns)
1793 bool wxListCtrl::ScrollList(int dx
, int dy
)
1795 if ( !ListView_Scroll(GetHwnd(), dx
, dy
) )
1797 wxLogDebug(_T("ListView_Scroll(%d, %d) failed"), dx
, dy
);
1807 // fn is a function which takes 3 long arguments: item1, item2, data.
1808 // item1 is the long data associated with a first item (NOT the index).
1809 // item2 is the long data associated with a second item (NOT the index).
1810 // data is the same value as passed to SortItems.
1811 // The return value is a negative number if the first item should precede the second
1812 // item, a positive number of the second item should precede the first,
1813 // or zero if the two items are equivalent.
1815 // data is arbitrary data to be passed to the sort function.
1817 // Internal structures for proxying the user compare function
1818 // so that we can pass it the *real* user data
1820 // translate lParam data and call user func
1821 struct wxInternalDataSort
1823 wxListCtrlCompare user_fn
;
1827 int CALLBACK
wxInternalDataCompareFunc(LPARAM lParam1
, LPARAM lParam2
, LPARAM lParamSort
)
1829 struct wxInternalDataSort
*internalData
= (struct wxInternalDataSort
*) lParamSort
;
1831 wxListItemInternalData
*data1
= (wxListItemInternalData
*) lParam1
;
1832 wxListItemInternalData
*data2
= (wxListItemInternalData
*) lParam2
;
1834 long d1
= (data1
== NULL
? 0 : data1
->lParam
);
1835 long d2
= (data2
== NULL
? 0 : data2
->lParam
);
1837 return internalData
->user_fn(d1
, d2
, internalData
->data
);
1841 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1843 struct wxInternalDataSort internalData
;
1844 internalData
.user_fn
= fn
;
1845 internalData
.data
= data
;
1847 // WPARAM cast is needed for mingw/cygwin
1848 if ( !ListView_SortItems(GetHwnd(),
1849 wxInternalDataCompareFunc
,
1850 (WPARAM
) &internalData
) )
1852 wxLogDebug(_T("ListView_SortItems() failed"));
1862 // ----------------------------------------------------------------------------
1863 // message processing
1864 // ----------------------------------------------------------------------------
1866 bool wxListCtrl::MSWShouldPreProcessMessage(WXMSG
* msg
)
1868 if ( msg
->message
== WM_KEYDOWN
)
1870 // Only eat VK_RETURN if not being used by the application in
1871 // conjunction with modifiers
1872 if ( msg
->wParam
== VK_RETURN
&& !wxIsAnyModifierDown() )
1874 // we need VK_RETURN to generate wxEVT_COMMAND_LIST_ITEM_ACTIVATED
1878 return wxControl::MSWShouldPreProcessMessage(msg
);
1881 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id_
)
1883 const int id
= (signed short)id_
;
1884 if (cmd
== EN_UPDATE
)
1886 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1887 event
.SetEventObject( this );
1888 ProcessCommand(event
);
1891 else if (cmd
== EN_KILLFOCUS
)
1893 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1894 event
.SetEventObject( this );
1895 ProcessCommand(event
);
1902 // utility used by wxListCtrl::MSWOnNotify and by wxDataViewHeaderWindowMSW::MSWOnNotify
1903 int WXDLLIMPEXP_CORE
wxMSWGetColumnClicked(NMHDR
*nmhdr
, POINT
*ptClick
)
1905 // find the column clicked: we have to search for it ourselves as the
1906 // notification message doesn't provide this info
1908 // where did the click occur?
1909 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
1910 if ( nmhdr
->code
== GN_CONTEXTMENU
)
1912 *ptClick
= ((NMRGINFO
*)nmhdr
)->ptAction
;
1915 #endif //__WXWINCE__
1916 if ( !::GetCursorPos(ptClick
) )
1918 wxLogLastError(_T("GetCursorPos"));
1921 // we need to use listctrl coordinates for the event point so this is what
1922 // we return in ptClick, but for comparison with Header_GetItemRect()
1923 // result below we need to use header window coordinates
1924 POINT ptClickHeader
= *ptClick
;
1925 if ( !::ScreenToClient(nmhdr
->hwndFrom
, &ptClickHeader
) )
1927 wxLogLastError(_T("ScreenToClient(listctrl header)"));
1930 if ( !::ScreenToClient(::GetParent(nmhdr
->hwndFrom
), ptClick
) )
1932 wxLogLastError(_T("ScreenToClient(listctrl)"));
1935 const int colCount
= Header_GetItemCount(nmhdr
->hwndFrom
);
1936 for ( int col
= 0; col
< colCount
; col
++ )
1939 if ( Header_GetItemRect(nmhdr
->hwndFrom
, col
, &rect
) )
1941 if ( ::PtInRect(&rect
, ptClickHeader
) )
1951 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1954 // prepare the event
1955 // -----------------
1957 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1958 event
.SetEventObject(this);
1960 wxEventType eventType
= wxEVT_NULL
;
1962 NMHDR
*nmhdr
= (NMHDR
*)lParam
;
1964 // if your compiler is as broken as this, you should really change it: this
1965 // code is needed for normal operation! #ifdef below is only useful for
1966 // automatic rebuilds which are done with a very old compiler version
1967 #ifdef HDN_BEGINTRACKA
1969 // check for messages from the header (in report view)
1970 HWND hwndHdr
= ListView_GetHeader(GetHwnd());
1972 // is it a message from the header?
1973 if ( nmhdr
->hwndFrom
== hwndHdr
)
1975 HD_NOTIFY
*nmHDR
= (HD_NOTIFY
*)nmhdr
;
1977 event
.m_itemIndex
= -1;
1979 switch ( nmhdr
->code
)
1981 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1982 // TRACK messages even to ANSI programs: on my system I get
1983 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
1985 // work around is to simply catch both versions and hope that it
1986 // works (why should this message exist in ANSI and Unicode is
1987 // beyond me as it doesn't deal with strings at all...)
1989 // note that fr HDN_TRACK another possibility could be to use
1990 // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when
1991 // something other than the item width changes so we'd have to
1992 // filter out the unwanted events then
1993 case HDN_BEGINTRACKA
:
1994 case HDN_BEGINTRACKW
:
1995 eventType
= wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
;
2000 if ( eventType
== wxEVT_NULL
)
2001 eventType
= wxEVT_COMMAND_LIST_COL_DRAGGING
;
2006 if ( eventType
== wxEVT_NULL
)
2007 eventType
= wxEVT_COMMAND_LIST_COL_END_DRAG
;
2009 event
.m_item
.m_width
= nmHDR
->pitem
->cxy
;
2010 event
.m_col
= nmHDR
->iItem
;
2013 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2014 case GN_CONTEXTMENU
:
2015 #endif //__WXWINCE__
2020 eventType
= wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
;
2021 event
.m_col
= wxMSWGetColumnClicked(nmhdr
, &ptClick
);
2022 event
.m_pointDrag
.x
= ptClick
.x
;
2023 event
.m_pointDrag
.y
= ptClick
.y
;
2027 case HDN_GETDISPINFOW
:
2028 // letting Windows XP handle this message results in mysterious
2029 // crashes in comctl32.dll seemingly because of bad message
2032 // I have no idea what is the real cause of the bug (which is,
2033 // just to make things interesting, impossible to reproduce
2034 // reliably) but ignoring all these messages does fix it and
2035 // doesn't seem to have any negative consequences
2039 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
2043 #endif // defined(HDN_BEGINTRACKA)
2044 if ( nmhdr
->hwndFrom
== GetHwnd() )
2046 // almost all messages use NM_LISTVIEW
2047 NM_LISTVIEW
*nmLV
= (NM_LISTVIEW
*)nmhdr
;
2049 const int iItem
= nmLV
->iItem
;
2052 // FreeAllInternalData will cause LVN_ITEMCHANG* messages, which can be
2053 // ignored for efficiency. It is done here because the internal data is in the
2054 // process of being deleted so we don't want to try and access it below.
2055 if ( m_ignoreChangeMessages
&&
2056 ( (nmLV
->hdr
.code
== LVN_ITEMCHANGED
) ||
2057 (nmLV
->hdr
.code
== LVN_ITEMCHANGING
)) )
2063 // If we have a valid item then check if there is a data value
2064 // associated with it and put it in the event.
2065 if ( iItem
>= 0 && iItem
< GetItemCount() )
2067 wxListItemInternalData
*internaldata
=
2068 wxGetInternalData(GetHwnd(), iItem
);
2071 event
.m_item
.m_data
= internaldata
->lParam
;
2074 bool processed
= true;
2075 switch ( nmhdr
->code
)
2077 case LVN_BEGINRDRAG
:
2078 eventType
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
2082 if ( eventType
== wxEVT_NULL
)
2084 eventType
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
2087 event
.m_itemIndex
= iItem
;
2088 event
.m_pointDrag
.x
= nmLV
->ptAction
.x
;
2089 event
.m_pointDrag
.y
= nmLV
->ptAction
.y
;
2092 // NB: we have to handle both *A and *W versions here because some
2093 // versions of comctl32.dll send ANSI messages even to the
2095 case LVN_BEGINLABELEDITA
:
2096 case LVN_BEGINLABELEDITW
:
2099 if ( nmhdr
->code
== LVN_BEGINLABELEDITA
)
2101 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
2103 else // LVN_BEGINLABELEDITW
2105 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
2108 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
2109 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, item
);
2110 event
.m_itemIndex
= event
.m_item
.m_itemId
;
2114 case LVN_ENDLABELEDITA
:
2115 case LVN_ENDLABELEDITW
:
2118 if ( nmhdr
->code
== LVN_ENDLABELEDITA
)
2120 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
2122 else // LVN_ENDLABELEDITW
2124 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
2127 // was editing cancelled?
2128 const LV_ITEM
& lvi
= (LV_ITEM
)item
;
2129 if ( !lvi
.pszText
|| lvi
.iItem
== -1 )
2131 // EDIT control will be deleted by the list control
2132 // itself so prevent us from deleting it as well
2133 DeleteEditControl();
2135 event
.SetEditCanceled(true);
2138 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
2139 wxConvertFromMSWListItem(NULL
, event
.m_item
, item
);
2140 event
.m_itemIndex
= event
.m_item
.m_itemId
;
2144 case LVN_COLUMNCLICK
:
2145 eventType
= wxEVT_COMMAND_LIST_COL_CLICK
;
2146 event
.m_itemIndex
= -1;
2147 event
.m_col
= nmLV
->iSubItem
;
2150 case LVN_DELETEALLITEMS
:
2151 eventType
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
2152 event
.m_itemIndex
= -1;
2155 case LVN_DELETEITEM
:
2158 // this should be prevented by the post-processing code
2159 // below, but "just in case"
2163 eventType
= wxEVT_COMMAND_LIST_DELETE_ITEM
;
2164 event
.m_itemIndex
= iItem
;
2165 // delete the assoicated internal data
2166 wxDeleteInternalData(this, iItem
);
2169 case LVN_INSERTITEM
:
2170 eventType
= wxEVT_COMMAND_LIST_INSERT_ITEM
;
2171 event
.m_itemIndex
= iItem
;
2174 case LVN_ITEMCHANGED
:
2175 // we translate this catch all message into more interesting
2176 // (and more easy to process) wxWidgets events
2178 // first of all, we deal with the state change events only and
2179 // only for valid items (item == -1 for the virtual list
2181 if ( nmLV
->uChanged
& LVIF_STATE
&& iItem
!= -1 )
2183 // temp vars for readability
2184 const UINT stOld
= nmLV
->uOldState
;
2185 const UINT stNew
= nmLV
->uNewState
;
2187 event
.m_item
.SetId(iItem
);
2188 event
.m_item
.SetMask(wxLIST_MASK_TEXT
|
2191 GetItem(event
.m_item
);
2193 // has the focus changed?
2194 if ( !(stOld
& LVIS_FOCUSED
) && (stNew
& LVIS_FOCUSED
) )
2196 eventType
= wxEVT_COMMAND_LIST_ITEM_FOCUSED
;
2197 event
.m_itemIndex
= iItem
;
2200 if ( (stNew
& LVIS_SELECTED
) != (stOld
& LVIS_SELECTED
) )
2202 if ( eventType
!= wxEVT_NULL
)
2204 // focus and selection have both changed: send the
2205 // focus event from here and the selection one
2207 event
.SetEventType(eventType
);
2208 (void)HandleWindowEvent(event
);
2210 else // no focus event to send
2212 // then need to set m_itemIndex as it wasn't done
2214 event
.m_itemIndex
= iItem
;
2217 eventType
= stNew
& LVIS_SELECTED
2218 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2219 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
2223 if ( eventType
== wxEVT_NULL
)
2225 // not an interesting event for us
2233 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
2234 WORD wVKey
= info
->wVKey
;
2236 // get the current selection
2237 long lItem
= GetNextItem(-1,
2239 wxLIST_STATE_SELECTED
);
2241 // <Enter> or <Space> activate the selected item if any (but
2242 // not with Shift and/or Ctrl as then they have a predefined
2243 // meaning for the list view)
2245 (wVKey
== VK_RETURN
|| wVKey
== VK_SPACE
) &&
2246 !(wxIsShiftDown() || wxIsCtrlDown()) )
2248 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2252 eventType
= wxEVT_COMMAND_LIST_KEY_DOWN
;
2254 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
2255 // value which should be used as is
2256 int code
= wxCharCodeMSWToWX(wVKey
);
2257 event
.m_code
= code
? code
: wVKey
;
2261 event
.m_item
.m_itemId
= lItem
;
2265 // fill the other fields too
2266 event
.m_item
.m_text
= GetItemText(lItem
);
2267 event
.m_item
.m_data
= GetItemData(lItem
);
2273 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2275 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2280 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2281 // if it happened on an item (and not on empty place)
2288 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2289 event
.m_itemIndex
= iItem
;
2290 event
.m_item
.m_text
= GetItemText(iItem
);
2291 event
.m_item
.m_data
= GetItemData(iItem
);
2294 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2295 case GN_CONTEXTMENU
:
2296 #endif //__WXWINCE__
2298 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2299 // don't do anything else
2300 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2305 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2306 LV_HITTESTINFO lvhti
;
2307 wxZeroMemory(lvhti
);
2309 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2310 if(nmhdr
->code
== GN_CONTEXTMENU
) {
2311 lvhti
.pt
= ((NMRGINFO
*)nmhdr
)->ptAction
;
2313 #endif //__WXWINCE__
2314 ::GetCursorPos(&(lvhti
.pt
));
2315 ::ScreenToClient(GetHwnd(),&(lvhti
.pt
));
2316 if ( ListView_HitTest(GetHwnd(),&lvhti
) != -1 )
2318 if ( lvhti
.flags
& LVHT_ONITEM
)
2320 eventType
= wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
;
2321 event
.m_itemIndex
= lvhti
.iItem
;
2322 event
.m_pointDrag
.x
= lvhti
.pt
.x
;
2323 event
.m_pointDrag
.y
= lvhti
.pt
.y
;
2328 #ifdef NM_CUSTOMDRAW
2330 *result
= OnCustomDraw(lParam
);
2332 return *result
!= CDRF_DODEFAULT
;
2333 #endif // _WIN32_IE >= 0x300
2335 case LVN_ODCACHEHINT
:
2337 const NM_CACHEHINT
*cacheHint
= (NM_CACHEHINT
*)lParam
;
2339 eventType
= wxEVT_COMMAND_LIST_CACHE_HINT
;
2341 // we get some really stupid cache hints like ones for
2342 // items in range 0..0 for an empty control or, after
2343 // deleting an item, for items in invalid range -- filter
2345 if ( cacheHint
->iFrom
> cacheHint
->iTo
)
2348 event
.m_oldItemIndex
= cacheHint
->iFrom
;
2350 const long iMax
= GetItemCount();
2351 event
.m_itemIndex
= cacheHint
->iTo
< iMax
? cacheHint
->iTo
2356 #ifdef HAVE_NMLVFINDITEM
2357 case LVN_ODFINDITEM
:
2358 // this message is only used with the virtual list control but
2359 // even there we don't want to always use it: in a control with
2360 // sufficiently big number of items (defined as > 1000 here),
2361 // accidentally pressing a key could result in hanging an
2362 // application waiting while it performs linear search
2363 if ( IsVirtual() && GetItemCount() <= 1000 )
2365 NMLVFINDITEM
* pFindInfo
= (NMLVFINDITEM
*)lParam
;
2367 // no match by default
2370 // we only handle string-based searches here
2372 // TODO: what about LVFI_PARTIAL, should we handle this?
2373 if ( !(pFindInfo
->lvfi
.flags
& LVFI_STRING
) )
2378 const wxChar
* const searchstr
= pFindInfo
->lvfi
.psz
;
2379 const size_t len
= wxStrlen(searchstr
);
2381 // this is the first item we should examine, search from it
2382 // wrapping if necessary
2383 const int startPos
= pFindInfo
->iStart
;
2384 const int maxPos
= GetItemCount();
2385 wxCHECK_MSG( startPos
<= maxPos
, false,
2386 _T("bad starting position in LVN_ODFINDITEM") );
2388 int currentPos
= startPos
;
2391 // wrap to the beginning if necessary
2392 if ( currentPos
== maxPos
)
2394 // somewhat surprizingly, LVFI_WRAP isn't set in
2395 // flags but we still should wrap
2399 // does this item begin with searchstr?
2400 if ( wxStrnicmp(searchstr
,
2401 GetItemText(currentPos
), len
) == 0 )
2403 *result
= currentPos
;
2407 while ( ++currentPos
!= startPos
);
2409 if ( *result
== -1 )
2415 SetItemState(*result
,
2416 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
,
2417 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
);
2418 EnsureVisible(*result
);
2426 #endif // HAVE_NMLVFINDITEM
2428 case LVN_GETDISPINFO
:
2431 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
2433 LV_ITEM
& lvi
= info
->item
;
2434 long item
= lvi
.iItem
;
2436 if ( lvi
.mask
& LVIF_TEXT
)
2438 wxString text
= OnGetItemText(item
, lvi
.iSubItem
);
2439 wxStrncpy(lvi
.pszText
, text
, lvi
.cchTextMax
);
2442 // see comment at the end of wxListCtrl::GetColumn()
2443 #ifdef NM_CUSTOMDRAW
2444 if ( lvi
.mask
& LVIF_IMAGE
)
2446 lvi
.iImage
= OnGetItemColumnImage(item
, lvi
.iSubItem
);
2448 #endif // NM_CUSTOMDRAW
2450 // even though we never use LVM_SETCALLBACKMASK, we still
2451 // can get messages with LVIF_STATE in lvi.mask under Vista
2452 if ( lvi
.mask
& LVIF_STATE
)
2454 // we don't have anything to return from here...
2467 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
2471 // where did this one come from?
2475 // process the event
2476 // -----------------
2478 event
.SetEventType(eventType
);
2480 bool processed
= HandleWindowEvent(event
);
2484 switch ( nmhdr
->code
)
2486 case LVN_DELETEALLITEMS
:
2487 // always return true to suppress all additional LVN_DELETEITEM
2488 // notifications - this makes deleting all items from a list ctrl
2492 // also, we may free all user data now (couldn't do it before as
2493 // the user should have access to it in OnDeleteAllItems() handler)
2494 FreeAllInternalData();
2496 // the control is empty now, synchronize the cached number of items
2497 // with the real one
2501 case LVN_ENDLABELEDITA
:
2502 case LVN_ENDLABELEDITW
:
2503 // logic here is inverted compared to all the other messages
2504 *result
= event
.IsAllowed();
2506 // EDIT control will be deleted by the list control itself so
2507 // prevent us from deleting it as well
2508 DeleteEditControl();
2514 *result
= !event
.IsAllowed();
2519 // ----------------------------------------------------------------------------
2520 // custom draw stuff
2521 // ----------------------------------------------------------------------------
2523 // see comment at the end of wxListCtrl::GetColumn()
2524 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2526 static RECT
GetCustomDrawnItemRect(const NMCUSTOMDRAW
& nmcd
)
2529 ListView_GetItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, &rc
, LVIR_BOUNDS
);
2532 ListView_GetItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, &rcIcon
, LVIR_ICON
);
2534 // exclude the icon part, neither the selection background nor focus rect
2536 rc
.left
= rcIcon
.right
;
2542 bool HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
, int colCount
)
2544 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2547 HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2548 const int col
= pLVCD
->iSubItem
;
2549 const DWORD item
= nmcd
.dwItemSpec
;
2551 // the font must be valid, otherwise we wouldn't be painting the item at all
2552 SelectInHDC
selFont(hdc
, hfont
);
2554 // get the rectangle to paint
2556 ListView_GetSubItemRect(hwndList
, item
, col
, LVIR_BOUNDS
, &rc
);
2557 if ( !col
&& colCount
> 1 )
2559 // broken ListView_GetSubItemRect() returns the entire item rect for
2560 // 0th subitem while we really need just the part for this column
2562 ListView_GetSubItemRect(hwndList
, item
, 1, LVIR_BOUNDS
, &rc2
);
2564 rc
.right
= rc2
.left
;
2567 else // not first subitem
2572 // get the image and text to draw
2576 it
.mask
= LVIF_TEXT
| LVIF_IMAGE
;
2580 it
.cchTextMax
= WXSIZEOF(text
);
2581 ListView_GetItem(hwndList
, &it
);
2583 HIMAGELIST himl
= ListView_GetImageList(hwndList
, LVSIL_SMALL
);
2584 if ( himl
&& ImageList_GetImageCount(himl
) )
2586 if ( it
.iImage
!= -1 )
2588 ImageList_Draw(himl
, it
.iImage
, hdc
, rc
.left
, rc
.top
,
2589 nmcd
.uItemState
& CDIS_SELECTED
? ILD_SELECTED
2593 // notice that even if this item doesn't have any image, the list
2594 // control still leaves space for the image in the first column if the
2595 // image list is not empty (presumably so that items with and without
2597 if ( it
.iImage
!= -1 || it
.iSubItem
== 0 )
2600 ImageList_GetIconSize(himl
, &wImage
, &hImage
);
2602 rc
.left
+= wImage
+ 2;
2606 ::SetBkMode(hdc
, TRANSPARENT
);
2608 UINT fmt
= DT_SINGLELINE
|
2611 #endif // __WXWINCE__
2616 wxZeroMemory(lvCol
);
2617 lvCol
.mask
= LVCF_FMT
;
2618 if ( ListView_GetColumn(hwndList
, col
, &lvCol
) )
2620 switch ( lvCol
.fmt
& LVCFMT_JUSTIFYMASK
)
2635 //else: failed to get alignment, assume it's DT_LEFT (default)
2637 DrawText(hdc
, text
, -1, &rc
, fmt
);
2642 static void HandleItemPostpaint(NMCUSTOMDRAW nmcd
)
2644 if ( nmcd
.uItemState
& CDIS_FOCUS
)
2646 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2648 // don't use the provided HDC, it's in some strange state by now
2649 ::DrawFocusRect(WindowHDC(nmcd
.hdr
.hwndFrom
), &rc
);
2653 // pLVCD->clrText and clrTextBk should contain the colours to use
2654 static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
)
2656 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
; // just a shortcut
2658 const HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2659 const int item
= nmcd
.dwItemSpec
;
2661 // unfortunately we can't trust CDIS_SELECTED, it is often set even when
2662 // the item is not at all selected for some reason (comctl32 6), but we
2663 // also can't always trust ListView_GetItem() as it could return the old
2664 // item status if we're called just after the (de)selection, so remember
2665 // the last item to gain selection and also check for it here
2666 for ( int i
= -1;; )
2668 i
= ListView_GetNextItem(hwndList
, i
, LVNI_SELECTED
);
2671 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2677 nmcd
.uItemState
|= CDIS_SELECTED
;
2682 // same thing for CDIS_FOCUS (except simpler as there is only one of them)
2683 if ( ::GetFocus() == hwndList
&&
2684 ListView_GetNextItem(hwndList
, (WPARAM
)-1, LVNI_FOCUSED
) == item
)
2686 nmcd
.uItemState
|= CDIS_FOCUS
;
2690 nmcd
.uItemState
&= ~CDIS_FOCUS
;
2693 if ( nmcd
.uItemState
& CDIS_SELECTED
)
2695 int syscolFg
, syscolBg
;
2696 if ( ::GetFocus() == hwndList
)
2698 syscolFg
= COLOR_HIGHLIGHTTEXT
;
2699 syscolBg
= COLOR_HIGHLIGHT
;
2701 else // selected but unfocused
2703 syscolFg
= COLOR_WINDOWTEXT
;
2704 syscolBg
= COLOR_BTNFACE
;
2706 // don't grey out the icon in this case neither
2707 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2710 pLVCD
->clrText
= ::GetSysColor(syscolFg
);
2711 pLVCD
->clrTextBk
= ::GetSysColor(syscolBg
);
2713 //else: not selected, use normal colours from pLVCD
2716 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2718 ::SetTextColor(hdc
, pLVCD
->clrText
);
2719 ::FillRect(hdc
, &rc
, AutoHBRUSH(pLVCD
->clrTextBk
));
2721 // we could use CDRF_NOTIFYSUBITEMDRAW here but it results in weird repaint
2722 // problems so just draw everything except the focus rect from here instead
2723 const int colCount
= Header_GetItemCount(ListView_GetHeader(hwndList
));
2724 for ( int col
= 0; col
< colCount
; col
++ )
2726 pLVCD
->iSubItem
= col
;
2727 HandleSubItemPrepaint(pLVCD
, hfont
, colCount
);
2730 HandleItemPostpaint(nmcd
);
2733 static WXLPARAM
HandleItemPrepaint(wxListCtrl
*listctrl
,
2734 LPNMLVCUSTOMDRAW pLVCD
,
2735 wxListItemAttr
*attr
)
2739 // nothing to do for this item
2740 return CDRF_DODEFAULT
;
2744 // set the colours to use for text drawing
2745 pLVCD
->clrText
= attr
->HasTextColour()
2746 ? wxColourToRGB(attr
->GetTextColour())
2747 : wxColourToRGB(listctrl
->GetTextColour());
2748 pLVCD
->clrTextBk
= attr
->HasBackgroundColour()
2749 ? wxColourToRGB(attr
->GetBackgroundColour())
2750 : wxColourToRGB(listctrl
->GetBackgroundColour());
2752 // select the font if non default one is specified
2753 if ( attr
->HasFont() )
2755 wxFont font
= attr
->GetFont();
2756 if ( font
.GetEncoding() != wxFONTENCODING_SYSTEM
)
2758 // the standard control ignores the font encoding/charset, at least
2759 // with recent comctl32.dll versions (5 and 6, it uses to work with
2760 // 4.something) so we have to draw the item entirely ourselves in
2762 HandleItemPaint(pLVCD
, GetHfontOf(font
));
2763 return CDRF_SKIPDEFAULT
;
2766 ::SelectObject(pLVCD
->nmcd
.hdc
, GetHfontOf(font
));
2768 return CDRF_NEWFONT
;
2771 return CDRF_DODEFAULT
;
2774 WXLPARAM
wxListCtrl::OnCustomDraw(WXLPARAM lParam
)
2776 LPNMLVCUSTOMDRAW pLVCD
= (LPNMLVCUSTOMDRAW
)lParam
;
2777 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2778 switch ( nmcd
.dwDrawStage
)
2781 // if we've got any items with non standard attributes,
2782 // notify us before painting each item
2784 // for virtual controls, always suppose that we have attributes as
2785 // there is no way to check for this
2786 if ( IsVirtual() || m_hasAnyAttr
)
2787 return CDRF_NOTIFYITEMDRAW
;
2790 case CDDS_ITEMPREPAINT
:
2791 const int item
= nmcd
.dwItemSpec
;
2793 // we get this message with item == 0 for an empty control, we
2794 // must ignore it as calling OnGetItemAttr() would be wrong
2795 if ( item
< 0 || item
>= GetItemCount() )
2798 return HandleItemPrepaint(this, pLVCD
, DoGetItemAttr(item
));
2801 return CDRF_DODEFAULT
;
2804 #endif // NM_CUSTOMDRAW supported
2806 // Necessary for drawing hrules and vrules, if specified
2807 void wxListCtrl::OnPaint(wxPaintEvent
& event
)
2809 bool drawHRules
= HasFlag(wxLC_HRULES
);
2810 bool drawVRules
= HasFlag(wxLC_VRULES
);
2812 if (!InReportView() || !drawHRules
&& !drawVRules
)
2820 wxControl::OnPaint(event
);
2822 // Reset the device origin since it may have been set
2823 dc
.SetDeviceOrigin(0, 0);
2825 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
));
2827 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2829 wxSize clientSize
= GetClientSize();
2832 int itemCount
= GetItemCount();
2836 long top
= GetTopItem();
2837 for (i
= top
; i
< top
+ GetCountPerPage() + 1; i
++)
2839 if (GetItemRect(i
, itemRect
))
2841 int cy
= itemRect
.GetTop();
2842 if (i
!= 0) // Don't draw the first one
2844 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2847 if (i
== itemCount
- 1)
2849 cy
= itemRect
.GetBottom();
2850 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2856 if (drawVRules
&& (i
> -1))
2858 wxRect firstItemRect
;
2859 GetItemRect(0, firstItemRect
);
2861 if (GetItemRect(i
, itemRect
))
2863 // this is a fix for bug 673394: erase the pixels which we would
2864 // otherwise leave on the screen
2865 static const int gap
= 2;
2866 dc
.SetPen(*wxTRANSPARENT_PEN
);
2867 dc
.SetBrush(wxBrush(GetBackgroundColour()));
2868 dc
.DrawRectangle(0, firstItemRect
.GetY() - gap
,
2869 clientSize
.GetWidth(), gap
);
2872 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2874 int numCols
= GetColumnCount();
2875 int* indexArray
= new int[numCols
];
2876 if ( !ListView_GetColumnOrderArray( GetHwnd(), numCols
, indexArray
) )
2878 wxFAIL_MSG( _T("invalid column index array in OnPaint()") );
2881 int x
= itemRect
.GetX();
2882 for (int col
= 0; col
< numCols
; col
++)
2884 int colWidth
= GetColumnWidth(indexArray
[col
]);
2886 dc
.DrawLine(x
-1, firstItemRect
.GetY() - gap
,
2887 x
-1, itemRect
.GetBottom());
2896 wxListCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2902 // we should bypass our own WM_PRINT handling as we don't handle
2903 // PRF_CHILDREN flag, so leave it to the native control itself
2904 return MSWDefWindowProc(nMsg
, wParam
, lParam
);
2907 case WM_CONTEXTMENU
:
2908 // because this message is propagated upwards the child-parent
2909 // chain, we get it for the right clicks on the header window but
2910 // this is confusing in wx as right clicking there already
2911 // generates a separate wxEVT_COMMAND_LIST_COL_RIGHT_CLICK event
2912 // so just ignore them
2913 if ( (HWND
)wParam
== ListView_GetHeader(GetHwnd()) )
2918 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
2921 // ----------------------------------------------------------------------------
2922 // virtual list controls
2923 // ----------------------------------------------------------------------------
2925 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
2927 // this is a pure virtual function, in fact - which is not really pure
2928 // because the controls which are not virtual don't need to implement it
2929 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2931 return wxEmptyString
;
2934 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
2936 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
2938 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
2942 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
2945 return OnGetItemImage(item
);
2950 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
2952 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
2953 _T("invalid item index in OnGetItemAttr()") );
2955 // no attributes by default
2959 wxListItemAttr
*wxListCtrl::DoGetItemAttr(long item
) const
2961 return IsVirtual() ? OnGetItemAttr(item
)
2962 : wxGetInternalDataAttr(this, item
);
2965 void wxListCtrl::SetItemCount(long count
)
2967 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2969 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT
, (WPARAM
)count
,
2970 LVSICF_NOSCROLL
| LVSICF_NOINVALIDATEALL
) )
2972 wxLogLastError(_T("ListView_SetItemCount"));
2975 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
2976 wxT("m_count should match ListView_GetItemCount"));
2979 void wxListCtrl::RefreshItem(long item
)
2981 RefreshItems(item
, item
);
2984 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
2986 ListView_RedrawItems(GetHwnd(), itemFrom
, itemTo
);
2989 // ----------------------------------------------------------------------------
2990 // internal data stuff
2991 // ----------------------------------------------------------------------------
2993 static wxListItemInternalData
*wxGetInternalData(HWND hwnd
, long itemId
)
2996 it
.mask
= LVIF_PARAM
;
2999 if ( !ListView_GetItem(hwnd
, &it
) )
3002 return (wxListItemInternalData
*) it
.lParam
;
3006 wxListItemInternalData
*wxGetInternalData(const wxListCtrl
*ctl
, long itemId
)
3008 return wxGetInternalData(GetHwndOf(ctl
), itemId
);
3012 wxListItemAttr
*wxGetInternalDataAttr(const wxListCtrl
*ctl
, long itemId
)
3014 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
3016 return data
? data
->attr
: NULL
;
3019 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
)
3021 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
3025 memset(&item
, 0, sizeof(item
));
3026 item
.iItem
= itemId
;
3027 item
.mask
= LVIF_PARAM
;
3028 item
.lParam
= (LPARAM
) 0;
3029 ListView_SetItem((HWND
)ctl
->GetHWND(), &item
);
3034 // ----------------------------------------------------------------------------
3035 // wxWin <-> MSW items conversions
3036 // ----------------------------------------------------------------------------
3038 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
3042 wxListItemInternalData
*internaldata
=
3043 (wxListItemInternalData
*) lvItem
.lParam
;
3046 info
.m_data
= internaldata
->lParam
;
3050 info
.m_stateMask
= 0;
3051 info
.m_itemId
= lvItem
.iItem
;
3053 long oldMask
= lvItem
.mask
;
3055 bool needText
= false;
3056 if (hwndListCtrl
!= 0)
3058 if ( lvItem
.mask
& LVIF_TEXT
)
3065 lvItem
.pszText
= new wxChar
[513];
3066 lvItem
.cchTextMax
= 512;
3068 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
3069 ::SendMessage(hwndListCtrl
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
);
3072 if ( lvItem
.mask
& LVIF_STATE
)
3074 info
.m_mask
|= wxLIST_MASK_STATE
;
3076 if ( lvItem
.stateMask
& LVIS_CUT
)
3078 info
.m_stateMask
|= wxLIST_STATE_CUT
;
3079 if ( lvItem
.state
& LVIS_CUT
)
3080 info
.m_state
|= wxLIST_STATE_CUT
;
3082 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
3084 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
3085 if ( lvItem
.state
& LVIS_DROPHILITED
)
3086 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
3088 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
3090 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
3091 if ( lvItem
.state
& LVIS_FOCUSED
)
3092 info
.m_state
|= wxLIST_STATE_FOCUSED
;
3094 if ( lvItem
.stateMask
& LVIS_SELECTED
)
3096 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
3097 if ( lvItem
.state
& LVIS_SELECTED
)
3098 info
.m_state
|= wxLIST_STATE_SELECTED
;
3102 if ( lvItem
.mask
& LVIF_TEXT
)
3104 info
.m_mask
|= wxLIST_MASK_TEXT
;
3105 info
.m_text
= lvItem
.pszText
;
3107 if ( lvItem
.mask
& LVIF_IMAGE
)
3109 info
.m_mask
|= wxLIST_MASK_IMAGE
;
3110 info
.m_image
= lvItem
.iImage
;
3112 if ( lvItem
.mask
& LVIF_PARAM
)
3113 info
.m_mask
|= wxLIST_MASK_DATA
;
3114 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
3115 info
.m_mask
|= wxLIST_SET_ITEM
;
3116 info
.m_col
= lvItem
.iSubItem
;
3121 delete[] lvItem
.pszText
;
3123 lvItem
.mask
= oldMask
;
3126 static void wxConvertToMSWFlags(long state
, long stateMask
, LV_ITEM
& lvItem
)
3128 if (stateMask
& wxLIST_STATE_CUT
)
3130 lvItem
.stateMask
|= LVIS_CUT
;
3131 if (state
& wxLIST_STATE_CUT
)
3132 lvItem
.state
|= LVIS_CUT
;
3134 if (stateMask
& wxLIST_STATE_DROPHILITED
)
3136 lvItem
.stateMask
|= LVIS_DROPHILITED
;
3137 if (state
& wxLIST_STATE_DROPHILITED
)
3138 lvItem
.state
|= LVIS_DROPHILITED
;
3140 if (stateMask
& wxLIST_STATE_FOCUSED
)
3142 lvItem
.stateMask
|= LVIS_FOCUSED
;
3143 if (state
& wxLIST_STATE_FOCUSED
)
3144 lvItem
.state
|= LVIS_FOCUSED
;
3146 if (stateMask
& wxLIST_STATE_SELECTED
)
3148 lvItem
.stateMask
|= LVIS_SELECTED
;
3149 if (state
& wxLIST_STATE_SELECTED
)
3150 lvItem
.state
|= LVIS_SELECTED
;
3154 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
3155 const wxListItem
& info
,
3158 lvItem
.iItem
= (int) info
.m_itemId
;
3160 lvItem
.iImage
= info
.m_image
;
3161 lvItem
.stateMask
= 0;
3164 lvItem
.iSubItem
= info
.m_col
;
3166 if (info
.m_mask
& wxLIST_MASK_STATE
)
3168 lvItem
.mask
|= LVIF_STATE
;
3170 wxConvertToMSWFlags(info
.m_state
, info
.m_stateMask
, lvItem
);
3173 if (info
.m_mask
& wxLIST_MASK_TEXT
)
3175 lvItem
.mask
|= LVIF_TEXT
;
3176 if ( ctrl
->HasFlag(wxLC_USER_TEXT
) )
3178 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
3182 // pszText is not const, hence the cast
3183 lvItem
.pszText
= (wxChar
*)info
.m_text
.wx_str();
3184 if ( lvItem
.pszText
)
3185 lvItem
.cchTextMax
= info
.m_text
.length();
3187 lvItem
.cchTextMax
= 0;
3190 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
3191 lvItem
.mask
|= LVIF_IMAGE
;
3194 static void wxConvertToMSWListCol(HWND hwndList
,
3196 const wxListItem
& item
,
3199 wxZeroMemory(lvCol
);
3201 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
3203 lvCol
.mask
|= LVCF_TEXT
;
3204 lvCol
.pszText
= (wxChar
*)item
.m_text
.wx_str(); // cast is safe
3207 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
3209 lvCol
.mask
|= LVCF_FMT
;
3211 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
3212 lvCol
.fmt
= LVCFMT_LEFT
;
3213 else if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
3214 lvCol
.fmt
= LVCFMT_RIGHT
;
3215 else if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
3216 lvCol
.fmt
= LVCFMT_CENTER
;
3219 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
3221 lvCol
.mask
|= LVCF_WIDTH
;
3222 if ( item
.m_width
== wxLIST_AUTOSIZE
)
3223 lvCol
.cx
= LVSCW_AUTOSIZE
;
3224 else if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3225 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
3227 lvCol
.cx
= item
.m_width
;
3230 // see comment at the end of wxListCtrl::GetColumn()
3231 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
3232 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
3234 if ( wxApp::GetComCtl32Version() >= 470 )
3236 lvCol
.mask
|= LVCF_IMAGE
;
3238 // we use LVCFMT_BITMAP_ON_RIGHT because the images on the right
3239 // seem to be generally nicer than on the left and the generic
3240 // version only draws them on the right (we don't have a flag to
3241 // specify the image location anyhow)
3243 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
3244 // make any difference in my tests -- but maybe we should?
3245 if ( item
.m_image
!= -1 )
3247 // as we're going to overwrite the format field, get its
3248 // current value first -- unless we want to overwrite it anyhow
3249 if ( !(lvCol
.mask
& LVCF_FMT
) )
3252 wxZeroMemory(lvColOld
);
3253 lvColOld
.mask
= LVCF_FMT
;
3254 if ( ListView_GetColumn(hwndList
, col
, &lvColOld
) )
3256 lvCol
.fmt
= lvColOld
.fmt
;
3259 lvCol
.mask
|= LVCF_FMT
;
3262 lvCol
.fmt
|= LVCFMT_BITMAP_ON_RIGHT
| LVCFMT_IMAGE
;
3265 lvCol
.iImage
= item
.m_image
;
3267 //else: it doesn't support item images anyhow
3269 #endif // _WIN32_IE >= 0x0300
3272 #endif // wxUSE_LISTCTRL