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" 
  42 #include "wx/vector.h" 
  44 #include "wx/msw/private.h" 
  46 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) 
  54 // Currently gcc and watcom don't define NMLVFINDITEM, and DMC only defines 
  55 // it by its old name NM_FINDTIEM. 
  57 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(NMLVFINDITEM) 
  58     #define HAVE_NMLVFINDITEM 1 
  59 #elif defined(__DMC__) || defined(NM_FINDITEM) 
  60     #define HAVE_NMLVFINDITEM 1 
  61     #define NMLVFINDITEM NM_FINDITEM 
  64 // ---------------------------------------------------------------------------- 
  66 // ---------------------------------------------------------------------------- 
  68 // convert our state and mask flags to LV_ITEM constants 
  69 static void wxConvertToMSWFlags(long state
, long mask
, LV_ITEM
& lvItem
); 
  71 // convert wxListItem to LV_ITEM 
  72 static void wxConvertToMSWListItem(const wxListCtrl 
*ctrl
, 
  73                                    const wxListItem
& info
, LV_ITEM
& lvItem
); 
  75 // convert LV_ITEM to wxListItem 
  76 static void wxConvertFromMSWListItem(HWND hwndListCtrl
, 
  78                                      /* const */ LV_ITEM
& lvItem
); 
  80 // convert our wxListItem to LV_COLUMN 
  81 static void wxConvertToMSWListCol(HWND hwndList
, 
  83                                   const wxListItem
& item
, 
  89 // replacement for ListView_GetSubItemRect() which provokes warnings like 
  90 // "the address of 'rc' will always evaluate as 'true'" when used with mingw32 
  93 // this function does no error checking on item and subitem parameters, notice 
  94 // that subitem 0 means the whole item so there is no way to retrieve the 
  95 // rectangle of the first subitem using this function, in particular notice 
  96 // that the index is *not* 1-based, in spite of what MSDN says 
  98 wxGetListCtrlSubItemRect(HWND hwnd
, int item
, int subitem
, int flags
, RECT
& rect
) 
 102     return ::SendMessage(hwnd
, LVM_GETSUBITEMRECT
, item
, (LPARAM
)&rect
) != 0; 
 106 wxGetListCtrlItemRect(HWND hwnd
, int item
, int flags
, RECT
& rect
) 
 108     return wxGetListCtrlSubItemRect(hwnd
, item
, 0, flags
, rect
); 
 111 } // anonymous namespace 
 113 // ---------------------------------------------------------------------------- 
 114 // private helper classes 
 115 // ---------------------------------------------------------------------------- 
 117 // We have to handle both fooW and fooA notifications in several cases 
 118 // because of broken comctl32.dll and/or unicows.dll. This class is used to 
 119 // convert LV_ITEMA and LV_ITEMW to LV_ITEM (which is either LV_ITEMA or 
 120 // LV_ITEMW depending on wxUSE_UNICODE setting), so that it can be processed 
 121 // by wxConvertToMSWListItem(). 
 123     #define LV_ITEM_NATIVE  LV_ITEMW 
 124     #define LV_ITEM_OTHER   LV_ITEMA 
 126     #define LV_CONV_TO_WX   cMB2WX 
 127     #define LV_CONV_BUF     wxMB2WXbuf 
 129     #define LV_ITEM_NATIVE  LV_ITEMA 
 130     #define LV_ITEM_OTHER   LV_ITEMW 
 132     #define LV_CONV_TO_WX   cWC2WX 
 133     #define LV_CONV_BUF     wxWC2WXbuf 
 134 #endif // Unicode/ANSI 
 139     // default ctor, use Init() later 
 140     wxLV_ITEM() { m_buf 
= NULL
; m_pItem 
= NULL
; } 
 142     // init without conversion 
 143     void Init(LV_ITEM_NATIVE
& item
) 
 145         wxASSERT_MSG( !m_pItem
, _T("Init() called twice?") ); 
 150     // init with conversion 
 151     void Init(const LV_ITEM_OTHER
& item
) 
 153         // avoid unnecessary dynamic memory allocation, jjust make m_pItem 
 154         // point to our own m_item 
 156         // memcpy() can't work if the struct sizes are different 
 157         wxCOMPILE_TIME_ASSERT( sizeof(LV_ITEM_OTHER
) == sizeof(LV_ITEM_NATIVE
), 
 158                                CodeCantWorkIfDiffSizes
); 
 160         memcpy(&m_item
, &item
, sizeof(LV_ITEM_NATIVE
)); 
 162         // convert text from ANSI to Unicod if necessary 
 163         if ( (item
.mask 
& LVIF_TEXT
) && item
.pszText 
) 
 165             m_buf 
= new LV_CONV_BUF(wxConvLocal
.LV_CONV_TO_WX(item
.pszText
)); 
 166             m_item
.pszText 
= (wxChar 
*)m_buf
->data(); 
 170     // ctor without conversion 
 171     wxLV_ITEM(LV_ITEM_NATIVE
& item
) : m_buf(NULL
), m_pItem(&item
) { } 
 173     // ctor with conversion 
 174     wxLV_ITEM(LV_ITEM_OTHER
& item
) : m_buf(NULL
) 
 179     ~wxLV_ITEM() { delete m_buf
; } 
 181     // conversion to the real LV_ITEM 
 182     operator LV_ITEM_NATIVE
&() const { return *m_pItem
; } 
 187     LV_ITEM_NATIVE 
*m_pItem
; 
 188     LV_ITEM_NATIVE m_item
; 
 190     DECLARE_NO_COPY_CLASS(wxLV_ITEM
) 
 193 /////////////////////////////////////////////////////// 
 195 // The MSW version had problems with SetTextColour() et 
 196 // al as the wxListItemAttr's were stored keyed on the 
 197 // item index. If a item was inserted anywhere but the end 
 198 // of the list the the text attributes (colour etc) for 
 199 // the following items were out of sync. 
 202 // Under MSW the only way to associate data with a List 
 203 // item independent of its position in the list is to 
 204 // store a pointer to it in its lParam attribute. However 
 205 // user programs are already using this (via the 
 206 // SetItemData() GetItemData() calls). 
 208 // However what we can do is store a pointer to a 
 209 // structure which contains the attributes we want *and* 
 210 // a lParam for the users data, e.g. 
 212 // class wxListItemInternalData 
 215 //   wxListItemAttr *attr; 
 216 //   long lParam; // user data 
 219 // To conserve memory, a wxListItemInternalData is 
 220 // only allocated for a LV_ITEM if text attributes or 
 221 // user data(lparam) are being set. 
 224 // class wxListItemInternalData 
 225 class wxListItemInternalData
 
 228    wxListItemAttr 
*attr
; 
 229    LPARAM lParam
; // user data 
 231    wxListItemInternalData() : attr(NULL
), lParam(0) {} 
 232    ~wxListItemInternalData() 
 238     DECLARE_NO_COPY_CLASS(wxListItemInternalData
) 
 241 // Get the internal data structure 
 242 static wxListItemInternalData 
*wxGetInternalData(HWND hwnd
, long itemId
); 
 243 static wxListItemInternalData 
*wxGetInternalData(const wxListCtrl 
*ctl
, long itemId
); 
 244 static wxListItemAttr 
*wxGetInternalDataAttr(const wxListCtrl 
*ctl
, long itemId
); 
 245 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
); 
 248 #if wxUSE_EXTENDED_RTTI 
 249 WX_DEFINE_FLAGS( wxListCtrlStyle 
) 
 251 wxBEGIN_FLAGS( wxListCtrlStyle 
) 
 252     // new style border flags, we put them first to 
 253     // use them for streaming out 
 254     wxFLAGS_MEMBER(wxBORDER_SIMPLE
) 
 255     wxFLAGS_MEMBER(wxBORDER_SUNKEN
) 
 256     wxFLAGS_MEMBER(wxBORDER_DOUBLE
) 
 257     wxFLAGS_MEMBER(wxBORDER_RAISED
) 
 258     wxFLAGS_MEMBER(wxBORDER_STATIC
) 
 259     wxFLAGS_MEMBER(wxBORDER_NONE
) 
 261     // old style border flags 
 262     wxFLAGS_MEMBER(wxSIMPLE_BORDER
) 
 263     wxFLAGS_MEMBER(wxSUNKEN_BORDER
) 
 264     wxFLAGS_MEMBER(wxDOUBLE_BORDER
) 
 265     wxFLAGS_MEMBER(wxRAISED_BORDER
) 
 266     wxFLAGS_MEMBER(wxSTATIC_BORDER
) 
 267     wxFLAGS_MEMBER(wxBORDER
) 
 269     // standard window styles 
 270     wxFLAGS_MEMBER(wxTAB_TRAVERSAL
) 
 271     wxFLAGS_MEMBER(wxCLIP_CHILDREN
) 
 272     wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
) 
 273     wxFLAGS_MEMBER(wxWANTS_CHARS
) 
 274     wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
) 
 275     wxFLAGS_MEMBER(wxALWAYS_SHOW_SB 
) 
 276     wxFLAGS_MEMBER(wxVSCROLL
) 
 277     wxFLAGS_MEMBER(wxHSCROLL
) 
 279     wxFLAGS_MEMBER(wxLC_LIST
) 
 280     wxFLAGS_MEMBER(wxLC_REPORT
) 
 281     wxFLAGS_MEMBER(wxLC_ICON
) 
 282     wxFLAGS_MEMBER(wxLC_SMALL_ICON
) 
 283     wxFLAGS_MEMBER(wxLC_ALIGN_TOP
) 
 284     wxFLAGS_MEMBER(wxLC_ALIGN_LEFT
) 
 285     wxFLAGS_MEMBER(wxLC_AUTOARRANGE
) 
 286     wxFLAGS_MEMBER(wxLC_USER_TEXT
) 
 287     wxFLAGS_MEMBER(wxLC_EDIT_LABELS
) 
 288     wxFLAGS_MEMBER(wxLC_NO_HEADER
) 
 289     wxFLAGS_MEMBER(wxLC_SINGLE_SEL
) 
 290     wxFLAGS_MEMBER(wxLC_SORT_ASCENDING
) 
 291     wxFLAGS_MEMBER(wxLC_SORT_DESCENDING
) 
 292     wxFLAGS_MEMBER(wxLC_VIRTUAL
) 
 294 wxEND_FLAGS( wxListCtrlStyle 
) 
 296 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl
, wxControl
,"wx/listctrl.h") 
 298 wxBEGIN_PROPERTIES_TABLE(wxListCtrl
) 
 299     wxEVENT_PROPERTY( TextUpdated 
, wxEVT_COMMAND_TEXT_UPDATED 
, wxCommandEvent 
) 
 301     wxPROPERTY_FLAGS( WindowStyle 
, wxListCtrlStyle 
, long , SetWindowStyleFlag 
, GetWindowStyleFlag 
, EMPTY_MACROVALUE 
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style 
 302 wxEND_PROPERTIES_TABLE() 
 304 wxBEGIN_HANDLERS_TABLE(wxListCtrl
) 
 305 wxEND_HANDLERS_TABLE() 
 307 wxCONSTRUCTOR_5( wxListCtrl 
, wxWindow
* , Parent 
, wxWindowID 
, Id 
, wxPoint 
, Position 
, wxSize 
, Size 
, long , WindowStyle 
) 
 310  TODO : Expose more information of a list's layout etc. via appropriate objects (a la NotebookPageInfo) 
 313 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
) 
 316 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
) 
 317 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
) 
 319 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
) 
 321 BEGIN_EVENT_TABLE(wxListCtrl
, wxControl
) 
 322     EVT_PAINT(wxListCtrl::OnPaint
) 
 325 // ============================================================================ 
 327 // ============================================================================ 
 329 // ---------------------------------------------------------------------------- 
 330 // wxListCtrl construction 
 331 // ---------------------------------------------------------------------------- 
 333 void wxListCtrl::Init() 
 335     m_imageListNormal 
= NULL
; 
 336     m_imageListSmall 
= NULL
; 
 337     m_imageListState 
= NULL
; 
 338     m_ownsImageListNormal 
= m_ownsImageListSmall 
= m_ownsImageListState 
= false; 
 341     m_ignoreChangeMessages 
= false; 
 343     m_AnyInternalData 
= false; 
 344     m_hasAnyAttr 
= false; 
 347 bool wxListCtrl::Create(wxWindow 
*parent
, 
 352                         const wxValidator
& validator
, 
 353                         const wxString
& name
) 
 355     if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) ) 
 358     if ( !MSWCreateControl(WC_LISTVIEW
, wxEmptyString
, pos
, size
) ) 
 361     // explicitly say that we want to use Unicode because otherwise we get ANSI 
 362     // versions of _some_ messages (notably LVN_GETDISPINFOA) in MSLU build 
 363     wxSetCCUnicodeFormat(GetHwnd()); 
 365     // We must set the default text colour to the system/theme color, otherwise 
 366     // GetTextColour will always return black 
 367     SetTextColour(GetDefaultAttributes().colFg
); 
 369     if ( InReportView() ) 
 370         MSWSetExListStyles(); 
 375 void wxListCtrl::MSWSetExListStyles() 
 377     // for comctl32.dll v 4.70+ we want to have some non default extended 
 378     // styles because it's prettier (and also because wxGTK does it like this) 
 379     if ( wxApp::GetComCtl32Version() >= 470 ) 
 383             GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE
, 0, 
 384             // LVS_EX_LABELTIP shouldn't be used under Windows CE where it's 
 385             // not defined in the SDK headers 
 386 #ifdef LVS_EX_LABELTIP 
 389             LVS_EX_FULLROWSELECT 
| 
 390             LVS_EX_SUBITEMIMAGES 
| 
 391             // normally this should be governed by a style as it's probably not 
 392             // always appropriate, but we don't have any free styles left and 
 393             // it seems better to enable it by default than disable 
 394             LVS_EX_HEADERDRAGDROP
 
 399 WXDWORD 
wxListCtrl::MSWGetStyle(long style
, WXDWORD 
*exstyle
) const 
 401     WXDWORD wstyle 
= wxControl::MSWGetStyle(style
, exstyle
); 
 403     wstyle 
|= LVS_SHAREIMAGELISTS 
| LVS_SHOWSELALWAYS
; 
 408     #define MAP_MODE_STYLE(wx, ms)                                            \ 
 409         if ( style & (wx) ) { wstyle |= (ms); nModes++; } 
 410 #else // !__WXDEBUG__ 
 411     #define MAP_MODE_STYLE(wx, ms)                                            \ 
 412         if ( style & (wx) ) wstyle |= (ms); 
 413 #endif // __WXDEBUG__ 
 415     MAP_MODE_STYLE(wxLC_ICON
, LVS_ICON
) 
 416     MAP_MODE_STYLE(wxLC_SMALL_ICON
, LVS_SMALLICON
) 
 417     MAP_MODE_STYLE(wxLC_LIST
, LVS_LIST
) 
 418     MAP_MODE_STYLE(wxLC_REPORT
, LVS_REPORT
) 
 420     wxASSERT_MSG( nModes 
== 1, 
 421                   _T("wxListCtrl style should have exactly one mode bit set") ); 
 423 #undef MAP_MODE_STYLE 
 425     if ( style 
& wxLC_ALIGN_LEFT 
) 
 426         wstyle 
|= LVS_ALIGNLEFT
; 
 428     if ( style 
& wxLC_ALIGN_TOP 
) 
 429         wstyle 
|= LVS_ALIGNTOP
; 
 431     if ( style 
& wxLC_AUTOARRANGE 
) 
 432         wstyle 
|= LVS_AUTOARRANGE
; 
 434     if ( style 
& wxLC_NO_SORT_HEADER 
) 
 435         wstyle 
|= LVS_NOSORTHEADER
; 
 437     if ( style 
& wxLC_NO_HEADER 
) 
 438         wstyle 
|= LVS_NOCOLUMNHEADER
; 
 440     if ( style 
& wxLC_EDIT_LABELS 
) 
 441         wstyle 
|= LVS_EDITLABELS
; 
 443     if ( style 
& wxLC_SINGLE_SEL 
) 
 444         wstyle 
|= LVS_SINGLESEL
; 
 446     if ( style 
& wxLC_SORT_ASCENDING 
) 
 448         wstyle 
|= LVS_SORTASCENDING
; 
 450         wxASSERT_MSG( !(style 
& wxLC_SORT_DESCENDING
), 
 451                       _T("can't sort in ascending and descending orders at once") ); 
 453     else if ( style 
& wxLC_SORT_DESCENDING 
) 
 454         wstyle 
|= LVS_SORTDESCENDING
; 
 456 #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) 
 457     if ( style 
& wxLC_VIRTUAL 
) 
 459         int ver 
= wxApp::GetComCtl32Version(); 
 462             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."), 
 463                         ver 
/ 100, ver 
% 100); 
 466         wstyle 
|= LVS_OWNERDATA
; 
 468 #endif // ancient cygwin 
 473 void wxListCtrl::UpdateStyle() 
 477         // The new window view style 
 478         DWORD dwStyleNew 
= MSWGetStyle(m_windowStyle
, NULL
); 
 480         // some styles are not returned by MSWGetStyle() 
 482             dwStyleNew 
|= WS_VISIBLE
; 
 484         // Get the current window style. 
 485         DWORD dwStyleOld 
= ::GetWindowLong(GetHwnd(), GWL_STYLE
); 
 487         // we don't have wxVSCROLL style, but the list control may have it, 
 488         // don't change it then 
 489         dwStyleNew 
|= dwStyleOld 
& (WS_HSCROLL 
| WS_VSCROLL
); 
 491         // Only set the window style if the view bits have changed. 
 492         if ( dwStyleOld 
!= dwStyleNew 
) 
 494             ::SetWindowLong(GetHwnd(), GWL_STYLE
, dwStyleNew
); 
 496             // if we switched to the report view, set the extended styles for 
 498             if ( !(dwStyleOld 
& LVS_REPORT
) && (dwStyleNew 
& LVS_REPORT
) ) 
 499                 MSWSetExListStyles(); 
 504 void wxListCtrl::FreeAllInternalData() 
 506     if (m_AnyInternalData
) 
 508         int n 
= GetItemCount(); 
 510         m_ignoreChangeMessages 
= true; 
 511         for (int i 
= 0; i 
< n
; i
++) 
 512             wxDeleteInternalData(this, i
); 
 513         m_ignoreChangeMessages 
= false; 
 515         m_AnyInternalData 
= false; 
 519 void wxListCtrl::DeleteEditControl() 
 523         m_textCtrl
->UnsubclassWin(); 
 524         m_textCtrl
->SetHWND(0); 
 530 wxListCtrl::~wxListCtrl() 
 532     FreeAllInternalData(); 
 536     if (m_ownsImageListNormal
) 
 537         delete m_imageListNormal
; 
 538     if (m_ownsImageListSmall
) 
 539         delete m_imageListSmall
; 
 540     if (m_ownsImageListState
) 
 541         delete m_imageListState
; 
 544 // ---------------------------------------------------------------------------- 
 545 // set/get/change style 
 546 // ---------------------------------------------------------------------------- 
 548 // Add or remove a single window style 
 549 void wxListCtrl::SetSingleStyle(long style
, bool add
) 
 551     long flag 
= GetWindowStyleFlag(); 
 553     // Get rid of conflicting styles 
 556         if ( style 
& wxLC_MASK_TYPE
) 
 557             flag 
= flag 
& ~wxLC_MASK_TYPE
; 
 558         if ( style 
& wxLC_MASK_ALIGN 
) 
 559             flag 
= flag 
& ~wxLC_MASK_ALIGN
; 
 560         if ( style 
& wxLC_MASK_SORT 
) 
 561             flag 
= flag 
& ~wxLC_MASK_SORT
; 
 569     SetWindowStyleFlag(flag
); 
 572 // Set the whole window style 
 573 void wxListCtrl::SetWindowStyleFlag(long flag
) 
 575     if ( flag 
!= m_windowStyle 
) 
 577         wxControl::SetWindowStyleFlag(flag
); 
 585 // ---------------------------------------------------------------------------- 
 587 // ---------------------------------------------------------------------------- 
 589 /* static */ wxVisualAttributes
 
 590 wxListCtrl::GetClassDefaultAttributes(wxWindowVariant variant
) 
 592     wxVisualAttributes attrs 
= GetCompositeControlsDefaultAttributes(variant
); 
 594     // common controls have their own default font 
 595     attrs
.font 
= wxGetCCDefaultFont(); 
 600 // Sets the foreground, i.e. text, colour 
 601 bool wxListCtrl::SetForegroundColour(const wxColour
& col
) 
 603     if ( !wxWindow::SetForegroundColour(col
) ) 
 606     ListView_SetTextColor(GetHwnd(), wxColourToRGB(col
)); 
 611 // Sets the background colour 
 612 bool wxListCtrl::SetBackgroundColour(const wxColour
& col
) 
 614     if ( !wxWindow::SetBackgroundColour(col
) ) 
 617     // we set the same colour for both the "empty" background and the items 
 619     COLORREF color 
= wxColourToRGB(col
); 
 620     ListView_SetBkColor(GetHwnd(), color
); 
 621     ListView_SetTextBkColor(GetHwnd(), color
); 
 626 // Gets information about this column 
 627 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const 
 632     lvCol
.mask 
= LVCF_WIDTH
; 
 634     if ( item
.m_mask 
& wxLIST_MASK_TEXT 
) 
 636         lvCol
.mask 
|= LVCF_TEXT
; 
 637         lvCol
.pszText 
= new wxChar
[513]; 
 638         lvCol
.cchTextMax 
= 512; 
 641     if ( item
.m_mask 
& wxLIST_MASK_FORMAT 
) 
 643         lvCol
.mask 
|= LVCF_FMT
; 
 646     if ( item
.m_mask 
& wxLIST_MASK_IMAGE 
) 
 648         lvCol
.mask 
|= LVCF_IMAGE
; 
 651     bool success 
= ListView_GetColumn(GetHwnd(), col
, &lvCol
) != 0; 
 653     //  item.m_subItem = lvCol.iSubItem; 
 654     item
.m_width 
= lvCol
.cx
; 
 656     if ( (item
.m_mask 
& wxLIST_MASK_TEXT
) && lvCol
.pszText 
) 
 658         item
.m_text 
= lvCol
.pszText
; 
 659         delete[] lvCol
.pszText
; 
 662     if ( item
.m_mask 
& wxLIST_MASK_FORMAT 
) 
 664         switch (lvCol
.fmt 
& LVCFMT_JUSTIFYMASK
) { 
 666                 item
.m_format 
= wxLIST_FORMAT_LEFT
; 
 669                 item
.m_format 
= wxLIST_FORMAT_RIGHT
; 
 672                 item
.m_format 
= wxLIST_FORMAT_CENTRE
; 
 675                 item
.m_format 
= -1;  // Unknown? 
 680     // the column images were not supported in older versions but how to check 
 681     // for this? we can't use _WIN32_IE because we always define it to a very 
 682     // high value, so see if another symbol which is only defined starting from 
 683     // comctl32.dll 4.70 is available 
 684 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300 
 685     if ( item
.m_mask 
& wxLIST_MASK_IMAGE 
) 
 687         item
.m_image 
= lvCol
.iImage
; 
 689 #endif // LVCOLUMN::iImage exists 
 694 // Sets information about this column 
 695 bool wxListCtrl::SetColumn(int col
, const wxListItem
& item
) 
 698     wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
); 
 700     return ListView_SetColumn(GetHwnd(), col
, &lvCol
) != 0; 
 703 // Gets the column width 
 704 int wxListCtrl::GetColumnWidth(int col
) const 
 706     return ListView_GetColumnWidth(GetHwnd(), col
); 
 709 // Sets the column width 
 710 bool wxListCtrl::SetColumnWidth(int col
, int width
) 
 712     if ( m_windowStyle 
& wxLC_LIST 
) 
 715     if ( width 
== wxLIST_AUTOSIZE
) 
 716         width 
= LVSCW_AUTOSIZE
; 
 717     else if ( width 
== wxLIST_AUTOSIZE_USEHEADER
) 
 718         width 
= LVSCW_AUTOSIZE_USEHEADER
; 
 720     return ListView_SetColumnWidth(GetHwnd(), col
, width
) != 0; 
 723 // ---------------------------------------------------------------------------- 
 725 // ---------------------------------------------------------------------------- 
 727 int wxListCtrl::GetColumnIndexFromOrder(int order
) const 
 729     const int numCols 
= GetColumnCount(); 
 730     wxCHECK_MSG( order 
>= 0 && order 
< numCols
, -1, 
 731                 _T("Column position out of bounds") ); 
 733     wxArrayInt 
indexArray(numCols
); 
 734     if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &indexArray
[0]) ) 
 737     return indexArray
[order
]; 
 740 int wxListCtrl::GetColumnOrder(int col
) const 
 742     const int numCols 
= GetColumnCount(); 
 743     wxASSERT_MSG( col 
>= 0 && col 
< numCols
, _T("Column index out of bounds") ); 
 745     wxArrayInt 
indexArray(numCols
); 
 746     if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &indexArray
[0]) ) 
 749     for ( int pos 
= 0; pos 
< numCols
; pos
++ ) 
 751         if ( indexArray
[pos
] == col 
) 
 755     wxFAIL_MSG( _T("no column with with given order?") ); 
 760 // Gets the column order for all columns 
 761 wxArrayInt 
wxListCtrl::GetColumnsOrder() const 
 763     const int numCols 
= GetColumnCount(); 
 765     wxArrayInt 
orders(numCols
); 
 766     if ( !ListView_GetColumnOrderArray(GetHwnd(), numCols
, &orders
[0]) ) 
 772 // Sets the column order for all columns 
 773 bool wxListCtrl::SetColumnsOrder(const wxArrayInt
& orders
) 
 775     const int numCols 
= GetColumnCount(); 
 777     wxCHECK_MSG( orders
.size() == (size_t)numCols
, false, 
 778                     _T("wrong number of elements in column orders array") ); 
 780     return ListView_SetColumnOrderArray(GetHwnd(), numCols
, &orders
[0]) != 0; 
 784 // Gets the number of items that can fit vertically in the 
 785 // visible area of the list control (list or report view) 
 786 // or the total number of items in the list control (icon 
 787 // or small icon view) 
 788 int wxListCtrl::GetCountPerPage() const 
 790     return ListView_GetCountPerPage(GetHwnd()); 
 793 // Gets the edit control for editing labels. 
 794 wxTextCtrl
* wxListCtrl::GetEditControl() const 
 796     // first check corresponds to the case when the label editing was started 
 797     // by user and hence m_textCtrl wasn't created by EditLabel() at all, while 
 798     // the second case corresponds to us being called from inside EditLabel() 
 799     // (e.g. from a user wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT handler): in this 
 800     // case EditLabel() did create the control but it didn't have an HWND to 
 801     // initialize it with yet 
 802     if ( !m_textCtrl 
|| !m_textCtrl
->GetHWND() ) 
 804         HWND hwndEdit 
= ListView_GetEditControl(GetHwnd()); 
 807             wxListCtrl 
* const self 
= const_cast<wxListCtrl 
*>(this); 
 810                 self
->m_textCtrl 
= new wxTextCtrl
; 
 811             self
->InitEditControl((WXHWND
)hwndEdit
); 
 818 // Gets information about the item 
 819 bool wxListCtrl::GetItem(wxListItem
& info
) const 
 822     wxZeroMemory(lvItem
); 
 824     lvItem
.iItem 
= info
.m_itemId
; 
 825     lvItem
.iSubItem 
= info
.m_col
; 
 827     if ( info
.m_mask 
& wxLIST_MASK_TEXT 
) 
 829         lvItem
.mask 
|= LVIF_TEXT
; 
 830         lvItem
.pszText 
= new wxChar
[513]; 
 831         lvItem
.cchTextMax 
= 512; 
 835         lvItem
.pszText 
= NULL
; 
 838     if (info
.m_mask 
& wxLIST_MASK_DATA
) 
 839         lvItem
.mask 
|= LVIF_PARAM
; 
 841     if (info
.m_mask 
& wxLIST_MASK_IMAGE
) 
 842         lvItem
.mask 
|= LVIF_IMAGE
; 
 844     if ( info
.m_mask 
& wxLIST_MASK_STATE 
) 
 846         lvItem
.mask 
|= LVIF_STATE
; 
 847         wxConvertToMSWFlags(0, info
.m_stateMask
, lvItem
); 
 850     bool success 
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0; 
 853         wxLogError(_("Couldn't retrieve information about list control item %d."), 
 858         // give NULL as hwnd as we already have everything we need 
 859         wxConvertFromMSWListItem(NULL
, info
, lvItem
); 
 863         delete[] lvItem
.pszText
; 
 868 // Sets information about the item 
 869 bool wxListCtrl::SetItem(wxListItem
& info
) 
 871     const long id 
= info
.GetId(); 
 872     wxCHECK_MSG( id 
>= 0 && id 
< GetItemCount(), false, 
 873                  _T("invalid item index in SetItem") ); 
 876     wxConvertToMSWListItem(this, info
, item
); 
 878     // we never update the lParam if it contains our pointer 
 879     // to the wxListItemInternalData structure 
 880     item
.mask 
&= ~LVIF_PARAM
; 
 882     // check if setting attributes or lParam 
 883     if (info
.HasAttributes() || (info
.m_mask  
& wxLIST_MASK_DATA
)) 
 885         // get internal item data 
 886         // perhaps a cache here ? 
 887         wxListItemInternalData 
*data 
= wxGetInternalData(this, id
); 
 892             m_AnyInternalData 
= true; 
 893             data 
= new wxListItemInternalData(); 
 894             item
.lParam 
= (LPARAM
) data
; 
 895             item
.mask 
|= LVIF_PARAM
; 
 900         if (info
.m_mask  
& wxLIST_MASK_DATA
) 
 901             data
->lParam 
= info
.m_data
; 
 904         if ( info
.HasAttributes() ) 
 906             const wxListItemAttr
& attrNew 
= *info
.GetAttributes(); 
 908             // don't overwrite the already set attributes if we have them 
 910                 data
->attr
->AssignFrom(attrNew
); 
 912                 data
->attr 
= new wxListItemAttr(attrNew
); 
 917     // we could be changing only the attribute in which case we don't need to 
 918     // call ListView_SetItem() at all 
 922         if ( !ListView_SetItem(GetHwnd(), &item
) ) 
 924             wxLogDebug(_T("ListView_SetItem() failed")); 
 930     // we need to update the item immediately to show the new image 
 931     bool updateNow 
= (info
.m_mask 
& wxLIST_MASK_IMAGE
) != 0; 
 933     // check whether it has any custom attributes 
 934     if ( info
.HasAttributes() ) 
 938         // if the colour has changed, we must redraw the item 
 944         // we need this to make the change visible right now 
 945         RefreshItem(item
.iItem
); 
 951 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
) 
 955     info
.m_mask 
= wxLIST_MASK_TEXT
; 
 956     info
.m_itemId 
= index
; 
 960         info
.m_image 
= imageId
; 
 961         info
.m_mask 
|= wxLIST_MASK_IMAGE
; 
 963     return SetItem(info
); 
 967 // Gets the item state 
 968 int wxListCtrl::GetItemState(long item
, long stateMask
) const 
 972     info
.m_mask 
= wxLIST_MASK_STATE
; 
 973     info
.m_stateMask 
= stateMask
; 
 974     info
.m_itemId 
= item
; 
 982 // Sets the item state 
 983 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
) 
 985     // NB: don't use SetItem() here as it doesn't work with the virtual list 
 988     wxZeroMemory(lvItem
); 
 990     wxConvertToMSWFlags(state
, stateMask
, lvItem
); 
 992     const bool changingFocus 
= (stateMask 
& wxLIST_STATE_FOCUSED
) && 
 993                                     (state 
& wxLIST_STATE_FOCUSED
); 
 995     // for the virtual list controls we need to refresh the previously focused 
 996     // item manually when changing focus without changing selection 
 997     // programmatically because otherwise it keeps its focus rectangle until 
 998     // next repaint (yet another comctl32 bug) 
1000     if ( IsVirtual() && changingFocus 
) 
1002         focusOld 
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_FOCUSED
); 
1009     if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE
, 
1010                         (WPARAM
)item
, (LPARAM
)&lvItem
) ) 
1012         wxLogLastError(_T("ListView_SetItemState")); 
1017     if ( focusOld 
!= -1 ) 
1019         // no need to refresh the item if it was previously selected, it would 
1020         // only result in annoying flicker 
1021         if ( !(GetItemState(focusOld
, 
1022                             wxLIST_STATE_SELECTED
) & wxLIST_STATE_SELECTED
) ) 
1024             RefreshItem(focusOld
); 
1028     // we expect the selection anchor, i.e. the item from which multiple 
1029     // selection (such as performed with e.g. Shift-arrows) starts, to be the 
1030     // same as the currently focused item but the native control doesn't update 
1031     // it when we change focus and leaves at the last item it set itself focus 
1032     // to, so do it explicitly 
1033     if ( changingFocus 
&& !HasFlag(wxLC_SINGLE_SEL
) ) 
1035         ListView_SetSelectionMark(GetHwnd(), item
); 
1041 // Sets the item image 
1042 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
)) 
1044     return SetItemColumnImage(item
, 0, image
); 
1047 // Sets the item image 
1048 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
) 
1052     info
.m_mask 
= wxLIST_MASK_IMAGE
; 
1053     info
.m_image 
= image
; 
1054     info
.m_itemId 
= item
; 
1055     info
.m_col 
= column
; 
1057     return SetItem(info
); 
1060 // Gets the item text 
1061 wxString 
wxListCtrl::GetItemText(long item
) const 
1065     info
.m_mask 
= wxLIST_MASK_TEXT
; 
1066     info
.m_itemId 
= item
; 
1069         return wxEmptyString
; 
1073 // Sets the item text 
1074 void wxListCtrl::SetItemText(long item
, const wxString
& str
) 
1078     info
.m_mask 
= wxLIST_MASK_TEXT
; 
1079     info
.m_itemId 
= item
; 
1085 // Gets the item data 
1086 wxUIntPtr 
wxListCtrl::GetItemData(long item
) const 
1090     info
.m_mask 
= wxLIST_MASK_DATA
; 
1091     info
.m_itemId 
= item
; 
1098 // Sets the item data 
1099 bool wxListCtrl::SetItemPtrData(long item
, wxUIntPtr data
) 
1103     info
.m_mask 
= wxLIST_MASK_DATA
; 
1104     info
.m_itemId 
= item
; 
1107     return SetItem(info
); 
1110 wxRect 
wxListCtrl::GetViewRect() const 
1114     // ListView_GetViewRect() can only be used in icon and small icon views 
1115     // (this is documented in MSDN and, indeed, it returns bogus results in 
1116     // report view, at least with comctl32.dll v6 under Windows 2003) 
1117     if ( HasFlag(wxLC_ICON 
| wxLC_SMALL_ICON
) ) 
1120         if ( !ListView_GetViewRect(GetHwnd(), &rc
) ) 
1122             wxLogDebug(_T("ListView_GetViewRect() failed.")); 
1127         wxCopyRECTToRect(rc
, rect
); 
1129     else if ( HasFlag(wxLC_REPORT
) ) 
1131         const long count 
= GetItemCount(); 
1134             GetItemRect(wxMin(GetTopItem() + GetCountPerPage(), count 
- 1), rect
); 
1136             // extend the rectangle to start at the top (we include the column 
1137             // headers, if any, for compatibility with the generic version) 
1138             rect
.height 
+= rect
.y
; 
1144         wxFAIL_MSG( _T("not implemented in this mode") ); 
1150 // Gets the item rectangle 
1151 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const 
1153     return GetSubItemRect( item
, wxLIST_GETSUBITEMRECT_WHOLEITEM
, rect
, code
) ; 
1156 bool wxListCtrl::GetSubItemRect(long item
, long subItem
, wxRect
& rect
, int code
) const 
1158     // ListView_GetSubItemRect() doesn't do subItem error checking and returns 
1159     // true even for the out of range values of it (even if the results are 
1160     // completely bogus in this case), so we check item validity ourselves 
1161     wxCHECK_MSG( subItem 
== wxLIST_GETSUBITEMRECT_WHOLEITEM 
|| 
1162                     (subItem 
>= 0 && subItem 
< GetColumnCount()), 
1163                  false, _T("invalid sub item index") ); 
1165     // use wxCHECK_MSG against "item" too, for coherency with the generic implementation: 
1166     wxCHECK_MSG( item 
>= 0 && item 
< GetItemCount(), false, 
1167                  _T("invalid item in GetSubItemRect") ); 
1170     if ( code 
== wxLIST_RECT_BOUNDS 
) 
1171         codeWin 
= LVIR_BOUNDS
; 
1172     else if ( code 
== wxLIST_RECT_ICON 
) 
1173         codeWin 
= LVIR_ICON
; 
1174     else if ( code 
== wxLIST_RECT_LABEL 
) 
1175         codeWin 
= LVIR_LABEL
; 
1178         wxFAIL_MSG( _T("incorrect code in GetItemRect() / GetSubItemRect()") ); 
1179         codeWin 
= LVIR_BOUNDS
; 
1183     if ( !wxGetListCtrlSubItemRect
 
1187             subItem 
== wxLIST_GETSUBITEMRECT_WHOLEITEM 
? 0 : subItem
, 
1195     wxCopyRECTToRect(rectWin
, rect
); 
1197     // there is no way to retrieve the first sub item bounding rectangle using 
1198     // wxGetListCtrlSubItemRect() as 0 means the whole item, so we need to 
1199     // truncate it at first column ourselves 
1201         rect
.width 
= GetColumnWidth(0); 
1209 // Gets the item position 
1210 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const 
1214     bool success 
= (ListView_GetItemPosition(GetHwnd(), (int) item
, &pt
) != 0); 
1216     pos
.x 
= pt
.x
; pos
.y 
= pt
.y
; 
1220 // Sets the item position. 
1221 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
) 
1223     return (ListView_SetItemPosition(GetHwnd(), (int) item
, pos
.x
, pos
.y
) != 0); 
1226 // Gets the number of items in the list control 
1227 int wxListCtrl::GetItemCount() const 
1232 wxSize 
wxListCtrl::GetItemSpacing() const 
1234     const int spacing 
= ListView_GetItemSpacing(GetHwnd(), (BOOL
)HasFlag(wxLC_SMALL_ICON
)); 
1236     return wxSize(LOWORD(spacing
), HIWORD(spacing
)); 
1239 #if WXWIN_COMPATIBILITY_2_6 
1241 int wxListCtrl::GetItemSpacing(bool isSmall
) const 
1243     return ListView_GetItemSpacing(GetHwnd(), (BOOL
) isSmall
); 
1246 #endif // WXWIN_COMPATIBILITY_2_6 
1248 void wxListCtrl::SetItemTextColour( long item
, const wxColour 
&col 
) 
1251     info
.m_itemId 
= item
; 
1252     info
.SetTextColour( col 
); 
1256 wxColour 
wxListCtrl::GetItemTextColour( long item 
) const 
1259     wxListItemInternalData 
*data 
= wxGetInternalData(this, item
); 
1260     if ( data 
&& data
->attr 
) 
1261         col 
= data
->attr
->GetTextColour(); 
1266 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour 
&col 
) 
1269     info
.m_itemId 
= item
; 
1270     info
.SetBackgroundColour( col 
); 
1274 wxColour 
wxListCtrl::GetItemBackgroundColour( long item 
) const 
1277     wxListItemInternalData 
*data 
= wxGetInternalData(this, item
); 
1278     if ( data 
&& data
->attr 
) 
1279         col 
= data
->attr
->GetBackgroundColour(); 
1284 void wxListCtrl::SetItemFont( long item
, const wxFont 
&f 
) 
1287     info
.m_itemId 
= item
; 
1292 wxFont 
wxListCtrl::GetItemFont( long item 
) const 
1295     wxListItemInternalData 
*data 
= wxGetInternalData(this, item
); 
1296     if ( data 
&& data
->attr 
) 
1297         f 
= data
->attr
->GetFont(); 
1302 // Gets the number of selected items in the list control 
1303 int wxListCtrl::GetSelectedItemCount() const 
1305     return ListView_GetSelectedCount(GetHwnd()); 
1308 // Gets the text colour of the listview 
1309 wxColour 
wxListCtrl::GetTextColour() const 
1311     COLORREF ref 
= ListView_GetTextColor(GetHwnd()); 
1312     wxColour 
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
)); 
1316 // Sets the text colour of the listview 
1317 void wxListCtrl::SetTextColour(const wxColour
& col
) 
1319     ListView_SetTextColor(GetHwnd(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue())); 
1322 // Gets the index of the topmost visible item when in 
1323 // list or report view 
1324 long wxListCtrl::GetTopItem() const 
1326     return (long) ListView_GetTopIndex(GetHwnd()); 
1329 // Searches for an item, starting from 'item'. 
1330 // 'geometry' is one of 
1331 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT. 
1332 // 'state' is a state bit flag, one or more of 
1333 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT. 
1334 // item can be -1 to find the first item that matches the 
1336 // Returns the item or -1 if unsuccessful. 
1337 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const 
1341     if ( geom 
== wxLIST_NEXT_ABOVE 
) 
1342         flags 
|= LVNI_ABOVE
; 
1343     if ( geom 
== wxLIST_NEXT_ALL 
) 
1345     if ( geom 
== wxLIST_NEXT_BELOW 
) 
1346         flags 
|= LVNI_BELOW
; 
1347     if ( geom 
== wxLIST_NEXT_LEFT 
) 
1348         flags 
|= LVNI_TOLEFT
; 
1349     if ( geom 
== wxLIST_NEXT_RIGHT 
) 
1350         flags 
|= LVNI_TORIGHT
; 
1352     if ( state 
& wxLIST_STATE_CUT 
) 
1354     if ( state 
& wxLIST_STATE_DROPHILITED 
) 
1355         flags 
|= LVNI_DROPHILITED
; 
1356     if ( state 
& wxLIST_STATE_FOCUSED 
) 
1357         flags 
|= LVNI_FOCUSED
; 
1358     if ( state 
& wxLIST_STATE_SELECTED 
) 
1359         flags 
|= LVNI_SELECTED
; 
1361     return (long) ListView_GetNextItem(GetHwnd(), item
, flags
); 
1365 wxImageList 
*wxListCtrl::GetImageList(int which
) const 
1367     if ( which 
== wxIMAGE_LIST_NORMAL 
) 
1369         return m_imageListNormal
; 
1371     else if ( which 
== wxIMAGE_LIST_SMALL 
) 
1373         return m_imageListSmall
; 
1375     else if ( which 
== wxIMAGE_LIST_STATE 
) 
1377         return m_imageListState
; 
1382 void wxListCtrl::SetImageList(wxImageList 
*imageList
, int which
) 
1385     if ( which 
== wxIMAGE_LIST_NORMAL 
) 
1387         flags 
= LVSIL_NORMAL
; 
1388         if (m_ownsImageListNormal
) delete m_imageListNormal
; 
1389         m_imageListNormal 
= imageList
; 
1390         m_ownsImageListNormal 
= false; 
1392     else if ( which 
== wxIMAGE_LIST_SMALL 
) 
1394         flags 
= LVSIL_SMALL
; 
1395         if (m_ownsImageListSmall
) delete m_imageListSmall
; 
1396         m_imageListSmall 
= imageList
; 
1397         m_ownsImageListSmall 
= false; 
1399     else if ( which 
== wxIMAGE_LIST_STATE 
) 
1401         flags 
= LVSIL_STATE
; 
1402         if (m_ownsImageListState
) delete m_imageListState
; 
1403         m_imageListState 
= imageList
; 
1404         m_ownsImageListState 
= false; 
1406     (void) ListView_SetImageList(GetHwnd(), (HIMAGELIST
) imageList 
? imageList
->GetHIMAGELIST() : 0, flags
); 
1409 void wxListCtrl::AssignImageList(wxImageList 
*imageList
, int which
) 
1411     SetImageList(imageList
, which
); 
1412     if ( which 
== wxIMAGE_LIST_NORMAL 
) 
1413         m_ownsImageListNormal 
= true; 
1414     else if ( which 
== wxIMAGE_LIST_SMALL 
) 
1415         m_ownsImageListSmall 
= true; 
1416     else if ( which 
== wxIMAGE_LIST_STATE 
) 
1417         m_ownsImageListState 
= true; 
1420 // ---------------------------------------------------------------------------- 
1422 // ---------------------------------------------------------------------------- 
1424 // Arranges the items 
1425 bool wxListCtrl::Arrange(int flag
) 
1428     if ( flag 
== wxLIST_ALIGN_LEFT 
) 
1429         code 
= LVA_ALIGNLEFT
; 
1430     else if ( flag 
== wxLIST_ALIGN_TOP 
) 
1431         code 
= LVA_ALIGNTOP
; 
1432     else if ( flag 
== wxLIST_ALIGN_DEFAULT 
) 
1434     else if ( flag 
== wxLIST_ALIGN_SNAP_TO_GRID 
) 
1435         code 
= LVA_SNAPTOGRID
; 
1437     return (ListView_Arrange(GetHwnd(), code
) != 0); 
1441 bool wxListCtrl::DeleteItem(long item
) 
1443     if ( !ListView_DeleteItem(GetHwnd(), (int) item
) ) 
1445         wxLogLastError(_T("ListView_DeleteItem")); 
1450     wxASSERT_MSG( m_count 
== ListView_GetItemCount(GetHwnd()), 
1451                   wxT("m_count should match ListView_GetItemCount")); 
1453     // the virtual list control doesn't refresh itself correctly, help it 
1456         // we need to refresh all the lines below the one which was deleted 
1458         if ( item 
> 0 && GetItemCount() ) 
1460             GetItemRect(item 
- 1, rectItem
); 
1465             rectItem
.height 
= 0; 
1468         wxRect rectWin 
= GetRect(); 
1469         rectWin
.height 
= rectWin
.GetBottom() - rectItem
.GetBottom(); 
1470         rectWin
.y 
= rectItem
.GetBottom(); 
1472         RefreshRect(rectWin
); 
1478 // Deletes all items 
1479 bool wxListCtrl::DeleteAllItems() 
1481     return ListView_DeleteAllItems(GetHwnd()) != 0; 
1484 // Deletes all items 
1485 bool wxListCtrl::DeleteAllColumns() 
1487     while ( m_colCount 
> 0 ) 
1489         if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 ) 
1491             wxLogLastError(wxT("ListView_DeleteColumn")); 
1499     wxASSERT_MSG( m_colCount 
== 0, wxT("no columns should be left") ); 
1505 bool wxListCtrl::DeleteColumn(int col
) 
1507     bool success 
= (ListView_DeleteColumn(GetHwnd(), col
) != 0); 
1509     if ( success 
&& (m_colCount 
> 0) ) 
1514 // Clears items, and columns if there are any. 
1515 void wxListCtrl::ClearAll() 
1518     if ( m_colCount 
> 0 ) 
1522 void wxListCtrl::InitEditControl(WXHWND hWnd
) 
1524     m_textCtrl
->SetHWND(hWnd
); 
1525     m_textCtrl
->SubclassWin(hWnd
); 
1526     m_textCtrl
->SetParent(this); 
1528     // we must disallow TABbing away from the control while the edit contol is 
1529     // shown because this leaves it in some strange state (just try removing 
1530     // this line and then pressing TAB while editing an item in  listctrl 
1532     m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle() | wxTE_PROCESS_TAB
); 
1535 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
) 
1537     wxCHECK_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)), NULL
, 
1538                   "control used for label editing must be a wxTextCtrl" ); 
1540     // ListView_EditLabel requires that the list has focus. 
1543     // create m_textCtrl here before calling ListView_EditLabel() because it 
1544     // generates wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT event from inside it and 
1545     // the user handler for it can call GetEditControl() resulting in an on 
1546     // demand creation of a stock wxTextCtrl instead of the control of a 
1547     // (possibly) custom wxClassInfo 
1548     DeleteEditControl(); 
1549     m_textCtrl 
= (wxTextCtrl 
*)textControlClass
->CreateObject(); 
1551     WXHWND hWnd 
= (WXHWND
) ListView_EditLabel(GetHwnd(), item
); 
1554         // failed to start editing 
1561     // if GetEditControl() hasn't been called, we need to initialize the edit 
1562     // control ourselves 
1563     if ( !m_textCtrl
->GetHWND() ) 
1564         InitEditControl(hWnd
); 
1569 // End label editing, optionally cancelling the edit 
1570 bool wxListCtrl::EndEditLabel(bool cancel
) 
1572     // m_textCtrl is not always ready, ie. in EVT_LIST_BEGIN_LABEL_EDIT 
1573     HWND hwnd 
= ListView_GetEditControl(GetHwnd()); 
1578         ::SetWindowText(hwnd
, wxEmptyString
); // dubious but better than nothing 
1580     // we shouldn't destroy the control ourselves according to MSDN, which 
1581     // proposes WM_CANCELMODE to do this, but it doesn't seem to work 
1583     // posting WM_CLOSE to it does seem to work without any side effects 
1584     ::PostMessage(hwnd
, WM_CLOSE
, 0, 0); 
1589 // Ensures this item is visible 
1590 bool wxListCtrl::EnsureVisible(long item
) 
1592     return ListView_EnsureVisible(GetHwnd(), (int) item
, FALSE
) != FALSE
; 
1595 // Find an item whose label matches this string, starting from the item after 'start' 
1596 // or the beginning if 'start' is -1. 
1597 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
) 
1599     LV_FINDINFO findInfo
; 
1601     findInfo
.flags 
= LVFI_STRING
; 
1603         findInfo
.flags 
|= LVFI_PARTIAL
; 
1604     findInfo
.psz 
= str
.wx_str(); 
1606     // ListView_FindItem() excludes the first item from search and to look 
1607     // through all the items you need to start from -1 which is unnatural and 
1608     // inconsistent with the generic version - so we adjust the index 
1611     return ListView_FindItem(GetHwnd(), (int) start
, &findInfo
); 
1614 // Find an item whose data matches this data, starting from the item after 'start' 
1615 // or the beginning if 'start' is -1. 
1616 // NOTE : Lindsay Mathieson - 14-July-2002 
1617 //        No longer use ListView_FindItem as the data attribute is now stored 
1618 //        in a wxListItemInternalData structure refernced by the actual lParam 
1619 long wxListCtrl::FindItem(long start
, wxUIntPtr data
) 
1621     long  idx 
= start 
+ 1; 
1622     long count 
= GetItemCount(); 
1626         if (GetItemData(idx
) == data
) 
1634 // Find an item nearest this position in the specified direction, starting from 
1635 // the item after 'start' or the beginning if 'start' is -1. 
1636 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
) 
1638     LV_FINDINFO findInfo
; 
1640     findInfo
.flags 
= LVFI_NEARESTXY
; 
1641     findInfo
.pt
.x 
= pt
.x
; 
1642     findInfo
.pt
.y 
= pt
.y
; 
1643     findInfo
.vkDirection 
= VK_RIGHT
; 
1645     if ( direction 
== wxLIST_FIND_UP 
) 
1646         findInfo
.vkDirection 
= VK_UP
; 
1647     else if ( direction 
== wxLIST_FIND_DOWN 
) 
1648         findInfo
.vkDirection 
= VK_DOWN
; 
1649     else if ( direction 
== wxLIST_FIND_LEFT 
) 
1650         findInfo
.vkDirection 
= VK_LEFT
; 
1651     else if ( direction 
== wxLIST_FIND_RIGHT 
) 
1652         findInfo
.vkDirection 
= VK_RIGHT
; 
1654     return ListView_FindItem(GetHwnd(), (int) start
, & findInfo
); 
1657 // Determines which item (if any) is at the specified point, 
1658 // giving details in 'flags' (see wxLIST_HITTEST_... flags above) 
1660 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const 
1662     LV_HITTESTINFO hitTestInfo
; 
1663     hitTestInfo
.pt
.x 
= (int) point
.x
; 
1664     hitTestInfo
.pt
.y 
= (int) point
.y
; 
1667 #ifdef LVM_SUBITEMHITTEST 
1668     if ( ptrSubItem 
&& wxApp::GetComCtl32Version() >= 470 ) 
1670         item 
= ListView_SubItemHitTest(GetHwnd(), &hitTestInfo
); 
1671         *ptrSubItem 
= hitTestInfo
.iSubItem
; 
1674 #endif // LVM_SUBITEMHITTEST 
1676         item 
= ListView_HitTest(GetHwnd(), &hitTestInfo
); 
1681     if ( hitTestInfo
.flags 
& LVHT_ABOVE 
) 
1682         flags 
|= wxLIST_HITTEST_ABOVE
; 
1683     if ( hitTestInfo
.flags 
& LVHT_BELOW 
) 
1684         flags 
|= wxLIST_HITTEST_BELOW
; 
1685     if ( hitTestInfo
.flags 
& LVHT_TOLEFT 
) 
1686         flags 
|= wxLIST_HITTEST_TOLEFT
; 
1687     if ( hitTestInfo
.flags 
& LVHT_TORIGHT 
) 
1688         flags 
|= wxLIST_HITTEST_TORIGHT
; 
1690     if ( hitTestInfo
.flags 
& LVHT_NOWHERE 
) 
1691         flags 
|= wxLIST_HITTEST_NOWHERE
; 
1693     // note a bug or at least a very strange feature of comtl32.dll (tested 
1694     // with version 4.0 under Win95 and 6.0 under Win 2003): if you click to 
1695     // the right of the item label, ListView_HitTest() returns a combination of 
1696     // LVHT_ONITEMICON, LVHT_ONITEMLABEL and LVHT_ONITEMSTATEICON -- filter out 
1697     // the bits which don't make sense 
1698     if ( hitTestInfo
.flags 
& LVHT_ONITEMLABEL 
) 
1700         flags 
|= wxLIST_HITTEST_ONITEMLABEL
; 
1702         // do not translate LVHT_ONITEMICON here, as per above 
1706         if ( hitTestInfo
.flags 
& LVHT_ONITEMICON 
) 
1707             flags 
|= wxLIST_HITTEST_ONITEMICON
; 
1708         if ( hitTestInfo
.flags 
& LVHT_ONITEMSTATEICON 
) 
1709             flags 
|= wxLIST_HITTEST_ONITEMSTATEICON
; 
1716 // Inserts an item, returning the index of the new item if successful, 
1718 long wxListCtrl::InsertItem(const wxListItem
& info
) 
1720     wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") ); 
1723     wxConvertToMSWListItem(this, info
, item
); 
1724     item
.mask 
&= ~LVIF_PARAM
; 
1726     // check wether we need to allocate our internal data 
1727     bool needInternalData 
= ((info
.m_mask 
& wxLIST_MASK_DATA
) || info
.HasAttributes()); 
1728     if (needInternalData
) 
1730         m_AnyInternalData 
= true; 
1731         item
.mask 
|= LVIF_PARAM
; 
1733         // internal stucture that manages data 
1734         wxListItemInternalData 
*data 
= new wxListItemInternalData(); 
1735         item
.lParam 
= (LPARAM
) data
; 
1737         if (info
.m_mask 
& wxLIST_MASK_DATA
) 
1738             data
->lParam 
= info
.m_data
; 
1740         // check whether it has any custom attributes 
1741         if ( info
.HasAttributes() ) 
1743             // take copy of attributes 
1744             data
->attr 
= new wxListItemAttr(*info
.GetAttributes()); 
1746             // and remember that we have some now... 
1747             m_hasAnyAttr 
= true; 
1751     long rv 
= ListView_InsertItem(GetHwnd(), & item
); 
1754     wxASSERT_MSG( m_count 
== ListView_GetItemCount(GetHwnd()), 
1755                   wxT("m_count should match ListView_GetItemCount")); 
1760 long wxListCtrl::InsertItem(long index
, const wxString
& label
) 
1763     info
.m_text 
= label
; 
1764     info
.m_mask 
= wxLIST_MASK_TEXT
; 
1765     info
.m_itemId 
= index
; 
1766     return InsertItem(info
); 
1769 // Inserts an image item 
1770 long wxListCtrl::InsertItem(long index
, int imageIndex
) 
1773     info
.m_image 
= imageIndex
; 
1774     info
.m_mask 
= wxLIST_MASK_IMAGE
; 
1775     info
.m_itemId 
= index
; 
1776     return InsertItem(info
); 
1779 // Inserts an image/string item 
1780 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
) 
1783     info
.m_image 
= imageIndex
; 
1784     info
.m_text 
= label
; 
1785     info
.m_mask 
= wxLIST_MASK_IMAGE 
| wxLIST_MASK_TEXT
; 
1786     info
.m_itemId 
= index
; 
1787     return InsertItem(info
); 
1790 // For list view mode (only), inserts a column. 
1791 long wxListCtrl::InsertColumn(long col
, const wxListItem
& item
) 
1794     wxConvertToMSWListCol(GetHwnd(), col
, item
, lvCol
); 
1796     if ( !(lvCol
.mask 
& LVCF_WIDTH
) ) 
1798         // always give some width to the new column: this one is compatible 
1799         // with the generic version 
1800         lvCol
.mask 
|= LVCF_WIDTH
; 
1804     long n 
= ListView_InsertColumn(GetHwnd(), col
, &lvCol
); 
1809     else // failed to insert? 
1811         wxLogDebug(wxT("Failed to insert the column '%s' into listview!"), 
1818 long wxListCtrl::InsertColumn(long col
, 
1819                               const wxString
& heading
, 
1824     item
.m_mask 
= wxLIST_MASK_TEXT 
| wxLIST_MASK_FORMAT
; 
1825     item
.m_text 
= heading
; 
1828         item
.m_mask 
|= wxLIST_MASK_WIDTH
; 
1829         item
.m_width 
= width
; 
1831     item
.m_format 
= format
; 
1833     return InsertColumn(col
, item
); 
1836 // scroll the control by the given number of pixels (exception: in list view, 
1837 // dx is interpreted as number of columns) 
1838 bool wxListCtrl::ScrollList(int dx
, int dy
) 
1840     if ( !ListView_Scroll(GetHwnd(), dx
, dy
) ) 
1842         wxLogDebug(_T("ListView_Scroll(%d, %d) failed"), dx
, dy
); 
1852 // fn is a function which takes 3 long arguments: item1, item2, data. 
1853 // item1 is the long data associated with a first item (NOT the index). 
1854 // item2 is the long data associated with a second item (NOT the index). 
1855 // data is the same value as passed to SortItems. 
1856 // The return value is a negative number if the first item should precede the second 
1857 // item, a positive number of the second item should precede the first, 
1858 // or zero if the two items are equivalent. 
1860 // data is arbitrary data to be passed to the sort function. 
1862 // Internal structures for proxying the user compare function 
1863 // so that we can pass it the *real* user data 
1865 // translate lParam data and call user func 
1866 struct wxInternalDataSort
 
1868     wxListCtrlCompare user_fn
; 
1872 int CALLBACK 
wxInternalDataCompareFunc(LPARAM lParam1
, LPARAM lParam2
,  LPARAM lParamSort
) 
1874     struct wxInternalDataSort 
*internalData 
= (struct wxInternalDataSort 
*) lParamSort
; 
1876     wxListItemInternalData 
*data1 
= (wxListItemInternalData 
*) lParam1
; 
1877     wxListItemInternalData 
*data2 
= (wxListItemInternalData 
*) lParam2
; 
1879     long d1 
= (data1 
== NULL 
? 0 : data1
->lParam
); 
1880     long d2 
= (data2 
== NULL 
? 0 : data2
->lParam
); 
1882     return internalData
->user_fn(d1
, d2
, internalData
->data
); 
1886 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
) 
1888     struct wxInternalDataSort internalData
; 
1889     internalData
.user_fn 
= fn
; 
1890     internalData
.data 
= data
; 
1892     // WPARAM cast is needed for mingw/cygwin 
1893     if ( !ListView_SortItems(GetHwnd(), 
1894                              wxInternalDataCompareFunc
, 
1895                              (WPARAM
) &internalData
) ) 
1897         wxLogDebug(_T("ListView_SortItems() failed")); 
1907 // ---------------------------------------------------------------------------- 
1908 // message processing 
1909 // ---------------------------------------------------------------------------- 
1911 bool wxListCtrl::MSWShouldPreProcessMessage(WXMSG
* msg
) 
1913     if ( msg
->message 
== WM_KEYDOWN 
) 
1915         // Only eat VK_RETURN if not being used by the application in 
1916         // conjunction with modifiers 
1917         if ( msg
->wParam 
== VK_RETURN 
&& !wxIsAnyModifierDown() ) 
1919             // we need VK_RETURN to generate wxEVT_COMMAND_LIST_ITEM_ACTIVATED 
1923     return wxControl::MSWShouldPreProcessMessage(msg
); 
1926 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id_
) 
1928     const int id 
= (signed short)id_
; 
1929     if (cmd 
== EN_UPDATE
) 
1931         wxCommandEvent 
event(wxEVT_COMMAND_TEXT_UPDATED
, id
); 
1932         event
.SetEventObject( this ); 
1933         ProcessCommand(event
); 
1936     else if (cmd 
== EN_KILLFOCUS
) 
1938         wxCommandEvent 
event(wxEVT_KILL_FOCUS
, id
); 
1939         event
.SetEventObject( this ); 
1940         ProcessCommand(event
); 
1947 // utility used by wxListCtrl::MSWOnNotify and by wxDataViewHeaderWindowMSW::MSWOnNotify 
1948 int WXDLLIMPEXP_CORE 
wxMSWGetColumnClicked(NMHDR 
*nmhdr
, POINT 
*ptClick
) 
1950     // find the column clicked: we have to search for it ourselves as the 
1951     // notification message doesn't provide this info 
1953     // where did the click occur? 
1954 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400 
1955     if ( nmhdr
->code 
== GN_CONTEXTMENU 
) 
1957         *ptClick 
= ((NMRGINFO
*)nmhdr
)->ptAction
; 
1960 #endif //__WXWINCE__ 
1961     if ( !::GetCursorPos(ptClick
) ) 
1963         wxLogLastError(_T("GetCursorPos")); 
1966     // we need to use listctrl coordinates for the event point so this is what 
1967     // we return in ptClick, but for comparison with Header_GetItemRect() 
1968     // result below we need to use header window coordinates 
1969     POINT ptClickHeader 
= *ptClick
; 
1970     if ( !::ScreenToClient(nmhdr
->hwndFrom
, &ptClickHeader
) ) 
1972         wxLogLastError(_T("ScreenToClient(listctrl header)")); 
1975     if ( !::ScreenToClient(::GetParent(nmhdr
->hwndFrom
), ptClick
) ) 
1977         wxLogLastError(_T("ScreenToClient(listctrl)")); 
1980     const int colCount 
= Header_GetItemCount(nmhdr
->hwndFrom
); 
1981     for ( int col 
= 0; col 
< colCount
; col
++ ) 
1984         if ( Header_GetItemRect(nmhdr
->hwndFrom
, col
, &rect
) ) 
1986             if ( ::PtInRect(&rect
, ptClickHeader
) ) 
1996 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM 
*result
) 
1999     // prepare the event 
2000     // ----------------- 
2002     wxListEvent 
event(wxEVT_NULL
, m_windowId
); 
2003     event
.SetEventObject(this); 
2005     wxEventType eventType 
= wxEVT_NULL
; 
2007     NMHDR 
*nmhdr 
= (NMHDR 
*)lParam
; 
2009     // if your compiler is as broken as this, you should really change it: this 
2010     // code is needed for normal operation! #ifdef below is only useful for 
2011     // automatic rebuilds which are done with a very old compiler version 
2012 #ifdef HDN_BEGINTRACKA 
2014     // check for messages from the header (in report view) 
2015     HWND hwndHdr 
= ListView_GetHeader(GetHwnd()); 
2017     // is it a message from the header? 
2018     if ( nmhdr
->hwndFrom 
== hwndHdr 
) 
2020         HD_NOTIFY 
*nmHDR 
= (HD_NOTIFY 
*)nmhdr
; 
2022         event
.m_itemIndex 
= -1; 
2024         switch ( nmhdr
->code 
) 
2026             // yet another comctl32.dll bug: under NT/W2K it sends Unicode 
2027             // TRACK messages even to ANSI programs: on my system I get 
2028             // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all! 
2030             // work around is to simply catch both versions and hope that it 
2031             // works (why should this message exist in ANSI and Unicode is 
2032             // beyond me as it doesn't deal with strings at all...) 
2034             // note that fr HDN_TRACK another possibility could be to use 
2035             // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when 
2036             // something other than the item width changes so we'd have to 
2037             // filter out the unwanted events then 
2038             case HDN_BEGINTRACKA
: 
2039             case HDN_BEGINTRACKW
: 
2040                 eventType 
= wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
; 
2045                 if ( eventType 
== wxEVT_NULL 
) 
2046                     eventType 
= wxEVT_COMMAND_LIST_COL_DRAGGING
; 
2051                 if ( eventType 
== wxEVT_NULL 
) 
2052                     eventType 
= wxEVT_COMMAND_LIST_COL_END_DRAG
; 
2054                 event
.m_item
.m_width 
= nmHDR
->pitem
->cxy
; 
2055                 event
.m_col 
= nmHDR
->iItem
; 
2058 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400 
2059             case GN_CONTEXTMENU
: 
2060 #endif //__WXWINCE__ 
2065                     eventType 
= wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
; 
2066                     event
.m_col 
= wxMSWGetColumnClicked(nmhdr
, &ptClick
); 
2067                     event
.m_pointDrag
.x 
= ptClick
.x
; 
2068                     event
.m_pointDrag
.y 
= ptClick
.y
; 
2072             case HDN_GETDISPINFOW
: 
2073                 // letting Windows XP handle this message results in mysterious 
2074                 // crashes in comctl32.dll seemingly because of bad message 
2077                 // I have no idea what is the real cause of the bug (which is, 
2078                 // just to make things interesting, impossible to reproduce 
2079                 // reliably) but ignoring all these messages does fix it and 
2080                 // doesn't seem to have any negative consequences 
2084                 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
); 
2088 #endif // defined(HDN_BEGINTRACKA) 
2089     if ( nmhdr
->hwndFrom 
== GetHwnd() ) 
2091         // almost all messages use NM_LISTVIEW 
2092         NM_LISTVIEW 
*nmLV 
= (NM_LISTVIEW 
*)nmhdr
; 
2094         const int iItem 
= nmLV
->iItem
; 
2097         // FreeAllInternalData will cause LVN_ITEMCHANG* messages, which can be 
2098         // ignored for efficiency.  It is done here because the internal data is in the 
2099         // process of being deleted so we don't want to try and access it below. 
2100         if ( m_ignoreChangeMessages 
&& 
2101              ( (nmLV
->hdr
.code 
== LVN_ITEMCHANGED
) || 
2102                (nmLV
->hdr
.code 
== LVN_ITEMCHANGING
)) ) 
2108         // If we have a valid item then check if there is a data value 
2109         // associated with it and put it in the event. 
2110         if ( iItem 
>= 0 && iItem 
< GetItemCount() ) 
2112             wxListItemInternalData 
*internaldata 
= 
2113                 wxGetInternalData(GetHwnd(), iItem
); 
2116                 event
.m_item
.m_data 
= internaldata
->lParam
; 
2119         bool processed 
= true; 
2120         switch ( nmhdr
->code 
) 
2122             case LVN_BEGINRDRAG
: 
2123                 eventType 
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
; 
2127                 if ( eventType 
== wxEVT_NULL 
) 
2129                     eventType 
= wxEVT_COMMAND_LIST_BEGIN_DRAG
; 
2132                 event
.m_itemIndex 
= iItem
; 
2133                 event
.m_pointDrag
.x 
= nmLV
->ptAction
.x
; 
2134                 event
.m_pointDrag
.y 
= nmLV
->ptAction
.y
; 
2137             // NB: we have to handle both *A and *W versions here because some 
2138             //     versions of comctl32.dll send ANSI messages even to the 
2140             case LVN_BEGINLABELEDITA
: 
2141             case LVN_BEGINLABELEDITW
: 
2144                     if ( nmhdr
->code 
== LVN_BEGINLABELEDITA 
) 
2146                         item
.Init(((LV_DISPINFOA 
*)lParam
)->item
); 
2148                     else // LVN_BEGINLABELEDITW 
2150                         item
.Init(((LV_DISPINFOW 
*)lParam
)->item
); 
2153                     eventType 
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
; 
2154                     wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, item
); 
2155                     event
.m_itemIndex 
= event
.m_item
.m_itemId
; 
2159             case LVN_ENDLABELEDITA
: 
2160             case LVN_ENDLABELEDITW
: 
2163                     if ( nmhdr
->code 
== LVN_ENDLABELEDITA 
) 
2165                         item
.Init(((LV_DISPINFOA 
*)lParam
)->item
); 
2167                     else // LVN_ENDLABELEDITW 
2169                         item
.Init(((LV_DISPINFOW 
*)lParam
)->item
); 
2172                     // was editing cancelled? 
2173                     const LV_ITEM
& lvi 
= (LV_ITEM
)item
; 
2174                     if ( !lvi
.pszText 
|| lvi
.iItem 
== -1 ) 
2176                         // EDIT control will be deleted by the list control 
2177                         // itself so prevent us from deleting it as well 
2178                         DeleteEditControl(); 
2180                         event
.SetEditCanceled(true); 
2183                     eventType 
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
; 
2184                     wxConvertFromMSWListItem(NULL
, event
.m_item
, item
); 
2185                     event
.m_itemIndex 
= event
.m_item
.m_itemId
; 
2189             case LVN_COLUMNCLICK
: 
2190                 eventType 
= wxEVT_COMMAND_LIST_COL_CLICK
; 
2191                 event
.m_itemIndex 
= -1; 
2192                 event
.m_col 
= nmLV
->iSubItem
; 
2195             case LVN_DELETEALLITEMS
: 
2196                 eventType 
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
; 
2197                 event
.m_itemIndex 
= -1; 
2200             case LVN_DELETEITEM
: 
2203                     // this should be prevented by the post-processing code 
2204                     // below, but "just in case" 
2208                 eventType 
= wxEVT_COMMAND_LIST_DELETE_ITEM
; 
2209                 event
.m_itemIndex 
= iItem
; 
2210                 // delete the assoicated internal data 
2211                 wxDeleteInternalData(this, iItem
); 
2214             case LVN_INSERTITEM
: 
2215                 eventType 
= wxEVT_COMMAND_LIST_INSERT_ITEM
; 
2216                 event
.m_itemIndex 
= iItem
; 
2219             case LVN_ITEMCHANGED
: 
2220                 // we translate this catch all message into more interesting 
2221                 // (and more easy to process) wxWidgets events 
2223                 // first of all, we deal with the state change events only and 
2224                 // only for valid items (item == -1 for the virtual list 
2226                 if ( nmLV
->uChanged 
& LVIF_STATE 
&& iItem 
!= -1 ) 
2228                     // temp vars for readability 
2229                     const UINT stOld 
= nmLV
->uOldState
; 
2230                     const UINT stNew 
= nmLV
->uNewState
; 
2232                     event
.m_item
.SetId(iItem
); 
2233                     event
.m_item
.SetMask(wxLIST_MASK_TEXT 
| 
2236                     GetItem(event
.m_item
); 
2238                     // has the focus changed? 
2239                     if ( !(stOld 
& LVIS_FOCUSED
) && (stNew 
& LVIS_FOCUSED
) ) 
2241                         eventType 
= wxEVT_COMMAND_LIST_ITEM_FOCUSED
; 
2242                         event
.m_itemIndex 
= iItem
; 
2245                     if ( (stNew 
& LVIS_SELECTED
) != (stOld 
& LVIS_SELECTED
) ) 
2247                         if ( eventType 
!= wxEVT_NULL 
) 
2249                             // focus and selection have both changed: send the 
2250                             // focus event from here and the selection one 
2252                             event
.SetEventType(eventType
); 
2253                             (void)HandleWindowEvent(event
); 
2255                         else // no focus event to send 
2257                             // then need to set m_itemIndex as it wasn't done 
2259                             event
.m_itemIndex 
= iItem
; 
2262                         eventType 
= stNew 
& LVIS_SELECTED
 
2263                                         ? wxEVT_COMMAND_LIST_ITEM_SELECTED
 
2264                                         : wxEVT_COMMAND_LIST_ITEM_DESELECTED
; 
2268                 if ( eventType 
== wxEVT_NULL 
) 
2270                     // not an interesting event for us 
2278                     LV_KEYDOWN 
*info 
= (LV_KEYDOWN 
*)lParam
; 
2279                     WORD wVKey 
= info
->wVKey
; 
2281                     // get the current selection 
2282                     long lItem 
= GetNextItem(-1, 
2284                                              wxLIST_STATE_SELECTED
); 
2286                     // <Enter> or <Space> activate the selected item if any (but 
2287                     // not with any modifiers as they have a predefined meaning 
2290                          (wVKey 
== VK_RETURN 
|| wVKey 
== VK_SPACE
) && 
2291                          !wxIsAnyModifierDown() ) 
2293                         eventType 
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
; 
2297                         eventType 
= wxEVT_COMMAND_LIST_KEY_DOWN
; 
2299                         // wxCharCodeMSWToWX() returns 0 if the key is an ASCII 
2300                         // value which should be used as is 
2301                         int code 
= wxCharCodeMSWToWX(wVKey
); 
2302                         event
.m_code 
= code 
? code 
: wVKey
; 
2306                     event
.m_item
.m_itemId 
= lItem
; 
2310                         // fill the other fields too 
2311                         event
.m_item
.m_text 
= GetItemText(lItem
); 
2312                         event
.m_item
.m_data 
= GetItemData(lItem
); 
2318                 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do 
2320                 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) ) 
2325                 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event 
2326                 // if it happened on an item (and not on empty place) 
2333                 eventType 
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
; 
2334                 event
.m_itemIndex 
= iItem
; 
2335                 event
.m_item
.m_text 
= GetItemText(iItem
); 
2336                 event
.m_item
.m_data 
= GetItemData(iItem
); 
2339 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400 
2340             case GN_CONTEXTMENU
: 
2341 #endif //__WXWINCE__ 
2343                 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(), 
2344                 // don't do anything else 
2345                 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) ) 
2350                 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event 
2351                 LV_HITTESTINFO lvhti
; 
2352                 wxZeroMemory(lvhti
); 
2354 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) && _WIN32_WCE < 400 
2355               if(nmhdr
->code 
== GN_CONTEXTMENU
) { 
2356                   lvhti
.pt 
= ((NMRGINFO
*)nmhdr
)->ptAction
; 
2358 #endif //__WXWINCE__ 
2359                 ::GetCursorPos(&(lvhti
.pt
)); 
2360                 ::ScreenToClient(GetHwnd(),&(lvhti
.pt
)); 
2361                 if ( ListView_HitTest(GetHwnd(),&lvhti
) != -1 ) 
2363                     if ( lvhti
.flags 
& LVHT_ONITEM 
) 
2365                         eventType 
= wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
; 
2366                         event
.m_itemIndex 
= lvhti
.iItem
; 
2367                         event
.m_pointDrag
.x 
= lvhti
.pt
.x
; 
2368                         event
.m_pointDrag
.y 
= lvhti
.pt
.y
; 
2373 #ifdef NM_CUSTOMDRAW 
2375                 *result 
= OnCustomDraw(lParam
); 
2377                 return *result 
!= CDRF_DODEFAULT
; 
2378 #endif // _WIN32_IE >= 0x300 
2380             case LVN_ODCACHEHINT
: 
2382                     const NM_CACHEHINT 
*cacheHint 
= (NM_CACHEHINT 
*)lParam
; 
2384                     eventType 
= wxEVT_COMMAND_LIST_CACHE_HINT
; 
2386                     // we get some really stupid cache hints like ones for 
2387                     // items in range 0..0 for an empty control or, after 
2388                     // deleting an item, for items in invalid range -- filter 
2390                     if ( cacheHint
->iFrom 
> cacheHint
->iTo 
) 
2393                     event
.m_oldItemIndex 
= cacheHint
->iFrom
; 
2395                     const long iMax 
= GetItemCount(); 
2396                     event
.m_itemIndex 
= cacheHint
->iTo 
< iMax 
? cacheHint
->iTo
 
2401 #ifdef HAVE_NMLVFINDITEM 
2402             case LVN_ODFINDITEM
: 
2403                 // this message is only used with the virtual list control but 
2404                 // even there we don't want to always use it: in a control with 
2405                 // sufficiently big number of items (defined as > 1000 here), 
2406                 // accidentally pressing a key could result in hanging an 
2407                 // application waiting while it performs linear search 
2408                 if ( IsVirtual() && GetItemCount() <= 1000 ) 
2410                     NMLVFINDITEM
* pFindInfo 
= (NMLVFINDITEM
*)lParam
; 
2412                     // no match by default 
2415                     // we only handle string-based searches here 
2417                     // TODO: what about LVFI_PARTIAL, should we handle this? 
2418                     if ( !(pFindInfo
->lvfi
.flags 
& LVFI_STRING
) ) 
2423                     const wxChar 
* const searchstr 
= pFindInfo
->lvfi
.psz
; 
2424                     const size_t len 
= wxStrlen(searchstr
); 
2426                     // this is the first item we should examine, search from it 
2427                     // wrapping if necessary 
2428                     const int startPos 
= pFindInfo
->iStart
; 
2429                     const int maxPos 
= GetItemCount(); 
2430                     wxCHECK_MSG( startPos 
<= maxPos
, false, 
2431                                  _T("bad starting position in LVN_ODFINDITEM") ); 
2433                     int currentPos 
= startPos
; 
2436                         // wrap to the beginning if necessary 
2437                         if ( currentPos 
== maxPos 
) 
2439                             // somewhat surprizingly, LVFI_WRAP isn't set in 
2440                             // flags but we still should wrap 
2444                         // does this item begin with searchstr? 
2445                         if ( wxStrnicmp(searchstr
, 
2446                                             GetItemText(currentPos
), len
) == 0 ) 
2448                             *result 
= currentPos
; 
2452                     while ( ++currentPos 
!= startPos 
); 
2454                     if ( *result 
== -1 ) 
2460                     SetItemState(*result
, 
2461                                  wxLIST_STATE_SELECTED 
| wxLIST_STATE_FOCUSED
, 
2462                                  wxLIST_STATE_SELECTED 
| wxLIST_STATE_FOCUSED
); 
2463                     EnsureVisible(*result
); 
2471 #endif // HAVE_NMLVFINDITEM 
2473             case LVN_GETDISPINFO
: 
2476                     LV_DISPINFO 
*info 
= (LV_DISPINFO 
*)lParam
; 
2478                     LV_ITEM
& lvi 
= info
->item
; 
2479                     long item 
= lvi
.iItem
; 
2481                     if ( lvi
.mask 
& LVIF_TEXT 
) 
2483                         wxString text 
= OnGetItemText(item
, lvi
.iSubItem
); 
2484                         wxStrlcpy(lvi
.pszText
, text
.c_str(), lvi
.cchTextMax
); 
2487                     // see comment at the end of wxListCtrl::GetColumn() 
2488 #ifdef NM_CUSTOMDRAW 
2489                     if ( lvi
.mask 
& LVIF_IMAGE 
) 
2491                         lvi
.iImage 
= OnGetItemColumnImage(item
, lvi
.iSubItem
); 
2493 #endif // NM_CUSTOMDRAW 
2495                     // even though we never use LVM_SETCALLBACKMASK, we still 
2496                     // can get messages with LVIF_STATE in lvi.mask under Vista 
2497                     if ( lvi
.mask 
& LVIF_STATE 
) 
2499                         // we don't have anything to return from here... 
2512             return wxControl::MSWOnNotify(idCtrl
, lParam
, result
); 
2516         // where did this one come from? 
2520     // process the event 
2521     // ----------------- 
2523     event
.SetEventType(eventType
); 
2525     bool processed 
= HandleWindowEvent(event
); 
2529     switch ( nmhdr
->code 
) 
2531         case LVN_DELETEALLITEMS
: 
2532             // always return true to suppress all additional LVN_DELETEITEM 
2533             // notifications - this makes deleting all items from a list ctrl 
2537             // also, we may free all user data now (couldn't do it before as 
2538             // the user should have access to it in OnDeleteAllItems() handler) 
2539             FreeAllInternalData(); 
2541             // the control is empty now, synchronize the cached number of items 
2542             // with the real one 
2546         case LVN_ENDLABELEDITA
: 
2547         case LVN_ENDLABELEDITW
: 
2548             // logic here is inverted compared to all the other messages 
2549             *result 
= event
.IsAllowed(); 
2551             // EDIT control will be deleted by the list control itself so 
2552             // prevent us from deleting it as well 
2553             DeleteEditControl(); 
2559         *result 
= !event
.IsAllowed(); 
2564 // ---------------------------------------------------------------------------- 
2565 // custom draw stuff 
2566 // ---------------------------------------------------------------------------- 
2568 // see comment at the end of wxListCtrl::GetColumn() 
2569 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300 
2571 static RECT 
GetCustomDrawnItemRect(const NMCUSTOMDRAW
& nmcd
) 
2574     wxGetListCtrlItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, LVIR_BOUNDS
, rc
); 
2577     wxGetListCtrlItemRect(nmcd
.hdr
.hwndFrom
, nmcd
.dwItemSpec
, LVIR_ICON
, rcIcon
); 
2579     // exclude the icon part, neither the selection background nor focus rect 
2581     rc
.left 
= rcIcon
.right
; 
2587 bool HandleSubItemPrepaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
, int colCount
) 
2589     NMCUSTOMDRAW
& nmcd 
= pLVCD
->nmcd
; 
2592     HWND hwndList 
= nmcd
.hdr
.hwndFrom
; 
2593     const int col 
= pLVCD
->iSubItem
; 
2594     const DWORD item 
= nmcd
.dwItemSpec
; 
2596     // the font must be valid, otherwise we wouldn't be painting the item at all 
2597     SelectInHDC 
selFont(hdc
, hfont
); 
2599     // get the rectangle to paint 
2600     int subitem 
= colCount 
? col 
+ 1 : col
; 
2602     wxGetListCtrlSubItemRect(hwndList
, item
, subitem
, LVIR_BOUNDS
, rc
); 
2605     // get the image and text to draw 
2609     it
.mask 
= LVIF_TEXT 
| LVIF_IMAGE
; 
2613     it
.cchTextMax 
= WXSIZEOF(text
); 
2614     ListView_GetItem(hwndList
, &it
); 
2616     HIMAGELIST himl 
= ListView_GetImageList(hwndList
, LVSIL_SMALL
); 
2617     if ( himl 
&& ImageList_GetImageCount(himl
) ) 
2619         if ( it
.iImage 
!= -1 ) 
2621             ImageList_Draw(himl
, it
.iImage
, hdc
, rc
.left
, rc
.top
, 
2622                            nmcd
.uItemState 
& CDIS_SELECTED 
? ILD_SELECTED
 
2626         // notice that even if this item doesn't have any image, the list 
2627         // control still leaves space for the image in the first column if the 
2628         // image list is not empty (presumably so that items with and without 
2630         if ( it
.iImage 
!= -1 || it
.iSubItem 
== 0 ) 
2633             ImageList_GetIconSize(himl
, &wImage
, &hImage
); 
2635             rc
.left 
+= wImage 
+ 2; 
2639     ::SetBkMode(hdc
, TRANSPARENT
); 
2641     UINT fmt 
= DT_SINGLELINE 
| 
2644 #endif // __WXWINCE__ 
2649     wxZeroMemory(lvCol
); 
2650     lvCol
.mask 
= LVCF_FMT
; 
2651     if ( ListView_GetColumn(hwndList
, col
, &lvCol
) ) 
2653         switch ( lvCol
.fmt 
& LVCFMT_JUSTIFYMASK 
) 
2668     //else: failed to get alignment, assume it's DT_LEFT (default) 
2670     DrawText(hdc
, text
, -1, &rc
, fmt
); 
2675 static void HandleItemPostpaint(NMCUSTOMDRAW nmcd
) 
2677     if ( nmcd
.uItemState 
& CDIS_FOCUS 
) 
2679         RECT rc 
= GetCustomDrawnItemRect(nmcd
); 
2681         // don't use the provided HDC, it's in some strange state by now 
2682         ::DrawFocusRect(WindowHDC(nmcd
.hdr
.hwndFrom
), &rc
); 
2686 // pLVCD->clrText and clrTextBk should contain the colours to use 
2687 static void HandleItemPaint(LPNMLVCUSTOMDRAW pLVCD
, HFONT hfont
) 
2689     NMCUSTOMDRAW
& nmcd 
= pLVCD
->nmcd
; // just a shortcut 
2691     const HWND hwndList 
= nmcd
.hdr
.hwndFrom
; 
2692     const int item 
= nmcd
.dwItemSpec
; 
2694     // unfortunately we can't trust CDIS_SELECTED, it is often set even when 
2695     // the item is not at all selected for some reason (comctl32 6), but we 
2696     // also can't always trust ListView_GetItem() as it could return the old 
2697     // item status if we're called just after the (de)selection, so remember 
2698     // the last item to gain selection and also check for it here 
2699     for ( int i 
= -1;; ) 
2701         i 
= ListView_GetNextItem(hwndList
, i
, LVNI_SELECTED
); 
2704             nmcd
.uItemState 
&= ~CDIS_SELECTED
; 
2710             nmcd
.uItemState 
|= CDIS_SELECTED
; 
2715     // same thing for CDIS_FOCUS (except simpler as there is only one of them) 
2716     if ( ::GetFocus() == hwndList 
&& 
2717             ListView_GetNextItem(hwndList
, -1, LVNI_FOCUSED
) == item 
) 
2719         nmcd
.uItemState 
|= CDIS_FOCUS
; 
2723         nmcd
.uItemState 
&= ~CDIS_FOCUS
; 
2726     if ( nmcd
.uItemState 
& CDIS_SELECTED 
) 
2728         int syscolFg
, syscolBg
; 
2729         if ( ::GetFocus() == hwndList 
) 
2731             syscolFg 
= COLOR_HIGHLIGHTTEXT
; 
2732             syscolBg 
= COLOR_HIGHLIGHT
; 
2734         else // selected but unfocused 
2736             syscolFg 
= COLOR_WINDOWTEXT
; 
2737             syscolBg 
= COLOR_BTNFACE
; 
2739             // don't grey out the icon in this case neither 
2740             nmcd
.uItemState 
&= ~CDIS_SELECTED
; 
2743         pLVCD
->clrText 
= ::GetSysColor(syscolFg
); 
2744         pLVCD
->clrTextBk 
= ::GetSysColor(syscolBg
); 
2746     //else: not selected, use normal colours from pLVCD 
2749     RECT rc 
= GetCustomDrawnItemRect(nmcd
); 
2751     ::SetTextColor(hdc
, pLVCD
->clrText
); 
2752     ::FillRect(hdc
, &rc
, AutoHBRUSH(pLVCD
->clrTextBk
)); 
2754     // we could use CDRF_NOTIFYSUBITEMDRAW here but it results in weird repaint 
2755     // problems so just draw everything except the focus rect from here instead 
2756     const int colCount 
= Header_GetItemCount(ListView_GetHeader(hwndList
)); 
2757     for ( int col 
= 0; col 
< colCount
; col
++ ) 
2759         pLVCD
->iSubItem 
= col
; 
2760         HandleSubItemPrepaint(pLVCD
, hfont
, colCount
); 
2763     HandleItemPostpaint(nmcd
); 
2766 static WXLPARAM 
HandleItemPrepaint(wxListCtrl 
*listctrl
, 
2767                                    LPNMLVCUSTOMDRAW pLVCD
, 
2768                                    wxListItemAttr 
*attr
) 
2772         // nothing to do for this item 
2773         return CDRF_DODEFAULT
; 
2777     // set the colours to use for text drawing 
2778     pLVCD
->clrText 
= attr
->HasTextColour() 
2779                      ? wxColourToRGB(attr
->GetTextColour()) 
2780                      : wxColourToRGB(listctrl
->GetTextColour()); 
2781     pLVCD
->clrTextBk 
= attr
->HasBackgroundColour() 
2782                        ? wxColourToRGB(attr
->GetBackgroundColour()) 
2783                        : wxColourToRGB(listctrl
->GetBackgroundColour()); 
2785     // select the font if non default one is specified 
2786     if ( attr
->HasFont() ) 
2788         wxFont font 
= attr
->GetFont(); 
2789         if ( font
.GetEncoding() != wxFONTENCODING_SYSTEM 
) 
2791             // the standard control ignores the font encoding/charset, at least 
2792             // with recent comctl32.dll versions (5 and 6, it uses to work with 
2793             // 4.something) so we have to draw the item entirely ourselves in 
2795             HandleItemPaint(pLVCD
, GetHfontOf(font
)); 
2796             return CDRF_SKIPDEFAULT
; 
2799         ::SelectObject(pLVCD
->nmcd
.hdc
, GetHfontOf(font
)); 
2801         return CDRF_NEWFONT
; 
2804     return CDRF_DODEFAULT
; 
2807 WXLPARAM 
wxListCtrl::OnCustomDraw(WXLPARAM lParam
) 
2809     LPNMLVCUSTOMDRAW pLVCD 
= (LPNMLVCUSTOMDRAW
)lParam
; 
2810     NMCUSTOMDRAW
& nmcd 
= pLVCD
->nmcd
; 
2811     switch ( nmcd
.dwDrawStage 
) 
2814             // if we've got any items with non standard attributes, 
2815             // notify us before painting each item 
2817             // for virtual controls, always suppose that we have attributes as 
2818             // there is no way to check for this 
2819             if ( IsVirtual() || m_hasAnyAttr 
) 
2820                 return CDRF_NOTIFYITEMDRAW
; 
2823         case CDDS_ITEMPREPAINT
: 
2824             // get a message for each subitem 
2825             return CDRF_NOTIFYITEMDRAW
; 
2827         case CDDS_SUBITEM 
| CDDS_ITEMPREPAINT
: 
2828             const int item 
= nmcd
.dwItemSpec
; 
2829             const int column 
= pLVCD
->iSubItem
; 
2831             // we get this message with item == 0 for an empty control, we 
2832             // must ignore it as calling OnGetItemAttr() would be wrong 
2833             if ( item 
< 0 || item 
>= GetItemCount() ) 
2836             if ( column 
< 0 || column 
>= GetColumnCount() ) 
2839             return HandleItemPrepaint(this, pLVCD
, DoGetItemColumnAttr(item
, column
)); 
2842     return CDRF_DODEFAULT
; 
2845 #endif // NM_CUSTOMDRAW supported 
2847 // Necessary for drawing hrules and vrules, if specified 
2848 void wxListCtrl::OnPaint(wxPaintEvent
& event
) 
2850     const bool drawHRules 
= HasFlag(wxLC_HRULES
); 
2851     const bool drawVRules 
= HasFlag(wxLC_VRULES
); 
2853     if (!InReportView() || !(drawHRules 
|| drawVRules
)) 
2861     wxControl::OnPaint(event
); 
2863     // Reset the device origin since it may have been set 
2864     dc
.SetDeviceOrigin(0, 0); 
2866     wxPen 
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
)); 
2868     dc
.SetBrush(* wxTRANSPARENT_BRUSH
); 
2870     wxSize clientSize 
= GetClientSize(); 
2873     int itemCount 
= GetItemCount(); 
2877         long top 
= GetTopItem(); 
2878         for (i 
= top
; i 
< top 
+ GetCountPerPage() + 1; i
++) 
2880             if (GetItemRect(i
, itemRect
)) 
2882                 int cy 
= itemRect
.GetTop(); 
2883                 if (i 
!= 0) // Don't draw the first one 
2885                     dc
.DrawLine(0, cy
, clientSize
.x
, cy
); 
2888                 if (i 
== itemCount 
- 1) 
2890                     cy 
= itemRect
.GetBottom(); 
2891                     dc
.DrawLine(0, cy
, clientSize
.x
, cy
); 
2897     if (drawVRules 
&& (i 
> -1)) 
2899         wxRect firstItemRect
; 
2900         GetItemRect(0, firstItemRect
); 
2902         if (GetItemRect(i
, itemRect
)) 
2904             // this is a fix for bug 673394: erase the pixels which we would 
2905             // otherwise leave on the screen 
2906             static const int gap 
= 2; 
2907             dc
.SetPen(*wxTRANSPARENT_PEN
); 
2908             dc
.SetBrush(wxBrush(GetBackgroundColour())); 
2909             dc
.DrawRectangle(0, firstItemRect
.GetY() - gap
, 
2910                              clientSize
.GetWidth(), gap
); 
2913             dc
.SetBrush(*wxTRANSPARENT_BRUSH
); 
2915             const int numCols 
= GetColumnCount(); 
2916             wxVector
<int> indexArray(numCols
); 
2917             if ( !ListView_GetColumnOrderArray(GetHwnd(), 
2921                 wxFAIL_MSG( _T("invalid column index array in OnPaint()") ); 
2925             int x 
= itemRect
.GetX(); 
2926             for (int col 
= 0; col 
< numCols
; col
++) 
2928                 int colWidth 
= GetColumnWidth(indexArray
[col
]); 
2930                 dc
.DrawLine(x
-1, firstItemRect
.GetY() - gap
, 
2931                             x
-1, itemRect
.GetBottom()); 
2938 wxListCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
) 
2944             // we should bypass our own WM_PRINT handling as we don't handle 
2945             // PRF_CHILDREN flag, so leave it to the native control itself 
2946             return MSWDefWindowProc(nMsg
, wParam
, lParam
); 
2949         case WM_CONTEXTMENU
: 
2950             // because this message is propagated upwards the child-parent 
2951             // chain, we get it for the right clicks on the header window but 
2952             // this is confusing in wx as right clicking there already 
2953             // generates a separate wxEVT_COMMAND_LIST_COL_RIGHT_CLICK event 
2954             // so just ignore them 
2955             if ( (HWND
)wParam 
== ListView_GetHeader(GetHwnd()) ) 
2960     return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
); 
2963 // ---------------------------------------------------------------------------- 
2964 // virtual list controls 
2965 // ---------------------------------------------------------------------------- 
2967 wxString 
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const 
2969     // this is a pure virtual function, in fact - which is not really pure 
2970     // because the controls which are not virtual don't need to implement it 
2971     wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") ); 
2973     return wxEmptyString
; 
2976 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const 
2978     wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
), 
2980                 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden.")); 
2984 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const 
2987         return OnGetItemImage(item
); 
2992 wxListItemAttr 
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const 
2994     wxASSERT_MSG( item 
>= 0 && item 
< GetItemCount(), 
2995                   _T("invalid item index in OnGetItemAttr()") ); 
2997     // no attributes by default 
3001 wxListItemAttr 
*wxListCtrl::DoGetItemColumnAttr(long item
, long column
) const 
3003     return IsVirtual() ? OnGetItemColumnAttr(item
, column
) 
3004                        : wxGetInternalDataAttr(this, item
); 
3007 void wxListCtrl::SetItemCount(long count
) 
3009     wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") ); 
3011     if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT
, (WPARAM
)count
, 
3012                         LVSICF_NOSCROLL 
| LVSICF_NOINVALIDATEALL
) ) 
3014         wxLogLastError(_T("ListView_SetItemCount")); 
3017     wxASSERT_MSG( m_count 
== ListView_GetItemCount(GetHwnd()), 
3018                   wxT("m_count should match ListView_GetItemCount")); 
3021 void wxListCtrl::RefreshItem(long item
) 
3023     RefreshItems(item
, item
); 
3026 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
) 
3028     ListView_RedrawItems(GetHwnd(), itemFrom
, itemTo
); 
3031 // ---------------------------------------------------------------------------- 
3032 // internal data stuff 
3033 // ---------------------------------------------------------------------------- 
3035 static wxListItemInternalData 
*wxGetInternalData(HWND hwnd
, long itemId
) 
3038     it
.mask 
= LVIF_PARAM
; 
3041     if ( !ListView_GetItem(hwnd
, &it
) ) 
3044     return (wxListItemInternalData 
*) it
.lParam
; 
3048 wxListItemInternalData 
*wxGetInternalData(const wxListCtrl 
*ctl
, long itemId
) 
3050     return wxGetInternalData(GetHwndOf(ctl
), itemId
); 
3054 wxListItemAttr 
*wxGetInternalDataAttr(const wxListCtrl 
*ctl
, long itemId
) 
3056     wxListItemInternalData 
*data 
= wxGetInternalData(ctl
, itemId
); 
3058     return data 
? data
->attr 
: NULL
; 
3061 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
) 
3063     wxListItemInternalData 
*data 
= wxGetInternalData(ctl
, itemId
); 
3067         memset(&item
, 0, sizeof(item
)); 
3068         item
.iItem 
= itemId
; 
3069         item
.mask 
= LVIF_PARAM
; 
3070         item
.lParam 
= (LPARAM
) 0; 
3071         ListView_SetItem((HWND
)ctl
->GetHWND(), &item
); 
3076 // ---------------------------------------------------------------------------- 
3077 // wxWin <-> MSW items conversions 
3078 // ---------------------------------------------------------------------------- 
3080 static void wxConvertFromMSWListItem(HWND hwndListCtrl
, 
3084     wxListItemInternalData 
*internaldata 
= 
3085         (wxListItemInternalData 
*) lvItem
.lParam
; 
3088         info
.m_data 
= internaldata
->lParam
; 
3092     info
.m_stateMask 
= 0; 
3093     info
.m_itemId 
= lvItem
.iItem
; 
3095     long oldMask 
= lvItem
.mask
; 
3097     bool needText 
= false; 
3098     if (hwndListCtrl 
!= 0) 
3100         if ( lvItem
.mask 
& LVIF_TEXT 
) 
3107             lvItem
.pszText 
= new wxChar
[513]; 
3108             lvItem
.cchTextMax 
= 512; 
3110         lvItem
.mask 
|= LVIF_TEXT 
| LVIF_IMAGE 
| LVIF_PARAM
; 
3111         ::SendMessage(hwndListCtrl
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
); 
3114     if ( lvItem
.mask 
& LVIF_STATE 
) 
3116         info
.m_mask 
|= wxLIST_MASK_STATE
; 
3118         if ( lvItem
.stateMask 
& LVIS_CUT
) 
3120             info
.m_stateMask 
|= wxLIST_STATE_CUT
; 
3121             if ( lvItem
.state 
& LVIS_CUT 
) 
3122                 info
.m_state 
|= wxLIST_STATE_CUT
; 
3124         if ( lvItem
.stateMask 
& LVIS_DROPHILITED
) 
3126             info
.m_stateMask 
|= wxLIST_STATE_DROPHILITED
; 
3127             if ( lvItem
.state 
& LVIS_DROPHILITED 
) 
3128                 info
.m_state 
|= wxLIST_STATE_DROPHILITED
; 
3130         if ( lvItem
.stateMask 
& LVIS_FOCUSED
) 
3132             info
.m_stateMask 
|= wxLIST_STATE_FOCUSED
; 
3133             if ( lvItem
.state 
& LVIS_FOCUSED 
) 
3134                 info
.m_state 
|= wxLIST_STATE_FOCUSED
; 
3136         if ( lvItem
.stateMask 
& LVIS_SELECTED
) 
3138             info
.m_stateMask 
|= wxLIST_STATE_SELECTED
; 
3139             if ( lvItem
.state 
& LVIS_SELECTED 
) 
3140                 info
.m_state 
|= wxLIST_STATE_SELECTED
; 
3144     if ( lvItem
.mask 
& LVIF_TEXT 
) 
3146         info
.m_mask 
|= wxLIST_MASK_TEXT
; 
3147         info
.m_text 
= lvItem
.pszText
; 
3149     if ( lvItem
.mask 
& LVIF_IMAGE 
) 
3151         info
.m_mask 
|= wxLIST_MASK_IMAGE
; 
3152         info
.m_image 
= lvItem
.iImage
; 
3154     if ( lvItem
.mask 
& LVIF_PARAM 
) 
3155         info
.m_mask 
|= wxLIST_MASK_DATA
; 
3156     if ( lvItem
.mask 
& LVIF_DI_SETITEM 
) 
3157         info
.m_mask 
|= wxLIST_SET_ITEM
; 
3158     info
.m_col 
= lvItem
.iSubItem
; 
3163             delete[] lvItem
.pszText
; 
3165     lvItem
.mask 
= oldMask
; 
3168 static void wxConvertToMSWFlags(long state
, long stateMask
, LV_ITEM
& lvItem
) 
3170     if (stateMask 
& wxLIST_STATE_CUT
) 
3172         lvItem
.stateMask 
|= LVIS_CUT
; 
3173         if (state 
& wxLIST_STATE_CUT
) 
3174             lvItem
.state 
|= LVIS_CUT
; 
3176     if (stateMask 
& wxLIST_STATE_DROPHILITED
) 
3178         lvItem
.stateMask 
|= LVIS_DROPHILITED
; 
3179         if (state 
& wxLIST_STATE_DROPHILITED
) 
3180             lvItem
.state 
|= LVIS_DROPHILITED
; 
3182     if (stateMask 
& wxLIST_STATE_FOCUSED
) 
3184         lvItem
.stateMask 
|= LVIS_FOCUSED
; 
3185         if (state 
& wxLIST_STATE_FOCUSED
) 
3186             lvItem
.state 
|= LVIS_FOCUSED
; 
3188     if (stateMask 
& wxLIST_STATE_SELECTED
) 
3190         lvItem
.stateMask 
|= LVIS_SELECTED
; 
3191         if (state 
& wxLIST_STATE_SELECTED
) 
3192             lvItem
.state 
|= LVIS_SELECTED
; 
3196 static void wxConvertToMSWListItem(const wxListCtrl 
*ctrl
, 
3197                                    const wxListItem
& info
, 
3200     lvItem
.iItem 
= (int) info
.m_itemId
; 
3202     lvItem
.iImage 
= info
.m_image
; 
3203     lvItem
.stateMask 
= 0; 
3206     lvItem
.iSubItem 
= info
.m_col
; 
3208     if (info
.m_mask 
& wxLIST_MASK_STATE
) 
3210         lvItem
.mask 
|= LVIF_STATE
; 
3212         wxConvertToMSWFlags(info
.m_state
, info
.m_stateMask
, lvItem
); 
3215     if (info
.m_mask 
& wxLIST_MASK_TEXT
) 
3217         lvItem
.mask 
|= LVIF_TEXT
; 
3218         if ( ctrl
->HasFlag(wxLC_USER_TEXT
) ) 
3220             lvItem
.pszText 
= LPSTR_TEXTCALLBACK
; 
3224             // pszText is not const, hence the cast 
3225             lvItem
.pszText 
= (wxChar 
*)info
.m_text
.wx_str(); 
3226             if ( lvItem
.pszText 
) 
3227                 lvItem
.cchTextMax 
= info
.m_text
.length(); 
3229                 lvItem
.cchTextMax 
= 0; 
3232     if (info
.m_mask 
& wxLIST_MASK_IMAGE
) 
3233         lvItem
.mask 
|= LVIF_IMAGE
; 
3236 static void wxConvertToMSWListCol(HWND hwndList
, 
3238                                   const wxListItem
& item
, 
3241     wxZeroMemory(lvCol
); 
3243     if ( item
.m_mask 
& wxLIST_MASK_TEXT 
) 
3245         lvCol
.mask 
|= LVCF_TEXT
; 
3246         lvCol
.pszText 
= (wxChar 
*)item
.m_text
.wx_str(); // cast is safe 
3249     if ( item
.m_mask 
& wxLIST_MASK_FORMAT 
) 
3251         lvCol
.mask 
|= LVCF_FMT
; 
3253         if ( item
.m_format 
== wxLIST_FORMAT_LEFT 
) 
3254             lvCol
.fmt 
= LVCFMT_LEFT
; 
3255         else if ( item
.m_format 
== wxLIST_FORMAT_RIGHT 
) 
3256             lvCol
.fmt 
= LVCFMT_RIGHT
; 
3257         else if ( item
.m_format 
== wxLIST_FORMAT_CENTRE 
) 
3258             lvCol
.fmt 
= LVCFMT_CENTER
; 
3261     if ( item
.m_mask 
& wxLIST_MASK_WIDTH 
) 
3263         lvCol
.mask 
|= LVCF_WIDTH
; 
3264         if ( item
.m_width 
== wxLIST_AUTOSIZE
) 
3265             lvCol
.cx 
= LVSCW_AUTOSIZE
; 
3266         else if ( item
.m_width 
== wxLIST_AUTOSIZE_USEHEADER
) 
3267             lvCol
.cx 
= LVSCW_AUTOSIZE_USEHEADER
; 
3269             lvCol
.cx 
= item
.m_width
; 
3272     // see comment at the end of wxListCtrl::GetColumn() 
3273 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300 
3274     if ( item
.m_mask 
& wxLIST_MASK_IMAGE 
) 
3276         if ( wxApp::GetComCtl32Version() >= 470 ) 
3278             lvCol
.mask 
|= LVCF_IMAGE
; 
3280             // we use LVCFMT_BITMAP_ON_RIGHT because the images on the right 
3281             // seem to be generally nicer than on the left and the generic 
3282             // version only draws them on the right (we don't have a flag to 
3283             // specify the image location anyhow) 
3285             // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to 
3286             // make any difference in my tests -- but maybe we should? 
3287             if ( item
.m_image 
!= -1 ) 
3289                 // as we're going to overwrite the format field, get its 
3290                 // current value first -- unless we want to overwrite it anyhow 
3291                 if ( !(lvCol
.mask 
& LVCF_FMT
) ) 
3294                     wxZeroMemory(lvColOld
); 
3295                     lvColOld
.mask 
= LVCF_FMT
; 
3296                     if ( ListView_GetColumn(hwndList
, col
, &lvColOld
) ) 
3298                         lvCol
.fmt 
= lvColOld
.fmt
; 
3301                     lvCol
.mask 
|= LVCF_FMT
; 
3304                 lvCol
.fmt 
|= LVCFMT_BITMAP_ON_RIGHT 
| LVCFMT_IMAGE
; 
3307             lvCol
.iImage 
= item
.m_image
; 
3309         //else: it doesn't support item images anyhow 
3311 #endif // _WIN32_IE >= 0x0300 
3314 #endif // wxUSE_LISTCTRL