1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/listctrl.cpp
4 // Author: Julian Smart
5 // Modified by: Agron Selimaj
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
28 #include "wx/listctrl.h"
31 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
35 #include "wx/settings.h"
36 #include "wx/stopwatch.h"
37 #include "wx/dcclient.h"
38 #include "wx/textctrl.h"
41 #include "wx/imaglist.h"
42 #include "wx/vector.h"
44 #include "wx/msw/private.h"
45 #include "wx/msw/private/keyboard.h"
47 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__)
55 // Currently gcc and watcom don't define NMLVFINDITEM, and DMC only defines
56 // it by its old name NM_FINDTIEM.
58 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(NMLVFINDITEM)
59 #define HAVE_NMLVFINDITEM 1
60 #elif defined(__DMC__) || defined(NM_FINDITEM)
61 #define HAVE_NMLVFINDITEM 1
62 #define NMLVFINDITEM NM_FINDITEM
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 // convert our state and mask flags to LV_ITEM constants
70 static void wxConvertToMSWFlags(long state
, long mask
, LV_ITEM
& lvItem
);
72 // convert wxListItem to LV_ITEM
73 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
74 const wxListItem
& info
, LV_ITEM
& lvItem
);
76 // convert LV_ITEM to wxListItem
77 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
79 /* const */ LV_ITEM
& lvItem
);
81 // convert our wxListItem to LV_COLUMN
82 static void wxConvertToMSWListCol(HWND hwndList
,
84 const wxListItem
& item
,
90 // replacement for ListView_GetSubItemRect() which provokes warnings like
91 // "the address of 'rc' will always evaluate as 'true'" when used with mingw32
94 // this function does no error checking on item and subitem parameters, notice
95 // that subitem 0 means the whole item so there is no way to retrieve the
96 // rectangle of the first subitem using this function, in particular notice
97 // that the index is *not* 1-based, in spite of what MSDN says
99 wxGetListCtrlSubItemRect(HWND hwnd
, int item
, int subitem
, int flags
, RECT
& rect
)
103 return ::SendMessage(hwnd
, LVM_GETSUBITEMRECT
, item
, (LPARAM
)&rect
) != 0;
107 wxGetListCtrlItemRect(HWND hwnd
, int item
, int flags
, RECT
& rect
)
109 return wxGetListCtrlSubItemRect(hwnd
, item
, 0, flags
, rect
);
112 } // anonymous namespace
114 // ----------------------------------------------------------------------------
115 // private helper classes
116 // ----------------------------------------------------------------------------
118 // We have to handle both fooW and fooA notifications in several cases
119 // because of broken comctl32.dll and/or unicows.dll. This class is used to
120 // convert LV_ITEMA and LV_ITEMW to LV_ITEM (which is either LV_ITEMA or
121 // LV_ITEMW depending on wxUSE_UNICODE setting), so that it can be processed
122 // by wxConvertToMSWListItem().
124 #define LV_ITEM_NATIVE LV_ITEMW
125 #define LV_ITEM_OTHER LV_ITEMA
127 #define LV_CONV_TO_WX cMB2WX
128 #define LV_CONV_BUF wxMB2WXbuf
130 #define LV_ITEM_NATIVE LV_ITEMA
131 #define LV_ITEM_OTHER LV_ITEMW
133 #define LV_CONV_TO_WX cWC2WX
134 #define LV_CONV_BUF wxWC2WXbuf
135 #endif // Unicode/ANSI
140 // default ctor, use Init() later
141 wxLV_ITEM() { m_buf
= NULL
; m_pItem
= NULL
; }
143 // init without conversion
144 void Init(LV_ITEM_NATIVE
& item
)
146 wxASSERT_MSG( !m_pItem
, wxT("Init() called twice?") );
151 // init with conversion
152 void Init(const LV_ITEM_OTHER
& item
)
154 // avoid unnecessary dynamic memory allocation, jjust make m_pItem
155 // point to our own m_item
157 // memcpy() can't work if the struct sizes are different
158 wxCOMPILE_TIME_ASSERT( sizeof(LV_ITEM_OTHER
) == sizeof(LV_ITEM_NATIVE
),
159 CodeCantWorkIfDiffSizes
);
161 memcpy(&m_item
, &item
, sizeof(LV_ITEM_NATIVE
));
163 // convert text from ANSI to Unicod if necessary
164 if ( (item
.mask
& LVIF_TEXT
) && item
.pszText
)
166 m_buf
= new LV_CONV_BUF(wxConvLocal
.LV_CONV_TO_WX(item
.pszText
));
167 m_item
.pszText
= (wxChar
*)m_buf
->data();
171 // ctor without conversion
172 wxLV_ITEM(LV_ITEM_NATIVE
& item
) : m_buf(NULL
), m_pItem(&item
) { }
174 // ctor with conversion
175 wxLV_ITEM(LV_ITEM_OTHER
& item
) : m_buf(NULL
)
180 ~wxLV_ITEM() { delete m_buf
; }
182 // conversion to the real LV_ITEM
183 operator LV_ITEM_NATIVE
&() const { return *m_pItem
; }
188 LV_ITEM_NATIVE
*m_pItem
;
189 LV_ITEM_NATIVE m_item
;
191 wxDECLARE_NO_COPY_CLASS(wxLV_ITEM
);
194 ///////////////////////////////////////////////////////
196 // The MSW version had problems with SetTextColour() et
197 // al as the wxListItemAttr's were stored keyed on the
198 // item index. If a item was inserted anywhere but the end
199 // of the list the text attributes (colour etc) for
200 // the following items were out of sync.
203 // Under MSW the only way to associate data with a List
204 // item independent of its position in the list is to
205 // store a pointer to it in its lParam attribute. However
206 // user programs are already using this (via the
207 // SetItemData() GetItemData() calls).
209 // However what we can do is store a pointer to a
210 // structure which contains the attributes we want *and*
211 // a lParam -- and this is what wxMSWListItemData does.
213 // To conserve memory, a wxMSWListItemData is
214 // only allocated for a LV_ITEM if text attributes or
215 // user data(lparam) are being set.
216 class wxMSWListItemData
219 wxMSWListItemData() : attr(NULL
), lParam(0) {}
220 ~wxMSWListItemData() { delete attr
; }
222 wxListItemAttr
*attr
;
223 LPARAM lParam
; // real user data
225 wxDECLARE_NO_COPY_CLASS(wxMSWListItemData
);
228 BEGIN_EVENT_TABLE(wxListCtrl
, wxListCtrlBase
)
229 EVT_PAINT(wxListCtrl::OnPaint
)
230 EVT_CHAR_HOOK(wxListCtrl::OnCharHook
)
233 // ============================================================================
235 // ============================================================================
237 // ----------------------------------------------------------------------------
238 // wxListCtrl construction
239 // ----------------------------------------------------------------------------
241 void wxListCtrl::Init()
245 m_imageListState
= NULL
;
246 m_ownsImageListNormal
=
247 m_ownsImageListSmall
=
248 m_ownsImageListState
= false;
254 m_hasAnyAttr
= false;
257 bool wxListCtrl::Create(wxWindow
*parent
,
262 const wxValidator
& validator
,
263 const wxString
& name
)
265 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
268 if ( !MSWCreateControl(WC_LISTVIEW
, wxEmptyString
, pos
, size
) )
271 // explicitly say that we want to use Unicode because otherwise we get ANSI
272 // versions of _some_ messages (notably LVN_GETDISPINFOA) in MSLU build
273 wxSetCCUnicodeFormat(GetHwnd());
275 // We must set the default text colour to the system/theme color, otherwise
276 // GetTextColour will always return black
277 SetTextColour(GetDefaultAttributes().colFg
);
279 if ( InReportView() )
280 MSWSetExListStyles();
285 void wxListCtrl::MSWSetExListStyles()
287 // for comctl32.dll v 4.70+ we want to have some non default extended
288 // styles because it's prettier (and also because wxGTK does it like this)
289 if ( wxApp::GetComCtl32Version() >= 470 )
293 GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE
, 0,
294 // LVS_EX_LABELTIP shouldn't be used under Windows CE where it's
295 // not defined in the SDK headers
296 #ifdef LVS_EX_LABELTIP
299 LVS_EX_FULLROWSELECT
|
300 LVS_EX_SUBITEMIMAGES
|
301 // normally this should be governed by a style as it's probably not
302 // always appropriate, but we don't have any free styles left and
303 // it seems better to enable it by default than disable
304 LVS_EX_HEADERDRAGDROP
309 WXDWORD
wxListCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
311 WXDWORD wstyle
= wxListCtrlBase::MSWGetStyle(style
, exstyle
);
313 wstyle
|= LVS_SHAREIMAGELISTS
| LVS_SHOWSELALWAYS
;
318 #define MAP_MODE_STYLE(wx, ms) \
319 if ( style & (wx) ) { wstyle |= (ms); nModes++; }
320 #else // !wxDEBUG_LEVEL
321 #define MAP_MODE_STYLE(wx, ms) \
322 if ( style & (wx) ) wstyle |= (ms);
323 #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL
325 MAP_MODE_STYLE(wxLC_ICON
, LVS_ICON
)
326 MAP_MODE_STYLE(wxLC_SMALL_ICON
, LVS_SMALLICON
)
327 MAP_MODE_STYLE(wxLC_LIST
, LVS_LIST
)
328 MAP_MODE_STYLE(wxLC_REPORT
, LVS_REPORT
)
330 wxASSERT_MSG( nModes
== 1,
331 wxT("wxListCtrl style should have exactly one mode bit set") );
333 #undef MAP_MODE_STYLE
335 if ( style
& wxLC_ALIGN_LEFT
)
336 wstyle
|= LVS_ALIGNLEFT
;
338 if ( style
& wxLC_ALIGN_TOP
)
339 wstyle
|= LVS_ALIGNTOP
;
341 if ( style
& wxLC_AUTOARRANGE
)
342 wstyle
|= LVS_AUTOARRANGE
;
344 if ( style
& wxLC_NO_SORT_HEADER
)
345 wstyle
|= LVS_NOSORTHEADER
;
347 if ( style
& wxLC_NO_HEADER
)
348 wstyle
|= LVS_NOCOLUMNHEADER
;
350 if ( style
& wxLC_EDIT_LABELS
)
351 wstyle
|= LVS_EDITLABELS
;
353 if ( style
& wxLC_SINGLE_SEL
)
354 wstyle
|= LVS_SINGLESEL
;
356 if ( style
& wxLC_SORT_ASCENDING
)
358 wstyle
|= LVS_SORTASCENDING
;
360 wxASSERT_MSG( !(style
& wxLC_SORT_DESCENDING
),
361 wxT("can't sort in ascending and descending orders at once") );
363 else if ( style
& wxLC_SORT_DESCENDING
)
364 wstyle
|= LVS_SORTDESCENDING
;
366 #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
367 if ( style
& wxLC_VIRTUAL
)
369 int ver
= wxApp::GetComCtl32Version();
372 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."),
373 ver
/ 100, ver
% 100);
376 wstyle
|= LVS_OWNERDATA
;
378 #endif // ancient cygwin
383 void wxListCtrl::UpdateStyle()
387 // The new window view style
388 DWORD dwStyleNew
= MSWGetStyle(m_windowStyle
, NULL
);
390 // some styles are not returned by MSWGetStyle()
392 dwStyleNew
|= WS_VISIBLE
;
394 // Get the current window style.
395 DWORD dwStyleOld
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
397 // we don't have wxVSCROLL style, but the list control may have it,
398 // don't change it then
399 dwStyleNew
|= dwStyleOld
& (WS_HSCROLL
| WS_VSCROLL
);
401 // Only set the window style if the view bits have changed.
402 if ( dwStyleOld
!= dwStyleNew
)
404 ::SetWindowLong(GetHwnd(), GWL_STYLE
, dwStyleNew
);
406 // if we switched to the report view, set the extended styles for
408 if ( !(dwStyleOld
& LVS_REPORT
) && (dwStyleNew
& LVS_REPORT
) )
409 MSWSetExListStyles();
414 void wxListCtrl::FreeAllInternalData()
416 const unsigned count
= m_internalData
.size();
417 for ( unsigned n
= 0; n
< count
; n
++ )
418 delete m_internalData
[n
];
420 m_internalData
.clear();
423 void wxListCtrl::DeleteEditControl()
427 m_textCtrl
->UnsubclassWin();
428 m_textCtrl
->SetHWND(0);
429 wxDELETE(m_textCtrl
);
433 wxListCtrl::~wxListCtrl()
435 FreeAllInternalData();
439 if (m_ownsImageListNormal
)
440 delete m_imageListNormal
;
441 if (m_ownsImageListSmall
)
442 delete m_imageListSmall
;
443 if (m_ownsImageListState
)
444 delete m_imageListState
;
447 // ----------------------------------------------------------------------------
448 // set/get/change style
449 // ----------------------------------------------------------------------------
451 // Add or remove a single window style
452 void wxListCtrl::SetSingleStyle(long style
, bool add
)
454 long flag
= GetWindowStyleFlag();
456 // Get rid of conflicting styles
459 if ( style
& wxLC_MASK_TYPE
)
460 flag
= flag
& ~wxLC_MASK_TYPE
;
461 if ( style
& wxLC_MASK_ALIGN
)
462 flag
= flag
& ~wxLC_MASK_ALIGN
;
463 if ( style
& wxLC_MASK_SORT
)
464 flag
= flag
& ~wxLC_MASK_SORT
;
472 SetWindowStyleFlag(flag
);
475 // Set the whole window style
476 void wxListCtrl::SetWindowStyleFlag(long flag
)
478 if ( flag
!= m_windowStyle
)
480 wxListCtrlBase::SetWindowStyleFlag(flag
);
488 // ----------------------------------------------------------------------------
490 // ----------------------------------------------------------------------------
492 /* static */ wxVisualAttributes
493 wxListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
495 wxVisualAttributes attrs
= GetCompositeControlsDefaultAttributes(variant
);
497 // common controls have their own default font
498 attrs
.font
= wxGetCCDefaultFont();
503 // Sets the foreground, i.e. text, colour
504 bool wxListCtrl::SetForegroundColour(const wxColour
& col
)
506 if ( !wxWindow::SetForegroundColour(col
) )
509 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col
));
514 // Sets the background colour
515 bool wxListCtrl::SetBackgroundColour(const wxColour
& col
)
517 if ( !wxWindow::SetBackgroundColour(col
) )
520 // we set the same colour for both the "empty" background and the items
522 COLORREF color
= wxColourToRGB(col
);
523 ListView_SetBkColor(GetHwnd(), color
);
524 ListView_SetTextBkColor(GetHwnd(), color
);
529 // Gets information about this column
530 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
535 lvCol
.mask
= LVCF_WIDTH
;
537 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
539 lvCol
.mask
|= LVCF_TEXT
;
540 lvCol
.pszText
= new wxChar
[513];
541 lvCol
.cchTextMax
= 512;
544 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
546 lvCol
.mask
|= LVCF_FMT
;
549 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
551 lvCol
.mask
|= LVCF_IMAGE
;
554 bool success
= ListView_GetColumn(GetHwnd(), col
, &lvCol
) != 0;
556 // item.m_subItem = lvCol.iSubItem;
557 item
.m_width
= lvCol
.cx
;
559 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) && lvCol
.pszText
)
561 item
.m_text
= lvCol
.pszText
;
562 delete[] lvCol
.pszText
;
565 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
567 switch (lvCol
.fmt
& LVCFMT_JUSTIFYMASK
) {
569 item
.m_format
= wxLIST_FORMAT_LEFT
;
572 item
.m_format
= wxLIST_FORMAT_RIGHT
;
575 item
.m_format
= wxLIST_FORMAT_CENTRE
;
578 item
.m_format
= -1; // Unknown?
583 // the column images were not supported in older versions but how to check
584 // for this? we can't use _WIN32_IE because we always define it to a very
585 // high value, so see if another symbol which is only defined starting from
586 // comctl32.dll 4.70 is available
587 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
588 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
590 item
.m_image
= lvCol
.iImage
;
592 #endif // LVCOLUMN::iImage exists
597 // Sets information about this column
598 bool wxListCtrl::SetColumn(int col
, const wxListItem
& item
)
601 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
603 return ListView_SetColumn(GetHwnd(), col
, &lvCol
) != 0;
606 // Gets the column width
607 int wxListCtrl::GetColumnWidth(int col
) const
609 return ListView_GetColumnWidth(GetHwnd(), col
);
612 // Sets the column width
613 bool wxListCtrl::SetColumnWidth(int col
, int width
)
615 if ( m_windowStyle
& wxLC_LIST
)
618 if ( width
== wxLIST_AUTOSIZE
)
619 width
= LVSCW_AUTOSIZE
;
620 else if ( width
== wxLIST_AUTOSIZE_USEHEADER
)
621 width
= LVSCW_AUTOSIZE_USEHEADER
;
623 return ListView_SetColumnWidth(GetHwnd(), col
, width
) != 0;
626 // ----------------------------------------------------------------------------
628 // ----------------------------------------------------------------------------
630 int wxListCtrl::GetColumnIndexFromOrder(int order
) const
632 const int numCols
= GetColumnCount();
633 wxCHECK_MSG( order
>= 0 && order
< numCols
, -1,
634 wxT("Column position out of bounds") );
636 wxArrayInt
indexArray(numCols
);
637 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &indexArray
[0]) )
640 return indexArray
[order
];
643 int wxListCtrl::GetColumnOrder(int col
) const
645 const int numCols
= GetColumnCount();
646 wxASSERT_MSG( col
>= 0 && col
< numCols
, wxT("Column index out of bounds") );
648 wxArrayInt
indexArray(numCols
);
649 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &indexArray
[0]) )
652 for ( int pos
= 0; pos
< numCols
; pos
++ )
654 if ( indexArray
[pos
] == col
)
658 wxFAIL_MSG( wxT("no column with with given order?") );
663 // Gets the column order for all columns
664 wxArrayInt
wxListCtrl::GetColumnsOrder() const
666 const int numCols
= GetColumnCount();
668 wxArrayInt
orders(numCols
);
669 if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &orders
[0]) )
675 // Sets the column order for all columns
676 bool wxListCtrl::SetColumnsOrder(const wxArrayInt
& orders
)
678 const int numCols
= GetColumnCount();
680 wxCHECK_MSG( orders
.size() == (size_t)numCols
, false,
681 wxT("wrong number of elements in column orders array") );
683 return ListView_SetColumnOrderArray(GetHwnd(), numCols
, &orders
[0]) != 0;
687 // Gets the number of items that can fit vertically in the
688 // visible area of the list control (list or report view)
689 // or the total number of items in the list control (icon
690 // or small icon view)
691 int wxListCtrl::GetCountPerPage() const
693 return ListView_GetCountPerPage(GetHwnd());
696 // Gets the edit control for editing labels.
697 wxTextCtrl
* wxListCtrl::GetEditControl() const
699 // first check corresponds to the case when the label editing was started
700 // by user and hence m_textCtrl wasn't created by EditLabel() at all, while
701 // the second case corresponds to us being called from inside EditLabel()
702 // (e.g. from a user wxEVT_LIST_BEGIN_LABEL_EDIT handler): in this
703 // case EditLabel() did create the control but it didn't have an HWND to
704 // initialize it with yet
705 if ( !m_textCtrl
|| !m_textCtrl
->GetHWND() )
707 HWND hwndEdit
= ListView_GetEditControl(GetHwnd());
710 wxListCtrl
* const self
= const_cast<wxListCtrl
*>(this);
713 self
->m_textCtrl
= new wxTextCtrl
;
714 self
->InitEditControl((WXHWND
)hwndEdit
);
721 // Gets information about the item
722 bool wxListCtrl::GetItem(wxListItem
& info
) const
725 wxZeroMemory(lvItem
);
727 lvItem
.iItem
= info
.m_itemId
;
728 lvItem
.iSubItem
= info
.m_col
;
730 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
732 lvItem
.mask
|= LVIF_TEXT
;
733 lvItem
.pszText
= new wxChar
[513];
734 lvItem
.cchTextMax
= 512;
738 lvItem
.pszText
= NULL
;
741 if (info
.m_mask
& wxLIST_MASK_DATA
)
742 lvItem
.mask
|= LVIF_PARAM
;
744 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
745 lvItem
.mask
|= LVIF_IMAGE
;
747 if ( info
.m_mask
& wxLIST_MASK_STATE
)
749 lvItem
.mask
|= LVIF_STATE
;
750 wxConvertToMSWFlags(0, info
.m_stateMask
, lvItem
);
753 bool success
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0;
756 wxLogError(_("Couldn't retrieve information about list control item %d."),
761 // give NULL as hwnd as we already have everything we need
762 wxConvertFromMSWListItem(NULL
, info
, lvItem
);
766 delete[] lvItem
.pszText
;
771 // Sets information about the item
772 bool wxListCtrl::SetItem(wxListItem
& info
)
774 const long id
= info
.GetId();
775 wxCHECK_MSG( id
>= 0 && id
< GetItemCount(), false,
776 wxT("invalid item index in SetItem") );
779 wxConvertToMSWListItem(this, info
, item
);
781 // we never update the lParam if it contains our pointer
782 // to the wxMSWListItemData structure
783 item
.mask
&= ~LVIF_PARAM
;
785 // check if setting attributes or lParam
786 if ( info
.HasAttributes() || (info
.m_mask
& wxLIST_MASK_DATA
) )
788 // get internal item data
789 wxMSWListItemData
*data
= MSWGetItemData(id
);
793 // need to allocate the internal data object
794 data
= new wxMSWListItemData
;
795 m_internalData
.push_back(data
);
796 item
.lParam
= (LPARAM
) data
;
797 item
.mask
|= LVIF_PARAM
;
802 if ( info
.m_mask
& wxLIST_MASK_DATA
)
803 data
->lParam
= info
.m_data
;
806 if ( info
.HasAttributes() )
808 const wxListItemAttr
& attrNew
= *info
.GetAttributes();
810 // don't overwrite the already set attributes if we have them
812 data
->attr
->AssignFrom(attrNew
);
814 data
->attr
= new wxListItemAttr(attrNew
);
819 // we could be changing only the attribute in which case we don't need to
820 // call ListView_SetItem() at all
823 if ( !ListView_SetItem(GetHwnd(), &item
) )
825 wxLogDebug(wxT("ListView_SetItem() failed"));
831 // we need to update the item immediately to show the new image
832 bool updateNow
= (info
.m_mask
& wxLIST_MASK_IMAGE
) != 0;
834 // check whether it has any custom attributes
835 if ( info
.HasAttributes() )
839 // if the colour has changed, we must redraw the item
845 // we need this to make the change visible right now
846 RefreshItem(item
.iItem
);
852 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
856 info
.m_mask
= wxLIST_MASK_TEXT
;
857 info
.m_itemId
= index
;
861 info
.m_image
= imageId
;
862 info
.m_mask
|= wxLIST_MASK_IMAGE
;
864 return SetItem(info
);
868 // Gets the item state
869 int wxListCtrl::GetItemState(long item
, long stateMask
) const
873 info
.m_mask
= wxLIST_MASK_STATE
;
874 info
.m_stateMask
= stateMask
;
875 info
.m_itemId
= item
;
883 // Sets the item state
884 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
886 // NB: don't use SetItem() here as it doesn't work with the virtual list
889 wxZeroMemory(lvItem
);
891 wxConvertToMSWFlags(state
, stateMask
, lvItem
);
893 const bool changingFocus
= (stateMask
& wxLIST_STATE_FOCUSED
) &&
894 (state
& wxLIST_STATE_FOCUSED
);
896 // for the virtual list controls we need to refresh the previously focused
897 // item manually when changing focus without changing selection
898 // programmatically because otherwise it keeps its focus rectangle until
899 // next repaint (yet another comctl32 bug)
901 if ( IsVirtual() && changingFocus
)
903 focusOld
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_FOCUSED
);
910 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE
,
911 (WPARAM
)item
, (LPARAM
)&lvItem
) )
913 wxLogLastError(wxT("ListView_SetItemState"));
918 if ( focusOld
!= -1 )
920 // no need to refresh the item if it was previously selected, it would
921 // only result in annoying flicker
922 if ( !(GetItemState(focusOld
,
923 wxLIST_STATE_SELECTED
) & wxLIST_STATE_SELECTED
) )
925 RefreshItem(focusOld
);
929 // we expect the selection anchor, i.e. the item from which multiple
930 // selection (such as performed with e.g. Shift-arrows) starts, to be the
931 // same as the currently focused item but the native control doesn't update
932 // it when we change focus and leaves at the last item it set itself focus
933 // to, so do it explicitly
934 if ( changingFocus
&& !HasFlag(wxLC_SINGLE_SEL
) )
936 ListView_SetSelectionMark(GetHwnd(), item
);
942 // Sets the item image
943 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
945 return SetItemColumnImage(item
, 0, image
);
948 // Sets the item image
949 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
953 info
.m_mask
= wxLIST_MASK_IMAGE
;
954 info
.m_image
= image
;
955 info
.m_itemId
= item
;
958 return SetItem(info
);
961 // Gets the item text
962 wxString
wxListCtrl::GetItemText(long item
, int col
) const
966 info
.m_mask
= wxLIST_MASK_TEXT
;
967 info
.m_itemId
= item
;
971 return wxEmptyString
;
975 // Sets the item text
976 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
980 info
.m_mask
= wxLIST_MASK_TEXT
;
981 info
.m_itemId
= item
;
987 // Gets the internal item data
988 wxMSWListItemData
*wxListCtrl::MSWGetItemData(long itemId
) const
991 it
.mask
= LVIF_PARAM
;
994 if ( !ListView_GetItem(GetHwnd(), &it
) )
997 return (wxMSWListItemData
*) it
.lParam
;
1000 // Gets the item data
1001 wxUIntPtr
wxListCtrl::GetItemData(long item
) const
1005 info
.m_mask
= wxLIST_MASK_DATA
;
1006 info
.m_itemId
= item
;
1013 // Sets the item data
1014 bool wxListCtrl::SetItemPtrData(long item
, wxUIntPtr data
)
1018 info
.m_mask
= wxLIST_MASK_DATA
;
1019 info
.m_itemId
= item
;
1022 return SetItem(info
);
1025 wxRect
wxListCtrl::GetViewRect() const
1029 // ListView_GetViewRect() can only be used in icon and small icon views
1030 // (this is documented in MSDN and, indeed, it returns bogus results in
1031 // report view, at least with comctl32.dll v6 under Windows 2003)
1032 if ( HasFlag(wxLC_ICON
| wxLC_SMALL_ICON
) )
1035 if ( !ListView_GetViewRect(GetHwnd(), &rc
) )
1037 wxLogDebug(wxT("ListView_GetViewRect() failed."));
1042 wxCopyRECTToRect(rc
, rect
);
1044 else if ( HasFlag(wxLC_REPORT
) )
1046 const long count
= GetItemCount();
1049 GetItemRect(wxMin(GetTopItem() + GetCountPerPage(), count
- 1), rect
);
1051 // extend the rectangle to start at the top (we include the column
1052 // headers, if any, for compatibility with the generic version)
1053 rect
.height
+= rect
.y
;
1059 wxFAIL_MSG( wxT("not implemented in this mode") );
1065 // Gets the item rectangle
1066 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
1068 return GetSubItemRect( item
, wxLIST_GETSUBITEMRECT_WHOLEITEM
, rect
, code
) ;
1071 bool wxListCtrl::GetSubItemRect(long item
, long subItem
, wxRect
& rect
, int code
) const
1073 // ListView_GetSubItemRect() doesn't do subItem error checking and returns
1074 // true even for the out of range values of it (even if the results are
1075 // completely bogus in this case), so we check item validity ourselves
1076 wxCHECK_MSG( subItem
== wxLIST_GETSUBITEMRECT_WHOLEITEM
||
1077 (subItem
>= 0 && subItem
< GetColumnCount()),
1078 false, wxT("invalid sub item index") );
1080 // use wxCHECK_MSG against "item" too, for coherency with the generic implementation:
1081 wxCHECK_MSG( item
>= 0 && item
< GetItemCount(), false,
1082 wxT("invalid item in GetSubItemRect") );
1085 if ( code
== wxLIST_RECT_BOUNDS
)
1086 codeWin
= LVIR_BOUNDS
;
1087 else if ( code
== wxLIST_RECT_ICON
)
1088 codeWin
= LVIR_ICON
;
1089 else if ( code
== wxLIST_RECT_LABEL
)
1090 codeWin
= LVIR_LABEL
;
1093 wxFAIL_MSG( wxT("incorrect code in GetItemRect() / GetSubItemRect()") );
1094 codeWin
= LVIR_BOUNDS
;
1098 if ( !wxGetListCtrlSubItemRect
1102 subItem
== wxLIST_GETSUBITEMRECT_WHOLEITEM
? 0 : subItem
,
1110 wxCopyRECTToRect(rectWin
, rect
);
1112 // there is no way to retrieve the first sub item bounding rectangle using
1113 // wxGetListCtrlSubItemRect() as 0 means the whole item, so we need to
1114 // truncate it at first column ourselves
1115 if ( subItem
== 0 && code
== wxLIST_RECT_BOUNDS
)
1116 rect
.width
= GetColumnWidth(0);
1124 // Gets the item position
1125 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1129 bool success
= (ListView_GetItemPosition(GetHwnd(), (int) item
, &pt
) != 0);
1131 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
1135 // Sets the item position.
1136 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1138 return (ListView_SetItemPosition(GetHwnd(), (int) item
, pos
.x
, pos
.y
) != 0);
1141 // Gets the number of items in the list control
1142 int wxListCtrl::GetItemCount() const
1147 wxSize
wxListCtrl::GetItemSpacing() const
1149 const int spacing
= ListView_GetItemSpacing(GetHwnd(), (BOOL
)HasFlag(wxLC_SMALL_ICON
));
1151 return wxSize(LOWORD(spacing
), HIWORD(spacing
));
1154 #if WXWIN_COMPATIBILITY_2_6
1156 int wxListCtrl::GetItemSpacing(bool isSmall
) const
1158 return ListView_GetItemSpacing(GetHwnd(), (BOOL
) isSmall
);
1161 #endif // WXWIN_COMPATIBILITY_2_6
1163 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1166 info
.m_itemId
= item
;
1167 info
.SetTextColour( col
);
1171 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1174 wxMSWListItemData
*data
= MSWGetItemData(item
);
1175 if ( data
&& data
->attr
)
1176 col
= data
->attr
->GetTextColour();
1181 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1184 info
.m_itemId
= item
;
1185 info
.SetBackgroundColour( col
);
1189 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1192 wxMSWListItemData
*data
= MSWGetItemData(item
);
1193 if ( data
&& data
->attr
)
1194 col
= data
->attr
->GetBackgroundColour();
1199 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
1202 info
.m_itemId
= item
;
1207 wxFont
wxListCtrl::GetItemFont( long item
) const
1210 wxMSWListItemData
*data
= MSWGetItemData(item
);
1211 if ( data
&& data
->attr
)
1212 f
= data
->attr
->GetFont();
1217 // Gets the number of selected items in the list control
1218 int wxListCtrl::GetSelectedItemCount() const
1220 return ListView_GetSelectedCount(GetHwnd());
1223 // Gets the text colour of the listview
1224 wxColour
wxListCtrl::GetTextColour() const
1226 COLORREF ref
= ListView_GetTextColor(GetHwnd());
1227 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
1231 // Sets the text colour of the listview
1232 void wxListCtrl::SetTextColour(const wxColour
& col
)
1234 ListView_SetTextColor(GetHwnd(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue()));
1237 // Gets the index of the topmost visible item when in
1238 // list or report view
1239 long wxListCtrl::GetTopItem() const
1241 return (long) ListView_GetTopIndex(GetHwnd());
1244 // Searches for an item, starting from 'item'.
1245 // 'geometry' is one of
1246 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1247 // 'state' is a state bit flag, one or more of
1248 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1249 // item can be -1 to find the first item that matches the
1251 // Returns the item or -1 if unsuccessful.
1252 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1256 if ( geom
== wxLIST_NEXT_ABOVE
)
1257 flags
|= LVNI_ABOVE
;
1258 if ( geom
== wxLIST_NEXT_ALL
)
1260 if ( geom
== wxLIST_NEXT_BELOW
)
1261 flags
|= LVNI_BELOW
;
1262 if ( geom
== wxLIST_NEXT_LEFT
)
1263 flags
|= LVNI_TOLEFT
;
1264 if ( geom
== wxLIST_NEXT_RIGHT
)
1265 flags
|= LVNI_TORIGHT
;
1267 if ( state
& wxLIST_STATE_CUT
)
1269 if ( state
& wxLIST_STATE_DROPHILITED
)
1270 flags
|= LVNI_DROPHILITED
;
1271 if ( state
& wxLIST_STATE_FOCUSED
)
1272 flags
|= LVNI_FOCUSED
;
1273 if ( state
& wxLIST_STATE_SELECTED
)
1274 flags
|= LVNI_SELECTED
;
1276 return (long) ListView_GetNextItem(GetHwnd(), item
, flags
);
1280 wxImageList
*wxListCtrl::GetImageList(int which
) const
1282 if ( which
== wxIMAGE_LIST_NORMAL
)
1284 return m_imageListNormal
;
1286 else if ( which
== wxIMAGE_LIST_SMALL
)
1288 return m_imageListSmall
;
1290 else if ( which
== wxIMAGE_LIST_STATE
)
1292 return m_imageListState
;
1297 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1300 if ( which
== wxIMAGE_LIST_NORMAL
)
1302 flags
= LVSIL_NORMAL
;
1303 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1304 m_imageListNormal
= imageList
;
1305 m_ownsImageListNormal
= false;
1307 else if ( which
== wxIMAGE_LIST_SMALL
)
1309 flags
= LVSIL_SMALL
;
1310 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1311 m_imageListSmall
= imageList
;
1312 m_ownsImageListSmall
= false;
1314 else if ( which
== wxIMAGE_LIST_STATE
)
1316 flags
= LVSIL_STATE
;
1317 if (m_ownsImageListState
) delete m_imageListState
;
1318 m_imageListState
= imageList
;
1319 m_ownsImageListState
= false;
1321 (void) ListView_SetImageList(GetHwnd(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
1324 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1326 SetImageList(imageList
, which
);
1327 if ( which
== wxIMAGE_LIST_NORMAL
)
1328 m_ownsImageListNormal
= true;
1329 else if ( which
== wxIMAGE_LIST_SMALL
)
1330 m_ownsImageListSmall
= true;
1331 else if ( which
== wxIMAGE_LIST_STATE
)
1332 m_ownsImageListState
= true;
1335 // ----------------------------------------------------------------------------
1337 // ----------------------------------------------------------------------------
1339 wxSize
wxListCtrl::MSWGetBestViewRect(int x
, int y
) const
1341 // The cast is necessary to suppress a MinGW warning due to a missing cast
1342 // to WPARAM in the definition of ListView_ApproximateViewRect() in its
1343 // own headers (this was the case up to at least MinGW 4.8).
1344 const DWORD rc
= ListView_ApproximateViewRect(GetHwnd(), x
, y
, (WPARAM
)-1);
1346 wxSize
size(LOWORD(rc
), HIWORD(rc
));
1348 // We have to add space for the scrollbars ourselves, they're not taken
1349 // into account by ListView_ApproximateViewRect(), at least not with
1350 // commctrl32.dll v6.
1351 const DWORD mswStyle
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1353 if ( mswStyle
& WS_HSCROLL
)
1354 size
.y
+= wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y
);
1355 if ( mswStyle
& WS_VSCROLL
)
1356 size
.x
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
1361 // ----------------------------------------------------------------------------
1363 // ----------------------------------------------------------------------------
1365 // Arranges the items
1366 bool wxListCtrl::Arrange(int flag
)
1369 if ( flag
== wxLIST_ALIGN_LEFT
)
1370 code
= LVA_ALIGNLEFT
;
1371 else if ( flag
== wxLIST_ALIGN_TOP
)
1372 code
= LVA_ALIGNTOP
;
1373 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
1375 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
1376 code
= LVA_SNAPTOGRID
;
1378 return (ListView_Arrange(GetHwnd(), code
) != 0);
1382 bool wxListCtrl::DeleteItem(long item
)
1384 if ( !ListView_DeleteItem(GetHwnd(), (int) item
) )
1386 wxLogLastError(wxT("ListView_DeleteItem"));
1391 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1392 wxT("m_count should match ListView_GetItemCount"));
1394 // the virtual list control doesn't refresh itself correctly, help it
1397 // we need to refresh all the lines below the one which was deleted
1399 if ( item
> 0 && GetItemCount() )
1401 GetItemRect(item
- 1, rectItem
);
1406 rectItem
.height
= 0;
1409 wxRect rectWin
= GetRect();
1410 rectWin
.height
= rectWin
.GetBottom() - rectItem
.GetBottom();
1411 rectWin
.y
= rectItem
.GetBottom();
1413 RefreshRect(rectWin
);
1419 // Deletes all items
1420 bool wxListCtrl::DeleteAllItems()
1422 // Calling ListView_DeleteAllItems() will always generate an event but we
1423 // shouldn't do it if the control is empty
1424 return !GetItemCount() || ListView_DeleteAllItems(GetHwnd()) != 0;
1427 // Deletes all items
1428 bool wxListCtrl::DeleteAllColumns()
1430 while ( m_colCount
> 0 )
1432 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1434 wxLogLastError(wxT("ListView_DeleteColumn"));
1442 wxASSERT_MSG( m_colCount
== 0, wxT("no columns should be left") );
1448 bool wxListCtrl::DeleteColumn(int col
)
1450 bool success
= (ListView_DeleteColumn(GetHwnd(), col
) != 0);
1452 if ( success
&& (m_colCount
> 0) )
1457 // Clears items, and columns if there are any.
1458 void wxListCtrl::ClearAll()
1461 if ( m_colCount
> 0 )
1465 void wxListCtrl::InitEditControl(WXHWND hWnd
)
1467 m_textCtrl
->SetHWND(hWnd
);
1468 m_textCtrl
->SubclassWin(hWnd
);
1469 m_textCtrl
->SetParent(this);
1471 // we must disallow TABbing away from the control while the edit control is
1472 // shown because this leaves it in some strange state (just try removing
1473 // this line and then pressing TAB while editing an item in listctrl
1475 m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle() | wxTE_PROCESS_TAB
);
1478 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1480 wxCHECK_MSG( textControlClass
->IsKindOf(wxCLASSINFO(wxTextCtrl
)), NULL
,
1481 "control used for label editing must be a wxTextCtrl" );
1483 // ListView_EditLabel requires that the list has focus.
1486 // create m_textCtrl here before calling ListView_EditLabel() because it
1487 // generates wxEVT_LIST_BEGIN_LABEL_EDIT event from inside it and
1488 // the user handler for it can call GetEditControl() resulting in an on
1489 // demand creation of a stock wxTextCtrl instead of the control of a
1490 // (possibly) custom wxClassInfo
1491 DeleteEditControl();
1492 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1494 WXHWND hWnd
= (WXHWND
) ListView_EditLabel(GetHwnd(), item
);
1497 // failed to start editing
1498 wxDELETE(m_textCtrl
);
1503 // if GetEditControl() hasn't been called, we need to initialize the edit
1504 // control ourselves
1505 if ( !m_textCtrl
->GetHWND() )
1506 InitEditControl(hWnd
);
1511 // End label editing, optionally cancelling the edit
1512 bool wxListCtrl::EndEditLabel(bool cancel
)
1514 // m_textCtrl is not always ready, ie. in EVT_LIST_BEGIN_LABEL_EDIT
1515 HWND hwnd
= ListView_GetEditControl(GetHwnd());
1519 // Newer versions of Windows have a special ListView_CancelEditLabel()
1520 // message for cancelling editing but it, rather counter-intuitively, keeps
1521 // the last text entered in the dialog while cancelling as we do it below
1522 // restores the original text which is the more expected behaviour.
1524 // We shouldn't destroy the control ourselves according to MSDN, which
1525 // proposes WM_CANCELMODE to do this, but it doesn't seem to work so
1526 // emulate the corresponding user action instead.
1527 ::SendMessage(hwnd
, WM_KEYDOWN
, cancel
? VK_ESCAPE
: VK_RETURN
, 0);
1532 // Ensures this item is visible
1533 bool wxListCtrl::EnsureVisible(long item
)
1535 return ListView_EnsureVisible(GetHwnd(), (int) item
, FALSE
) != FALSE
;
1538 // Find an item whose label matches this string, starting from the item after 'start'
1539 // or the beginning if 'start' is -1.
1540 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1542 LV_FINDINFO findInfo
;
1544 findInfo
.flags
= LVFI_STRING
;
1546 findInfo
.flags
|= LVFI_PARTIAL
;
1547 findInfo
.psz
= str
.t_str();
1549 // ListView_FindItem() excludes the first item from search and to look
1550 // through all the items you need to start from -1 which is unnatural and
1551 // inconsistent with the generic version - so we adjust the index
1554 return ListView_FindItem(GetHwnd(), start
, &findInfo
);
1557 // Find an item whose data matches this data, starting from the item after
1558 // 'start' or the beginning if 'start' is -1.
1559 long wxListCtrl::FindItem(long start
, wxUIntPtr data
)
1561 // we can't use ListView_FindItem() directly as we don't store the data
1562 // pointer itself in the control but rather our own internal data, so first
1563 // we need to find the right value to search for (and there can be several
1565 int idx
= wxNOT_FOUND
;
1566 const unsigned count
= m_internalData
.size();
1567 for ( unsigned n
= 0; n
< count
; n
++ )
1569 if ( m_internalData
[n
]->lParam
== (LPARAM
)data
)
1571 LV_FINDINFO findInfo
;
1572 findInfo
.flags
= LVFI_PARAM
;
1573 findInfo
.lParam
= (LPARAM
)wxPtrToUInt(m_internalData
[n
]);
1575 int rc
= ListView_FindItem(GetHwnd(), start
, &findInfo
);
1578 if ( idx
== wxNOT_FOUND
|| rc
< idx
)
1581 if ( idx
== start
+ 1 )
1583 // we can stop here, we don't risk finding a closer
1588 //else: this item is after the previously found one
1596 // Find an item nearest this position in the specified direction, starting from
1597 // the item after 'start' or the beginning if 'start' is -1.
1598 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1600 LV_FINDINFO findInfo
;
1602 findInfo
.flags
= LVFI_NEARESTXY
;
1603 findInfo
.pt
.x
= pt
.x
;
1604 findInfo
.pt
.y
= pt
.y
;
1605 findInfo
.vkDirection
= VK_RIGHT
;
1607 if ( direction
== wxLIST_FIND_UP
)
1608 findInfo
.vkDirection
= VK_UP
;
1609 else if ( direction
== wxLIST_FIND_DOWN
)
1610 findInfo
.vkDirection
= VK_DOWN
;
1611 else if ( direction
== wxLIST_FIND_LEFT
)
1612 findInfo
.vkDirection
= VK_LEFT
;
1613 else if ( direction
== wxLIST_FIND_RIGHT
)
1614 findInfo
.vkDirection
= VK_RIGHT
;
1616 return ListView_FindItem(GetHwnd(), start
, &findInfo
);
1619 // Determines which item (if any) is at the specified point,
1620 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1622 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const
1624 LV_HITTESTINFO hitTestInfo
;
1625 hitTestInfo
.pt
.x
= (int) point
.x
;
1626 hitTestInfo
.pt
.y
= (int) point
.y
;
1629 #ifdef LVM_SUBITEMHITTEST
1630 if ( ptrSubItem
&& wxApp::GetComCtl32Version() >= 470 )
1632 item
= ListView_SubItemHitTest(GetHwnd(), &hitTestInfo
);
1633 *ptrSubItem
= hitTestInfo
.iSubItem
;
1636 #endif // LVM_SUBITEMHITTEST
1638 item
= ListView_HitTest(GetHwnd(), &hitTestInfo
);
1643 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
1644 flags
|= wxLIST_HITTEST_ABOVE
;
1645 if ( hitTestInfo
.flags
& LVHT_BELOW
)
1646 flags
|= wxLIST_HITTEST_BELOW
;
1647 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
1648 flags
|= wxLIST_HITTEST_TOLEFT
;
1649 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
1650 flags
|= wxLIST_HITTEST_TORIGHT
;
1652 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
1653 flags
|= wxLIST_HITTEST_NOWHERE
;
1655 // note a bug or at least a very strange feature of comtl32.dll (tested
1656 // with version 4.0 under Win95 and 6.0 under Win 2003): if you click to
1657 // the right of the item label, ListView_HitTest() returns a combination of
1658 // LVHT_ONITEMICON, LVHT_ONITEMLABEL and LVHT_ONITEMSTATEICON -- filter out
1659 // the bits which don't make sense
1660 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
1662 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
1664 // do not translate LVHT_ONITEMICON here, as per above
1668 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
1669 flags
|= wxLIST_HITTEST_ONITEMICON
;
1670 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
1671 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
1678 // Inserts an item, returning the index of the new item if successful,
1680 long wxListCtrl::InsertItem(const wxListItem
& info
)
1682 wxASSERT_MSG( !IsVirtual(), wxT("can't be used with virtual controls") );
1684 // In 2.8 it was possible to succeed inserting an item without initializing
1685 // its ID as it defaulted to 0. This was however never supported and in 2.9
1686 // the ID is -1 by default and inserting it simply fails, but it might be
1687 // not obvious why does it happen, so check it proactively.
1688 wxASSERT_MSG( info
.m_itemId
!= -1, wxS("Item ID must be set.") );
1691 wxConvertToMSWListItem(this, info
, item
);
1692 item
.mask
&= ~LVIF_PARAM
;
1694 // check whether we need to allocate our internal data
1695 bool needInternalData
= (info
.m_mask
& wxLIST_MASK_DATA
) ||
1696 info
.HasAttributes();
1697 if ( needInternalData
)
1699 item
.mask
|= LVIF_PARAM
;
1701 wxMSWListItemData
* const data
= new wxMSWListItemData
;
1702 m_internalData
.push_back(data
);
1703 item
.lParam
= (LPARAM
)data
;
1705 if ( info
.m_mask
& wxLIST_MASK_DATA
)
1706 data
->lParam
= info
.m_data
;
1708 // check whether it has any custom attributes
1709 if ( info
.HasAttributes() )
1711 // take copy of attributes
1712 data
->attr
= new wxListItemAttr(*info
.GetAttributes());
1714 // and remember that we have some now...
1715 m_hasAnyAttr
= true;
1719 const long rv
= ListView_InsertItem(GetHwnd(), & item
);
1721 // failing to insert the item is really unexpected
1722 wxCHECK_MSG( rv
!= -1, rv
, "failed to insert an item in wxListCtrl" );
1725 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1726 wxT("m_count should match ListView_GetItemCount"));
1731 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1734 info
.m_text
= label
;
1735 info
.m_mask
= wxLIST_MASK_TEXT
;
1736 info
.m_itemId
= index
;
1737 return InsertItem(info
);
1740 // Inserts an image item
1741 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1744 info
.m_image
= imageIndex
;
1745 info
.m_mask
= wxLIST_MASK_IMAGE
;
1746 info
.m_itemId
= index
;
1747 return InsertItem(info
);
1750 // Inserts an image/string item
1751 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1754 info
.m_image
= imageIndex
;
1755 info
.m_text
= label
;
1756 info
.m_mask
= wxLIST_MASK_TEXT
;
1757 if (imageIndex
> -1)
1758 info
.m_mask
|= wxLIST_MASK_IMAGE
;
1759 info
.m_itemId
= index
;
1760 return InsertItem(info
);
1763 // For list view mode (only), inserts a column.
1764 long wxListCtrl::DoInsertColumn(long col
, const wxListItem
& item
)
1767 wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
);
1769 // LVSCW_AUTOSIZE_USEHEADER is not supported when inserting new column,
1770 // we'll deal with it below instead. Plain LVSCW_AUTOSIZE is not supported
1771 // neither but it doesn't need any special handling as we use fixed value
1772 // for it here, both because we can't do anything else (there are no items
1773 // with values in this column to compute the size from yet) and for
1774 // compatibility as wxLIST_AUTOSIZE == -1 and -1 as InsertColumn() width
1775 // parameter used to mean "arbitrary fixed width".
1776 if ( !(lvCol
.mask
& LVCF_WIDTH
) || lvCol
.cx
< 0 )
1778 // always give some width to the new column: this one is compatible
1779 // with the generic version
1780 lvCol
.mask
|= LVCF_WIDTH
;
1784 long n
= ListView_InsertColumn(GetHwnd(), col
, &lvCol
);
1787 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
1794 // Now adjust the new column size.
1795 if ( (item
.GetMask() & wxLIST_MASK_WIDTH
) &&
1796 (item
.GetWidth() == wxLIST_AUTOSIZE_USEHEADER
) )
1798 SetColumnWidth(n
, wxLIST_AUTOSIZE_USEHEADER
);
1804 // scroll the control by the given number of pixels (exception: in list view,
1805 // dx is interpreted as number of columns)
1806 bool wxListCtrl::ScrollList(int dx
, int dy
)
1808 if ( !ListView_Scroll(GetHwnd(), dx
, dy
) )
1810 wxLogDebug(wxT("ListView_Scroll(%d, %d) failed"), dx
, dy
);
1820 // fn is a function which takes 3 long arguments: item1, item2, data.
1821 // item1 is the long data associated with a first item (NOT the index).
1822 // item2 is the long data associated with a second item (NOT the index).
1823 // data is the same value as passed to SortItems.
1824 // The return value is a negative number if the first item should precede the second
1825 // item, a positive number of the second item should precede the first,
1826 // or zero if the two items are equivalent.
1828 // data is arbitrary data to be passed to the sort function.
1830 // Internal structures for proxying the user compare function
1831 // so that we can pass it the *real* user data
1833 // translate lParam data and call user func
1834 struct wxInternalDataSort
1836 wxListCtrlCompare user_fn
;
1840 int CALLBACK
wxInternalDataCompareFunc(LPARAM lParam1
, LPARAM lParam2
, LPARAM lParamSort
)
1842 wxInternalDataSort
* const internalData
= (wxInternalDataSort
*) lParamSort
;
1844 wxMSWListItemData
*data1
= (wxMSWListItemData
*) lParam1
;
1845 wxMSWListItemData
*data2
= (wxMSWListItemData
*) lParam2
;
1847 wxIntPtr d1
= (data1
== NULL
? 0 : data1
->lParam
);
1848 wxIntPtr d2
= (data2
== NULL
? 0 : data2
->lParam
);
1850 return internalData
->user_fn(d1
, d2
, internalData
->data
);
1854 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, wxIntPtr data
)
1856 wxInternalDataSort internalData
;
1857 internalData
.user_fn
= fn
;
1858 internalData
.data
= data
;
1860 // WPARAM cast is needed for mingw/cygwin
1861 if ( !ListView_SortItems(GetHwnd(),
1862 wxInternalDataCompareFunc
,
1863 (WPARAM
) &internalData
) )
1865 wxLogDebug(wxT("ListView_SortItems() failed"));
1875 // ----------------------------------------------------------------------------
1876 // message processing
1877 // ----------------------------------------------------------------------------
1879 bool wxListCtrl::MSWShouldPreProcessMessage(WXMSG
* msg
)
1881 if ( msg
->message
== WM_KEYDOWN
)
1883 // Only eat VK_RETURN if not being used by the application in
1884 // conjunction with modifiers
1885 if ( msg
->wParam
== VK_RETURN
&& !wxIsAnyModifierDown() )
1887 // we need VK_RETURN to generate wxEVT_LIST_ITEM_ACTIVATED
1891 return wxListCtrlBase::MSWShouldPreProcessMessage(msg
);
1894 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id_
)
1896 const int id
= (signed short)id_
;
1897 if (cmd
== EN_UPDATE
)
1899 wxCommandEvent
event(wxEVT_TEXT
, id
);
1900 event
.SetEventObject( this );
1901 ProcessCommand(event
);
1904 else if (cmd
== EN_KILLFOCUS
)
1906 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1907 event
.SetEventObject( this );
1908 ProcessCommand(event
);
1915 // utility used by wxListCtrl::MSWOnNotify and by wxDataViewHeaderWindowMSW::MSWOnNotify
1916 int WXDLLIMPEXP_CORE
wxMSWGetColumnClicked(NMHDR
*nmhdr
, POINT
*ptClick
)
1918 // find the column clicked: we have to search for it ourselves as the
1919 // notification message doesn't provide this info
1921 // where did the click occur?
1922 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
1923 if ( nmhdr
->code
== GN_CONTEXTMENU
)
1925 *ptClick
= ((NMRGINFO
*)nmhdr
)->ptAction
;
1928 #endif //__WXWINCE__
1930 wxGetCursorPosMSW(ptClick
);
1933 // we need to use listctrl coordinates for the event point so this is what
1934 // we return in ptClick, but for comparison with Header_GetItemRect()
1935 // result below we need to use header window coordinates
1936 POINT ptClickHeader
= *ptClick
;
1937 if ( !::ScreenToClient(nmhdr
->hwndFrom
, &ptClickHeader
) )
1939 wxLogLastError(wxT("ScreenToClient(listctrl header)"));
1942 if ( !::ScreenToClient(::GetParent(nmhdr
->hwndFrom
), ptClick
) )
1944 wxLogLastError(wxT("ScreenToClient(listctrl)"));
1947 const int colCount
= Header_GetItemCount(nmhdr
->hwndFrom
);
1948 for ( int col
= 0; col
< colCount
; col
++ )
1951 if ( Header_GetItemRect(nmhdr
->hwndFrom
, col
, &rect
) )
1953 if ( ::PtInRect(&rect
, ptClickHeader
) )
1963 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1966 // prepare the event
1967 // -----------------
1969 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1970 event
.SetEventObject(this);
1972 wxEventType eventType
= wxEVT_NULL
;
1974 NMHDR
*nmhdr
= (NMHDR
*)lParam
;
1976 // if your compiler is as broken as this, you should really change it: this
1977 // code is needed for normal operation! #ifdef below is only useful for
1978 // automatic rebuilds which are done with a very old compiler version
1979 #ifdef HDN_BEGINTRACKA
1981 // check for messages from the header (in report view)
1982 HWND hwndHdr
= ListView_GetHeader(GetHwnd());
1984 // is it a message from the header?
1985 if ( nmhdr
->hwndFrom
== hwndHdr
)
1987 HD_NOTIFY
*nmHDR
= (HD_NOTIFY
*)nmhdr
;
1989 event
.m_itemIndex
= -1;
1991 bool ignore
= false;
1992 switch ( nmhdr
->code
)
1994 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1995 // TRACK messages even to ANSI programs: on my system I get
1996 // HDN_BEGINTRACKW and HDN_ENDTRACKA!
1998 // work around is to simply catch both versions and hope that it
1999 // works (why should this message exist in ANSI and Unicode is
2000 // beyond me as it doesn't deal with strings at all...)
2002 // another problem is that HDN_TRACK is not sent at all by header
2003 // with HDS_FULLDRAG style which is used by default by wxListCtrl
2004 // under recent Windows versions (starting from at least XP) so we
2005 // need to use HDN_ITEMCHANGING instead of it
2006 case HDN_BEGINTRACKA
:
2007 case HDN_BEGINTRACKW
:
2008 eventType
= wxEVT_LIST_COL_BEGIN_DRAG
;
2011 case HDN_ITEMCHANGING
:
2012 if ( eventType
== wxEVT_NULL
)
2014 if ( !nmHDR
->pitem
|| !(nmHDR
->pitem
->mask
& HDI_WIDTH
) )
2016 // something other than the width is being changed,
2022 // also ignore the events sent when the width didn't really
2023 // change: this is not just an optimization but also gets
2024 // rid of a useless and unexpected DRAGGING event which
2025 // would otherwise be sent after the END_DRAG one as we get
2026 // an HDN_ITEMCHANGING after HDN_ENDTRACK for some reason
2027 if ( nmHDR
->pitem
->cxy
== GetColumnWidth(nmHDR
->iItem
) )
2033 eventType
= wxEVT_LIST_COL_DRAGGING
;
2039 if ( eventType
== wxEVT_NULL
)
2040 eventType
= wxEVT_LIST_COL_END_DRAG
;
2042 event
.m_item
.m_width
= nmHDR
->pitem
->cxy
;
2043 event
.m_col
= nmHDR
->iItem
;
2046 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2047 case GN_CONTEXTMENU
:
2048 #endif //__WXWINCE__
2053 eventType
= wxEVT_LIST_COL_RIGHT_CLICK
;
2054 event
.m_col
= wxMSWGetColumnClicked(nmhdr
, &ptClick
);
2055 event
.m_pointDrag
.x
= ptClick
.x
;
2056 event
.m_pointDrag
.y
= ptClick
.y
;
2060 case HDN_GETDISPINFOW
:
2061 // letting Windows XP handle this message results in mysterious
2062 // crashes in comctl32.dll seemingly because of bad message
2065 // I have no idea what is the real cause of the bug (which is,
2066 // just to make things interesting, impossible to reproduce
2067 // reliably) but ignoring all these messages does fix it and
2068 // doesn't seem to have any negative consequences
2076 return wxListCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
2079 #endif // defined(HDN_BEGINTRACKA)
2080 if ( nmhdr
->hwndFrom
== GetHwnd() )
2082 // almost all messages use NM_LISTVIEW
2083 NM_LISTVIEW
*nmLV
= (NM_LISTVIEW
*)nmhdr
;
2085 const int iItem
= nmLV
->iItem
;
2088 // If we have a valid item then check if there is a data value
2089 // associated with it and put it in the event.
2090 if ( iItem
>= 0 && iItem
< GetItemCount() )
2092 wxMSWListItemData
*internaldata
=
2093 MSWGetItemData(iItem
);
2096 event
.m_item
.m_data
= internaldata
->lParam
;
2099 bool processed
= true;
2100 switch ( nmhdr
->code
)
2102 case LVN_BEGINRDRAG
:
2103 eventType
= wxEVT_LIST_BEGIN_RDRAG
;
2107 if ( eventType
== wxEVT_NULL
)
2109 eventType
= wxEVT_LIST_BEGIN_DRAG
;
2112 event
.m_itemIndex
= iItem
;
2113 event
.m_pointDrag
.x
= nmLV
->ptAction
.x
;
2114 event
.m_pointDrag
.y
= nmLV
->ptAction
.y
;
2117 // NB: we have to handle both *A and *W versions here because some
2118 // versions of comctl32.dll send ANSI messages even to the
2120 case LVN_BEGINLABELEDITA
:
2121 case LVN_BEGINLABELEDITW
:
2124 if ( nmhdr
->code
== LVN_BEGINLABELEDITA
)
2126 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
2128 else // LVN_BEGINLABELEDITW
2130 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
2133 eventType
= wxEVT_LIST_BEGIN_LABEL_EDIT
;
2134 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, item
);
2135 event
.m_itemIndex
= event
.m_item
.m_itemId
;
2139 case LVN_ENDLABELEDITA
:
2140 case LVN_ENDLABELEDITW
:
2143 if ( nmhdr
->code
== LVN_ENDLABELEDITA
)
2145 item
.Init(((LV_DISPINFOA
*)lParam
)->item
);
2147 else // LVN_ENDLABELEDITW
2149 item
.Init(((LV_DISPINFOW
*)lParam
)->item
);
2152 // was editing cancelled?
2153 const LV_ITEM
& lvi
= (LV_ITEM
)item
;
2154 if ( !lvi
.pszText
|| lvi
.iItem
== -1 )
2156 // EDIT control will be deleted by the list control
2157 // itself so prevent us from deleting it as well
2158 DeleteEditControl();
2160 event
.SetEditCanceled(true);
2163 eventType
= wxEVT_LIST_END_LABEL_EDIT
;
2164 wxConvertFromMSWListItem(NULL
, event
.m_item
, item
);
2165 event
.m_itemIndex
= event
.m_item
.m_itemId
;
2169 case LVN_COLUMNCLICK
:
2170 eventType
= wxEVT_LIST_COL_CLICK
;
2171 event
.m_itemIndex
= -1;
2172 event
.m_col
= nmLV
->iSubItem
;
2175 case LVN_DELETEALLITEMS
:
2176 eventType
= wxEVT_LIST_DELETE_ALL_ITEMS
;
2177 event
.m_itemIndex
= -1;
2180 case LVN_DELETEITEM
:
2183 // this should be prevented by the post-processing code
2184 // below, but "just in case"
2188 eventType
= wxEVT_LIST_DELETE_ITEM
;
2189 event
.m_itemIndex
= iItem
;
2193 case LVN_INSERTITEM
:
2194 eventType
= wxEVT_LIST_INSERT_ITEM
;
2195 event
.m_itemIndex
= iItem
;
2198 case LVN_ITEMCHANGED
:
2199 // we translate this catch all message into more interesting
2200 // (and more easy to process) wxWidgets events
2202 // first of all, we deal with the state change events only and
2203 // only for valid items (item == -1 for the virtual list
2205 if ( nmLV
->uChanged
& LVIF_STATE
&& iItem
!= -1 )
2207 // temp vars for readability
2208 const UINT stOld
= nmLV
->uOldState
;
2209 const UINT stNew
= nmLV
->uNewState
;
2211 event
.m_item
.SetId(iItem
);
2212 event
.m_item
.SetMask(wxLIST_MASK_TEXT
|
2215 GetItem(event
.m_item
);
2217 // has the focus changed?
2218 if ( !(stOld
& LVIS_FOCUSED
) && (stNew
& LVIS_FOCUSED
) )
2220 eventType
= wxEVT_LIST_ITEM_FOCUSED
;
2221 event
.m_itemIndex
= iItem
;
2224 if ( (stNew
& LVIS_SELECTED
) != (stOld
& LVIS_SELECTED
) )
2226 if ( eventType
!= wxEVT_NULL
)
2228 // focus and selection have both changed: send the
2229 // focus event from here and the selection one
2231 event
.SetEventType(eventType
);
2232 (void)HandleWindowEvent(event
);
2234 else // no focus event to send
2236 // then need to set m_itemIndex as it wasn't done
2238 event
.m_itemIndex
= iItem
;
2241 eventType
= stNew
& LVIS_SELECTED
2242 ? wxEVT_LIST_ITEM_SELECTED
2243 : wxEVT_LIST_ITEM_DESELECTED
;
2247 if ( eventType
== wxEVT_NULL
)
2249 // not an interesting event for us
2257 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
2258 WORD wVKey
= info
->wVKey
;
2260 // get the current selection
2261 long lItem
= GetNextItem(-1,
2263 wxLIST_STATE_SELECTED
);
2265 // <Enter> or <Space> activate the selected item if any (but
2266 // not with any modifiers as they have a predefined meaning
2269 (wVKey
== VK_RETURN
|| wVKey
== VK_SPACE
) &&
2270 !wxIsAnyModifierDown() )
2272 eventType
= wxEVT_LIST_ITEM_ACTIVATED
;
2276 eventType
= wxEVT_LIST_KEY_DOWN
;
2278 event
.m_code
= wxMSWKeyboard::VKToWX(wVKey
);
2280 if ( event
.m_code
== WXK_NONE
)
2282 // We can't translate this to a standard key code,
2283 // until support for Unicode key codes is added to
2284 // wxListEvent we just ignore them.
2290 event
.m_item
.m_itemId
= lItem
;
2294 // fill the other fields too
2295 event
.m_item
.m_text
= GetItemText(lItem
);
2296 event
.m_item
.m_data
= GetItemData(lItem
);
2302 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2304 if ( wxListCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
) )
2309 // else translate it into wxEVT_LIST_ITEM_ACTIVATED event
2310 // if it happened on an item (and not on empty place)
2317 eventType
= wxEVT_LIST_ITEM_ACTIVATED
;
2318 event
.m_itemIndex
= iItem
;
2319 event
.m_item
.m_text
= GetItemText(iItem
);
2320 event
.m_item
.m_data
= GetItemData(iItem
);
2323 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2324 case GN_CONTEXTMENU
:
2325 #endif //__WXWINCE__
2327 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2328 // don't do anything else
2329 if ( wxListCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
) )
2334 // else translate it into wxEVT_LIST_ITEM_RIGHT_CLICK event
2335 LV_HITTESTINFO lvhti
;
2336 wxZeroMemory(lvhti
);
2338 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400
2339 if ( nmhdr
->code
== GN_CONTEXTMENU
)
2341 lvhti
.pt
= ((NMRGINFO
*)nmhdr
)->ptAction
;
2344 #endif //__WXWINCE__
2346 wxGetCursorPosMSW(&(lvhti
.pt
));
2349 ::ScreenToClient(GetHwnd(), &lvhti
.pt
);
2350 if ( ListView_HitTest(GetHwnd(), &lvhti
) != -1 )
2352 if ( lvhti
.flags
& LVHT_ONITEM
)
2354 eventType
= wxEVT_LIST_ITEM_RIGHT_CLICK
;
2355 event
.m_itemIndex
= lvhti
.iItem
;
2356 event
.m_pointDrag
.x
= lvhti
.pt
.x
;
2357 event
.m_pointDrag
.y
= lvhti
.pt
.y
;
2362 #ifdef NM_CUSTOMDRAW
2364 *result
= OnCustomDraw(lParam
);
2366 return *result
!= CDRF_DODEFAULT
;
2367 #endif // _WIN32_IE >= 0x300
2369 case LVN_ODCACHEHINT
:
2371 const NM_CACHEHINT
*cacheHint
= (NM_CACHEHINT
*)lParam
;
2373 eventType
= wxEVT_LIST_CACHE_HINT
;
2375 // we get some really stupid cache hints like ones for
2376 // items in range 0..0 for an empty control or, after
2377 // deleting an item, for items in invalid range -- filter
2379 if ( cacheHint
->iFrom
> cacheHint
->iTo
)
2382 event
.m_oldItemIndex
= cacheHint
->iFrom
;
2384 const long iMax
= GetItemCount();
2385 event
.m_itemIndex
= cacheHint
->iTo
< iMax
? cacheHint
->iTo
2390 #ifdef HAVE_NMLVFINDITEM
2391 case LVN_ODFINDITEM
:
2392 // Find an item in a (necessarily virtual) list control.
2395 NMLVFINDITEM
* pFindInfo
= (NMLVFINDITEM
*)lParam
;
2397 // no match by default
2400 // we only handle string-based searches here
2402 // TODO: what about LVFI_PARTIAL, should we handle this?
2403 if ( !(pFindInfo
->lvfi
.flags
& LVFI_STRING
) )
2408 const wxChar
* const searchstr
= pFindInfo
->lvfi
.psz
;
2409 const size_t len
= wxStrlen(searchstr
);
2411 // this is the first item we should examine, search from it
2412 // wrapping if necessary
2413 int startPos
= pFindInfo
->iStart
;
2414 const int maxPos
= GetItemCount();
2416 // Check that the index is valid to ensure that our loop
2417 // below always terminates.
2418 if ( startPos
< 0 || startPos
>= maxPos
)
2420 // When the last item in the control is selected,
2421 // iStart is really set to (invalid) maxPos index so
2422 // accept this silently.
2423 if ( startPos
!= maxPos
)
2425 wxLogDebug(wxT("Ignoring invalid search start ")
2426 wxT("position %d in list control with ")
2427 wxT("%d items."), startPos
, maxPos
);
2433 // Linear search in a control with a lot of items can take
2434 // a long time so we limit the total time of the search to
2435 // ensure that the program doesn't appear to hang.
2438 #endif // wxUSE_STOPWATCH
2439 for ( int currentPos
= startPos
; ; )
2441 // does this item begin with searchstr?
2442 if ( wxStrnicmp(searchstr
,
2443 GetItemText(currentPos
), len
) == 0 )
2445 *result
= currentPos
;
2449 // Go to next item with wrapping if necessary.
2450 if ( ++currentPos
== maxPos
)
2452 // Surprisingly, LVFI_WRAP seems to be never set in
2453 // the flags so wrap regardless of it.
2457 if ( currentPos
== startPos
)
2459 // We examined all items without finding anything.
2461 // Notice that we still return true as we did
2462 // perform the search, if we didn't do this the
2463 // message would have been considered unhandled and
2464 // the control seems to always select the first
2465 // item by default in this case.
2470 // Check the time elapsed only every thousand
2471 // iterations for performance reasons: if we did it
2472 // more often calling wxStopWatch::Time() could take
2473 // noticeable time on its own.
2474 if ( !((currentPos
- startPos
)%1000
) )
2476 // We use half a second to limit the search time
2477 // which is about as long as we can take without
2478 // annoying the user.
2479 if ( sw
.Time() > 500 )
2481 // As above, return true to prevent the control
2482 // from selecting the first item by default.
2486 #endif // wxUSE_STOPWATCH
2490 SetItemState(*result
,
2491 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
,
2492 wxLIST_STATE_SELECTED
| wxLIST_STATE_FOCUSED
);
2493 EnsureVisible(*result
);
2501 #endif // HAVE_NMLVFINDITEM
2503 case LVN_GETDISPINFO
:
2506 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
2508 LV_ITEM
& lvi
= info
->item
;
2509 long item
= lvi
.iItem
;
2511 if ( lvi
.mask
& LVIF_TEXT
)
2513 wxString text
= OnGetItemText(item
, lvi
.iSubItem
);
2514 wxStrlcpy(lvi
.pszText
, text
.c_str(), lvi
.cchTextMax
);
2517 // see comment at the end of wxListCtrl::GetColumn()
2518 #ifdef NM_CUSTOMDRAW
2519 if ( lvi
.mask
& LVIF_IMAGE
)
2521 lvi
.iImage
= OnGetItemColumnImage(item
, lvi
.iSubItem
);
2523 #endif // NM_CUSTOMDRAW
2525 // even though we never use LVM_SETCALLBACKMASK, we still
2526 // can get messages with LVIF_STATE in lvi.mask under Vista
2527 if ( lvi
.mask
& LVIF_STATE
)
2529 // we don't have anything to return from here...
2542 return wxListCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
2546 // where did this one come from?
2550 // process the event
2551 // -----------------
2553 event
.SetEventType(eventType
);
2555 // fill in the item before passing it to the event handler if we do have a
2556 // valid item index and haven't filled it yet (e.g. for LVN_ITEMCHANGED)
2557 // and we're not using a virtual control as in this case the program
2558 // already has the data anyhow and we don't want to call GetItem() for
2559 // potentially many items
2560 if ( event
.m_itemIndex
!= -1 && !event
.m_item
.GetMask()
2563 wxListItem
& item
= event
.m_item
;
2565 item
.SetId(event
.m_itemIndex
);
2566 item
.SetMask(wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
| wxLIST_MASK_DATA
);
2570 bool processed
= HandleWindowEvent(event
);
2574 switch ( nmhdr
->code
)
2576 case LVN_DELETEALLITEMS
:
2577 // always return true to suppress all additional LVN_DELETEITEM
2578 // notifications - this makes deleting all items from a list ctrl
2582 // also, we may free all user data now (couldn't do it before as
2583 // the user should have access to it in OnDeleteAllItems() handler)
2584 FreeAllInternalData();
2586 // the control is empty now, synchronize the cached number of items
2587 // with the real one
2591 case LVN_DELETEITEM
:
2592 // Delete the associated internal data. Notice that this can be
2593 // done only after the event has been handled as the data could be
2594 // accessed during the handling of the event.
2595 if ( wxMSWListItemData
*data
= MSWGetItemData(event
.m_itemIndex
) )
2597 const unsigned count
= m_internalData
.size();
2598 for ( unsigned n
= 0; n
< count
; n
++ )
2600 if ( m_internalData
[n
] == data
)
2602 m_internalData
.erase(m_internalData
.begin() + n
);
2608 wxASSERT_MSG( !data
, "invalid internal data pointer?" );
2612 case LVN_ENDLABELEDITA
:
2613 case LVN_ENDLABELEDITW
:
2614 // logic here is inverted compared to all the other messages
2615 *result
= event
.IsAllowed();
2617 // EDIT control will be deleted by the list control itself so
2618 // prevent us from deleting it as well
2619 DeleteEditControl();
2625 *result
= !event
.IsAllowed();
2630 // ----------------------------------------------------------------------------
2631 // custom draw stuff
2632 // ----------------------------------------------------------------------------
2634 // see comment at the end of wxListCtrl::GetColumn()
2635 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2637 static RECT
GetCustomDrawnItemRect(const NMCUSTOMDRAW
& nmcd
)
2640 wxGetListCtrlItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, LVIR_BOUNDS
, rc
);
2643 wxGetListCtrlItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, LVIR_ICON
, rcIcon
);
2645 // exclude the icon part, neither the selection background nor focus rect
2647 rc
.left
= rcIcon
.right
;
2653 bool HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
, int colCount
)
2655 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2658 HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2659 const int col
= pLVCD
->iSubItem
;
2660 const DWORD item
= nmcd
.dwItemSpec
;
2662 // the font must be valid, otherwise we wouldn't be painting the item at all
2663 SelectInHDC
selFont(hdc
, hfont
);
2665 // get the rectangle to paint
2667 wxGetListCtrlSubItemRect(hwndList
, item
, col
, LVIR_BOUNDS
, rc
);
2668 if ( !col
&& colCount
> 1 )
2670 // ListView_GetSubItemRect() returns the entire item rect for 0th
2671 // subitem while we really need just the part for this column
2673 wxGetListCtrlSubItemRect(hwndList
, item
, 1, LVIR_BOUNDS
, rc2
);
2674 rc
.right
= rc2
.left
;
2677 else // not first subitem
2682 // get the image and text to draw
2686 it
.mask
= LVIF_TEXT
| LVIF_IMAGE
;
2690 it
.cchTextMax
= WXSIZEOF(text
);
2691 ListView_GetItem(hwndList
, &it
);
2693 HIMAGELIST himl
= ListView_GetImageList(hwndList
, LVSIL_SMALL
);
2694 if ( himl
&& ImageList_GetImageCount(himl
) )
2696 if ( it
.iImage
!= -1 )
2698 ImageList_Draw(himl
, it
.iImage
, hdc
, rc
.left
, rc
.top
,
2699 nmcd
.uItemState
& CDIS_SELECTED
? ILD_SELECTED
2703 // notice that even if this item doesn't have any image, the list
2704 // control still leaves space for the image in the first column if the
2705 // image list is not empty (presumably so that items with and without
2707 if ( it
.iImage
!= -1 || it
.iSubItem
== 0 )
2710 ImageList_GetIconSize(himl
, &wImage
, &hImage
);
2712 rc
.left
+= wImage
+ 2;
2716 ::SetBkMode(hdc
, TRANSPARENT
);
2718 UINT fmt
= DT_SINGLELINE
|
2721 #endif // __WXWINCE__
2726 wxZeroMemory(lvCol
);
2727 lvCol
.mask
= LVCF_FMT
;
2728 if ( ListView_GetColumn(hwndList
, col
, &lvCol
) )
2730 switch ( lvCol
.fmt
& LVCFMT_JUSTIFYMASK
)
2745 //else: failed to get alignment, assume it's DT_LEFT (default)
2747 DrawText(hdc
, text
, -1, &rc
, fmt
);
2752 static void HandleItemPostpaint(NMCUSTOMDRAW nmcd
)
2754 if ( nmcd
.uItemState
& CDIS_FOCUS
)
2756 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2758 // don't use the provided HDC, it's in some strange state by now
2759 ::DrawFocusRect(WindowHDC(nmcd
.hdr
.hwndFrom
), &rc
);
2763 // pLVCD->clrText and clrTextBk should contain the colours to use
2764 static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
)
2766 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
; // just a shortcut
2768 const HWND hwndList
= nmcd
.hdr
.hwndFrom
;
2769 const int item
= nmcd
.dwItemSpec
;
2771 // unfortunately we can't trust CDIS_SELECTED, it is often set even when
2772 // the item is not at all selected for some reason (comctl32 6), but we
2773 // also can't always trust ListView_GetItem() as it could return the old
2774 // item status if we're called just after the (de)selection, so remember
2775 // the last item to gain selection and also check for it here
2776 for ( int i
= -1;; )
2778 i
= ListView_GetNextItem(hwndList
, i
, LVNI_SELECTED
);
2781 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2787 nmcd
.uItemState
|= CDIS_SELECTED
;
2792 // same thing for CDIS_FOCUS (except simpler as there is only one of them)
2794 // NB: cast is needed to work around the bug in mingw32 headers which don't
2795 // have it inside ListView_GetNextItem() itself (unlike SDK ones)
2796 if ( ::GetFocus() == hwndList
&&
2797 ListView_GetNextItem(
2798 hwndList
, static_cast<WPARAM
>(-1), LVNI_FOCUSED
) == item
)
2800 nmcd
.uItemState
|= CDIS_FOCUS
;
2804 nmcd
.uItemState
&= ~CDIS_FOCUS
;
2807 if ( nmcd
.uItemState
& CDIS_SELECTED
)
2809 int syscolFg
, syscolBg
;
2810 if ( ::GetFocus() == hwndList
)
2812 syscolFg
= COLOR_HIGHLIGHTTEXT
;
2813 syscolBg
= COLOR_HIGHLIGHT
;
2815 else // selected but unfocused
2817 syscolFg
= COLOR_WINDOWTEXT
;
2818 syscolBg
= COLOR_BTNFACE
;
2820 // don't grey out the icon in this case neither
2821 nmcd
.uItemState
&= ~CDIS_SELECTED
;
2824 pLVCD
->clrText
= ::GetSysColor(syscolFg
);
2825 pLVCD
->clrTextBk
= ::GetSysColor(syscolBg
);
2827 //else: not selected, use normal colours from pLVCD
2830 RECT rc
= GetCustomDrawnItemRect(nmcd
);
2832 ::SetTextColor(hdc
, pLVCD
->clrText
);
2833 ::FillRect(hdc
, &rc
, AutoHBRUSH(pLVCD
->clrTextBk
));
2835 // we could use CDRF_NOTIFYSUBITEMDRAW here but it results in weird repaint
2836 // problems so just draw everything except the focus rect from here instead
2837 const int colCount
= Header_GetItemCount(ListView_GetHeader(hwndList
));
2838 for ( int col
= 0; col
< colCount
; col
++ )
2840 pLVCD
->iSubItem
= col
;
2841 HandleSubItemPrepaint(pLVCD
, hfont
, colCount
);
2844 HandleItemPostpaint(nmcd
);
2847 static WXLPARAM
HandleItemPrepaint(wxListCtrl
*listctrl
,
2848 LPNMLVCUSTOMDRAW pLVCD
,
2849 wxListItemAttr
*attr
)
2853 // nothing to do for this item
2854 return CDRF_DODEFAULT
;
2858 // set the colours to use for text drawing
2859 pLVCD
->clrText
= attr
->HasTextColour()
2860 ? wxColourToRGB(attr
->GetTextColour())
2861 : wxColourToRGB(listctrl
->GetTextColour());
2862 pLVCD
->clrTextBk
= attr
->HasBackgroundColour()
2863 ? wxColourToRGB(attr
->GetBackgroundColour())
2864 : wxColourToRGB(listctrl
->GetBackgroundColour());
2866 // select the font if non default one is specified
2867 if ( attr
->HasFont() )
2869 wxFont font
= attr
->GetFont();
2870 if ( font
.GetEncoding() != wxFONTENCODING_SYSTEM
)
2872 // the standard control ignores the font encoding/charset, at least
2873 // with recent comctl32.dll versions (5 and 6, it uses to work with
2874 // 4.something) so we have to draw the item entirely ourselves in
2876 HandleItemPaint(pLVCD
, GetHfontOf(font
));
2877 return CDRF_SKIPDEFAULT
;
2880 ::SelectObject(pLVCD
->nmcd
.hdc
, GetHfontOf(font
));
2882 return CDRF_NEWFONT
;
2885 return CDRF_DODEFAULT
;
2888 WXLPARAM
wxListCtrl::OnCustomDraw(WXLPARAM lParam
)
2890 LPNMLVCUSTOMDRAW pLVCD
= (LPNMLVCUSTOMDRAW
)lParam
;
2891 NMCUSTOMDRAW
& nmcd
= pLVCD
->nmcd
;
2892 switch ( nmcd
.dwDrawStage
)
2895 // if we've got any items with non standard attributes,
2896 // notify us before painting each item
2898 // for virtual controls, always suppose that we have attributes as
2899 // there is no way to check for this
2900 if ( IsVirtual() || m_hasAnyAttr
)
2901 return CDRF_NOTIFYITEMDRAW
;
2904 case CDDS_ITEMPREPAINT
:
2905 // get a message for each subitem
2906 return CDRF_NOTIFYITEMDRAW
;
2908 case CDDS_SUBITEM
| CDDS_ITEMPREPAINT
:
2909 const int item
= nmcd
.dwItemSpec
;
2910 const int column
= pLVCD
->iSubItem
;
2912 // we get this message with item == 0 for an empty control, we
2913 // must ignore it as calling OnGetItemAttr() would be wrong
2914 if ( item
< 0 || item
>= GetItemCount() )
2917 if ( column
< 0 || column
>= GetColumnCount() )
2920 return HandleItemPrepaint(this, pLVCD
, DoGetItemColumnAttr(item
, column
));
2923 return CDRF_DODEFAULT
;
2926 #endif // NM_CUSTOMDRAW supported
2928 // Necessary for drawing hrules and vrules, if specified
2929 void wxListCtrl::OnPaint(wxPaintEvent
& event
)
2931 const int itemCount
= GetItemCount();
2932 const bool drawHRules
= HasFlag(wxLC_HRULES
);
2933 const bool drawVRules
= HasFlag(wxLC_VRULES
);
2935 if (!InReportView() || !(drawHRules
|| drawVRules
) || !itemCount
)
2943 wxListCtrlBase::OnPaint(event
);
2945 // Reset the device origin since it may have been set
2946 dc
.SetDeviceOrigin(0, 0);
2948 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
));
2950 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2952 wxSize clientSize
= GetClientSize();
2957 const long top
= GetTopItem();
2958 for ( int i
= top
; i
< top
+ GetCountPerPage() + 1; i
++ )
2960 if (GetItemRect(i
, itemRect
))
2962 int cy
= itemRect
.GetTop();
2963 if (i
!= 0) // Don't draw the first one
2965 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2968 if (i
== itemCount
- 1)
2970 cy
= itemRect
.GetBottom();
2971 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2980 wxRect firstItemRect
;
2981 GetItemRect(0, firstItemRect
);
2983 if (GetItemRect(itemCount
- 1, itemRect
))
2985 // this is a fix for bug 673394: erase the pixels which we would
2986 // otherwise leave on the screen
2987 static const int gap
= 2;
2988 dc
.SetPen(*wxTRANSPARENT_PEN
);
2989 dc
.SetBrush(wxBrush(GetBackgroundColour()));
2990 dc
.DrawRectangle(0, firstItemRect
.GetY() - gap
,
2991 clientSize
.GetWidth(), gap
);
2994 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2996 const int numCols
= GetColumnCount();
2997 wxVector
<int> indexArray(numCols
);
2998 if ( !ListView_GetColumnOrderArray(GetHwnd(),
3002 wxFAIL_MSG( wxT("invalid column index array in OnPaint()") );
3006 int x
= itemRect
.GetX();
3007 for (int col
= 0; col
< numCols
; col
++)
3009 int colWidth
= GetColumnWidth(indexArray
[col
]);
3011 dc
.DrawLine(x
-1, firstItemRect
.GetY() - gap
,
3012 x
-1, itemRect
.GetBottom());
3018 void wxListCtrl::OnCharHook(wxKeyEvent
& event
)
3020 if ( GetEditControl() )
3022 // We need to ensure that Escape is not stolen from the in-place editor
3023 // by the containing dialog.
3025 // Notice that we don't have to care about Enter key here as we return
3026 // false from MSWShouldPreProcessMessage() for it.
3027 if ( event
.GetKeyCode() == WXK_ESCAPE
)
3029 EndEditLabel(true /* cancel */);
3031 // Don't call Skip() below.
3040 wxListCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
3046 // we should bypass our own WM_PRINT handling as we don't handle
3047 // PRF_CHILDREN flag, so leave it to the native control itself
3048 return MSWDefWindowProc(nMsg
, wParam
, lParam
);
3051 case WM_CONTEXTMENU
:
3052 // because this message is propagated upwards the child-parent
3053 // chain, we get it for the right clicks on the header window but
3054 // this is confusing in wx as right clicking there already
3055 // generates a separate wxEVT_LIST_COL_RIGHT_CLICK event
3056 // so just ignore them
3057 if ( (HWND
)wParam
== ListView_GetHeader(GetHwnd()) )
3062 return wxListCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
3065 // ----------------------------------------------------------------------------
3066 // virtual list controls
3067 // ----------------------------------------------------------------------------
3069 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
3071 // this is a pure virtual function, in fact - which is not really pure
3072 // because the controls which are not virtual don't need to implement it
3073 wxFAIL_MSG( wxT("wxListCtrl::OnGetItemText not supposed to be called") );
3075 return wxEmptyString
;
3078 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
3080 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
3082 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
3086 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
3089 return OnGetItemImage(item
);
3094 wxListItemAttr
*wxListCtrl::DoGetItemColumnAttr(long item
, long column
) const
3097 return OnGetItemColumnAttr(item
, column
);
3099 wxMSWListItemData
* const data
= MSWGetItemData(item
);
3100 return data
? data
->attr
: NULL
;
3103 void wxListCtrl::SetItemCount(long count
)
3105 wxASSERT_MSG( IsVirtual(), wxT("this is for virtual controls only") );
3107 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT
, (WPARAM
)count
,
3108 LVSICF_NOSCROLL
| LVSICF_NOINVALIDATEALL
) )
3110 wxLogLastError(wxT("ListView_SetItemCount"));
3113 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
3114 wxT("m_count should match ListView_GetItemCount"));
3117 void wxListCtrl::RefreshItem(long item
)
3119 RefreshItems(item
, item
);
3122 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
3124 ListView_RedrawItems(GetHwnd(), itemFrom
, itemTo
);
3127 // ----------------------------------------------------------------------------
3128 // wxWin <-> MSW items conversions
3129 // ----------------------------------------------------------------------------
3131 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
3135 wxMSWListItemData
*internaldata
=
3136 (wxMSWListItemData
*) lvItem
.lParam
;
3139 info
.m_data
= internaldata
->lParam
;
3143 info
.m_stateMask
= 0;
3144 info
.m_itemId
= lvItem
.iItem
;
3146 long oldMask
= lvItem
.mask
;
3148 bool needText
= false;
3149 if (hwndListCtrl
!= 0)
3151 if ( lvItem
.mask
& LVIF_TEXT
)
3158 lvItem
.pszText
= new wxChar
[513];
3159 lvItem
.cchTextMax
= 512;
3161 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
3162 ::SendMessage(hwndListCtrl
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
);
3165 if ( lvItem
.mask
& LVIF_STATE
)
3167 info
.m_mask
|= wxLIST_MASK_STATE
;
3169 if ( lvItem
.stateMask
& LVIS_CUT
)
3171 info
.m_stateMask
|= wxLIST_STATE_CUT
;
3172 if ( lvItem
.state
& LVIS_CUT
)
3173 info
.m_state
|= wxLIST_STATE_CUT
;
3175 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
3177 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
3178 if ( lvItem
.state
& LVIS_DROPHILITED
)
3179 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
3181 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
3183 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
3184 if ( lvItem
.state
& LVIS_FOCUSED
)
3185 info
.m_state
|= wxLIST_STATE_FOCUSED
;
3187 if ( lvItem
.stateMask
& LVIS_SELECTED
)
3189 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
3190 if ( lvItem
.state
& LVIS_SELECTED
)
3191 info
.m_state
|= wxLIST_STATE_SELECTED
;
3195 if ( lvItem
.mask
& LVIF_TEXT
)
3197 info
.m_mask
|= wxLIST_MASK_TEXT
;
3198 info
.m_text
= lvItem
.pszText
;
3200 if ( lvItem
.mask
& LVIF_IMAGE
)
3202 info
.m_mask
|= wxLIST_MASK_IMAGE
;
3203 info
.m_image
= lvItem
.iImage
;
3205 if ( lvItem
.mask
& LVIF_PARAM
)
3206 info
.m_mask
|= wxLIST_MASK_DATA
;
3207 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
3208 info
.m_mask
|= wxLIST_SET_ITEM
;
3209 info
.m_col
= lvItem
.iSubItem
;
3214 delete[] lvItem
.pszText
;
3216 lvItem
.mask
= oldMask
;
3219 static void wxConvertToMSWFlags(long state
, long stateMask
, LV_ITEM
& lvItem
)
3221 if (stateMask
& wxLIST_STATE_CUT
)
3223 lvItem
.stateMask
|= LVIS_CUT
;
3224 if (state
& wxLIST_STATE_CUT
)
3225 lvItem
.state
|= LVIS_CUT
;
3227 if (stateMask
& wxLIST_STATE_DROPHILITED
)
3229 lvItem
.stateMask
|= LVIS_DROPHILITED
;
3230 if (state
& wxLIST_STATE_DROPHILITED
)
3231 lvItem
.state
|= LVIS_DROPHILITED
;
3233 if (stateMask
& wxLIST_STATE_FOCUSED
)
3235 lvItem
.stateMask
|= LVIS_FOCUSED
;
3236 if (state
& wxLIST_STATE_FOCUSED
)
3237 lvItem
.state
|= LVIS_FOCUSED
;
3239 if (stateMask
& wxLIST_STATE_SELECTED
)
3241 lvItem
.stateMask
|= LVIS_SELECTED
;
3242 if (state
& wxLIST_STATE_SELECTED
)
3243 lvItem
.state
|= LVIS_SELECTED
;
3247 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
3248 const wxListItem
& info
,
3251 if ( ctrl
->InReportView() )
3253 wxASSERT_MSG( 0 <= info
.m_col
&& info
.m_col
< ctrl
->GetColumnCount(),
3254 "wxListCtrl column index out of bounds" );
3256 else // not in report view
3258 wxASSERT_MSG( info
.m_col
== 0, "columns only exist in report view" );
3261 lvItem
.iItem
= (int) info
.m_itemId
;
3263 lvItem
.iImage
= info
.m_image
;
3264 lvItem
.stateMask
= 0;
3267 lvItem
.iSubItem
= info
.m_col
;
3269 if (info
.m_mask
& wxLIST_MASK_STATE
)
3271 lvItem
.mask
|= LVIF_STATE
;
3273 wxConvertToMSWFlags(info
.m_state
, info
.m_stateMask
, lvItem
);
3276 if (info
.m_mask
& wxLIST_MASK_TEXT
)
3278 lvItem
.mask
|= LVIF_TEXT
;
3279 if ( ctrl
->HasFlag(wxLC_USER_TEXT
) )
3281 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
3285 // pszText is not const, hence the cast
3286 lvItem
.pszText
= wxMSW_CONV_LPTSTR(info
.m_text
);
3287 if ( lvItem
.pszText
)
3288 lvItem
.cchTextMax
= info
.m_text
.length();
3290 lvItem
.cchTextMax
= 0;
3293 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
3294 lvItem
.mask
|= LVIF_IMAGE
;
3297 static void wxConvertToMSWListCol(HWND hwndList
,
3299 const wxListItem
& item
,
3302 wxZeroMemory(lvCol
);
3304 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
3306 lvCol
.mask
|= LVCF_TEXT
;
3307 lvCol
.pszText
= wxMSW_CONV_LPTSTR(item
.m_text
);
3310 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
3312 lvCol
.mask
|= LVCF_FMT
;
3314 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
3315 lvCol
.fmt
= LVCFMT_LEFT
;
3316 else if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
3317 lvCol
.fmt
= LVCFMT_RIGHT
;
3318 else if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
3319 lvCol
.fmt
= LVCFMT_CENTER
;
3322 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
3324 lvCol
.mask
|= LVCF_WIDTH
;
3325 if ( item
.m_width
== wxLIST_AUTOSIZE
)
3326 lvCol
.cx
= LVSCW_AUTOSIZE
;
3327 else if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
3328 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
3330 lvCol
.cx
= item
.m_width
;
3333 // see comment at the end of wxListCtrl::GetColumn()
3334 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
3335 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
3337 if ( wxApp::GetComCtl32Version() >= 470 )
3339 lvCol
.mask
|= LVCF_IMAGE
;
3341 // we use LVCFMT_BITMAP_ON_RIGHT because the images on the right
3342 // seem to be generally nicer than on the left and the generic
3343 // version only draws them on the right (we don't have a flag to
3344 // specify the image location anyhow)
3346 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
3347 // make any difference in my tests -- but maybe we should?
3348 if ( item
.m_image
!= -1 )
3350 // as we're going to overwrite the format field, get its
3351 // current value first -- unless we want to overwrite it anyhow
3352 if ( !(lvCol
.mask
& LVCF_FMT
) )
3355 wxZeroMemory(lvColOld
);
3356 lvColOld
.mask
= LVCF_FMT
;
3357 if ( ListView_GetColumn(hwndList
, col
, &lvColOld
) )
3359 lvCol
.fmt
= lvColOld
.fmt
;
3362 lvCol
.mask
|= LVCF_FMT
;
3365 lvCol
.fmt
|= LVCFMT_BITMAP_ON_RIGHT
| LVCFMT_IMAGE
;
3368 lvCol
.iImage
= item
.m_image
;
3370 //else: it doesn't support item images anyhow
3372 #endif // _WIN32_IE >= 0x0300
3375 #endif // wxUSE_LISTCTRL