1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/listctrl.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "listctrl.h"
22 #pragma implementation "listctrlbase.h"
25 // For compilers that support precompilation, includes "wx.h".
26 #include "wx/wxprec.h"
32 #if wxUSE_LISTCTRL && defined(__WIN95__)
38 #include "wx/settings.h"
41 #include "wx/textctrl.h"
42 #include "wx/imaglist.h"
43 #include "wx/listctrl.h"
44 #include "wx/dcclient.h"
46 #include "wx/msw/private.h"
48 // include <commctrl.h> "properly"
49 #include "wx/msw/wrapcctl.h"
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 // convert our state and mask flags to LV_ITEM constants
56 static void wxConvertToMSWFlags(long state
, long mask
, LV_ITEM
& lvItem
);
58 // convert wxListItem to LV_ITEM
59 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
60 const wxListItem
& info
, LV_ITEM
& lvItem
);
62 // convert LV_ITEM to wxListItem
63 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
65 /* const */ LV_ITEM
& lvItem
);
67 // convert our wxListItem to LV_COLUMN
68 static void wxConvertToMSWListCol(int col
, const wxListItem
& item
,
71 // ----------------------------------------------------------------------------
72 // private helper classes
73 // ----------------------------------------------------------------------------
75 // We have to handle both fooW and fooA notifications in several cases
76 // because of broken commctl.dll and/or unicows.dll. This class is used to
77 // convert LV_ITEMA and LV_ITEMW to LV_ITEM (which is either LV_ITEMA or
78 // LV_ITEMW depending on wxUSE_UNICODE setting), so that it can be processed
79 // by wxConvertToMSWListItem().
83 ~wxLV_ITEM() { delete m_buf
; }
84 operator LV_ITEM
&() const { return *m_item
; }
87 wxLV_ITEM(LV_ITEMW
&item
) : m_buf(NULL
), m_item(&item
) {}
88 wxLV_ITEM(LV_ITEMA
&item
)
90 m_item
= new LV_ITEM((LV_ITEM
&)item
);
91 if ( (item
.mask
& LVIF_TEXT
) && item
.pszText
)
93 m_buf
= new wxMB2WXbuf(wxConvLocal
.cMB2WX(item
.pszText
));
94 m_item
->pszText
= (wxChar
*)m_buf
->data();
102 #else // !wxUSE_UNICODE
103 wxLV_ITEM(LV_ITEMW
&item
)
105 m_item
= new LV_ITEM((LV_ITEM
&)item
);
107 // the code below doesn't compile without wxUSE_WCHAR_T and as I don't
108 // know if it's useful to have it at all (do we ever get Unicode
109 // notifications in ANSI mode? I don't think so...) I'm not going to
110 // write alternative implementation right now
112 // but if it is indeed used, we should simply directly use
113 // ::WideCharToMultiByte() here
115 if ( (item
.mask
& LVIF_TEXT
) && item
.pszText
)
117 m_buf
= new wxWC2WXbuf(wxConvLocal
.cWC2WX(item
.pszText
));
118 m_item
->pszText
= (wxChar
*)m_buf
->data();
121 #endif // wxUSE_WCHAR_T
124 wxLV_ITEM(LV_ITEMA
&item
) : m_buf(NULL
), m_item(&item
) {}
127 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
131 DECLARE_NO_COPY_CLASS(wxLV_ITEM
)
134 ///////////////////////////////////////////////////////
136 // The MSW version had problems with SetTextColour() et
137 // al as the wxListItemAttr's were stored keyed on the
138 // item index. If a item was inserted anywhere but the end
139 // of the list the the text attributes (colour etc) for
140 // the following items were out of sync.
143 // Under MSW the only way to associate data with a List
144 // item independant of its position in the list is to
145 // store a pointer to it in its lParam attribute. However
146 // user programs are already using this (via the
147 // SetItemData() GetItemData() calls).
149 // However what we can do is store a pointer to a
150 // structure which contains the attributes we want *and*
151 // a lParam for the users data, e.g.
153 // class wxListItemInternalData
156 // wxListItemAttr *attr;
157 // long lParam; // user data
160 // To conserve memory, a wxListItemInternalData is
161 // only allocated for a LV_ITEM if text attributes or
162 // user data(lparam) are being set.
165 // class wxListItemInternalData
166 class wxListItemInternalData
169 wxListItemAttr
*attr
;
170 LPARAM lParam
; // user data
172 wxListItemInternalData() : attr(NULL
), lParam(0) {}
173 ~wxListItemInternalData()
179 DECLARE_NO_COPY_CLASS(wxListItemInternalData
)
182 // Get the internal data structure
183 static wxListItemInternalData
*wxGetInternalData(HWND hwnd
, long itemId
);
184 static wxListItemInternalData
*wxGetInternalData(wxListCtrl
*ctl
, long itemId
);
185 static wxListItemAttr
*wxGetInternalDataAttr(wxListCtrl
*ctl
, long itemId
);
186 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
);
189 // ----------------------------------------------------------------------------
191 // ----------------------------------------------------------------------------
193 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
)
194 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
)
195 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
)
196 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
)
197 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
)
198 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
)
199 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
)
200 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
)
201 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
)
202 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
)
203 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
)
204 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
)
205 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
)
206 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
)
207 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
)
208 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING
)
209 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG
)
210 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
)
211 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
)
212 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
)
213 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED
)
214 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
)
216 #if wxUSE_EXTENDED_RTTI
217 WX_DEFINE_FLAGS( wxListCtrlStyle
)
219 wxBEGIN_FLAGS( wxListCtrlStyle
)
220 // new style border flags, we put them first to
221 // use them for streaming out
222 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
223 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
224 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
225 wxFLAGS_MEMBER(wxBORDER_RAISED
)
226 wxFLAGS_MEMBER(wxBORDER_STATIC
)
227 wxFLAGS_MEMBER(wxBORDER_NONE
)
229 // old style border flags
230 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
231 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
232 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
233 wxFLAGS_MEMBER(wxRAISED_BORDER
)
234 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
235 wxFLAGS_MEMBER(wxBORDER
)
237 // standard window styles
238 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
239 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
240 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
241 wxFLAGS_MEMBER(wxWANTS_CHARS
)
242 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
243 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
244 wxFLAGS_MEMBER(wxVSCROLL
)
245 wxFLAGS_MEMBER(wxHSCROLL
)
247 wxFLAGS_MEMBER(wxLC_LIST
)
248 wxFLAGS_MEMBER(wxLC_REPORT
)
249 wxFLAGS_MEMBER(wxLC_ICON
)
250 wxFLAGS_MEMBER(wxLC_SMALL_ICON
)
251 wxFLAGS_MEMBER(wxLC_ALIGN_TOP
)
252 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT
)
253 wxFLAGS_MEMBER(wxLC_AUTOARRANGE
)
254 wxFLAGS_MEMBER(wxLC_USER_TEXT
)
255 wxFLAGS_MEMBER(wxLC_EDIT_LABELS
)
256 wxFLAGS_MEMBER(wxLC_NO_HEADER
)
257 wxFLAGS_MEMBER(wxLC_SINGLE_SEL
)
258 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING
)
259 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING
)
260 wxFLAGS_MEMBER(wxLC_VIRTUAL
)
262 wxEND_FLAGS( wxListCtrlStyle
)
264 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl
, wxControl
,"wx/listctrl.h")
266 wxBEGIN_PROPERTIES_TABLE(wxListCtrl
)
267 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
269 wxPROPERTY_FLAGS( WindowStyle
, wxListCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
270 wxEND_PROPERTIES_TABLE()
272 wxBEGIN_HANDLERS_TABLE(wxListCtrl
)
273 wxEND_HANDLERS_TABLE()
275 wxCONSTRUCTOR_5( wxListCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
278 TODO : Expose more information of a list's layout etc. via appropriate objects (Ã la NotebookPageInfo)
281 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
284 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
285 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
287 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
289 BEGIN_EVENT_TABLE(wxListCtrl
, wxControl
)
290 EVT_PAINT(wxListCtrl::OnPaint
)
293 // ============================================================================
295 // ============================================================================
297 // ----------------------------------------------------------------------------
298 // wxListCtrl construction
299 // ----------------------------------------------------------------------------
301 void wxListCtrl::Init()
303 m_imageListNormal
= NULL
;
304 m_imageListSmall
= NULL
;
305 m_imageListState
= NULL
;
306 m_ownsImageListNormal
= m_ownsImageListSmall
= m_ownsImageListState
= FALSE
;
310 m_ignoreChangeMessages
= FALSE
;
312 m_AnyInternalData
= FALSE
;
313 m_hasAnyAttr
= FALSE
;
316 bool wxListCtrl::Create(wxWindow
*parent
,
321 const wxValidator
& wxVALIDATOR_PARAM(validator
),
322 const wxString
& name
)
325 SetValidator(validator
);
326 #endif // wxUSE_VALIDATORS
335 m_windowStyle
= style
;
348 m_windowId
= (id
== -1) ? NewControlId() : id
;
350 DWORD wstyle
= WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
|
351 LVS_SHAREIMAGELISTS
| LVS_SHOWSELALWAYS
;
353 m_baseStyle
= wstyle
;
355 if ( !DoCreateControl(x
, y
, width
, height
) )
359 parent
->AddChild(this);
364 bool wxListCtrl::DoCreateControl(int x
, int y
, int w
, int h
)
366 DWORD wstyle
= m_baseStyle
;
369 WXDWORD standardStyle
= MSWGetStyle(GetWindowStyle(), & exStyle
) ;
371 long oldStyle
= 0; // Dummy
372 wstyle
|= ConvertToMSWStyle(oldStyle
, m_windowStyle
);
373 wstyle
|= standardStyle
;
375 // Create the ListView control.
376 m_hWnd
= (WXHWND
)CreateWindowEx(exStyle
,
381 GetWinHwnd(GetParent()),
388 wxLogError(_("Can't create list control window, check that comctl32.dll is installed."));
393 // explicitly say that we want to use Unicode because otherwise we get ANSI
394 // versions of _some_ messages (notably LVN_GETDISPINFOA) in MSLU build
396 ::SendMessage(GetHwnd(), LVM_SETUNICODEFORMAT
, TRUE
, 0);
399 // for comctl32.dll v 4.70+ we want to have this attribute because it's
400 // prettier (and also because wxGTK does it like this)
401 if ( (wstyle
& LVS_REPORT
) && wxTheApp
->GetComCtl32Version() >= 470 )
403 ::SendMessage(GetHwnd(), LVM_SETEXTENDEDLISTVIEWSTYLE
,
404 0, LVS_EX_FULLROWSELECT
);
407 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
408 SetForegroundColour(GetParent()->GetForegroundColour());
415 void wxListCtrl::UpdateStyle()
419 // The new window view style
421 DWORD dwStyleNew
= ConvertToMSWStyle(dummy
, m_windowStyle
);
422 dwStyleNew
|= m_baseStyle
;
424 // Get the current window style.
425 DWORD dwStyleOld
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
427 // Only set the window style if the view bits have changed.
428 if ( dwStyleOld
!= dwStyleNew
)
430 ::SetWindowLong(GetHwnd(), GWL_STYLE
, dwStyleNew
);
435 void wxListCtrl::FreeAllInternalData()
437 if (m_AnyInternalData
)
439 int n
= GetItemCount();
442 m_ignoreChangeMessages
= TRUE
;
443 for (i
= 0; i
< n
; i
++)
444 wxDeleteInternalData(this, i
);
445 m_ignoreChangeMessages
= FALSE
;
447 m_AnyInternalData
= FALSE
;
451 wxListCtrl::~wxListCtrl()
453 FreeAllInternalData();
457 m_textCtrl
->UnsubclassWin();
458 m_textCtrl
->SetHWND(0);
463 if (m_ownsImageListNormal
) delete m_imageListNormal
;
464 if (m_ownsImageListSmall
) delete m_imageListSmall
;
465 if (m_ownsImageListState
) delete m_imageListState
;
468 // ----------------------------------------------------------------------------
469 // set/get/change style
470 // ----------------------------------------------------------------------------
472 // Add or remove a single window style
473 void wxListCtrl::SetSingleStyle(long style
, bool add
)
475 long flag
= GetWindowStyleFlag();
477 // Get rid of conflicting styles
480 if ( style
& wxLC_MASK_TYPE
)
481 flag
= flag
& ~wxLC_MASK_TYPE
;
482 if ( style
& wxLC_MASK_ALIGN
)
483 flag
= flag
& ~wxLC_MASK_ALIGN
;
484 if ( style
& wxLC_MASK_SORT
)
485 flag
= flag
& ~wxLC_MASK_SORT
;
501 m_windowStyle
= flag
;
506 // Set the whole window style
507 void wxListCtrl::SetWindowStyleFlag(long flag
)
509 m_windowStyle
= flag
;
514 // Can be just a single style, or a bitlist
515 long wxListCtrl::ConvertToMSWStyle(long& oldStyle
, long style
) const
518 if ( style
& wxLC_ICON
)
520 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
521 oldStyle
-= LVS_SMALLICON
;
522 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
523 oldStyle
-= LVS_REPORT
;
524 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
525 oldStyle
-= LVS_LIST
;
529 if ( style
& wxLC_SMALL_ICON
)
531 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
532 oldStyle
-= LVS_ICON
;
533 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
534 oldStyle
-= LVS_REPORT
;
535 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
536 oldStyle
-= LVS_LIST
;
537 wstyle
|= LVS_SMALLICON
;
540 if ( style
& wxLC_LIST
)
542 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
543 oldStyle
-= LVS_ICON
;
544 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
545 oldStyle
-= LVS_REPORT
;
546 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
547 oldStyle
-= LVS_SMALLICON
;
551 if ( style
& wxLC_REPORT
)
553 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
554 oldStyle
-= LVS_ICON
;
555 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
556 oldStyle
-= LVS_LIST
;
557 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
558 oldStyle
-= LVS_SMALLICON
;
560 wstyle
|= LVS_REPORT
;
563 if ( style
& wxLC_ALIGN_LEFT
)
565 if ( oldStyle
& LVS_ALIGNTOP
)
566 oldStyle
-= LVS_ALIGNTOP
;
567 wstyle
|= LVS_ALIGNLEFT
;
570 if ( style
& wxLC_ALIGN_TOP
)
572 if ( oldStyle
& LVS_ALIGNLEFT
)
573 oldStyle
-= LVS_ALIGNLEFT
;
574 wstyle
|= LVS_ALIGNTOP
;
577 if ( style
& wxLC_AUTOARRANGE
)
578 wstyle
|= LVS_AUTOARRANGE
;
580 if ( style
& wxLC_NO_SORT_HEADER
)
581 wstyle
|= LVS_NOSORTHEADER
;
583 if ( style
& wxLC_NO_HEADER
)
584 wstyle
|= LVS_NOCOLUMNHEADER
;
586 if ( style
& wxLC_EDIT_LABELS
)
587 wstyle
|= LVS_EDITLABELS
;
589 if ( style
& wxLC_SINGLE_SEL
)
590 wstyle
|= LVS_SINGLESEL
;
592 if ( style
& wxLC_SORT_ASCENDING
)
594 if ( oldStyle
& LVS_SORTDESCENDING
)
595 oldStyle
-= LVS_SORTDESCENDING
;
596 wstyle
|= LVS_SORTASCENDING
;
599 if ( style
& wxLC_SORT_DESCENDING
)
601 if ( oldStyle
& LVS_SORTASCENDING
)
602 oldStyle
-= LVS_SORTASCENDING
;
603 wstyle
|= LVS_SORTDESCENDING
;
606 #if !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
607 if ( style
& wxLC_VIRTUAL
)
609 int ver
= wxTheApp
->GetComCtl32Version();
612 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."),
613 ver
/ 100, ver
% 100);
616 wstyle
|= LVS_OWNERDATA
;
623 // ----------------------------------------------------------------------------
625 // ----------------------------------------------------------------------------
627 // Sets the foreground, i.e. text, colour
628 bool wxListCtrl::SetForegroundColour(const wxColour
& col
)
630 if ( !wxWindow::SetForegroundColour(col
) )
633 ListView_SetTextColor(GetHwnd(), wxColourToRGB(col
));
638 // Sets the background colour
639 bool wxListCtrl::SetBackgroundColour(const wxColour
& col
)
641 if ( !wxWindow::SetBackgroundColour(col
) )
644 // we set the same colour for both the "empty" background and the items
646 COLORREF color
= wxColourToRGB(col
);
647 ListView_SetBkColor(GetHwnd(), color
);
648 ListView_SetTextBkColor(GetHwnd(), color
);
653 // Gets information about this column
654 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
659 lvCol
.mask
= LVCF_WIDTH
;
661 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
663 lvCol
.mask
|= LVCF_TEXT
;
664 lvCol
.pszText
= new wxChar
[513];
665 lvCol
.cchTextMax
= 512;
668 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
670 lvCol
.mask
|= LVCF_FMT
;
673 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
675 lvCol
.mask
|= LVCF_IMAGE
;
678 bool success
= ListView_GetColumn(GetHwnd(), col
, &lvCol
) != 0;
680 // item.m_subItem = lvCol.iSubItem;
681 item
.m_width
= lvCol
.cx
;
683 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) && lvCol
.pszText
)
685 item
.m_text
= lvCol
.pszText
;
686 delete[] lvCol
.pszText
;
689 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
691 switch (lvCol
.fmt
& LVCFMT_JUSTIFYMASK
) {
693 item
.m_format
= wxLIST_FORMAT_LEFT
;
696 item
.m_format
= wxLIST_FORMAT_RIGHT
;
699 item
.m_format
= wxLIST_FORMAT_CENTRE
;
702 item
.m_format
= -1; // Unknown?
707 // the column images were not supported in older versions but how to check
708 // for this? we can't use _WIN32_IE because we always define it to a very
709 // high value, so see if another symbol which is only defined starting from
710 // comctl32.dll 4.70 is available
711 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
712 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
714 item
.m_image
= lvCol
.iImage
;
716 #endif // LVCOLUMN::iImage exists
721 // Sets information about this column
722 bool wxListCtrl::SetColumn(int col
, wxListItem
& item
)
725 wxConvertToMSWListCol(col
, item
, lvCol
);
727 return ListView_SetColumn(GetHwnd(), col
, &lvCol
) != 0;
730 // Gets the column width
731 int wxListCtrl::GetColumnWidth(int col
) const
733 return ListView_GetColumnWidth(GetHwnd(), col
);
736 // Sets the column width
737 bool wxListCtrl::SetColumnWidth(int col
, int width
)
740 if ( m_windowStyle
& wxLC_LIST
)
744 if ( width2
== wxLIST_AUTOSIZE
)
745 width2
= LVSCW_AUTOSIZE
;
746 else if ( width2
== wxLIST_AUTOSIZE_USEHEADER
)
747 width2
= LVSCW_AUTOSIZE_USEHEADER
;
749 return ListView_SetColumnWidth(GetHwnd(), col2
, width2
) != 0;
752 // Gets the number of items that can fit vertically in the
753 // visible area of the list control (list or report view)
754 // or the total number of items in the list control (icon
755 // or small icon view)
756 int wxListCtrl::GetCountPerPage() const
758 return ListView_GetCountPerPage(GetHwnd());
761 // Gets the edit control for editing labels.
762 wxTextCtrl
* wxListCtrl::GetEditControl() const
767 // Gets information about the item
768 bool wxListCtrl::GetItem(wxListItem
& info
) const
771 wxZeroMemory(lvItem
);
773 lvItem
.iItem
= info
.m_itemId
;
774 lvItem
.iSubItem
= info
.m_col
;
776 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
778 lvItem
.mask
|= LVIF_TEXT
;
779 lvItem
.pszText
= new wxChar
[513];
780 lvItem
.cchTextMax
= 512;
784 lvItem
.pszText
= NULL
;
787 if (info
.m_mask
& wxLIST_MASK_DATA
)
788 lvItem
.mask
|= LVIF_PARAM
;
790 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
791 lvItem
.mask
|= LVIF_IMAGE
;
793 if ( info
.m_mask
& wxLIST_MASK_STATE
)
795 lvItem
.mask
|= LVIF_STATE
;
796 // the other bits are hardly interesting anyhow
797 lvItem
.stateMask
= LVIS_SELECTED
| LVIS_FOCUSED
;
800 bool success
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0;
803 wxLogError(_("Couldn't retrieve information about list control item %d."),
808 // give NULL as hwnd as we already have everything we need
809 wxConvertFromMSWListItem(NULL
, info
, lvItem
);
813 delete[] lvItem
.pszText
;
818 // Sets information about the item
819 bool wxListCtrl::SetItem(wxListItem
& info
)
822 wxConvertToMSWListItem(this, info
, item
);
824 // we never update the lParam if it contains our pointer
825 // to the wxListItemInternalData structure
826 item
.mask
&= ~LVIF_PARAM
;
828 // check if setting attributes or lParam
829 if (info
.HasAttributes() || (info
.m_mask
& wxLIST_MASK_DATA
))
831 // get internal item data
832 // perhaps a cache here ?
833 wxListItemInternalData
*data
= wxGetInternalData(this, info
.m_itemId
);
838 m_AnyInternalData
= TRUE
;
839 data
= new wxListItemInternalData();
840 item
.lParam
= (LPARAM
) data
;
841 item
.mask
|= LVIF_PARAM
;
846 if (info
.m_mask
& wxLIST_MASK_DATA
)
847 data
->lParam
= info
.m_data
;
850 if (info
.HasAttributes())
853 *data
->attr
= *info
.GetAttributes();
855 data
->attr
= new wxListItemAttr(*info
.GetAttributes());
860 // we could be changing only the attribute in which case we don't need to
861 // call ListView_SetItem() at all
865 if ( !ListView_SetItem(GetHwnd(), &item
) )
867 wxLogDebug(_T("ListView_SetItem() failed"));
873 // we need to update the item immediately to show the new image
874 bool updateNow
= (info
.m_mask
& wxLIST_MASK_IMAGE
) != 0;
876 // check whether it has any custom attributes
877 if ( info
.HasAttributes() )
881 // if the colour has changed, we must redraw the item
887 // we need this to make the change visible right now
888 RefreshItem(item
.iItem
);
894 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
898 info
.m_mask
= wxLIST_MASK_TEXT
;
899 info
.m_itemId
= index
;
903 info
.m_image
= imageId
;
904 info
.m_mask
|= wxLIST_MASK_IMAGE
;
906 return SetItem(info
);
910 // Gets the item state
911 int wxListCtrl::GetItemState(long item
, long stateMask
) const
915 info
.m_mask
= wxLIST_MASK_STATE
;
916 info
.m_stateMask
= stateMask
;
917 info
.m_itemId
= item
;
925 // Sets the item state
926 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
928 // NB: don't use SetItem() here as it doesn't work with the virtual list
931 wxZeroMemory(lvItem
);
933 wxConvertToMSWFlags(state
, stateMask
, lvItem
);
935 // for the virtual list controls we need to refresh the previously focused
936 // item manually when changing focus without changing selection
937 // programmatically because otherwise it keeps its focus rectangle until
938 // next repaint (yet another comctl32 bug)
941 (stateMask
& wxLIST_STATE_FOCUSED
) &&
942 (state
& wxLIST_STATE_FOCUSED
) )
944 focusOld
= GetNextItem(-1, wxLIST_NEXT_ALL
, wxLIST_STATE_FOCUSED
);
951 if ( !::SendMessage(GetHwnd(), LVM_SETITEMSTATE
,
952 (WPARAM
)item
, (LPARAM
)&lvItem
) )
954 wxLogLastError(_T("ListView_SetItemState"));
959 if ( focusOld
!= -1 )
961 // no need to refresh the item if it was previously selected, it would
962 // only result in annoying flicker
963 if ( !(GetItemState(focusOld
,
964 wxLIST_STATE_SELECTED
) & wxLIST_STATE_SELECTED
) )
966 RefreshItem(focusOld
);
973 // Sets the item image
974 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
978 info
.m_mask
= wxLIST_MASK_IMAGE
;
979 info
.m_image
= image
;
980 info
.m_itemId
= item
;
982 return SetItem(info
);
985 // Gets the item text
986 wxString
wxListCtrl::GetItemText(long item
) const
990 info
.m_mask
= wxLIST_MASK_TEXT
;
991 info
.m_itemId
= item
;
994 return wxEmptyString
;
998 // Sets the item text
999 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
1003 info
.m_mask
= wxLIST_MASK_TEXT
;
1004 info
.m_itemId
= item
;
1010 // Gets the item data
1011 long wxListCtrl::GetItemData(long item
) const
1015 info
.m_mask
= wxLIST_MASK_DATA
;
1016 info
.m_itemId
= item
;
1023 // Sets the item data
1024 bool wxListCtrl::SetItemData(long item
, long data
)
1028 info
.m_mask
= wxLIST_MASK_DATA
;
1029 info
.m_itemId
= item
;
1032 return SetItem(info
);
1035 wxRect
wxListCtrl::GetViewRect() const
1037 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
1038 _T("wxListCtrl::GetViewRect() only works in icon mode") );
1041 if ( !ListView_GetViewRect(GetHwnd(), &rc
) )
1043 wxLogDebug(_T("ListView_GetViewRect() failed."));
1049 wxCopyRECTToRect(rc
, rect
);
1054 // Gets the item rectangle
1055 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
1060 if ( code
== wxLIST_RECT_BOUNDS
)
1061 codeWin
= LVIR_BOUNDS
;
1062 else if ( code
== wxLIST_RECT_ICON
)
1063 codeWin
= LVIR_ICON
;
1064 else if ( code
== wxLIST_RECT_LABEL
)
1065 codeWin
= LVIR_LABEL
;
1068 wxFAIL_MSG( _T("incorrect code in GetItemRect()") );
1070 codeWin
= LVIR_BOUNDS
;
1073 bool success
= ListView_GetItemRect(GetHwnd(), (int) item
, &rectWin
, codeWin
) != 0;
1075 rect
.x
= rectWin
.left
;
1076 rect
.y
= rectWin
.top
;
1077 rect
.width
= rectWin
.right
- rectWin
.left
;
1078 rect
.height
= rectWin
.bottom
- rectWin
.top
;
1083 // Gets the item position
1084 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1088 bool success
= (ListView_GetItemPosition(GetHwnd(), (int) item
, &pt
) != 0);
1090 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
1094 // Sets the item position.
1095 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1097 return (ListView_SetItemPosition(GetHwnd(), (int) item
, pos
.x
, pos
.y
) != 0);
1100 // Gets the number of items in the list control
1101 int wxListCtrl::GetItemCount() const
1106 wxSize
wxListCtrl::GetItemSpacing() const
1108 const int spacing
= ListView_GetItemSpacing(GetHwnd(), (BOOL
)HasFlag(wxLC_SMALL_ICON
));
1110 return wxSize(LOWORD(spacing
), HIWORD(spacing
));
1113 int wxListCtrl::GetItemSpacing(bool isSmall
) const
1115 return ListView_GetItemSpacing(GetHwnd(), (BOOL
) isSmall
);
1118 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1121 info
.m_itemId
= item
;
1122 info
.SetTextColour( col
);
1126 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1129 info
.m_itemId
= item
;
1131 return info
.GetTextColour();
1134 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1137 info
.m_itemId
= item
;
1138 info
.SetBackgroundColour( col
);
1142 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1145 info
.m_itemId
= item
;
1147 return info
.GetBackgroundColour();
1150 // Gets the number of selected items in the list control
1151 int wxListCtrl::GetSelectedItemCount() const
1153 return ListView_GetSelectedCount(GetHwnd());
1156 // Gets the text colour of the listview
1157 wxColour
wxListCtrl::GetTextColour() const
1159 COLORREF ref
= ListView_GetTextColor(GetHwnd());
1160 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
1164 // Sets the text colour of the listview
1165 void wxListCtrl::SetTextColour(const wxColour
& col
)
1167 ListView_SetTextColor(GetHwnd(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue()));
1170 // Gets the index of the topmost visible item when in
1171 // list or report view
1172 long wxListCtrl::GetTopItem() const
1174 return (long) ListView_GetTopIndex(GetHwnd());
1177 // Searches for an item, starting from 'item'.
1178 // 'geometry' is one of
1179 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1180 // 'state' is a state bit flag, one or more of
1181 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1182 // item can be -1 to find the first item that matches the
1184 // Returns the item or -1 if unsuccessful.
1185 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1189 if ( geom
== wxLIST_NEXT_ABOVE
)
1190 flags
|= LVNI_ABOVE
;
1191 if ( geom
== wxLIST_NEXT_ALL
)
1193 if ( geom
== wxLIST_NEXT_BELOW
)
1194 flags
|= LVNI_BELOW
;
1195 if ( geom
== wxLIST_NEXT_LEFT
)
1196 flags
|= LVNI_TOLEFT
;
1197 if ( geom
== wxLIST_NEXT_RIGHT
)
1198 flags
|= LVNI_TORIGHT
;
1200 if ( state
& wxLIST_STATE_CUT
)
1202 if ( state
& wxLIST_STATE_DROPHILITED
)
1203 flags
|= LVNI_DROPHILITED
;
1204 if ( state
& wxLIST_STATE_FOCUSED
)
1205 flags
|= LVNI_FOCUSED
;
1206 if ( state
& wxLIST_STATE_SELECTED
)
1207 flags
|= LVNI_SELECTED
;
1209 return (long) ListView_GetNextItem(GetHwnd(), item
, flags
);
1213 wxImageList
*wxListCtrl::GetImageList(int which
) const
1215 if ( which
== wxIMAGE_LIST_NORMAL
)
1217 return m_imageListNormal
;
1219 else if ( which
== wxIMAGE_LIST_SMALL
)
1221 return m_imageListSmall
;
1223 else if ( which
== wxIMAGE_LIST_STATE
)
1225 return m_imageListState
;
1230 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1233 if ( which
== wxIMAGE_LIST_NORMAL
)
1235 flags
= LVSIL_NORMAL
;
1236 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1237 m_imageListNormal
= imageList
;
1238 m_ownsImageListNormal
= FALSE
;
1240 else if ( which
== wxIMAGE_LIST_SMALL
)
1242 flags
= LVSIL_SMALL
;
1243 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1244 m_imageListSmall
= imageList
;
1245 m_ownsImageListSmall
= FALSE
;
1247 else if ( which
== wxIMAGE_LIST_STATE
)
1249 flags
= LVSIL_STATE
;
1250 if (m_ownsImageListState
) delete m_imageListState
;
1251 m_imageListState
= imageList
;
1252 m_ownsImageListState
= FALSE
;
1254 ListView_SetImageList(GetHwnd(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
1257 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1259 SetImageList(imageList
, which
);
1260 if ( which
== wxIMAGE_LIST_NORMAL
)
1261 m_ownsImageListNormal
= TRUE
;
1262 else if ( which
== wxIMAGE_LIST_SMALL
)
1263 m_ownsImageListSmall
= TRUE
;
1264 else if ( which
== wxIMAGE_LIST_STATE
)
1265 m_ownsImageListState
= TRUE
;
1268 // ----------------------------------------------------------------------------
1270 // ----------------------------------------------------------------------------
1272 // Arranges the items
1273 bool wxListCtrl::Arrange(int flag
)
1276 if ( flag
== wxLIST_ALIGN_LEFT
)
1277 code
= LVA_ALIGNLEFT
;
1278 else if ( flag
== wxLIST_ALIGN_TOP
)
1279 code
= LVA_ALIGNTOP
;
1280 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
1282 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
1283 code
= LVA_SNAPTOGRID
;
1285 return (ListView_Arrange(GetHwnd(), code
) != 0);
1289 bool wxListCtrl::DeleteItem(long item
)
1291 if ( !ListView_DeleteItem(GetHwnd(), (int) item
) )
1293 wxLogLastError(_T("ListView_DeleteItem"));
1298 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1299 wxT("m_count should match ListView_GetItemCount"));
1301 // the virtual list control doesn't refresh itself correctly, help it
1304 // we need to refresh all the lines below the one which was deleted
1306 if ( item
> 0 && GetItemCount() )
1308 GetItemRect(item
- 1, rectItem
);
1313 rectItem
.height
= 0;
1316 wxRect rectWin
= GetRect();
1317 rectWin
.height
= rectWin
.GetBottom() - rectItem
.GetBottom();
1318 rectWin
.y
= rectItem
.GetBottom();
1320 RefreshRect(rectWin
);
1326 // Deletes all items
1327 bool wxListCtrl::DeleteAllItems()
1329 FreeAllInternalData();
1330 return ListView_DeleteAllItems(GetHwnd()) != 0;
1333 // Deletes all items
1334 bool wxListCtrl::DeleteAllColumns()
1336 while ( m_colCount
> 0 )
1338 if ( ListView_DeleteColumn(GetHwnd(), 0) == 0 )
1340 wxLogLastError(wxT("ListView_DeleteColumn"));
1348 wxASSERT_MSG( m_colCount
== 0, wxT("no columns should be left") );
1354 bool wxListCtrl::DeleteColumn(int col
)
1356 bool success
= (ListView_DeleteColumn(GetHwnd(), col
) != 0);
1358 if ( success
&& (m_colCount
> 0) )
1363 // Clears items, and columns if there are any.
1364 void wxListCtrl::ClearAll()
1367 if ( m_colCount
> 0 )
1371 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1373 wxASSERT( (textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
))) );
1375 // ListView_EditLabel requires that the list has focus.
1378 WXHWND hWnd
= (WXHWND
) ListView_EditLabel(GetHwnd(), item
);
1381 // failed to start editing
1385 // [re]create the text control wrapping the HWND we got
1388 m_textCtrl
->UnsubclassWin();
1389 m_textCtrl
->SetHWND(0);
1393 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1394 m_textCtrl
->SetHWND(hWnd
);
1395 m_textCtrl
->SubclassWin(hWnd
);
1396 m_textCtrl
->SetParent(this);
1398 // we must disallow TABbing away from the control while the edit contol is
1399 // shown because this leaves it in some strange state (just try removing
1400 // this line and then pressing TAB while editing an item in listctrl
1402 m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle() | wxTE_PROCESS_TAB
);
1407 // End label editing, optionally cancelling the edit
1408 bool wxListCtrl::EndEditLabel(bool WXUNUSED(cancel
))
1410 wxFAIL_MSG( _T("not implemented") );
1415 // Ensures this item is visible
1416 bool wxListCtrl::EnsureVisible(long item
)
1418 return ListView_EnsureVisible(GetHwnd(), (int) item
, FALSE
) != 0;
1421 // Find an item whose label matches this string, starting from the item after 'start'
1422 // or the beginning if 'start' is -1.
1423 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1425 LV_FINDINFO findInfo
;
1427 findInfo
.flags
= LVFI_STRING
;
1429 findInfo
.flags
|= LVFI_PARTIAL
;
1432 // ListView_FindItem() excludes the first item from search and to look
1433 // through all the items you need to start from -1 which is unnatural and
1434 // inconsistent with the generic version - so we adjust the index
1437 return ListView_FindItem(GetHwnd(), (int) start
, &findInfo
);
1440 // Find an item whose data matches this data, starting from the item after 'start'
1441 // or the beginning if 'start' is -1.
1442 // NOTE : Lindsay Mathieson - 14-July-2002
1443 // No longer use ListView_FindItem as the data attribute is now stored
1444 // in a wxListItemInternalData structure refernced by the actual lParam
1445 long wxListCtrl::FindItem(long start
, long data
)
1447 long idx
= start
+ 1;
1448 long count
= GetItemCount();
1452 if (GetItemData(idx
) == data
)
1460 // Find an item nearest this position in the specified direction, starting from
1461 // the item after 'start' or the beginning if 'start' is -1.
1462 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1464 LV_FINDINFO findInfo
;
1466 findInfo
.flags
= LVFI_NEARESTXY
;
1467 findInfo
.pt
.x
= pt
.x
;
1468 findInfo
.pt
.y
= pt
.y
;
1469 findInfo
.vkDirection
= VK_RIGHT
;
1471 if ( direction
== wxLIST_FIND_UP
)
1472 findInfo
.vkDirection
= VK_UP
;
1473 else if ( direction
== wxLIST_FIND_DOWN
)
1474 findInfo
.vkDirection
= VK_DOWN
;
1475 else if ( direction
== wxLIST_FIND_LEFT
)
1476 findInfo
.vkDirection
= VK_LEFT
;
1477 else if ( direction
== wxLIST_FIND_RIGHT
)
1478 findInfo
.vkDirection
= VK_RIGHT
;
1480 return ListView_FindItem(GetHwnd(), (int) start
, & findInfo
);
1483 // Determines which item (if any) is at the specified point,
1484 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1485 long wxListCtrl::HitTest(const wxPoint
& point
, int& flags
)
1487 LV_HITTESTINFO hitTestInfo
;
1488 hitTestInfo
.pt
.x
= (int) point
.x
;
1489 hitTestInfo
.pt
.y
= (int) point
.y
;
1491 ListView_HitTest(GetHwnd(), & hitTestInfo
);
1494 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
1495 flags
|= wxLIST_HITTEST_ABOVE
;
1496 if ( hitTestInfo
.flags
& LVHT_BELOW
)
1497 flags
|= wxLIST_HITTEST_BELOW
;
1498 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
1499 flags
|= wxLIST_HITTEST_NOWHERE
;
1500 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
1501 flags
|= wxLIST_HITTEST_ONITEMICON
;
1502 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
1503 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
1504 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
1505 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
1506 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
1507 flags
|= wxLIST_HITTEST_TOLEFT
;
1508 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
1509 flags
|= wxLIST_HITTEST_TORIGHT
;
1511 return (long) hitTestInfo
.iItem
;
1514 // Inserts an item, returning the index of the new item if successful,
1516 long wxListCtrl::InsertItem(wxListItem
& info
)
1518 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1521 wxConvertToMSWListItem(this, info
, item
);
1522 item
.mask
&= ~LVIF_PARAM
;
1524 // check wether we need to allocate our internal data
1525 bool needInternalData
= ((info
.m_mask
& wxLIST_MASK_DATA
) || info
.HasAttributes());
1526 if (needInternalData
)
1528 m_AnyInternalData
= TRUE
;
1529 item
.mask
|= LVIF_PARAM
;
1531 // internal stucture that manages data
1532 wxListItemInternalData
*data
= new wxListItemInternalData();
1533 item
.lParam
= (LPARAM
) data
;
1535 if (info
.m_mask
& wxLIST_MASK_DATA
)
1536 data
->lParam
= info
.m_data
;
1538 // check whether it has any custom attributes
1539 if ( info
.HasAttributes() )
1541 // take copy of attributes
1542 data
->attr
= new wxListItemAttr(*info
.GetAttributes());
1546 long rv
= ListView_InsertItem(GetHwnd(), & item
);
1549 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
1550 wxT("m_count should match ListView_GetItemCount"));
1555 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1558 info
.m_text
= label
;
1559 info
.m_mask
= wxLIST_MASK_TEXT
;
1560 info
.m_itemId
= index
;
1561 return InsertItem(info
);
1564 // Inserts an image item
1565 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1568 info
.m_image
= imageIndex
;
1569 info
.m_mask
= wxLIST_MASK_IMAGE
;
1570 info
.m_itemId
= index
;
1571 return InsertItem(info
);
1574 // Inserts an image/string item
1575 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1578 info
.m_image
= imageIndex
;
1579 info
.m_text
= label
;
1580 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1581 info
.m_itemId
= index
;
1582 return InsertItem(info
);
1585 // For list view mode (only), inserts a column.
1586 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
1589 wxConvertToMSWListCol(col
, item
, lvCol
);
1591 if ( !(lvCol
.mask
& LVCF_WIDTH
) )
1593 // always give some width to the new column: this one is compatible
1594 // with the generic version
1595 lvCol
.mask
|= LVCF_WIDTH
;
1599 long n
= ListView_InsertColumn(GetHwnd(), col
, &lvCol
);
1604 else // failed to insert?
1606 wxLogDebug(wxT("Failed to insert the column '%s' into listview!"),
1613 long wxListCtrl::InsertColumn(long col
,
1614 const wxString
& heading
,
1619 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1620 item
.m_text
= heading
;
1623 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1624 item
.m_width
= width
;
1626 item
.m_format
= format
;
1628 return InsertColumn(col
, item
);
1631 // scroll the control by the given number of pixels (exception: in list view,
1632 // dx is interpreted as number of columns)
1633 bool wxListCtrl::ScrollList(int dx
, int dy
)
1635 if ( !ListView_Scroll(GetHwnd(), dx
, dy
) )
1637 wxLogDebug(_T("ListView_Scroll(%d, %d) failed"), dx
, dy
);
1647 // fn is a function which takes 3 long arguments: item1, item2, data.
1648 // item1 is the long data associated with a first item (NOT the index).
1649 // item2 is the long data associated with a second item (NOT the index).
1650 // data is the same value as passed to SortItems.
1651 // The return value is a negative number if the first item should precede the second
1652 // item, a positive number of the second item should precede the first,
1653 // or zero if the two items are equivalent.
1655 // data is arbitrary data to be passed to the sort function.
1657 // Internal structures for proxying the user compare function
1658 // so that we can pass it the *real* user data
1660 // translate lParam data and call user func
1661 struct wxInternalDataSort
1663 wxListCtrlCompare user_fn
;
1667 int CALLBACK
wxInternalDataCompareFunc(LPARAM lParam1
, LPARAM lParam2
, LPARAM lParamSort
)
1669 struct wxInternalDataSort
*internalData
= (struct wxInternalDataSort
*) lParamSort
;
1671 wxListItemInternalData
*data1
= (wxListItemInternalData
*) lParam1
;
1672 wxListItemInternalData
*data2
= (wxListItemInternalData
*) lParam2
;
1674 long d1
= (data1
== NULL
? 0 : data1
->lParam
);
1675 long d2
= (data2
== NULL
? 0 : data2
->lParam
);
1677 return internalData
->user_fn(d1
, d2
, internalData
->data
);
1681 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1683 struct wxInternalDataSort internalData
;
1684 internalData
.user_fn
= fn
;
1685 internalData
.data
= data
;
1687 // WPARAM cast is needed for mingw/cygwin
1688 if ( !ListView_SortItems(GetHwnd(),
1689 wxInternalDataCompareFunc
,
1690 (WPARAM
) &internalData
) )
1692 wxLogDebug(_T("ListView_SortItems() failed"));
1702 // ----------------------------------------------------------------------------
1703 // message processing
1704 // ----------------------------------------------------------------------------
1706 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1708 if (cmd
== EN_UPDATE
)
1710 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1711 event
.SetEventObject( this );
1712 ProcessCommand(event
);
1715 else if (cmd
== EN_KILLFOCUS
)
1717 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1718 event
.SetEventObject( this );
1719 ProcessCommand(event
);
1726 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1729 // prepare the event
1730 // -----------------
1732 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1733 event
.SetEventObject(this);
1735 wxEventType eventType
= wxEVT_NULL
;
1737 NMHDR
*nmhdr
= (NMHDR
*)lParam
;
1739 // if your compiler is as broken as this, you should really change it: this
1740 // code is needed for normal operation! #ifdef below is only useful for
1741 // automatic rebuilds which are done with a very old compiler version
1742 #ifdef HDN_BEGINTRACKA
1744 // check for messages from the header (in report view)
1745 HWND hwndHdr
= ListView_GetHeader(GetHwnd());
1747 // is it a message from the header?
1748 if ( nmhdr
->hwndFrom
== hwndHdr
)
1750 HD_NOTIFY
*nmHDR
= (HD_NOTIFY
*)nmhdr
;
1752 event
.m_itemIndex
= -1;
1754 switch ( nmhdr
->code
)
1756 // yet another comctl32.dll bug: under NT/W2K it sends Unicode
1757 // TRACK messages even to ANSI programs: on my system I get
1758 // HDN_BEGINTRACKW and HDN_ENDTRACKA and no HDN_TRACK at all!
1760 // work around is to simply catch both versions and hope that it
1761 // works (why should this message exist in ANSI and Unicode is
1762 // beyond me as it doesn't deal with strings at all...)
1764 // note that fr HDN_TRACK another possibility could be to use
1765 // HDN_ITEMCHANGING but it is sent even after HDN_ENDTRACK and when
1766 // something other than the item width changes so we'd have to
1767 // filter out the unwanted events then
1768 case HDN_BEGINTRACKA
:
1769 case HDN_BEGINTRACKW
:
1770 eventType
= wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
;
1775 if ( eventType
== wxEVT_NULL
)
1776 eventType
= wxEVT_COMMAND_LIST_COL_DRAGGING
;
1781 if ( eventType
== wxEVT_NULL
)
1782 eventType
= wxEVT_COMMAND_LIST_COL_END_DRAG
;
1784 event
.m_item
.m_width
= nmHDR
->pitem
->cxy
;
1785 event
.m_col
= nmHDR
->iItem
;
1790 eventType
= wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
;
1793 // find the column clicked: we have to search for it
1794 // ourselves as the notification message doesn't provide
1797 // where did the click occur?
1799 if ( !::GetCursorPos(&ptClick
) )
1801 wxLogLastError(_T("GetCursorPos"));
1804 if ( !::ScreenToClient(hwndHdr
, &ptClick
) )
1806 wxLogLastError(_T("ScreenToClient(listctrl header)"));
1809 event
.m_pointDrag
.x
= ptClick
.x
;
1810 event
.m_pointDrag
.y
= ptClick
.y
;
1812 int colCount
= Header_GetItemCount(hwndHdr
);
1815 for ( int col
= 0; col
< colCount
; col
++ )
1817 if ( Header_GetItemRect(hwndHdr
, col
, &rect
) )
1819 if ( ::PtInRect(&rect
, ptClick
) )
1829 case HDN_GETDISPINFOW
:
1831 LPNMHDDISPINFOW info
= (LPNMHDDISPINFOW
) lParam
;
1832 // This is a fix for a strange bug under XP.
1833 // Normally, info->iItem is a valid index, but
1834 // sometimes this is a silly (large) number
1835 // and when we return FALSE via wxControl::MSWOnNotify
1836 // to indicate that it hasn't yet been processed,
1837 // there's a GPF in Windows.
1838 // By returning TRUE here, we avoid further processing
1839 // of this strange message.
1840 if ( info
->iItem
>= GetColumnCount() )
1846 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
1850 #endif // defined(HDN_BEGINTRACKA)
1851 if ( nmhdr
->hwndFrom
== GetHwnd() )
1853 // almost all messages use NM_LISTVIEW
1854 NM_LISTVIEW
*nmLV
= (NM_LISTVIEW
*)nmhdr
;
1856 const int iItem
= nmLV
->iItem
;
1859 // FreeAllInternalData will cause LVN_ITEMCHANG* messages, which can be
1860 // ignored for efficiency. It is done here because the internal data is in the
1861 // process of being deleted so we don't want to try and access it below.
1862 if ( m_ignoreChangeMessages
&&
1863 ( (nmLV
->hdr
.code
== LVN_ITEMCHANGED
) || (nmLV
->hdr
.code
== LVN_ITEMCHANGING
)))
1869 // If we have a valid item then check if there is a data value
1870 // associated with it and put it in the event.
1871 if ( iItem
>= 0 && iItem
< GetItemCount() )
1873 wxListItemInternalData
*internaldata
=
1874 wxGetInternalData(GetHwnd(), iItem
);
1877 event
.m_item
.m_data
= internaldata
->lParam
;
1881 switch ( nmhdr
->code
)
1883 case LVN_BEGINRDRAG
:
1884 eventType
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1888 if ( eventType
== wxEVT_NULL
)
1890 eventType
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1893 event
.m_itemIndex
= iItem
;
1894 event
.m_pointDrag
.x
= nmLV
->ptAction
.x
;
1895 event
.m_pointDrag
.y
= nmLV
->ptAction
.y
;
1898 // NB: we have to handle both *A and *W versions here because some
1899 // versions of comctl32.dll send ANSI message to an Unicode app
1900 case LVN_BEGINLABELEDITA
:
1902 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
1903 wxLV_ITEM
item(((LV_DISPINFOA
*)lParam
)->item
);
1904 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, item
);
1905 event
.m_itemIndex
= event
.m_item
.m_itemId
;
1908 case LVN_BEGINLABELEDITW
:
1910 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
1911 wxLV_ITEM
item(((LV_DISPINFOW
*)lParam
)->item
);
1912 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, item
);
1913 event
.m_itemIndex
= event
.m_item
.m_itemId
;
1917 case LVN_ENDLABELEDITA
:
1919 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
1920 wxLV_ITEM
item(((LV_DISPINFOA
*)lParam
)->item
);
1921 wxConvertFromMSWListItem(NULL
, event
.m_item
, item
);
1922 if ( ((LV_ITEM
)item
).pszText
== NULL
||
1923 ((LV_ITEM
)item
).iItem
== -1 )
1925 // don't keep a stale wxTextCtrl around
1928 // EDIT control will be deleted by the list control itself so
1929 // prevent us from deleting it as well
1930 m_textCtrl
->UnsubclassWin();
1931 m_textCtrl
->SetHWND(0);
1938 event
.m_itemIndex
= event
.m_item
.m_itemId
;
1941 case LVN_ENDLABELEDITW
:
1943 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
1944 wxLV_ITEM
item(((LV_DISPINFOW
*)lParam
)->item
);
1945 wxConvertFromMSWListItem(NULL
, event
.m_item
, item
);
1946 if ( ((LV_ITEM
)item
).pszText
== NULL
||
1947 ((LV_ITEM
)item
).iItem
== -1 )
1949 // don't keep a stale wxTextCtrl around
1952 // EDIT control will be deleted by the list control itself so
1953 // prevent us from deleting it as well
1954 m_textCtrl
->UnsubclassWin();
1955 m_textCtrl
->SetHWND(0);
1962 event
.m_itemIndex
= event
.m_item
.m_itemId
;
1966 case LVN_COLUMNCLICK
:
1967 eventType
= wxEVT_COMMAND_LIST_COL_CLICK
;
1968 event
.m_itemIndex
= -1;
1969 event
.m_col
= nmLV
->iSubItem
;
1972 case LVN_DELETEALLITEMS
:
1974 eventType
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
1975 event
.m_itemIndex
= -1;
1978 case LVN_DELETEITEM
:
1980 // this should be prevented by the post-processing code below,
1981 // but "just in case"
1984 eventType
= wxEVT_COMMAND_LIST_DELETE_ITEM
;
1985 event
.m_itemIndex
= iItem
;
1986 // delete the assoicated internal data
1987 wxDeleteInternalData(this, iItem
);
1990 case LVN_SETDISPINFO
:
1992 eventType
= wxEVT_COMMAND_LIST_SET_INFO
;
1993 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1994 wxConvertFromMSWListItem(GetHwnd(), event
.m_item
, info
->item
);
1998 case LVN_INSERTITEM
:
1999 eventType
= wxEVT_COMMAND_LIST_INSERT_ITEM
;
2000 event
.m_itemIndex
= iItem
;
2003 case LVN_ITEMCHANGED
:
2004 // we translate this catch all message into more interesting
2005 // (and more easy to process) wxWindows events
2007 // first of all, we deal with the state change events only and
2008 // only for valid items (item == -1 for the virtual list
2010 if ( nmLV
->uChanged
& LVIF_STATE
&& iItem
!= -1 )
2012 // temp vars for readability
2013 const UINT stOld
= nmLV
->uOldState
;
2014 const UINT stNew
= nmLV
->uNewState
;
2016 event
.m_item
.SetId(iItem
);
2017 event
.m_item
.SetMask(wxLIST_MASK_TEXT
|
2020 GetItem(event
.m_item
);
2022 // has the focus changed?
2023 if ( !(stOld
& LVIS_FOCUSED
) && (stNew
& LVIS_FOCUSED
) )
2025 eventType
= wxEVT_COMMAND_LIST_ITEM_FOCUSED
;
2026 event
.m_itemIndex
= iItem
;
2029 if ( (stNew
& LVIS_SELECTED
) != (stOld
& LVIS_SELECTED
) )
2031 if ( eventType
!= wxEVT_NULL
)
2033 // focus and selection have both changed: send the
2034 // focus event from here and the selection one
2036 event
.SetEventType(eventType
);
2037 (void)GetEventHandler()->ProcessEvent(event
);
2039 else // no focus event to send
2041 // then need to set m_itemIndex as it wasn't done
2043 event
.m_itemIndex
= iItem
;
2046 eventType
= stNew
& LVIS_SELECTED
2047 ? wxEVT_COMMAND_LIST_ITEM_SELECTED
2048 : wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
2052 if ( eventType
== wxEVT_NULL
)
2054 // not an interesting event for us
2062 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
2063 WORD wVKey
= info
->wVKey
;
2065 // get the current selection
2066 long lItem
= GetNextItem(-1,
2068 wxLIST_STATE_SELECTED
);
2070 // <Enter> or <Space> activate the selected item if any (but
2071 // not with Shift and/or Ctrl as then they have a predefined
2072 // meaning for the list view)
2074 (wVKey
== VK_RETURN
|| wVKey
== VK_SPACE
) &&
2075 !(wxIsShiftDown() || wxIsCtrlDown()) )
2077 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2081 eventType
= wxEVT_COMMAND_LIST_KEY_DOWN
;
2083 // wxCharCodeMSWToWX() returns 0 if the key is an ASCII
2084 // value which should be used as is
2085 int code
= wxCharCodeMSWToWX(wVKey
);
2086 event
.m_code
= code
? code
: wVKey
;
2090 event
.m_item
.m_itemId
= lItem
;
2094 // fill the other fields too
2095 event
.m_item
.m_text
= GetItemText(lItem
);
2096 event
.m_item
.m_data
= GetItemData(lItem
);
2102 // if the user processes it in wxEVT_COMMAND_LEFT_CLICK(), don't do
2104 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2109 // else translate it into wxEVT_COMMAND_LIST_ITEM_ACTIVATED event
2110 // if it happened on an item (and not on empty place)
2117 eventType
= wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
2118 event
.m_itemIndex
= iItem
;
2119 event
.m_item
.m_text
= GetItemText(iItem
);
2120 event
.m_item
.m_data
= GetItemData(iItem
);
2124 // if the user processes it in wxEVT_COMMAND_RIGHT_CLICK(),
2125 // don't do anything else
2126 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
2131 // else translate it into wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK event
2132 LV_HITTESTINFO lvhti
;
2133 wxZeroMemory(lvhti
);
2135 ::GetCursorPos(&(lvhti
.pt
));
2136 ::ScreenToClient(GetHwnd(),&(lvhti
.pt
));
2137 if ( ListView_HitTest(GetHwnd(),&lvhti
) != -1 )
2139 if ( lvhti
.flags
& LVHT_ONITEM
)
2141 eventType
= wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
;
2142 event
.m_itemIndex
= lvhti
.iItem
;
2143 event
.m_pointDrag
.x
= lvhti
.pt
.x
;
2144 event
.m_pointDrag
.y
= lvhti
.pt
.y
;
2149 #ifdef NM_CUSTOMDRAW
2151 *result
= OnCustomDraw(lParam
);
2154 #endif // _WIN32_IE >= 0x300
2156 case LVN_ODCACHEHINT
:
2158 const NM_CACHEHINT
*cacheHint
= (NM_CACHEHINT
*)lParam
;
2160 eventType
= wxEVT_COMMAND_LIST_CACHE_HINT
;
2162 // we get some really stupid cache hints like ones for
2163 // items in range 0..0 for an empty control or, after
2164 // deleting an item, for items in invalid range -- filter
2166 if ( cacheHint
->iFrom
> cacheHint
->iTo
)
2169 event
.m_oldItemIndex
= cacheHint
->iFrom
;
2171 const long iMax
= GetItemCount();
2172 event
.m_itemIndex
= cacheHint
->iTo
< iMax
? cacheHint
->iTo
2177 case LVN_GETDISPINFO
:
2180 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
2182 LV_ITEM
& lvi
= info
->item
;
2183 long item
= lvi
.iItem
;
2185 if ( lvi
.mask
& LVIF_TEXT
)
2187 wxString text
= OnGetItemText(item
, lvi
.iSubItem
);
2188 wxStrncpy(lvi
.pszText
, text
, lvi
.cchTextMax
);
2191 // see comment at the end of wxListCtrl::GetColumn()
2192 #ifdef NM_CUSTOMDRAW
2193 if ( lvi
.mask
& LVIF_IMAGE
)
2195 lvi
.iImage
= OnGetItemImage(item
);
2197 #endif // NM_CUSTOMDRAW
2199 // a little dose of healthy paranoia: as we never use
2200 // LVM_SETCALLBACKMASK we're not supposed to get these ones
2201 wxASSERT_MSG( !(lvi
.mask
& LVIF_STATE
),
2202 _T("we don't support state callbacks yet!") );
2209 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
2214 // where did this one come from?
2218 // process the event
2219 // -----------------
2221 event
.SetEventType(eventType
);
2223 bool processed
= GetEventHandler()->ProcessEvent(event
);
2227 switch ( nmhdr
->code
)
2229 case LVN_DELETEALLITEMS
:
2230 // always return TRUE to suppress all additional LVN_DELETEITEM
2231 // notifications - this makes deleting all items from a list ctrl
2236 case LVN_ENDLABELEDITA
:
2237 case LVN_ENDLABELEDITW
:
2238 // logic here is inversed compared to all the other messages
2239 *result
= event
.IsAllowed();
2241 // don't keep a stale wxTextCtrl around
2244 // EDIT control will be deleted by the list control itself so
2245 // prevent us from deleting it as well
2246 m_textCtrl
->UnsubclassWin();
2247 m_textCtrl
->SetHWND(0);
2256 *result
= !event
.IsAllowed();
2261 // see comment at the end of wxListCtrl::GetColumn()
2262 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2264 WXLPARAM
wxListCtrl::OnCustomDraw(WXLPARAM lParam
)
2266 LPNMLVCUSTOMDRAW lplvcd
= (LPNMLVCUSTOMDRAW
)lParam
;
2267 NMCUSTOMDRAW
& nmcd
= lplvcd
->nmcd
;
2268 switch ( nmcd
.dwDrawStage
)
2271 // if we've got any items with non standard attributes,
2272 // notify us before painting each item
2274 // for virtual controls, always suppose that we have attributes as
2275 // there is no way to check for this
2276 return IsVirtual() || m_hasAnyAttr
? CDRF_NOTIFYITEMDRAW
2279 case CDDS_ITEMPREPAINT
:
2281 size_t item
= (size_t)nmcd
.dwItemSpec
;
2282 if ( item
>= (size_t)GetItemCount() )
2284 // we get this message with item == 0 for an empty control,
2285 // we must ignore it as calling OnGetItemAttr() would be
2287 return CDRF_DODEFAULT
;
2290 wxListItemAttr
*attr
=
2291 IsVirtual() ? OnGetItemAttr(item
)
2292 : wxGetInternalDataAttr(this, item
);
2296 // nothing to do for this item
2297 return CDRF_DODEFAULT
;
2301 wxColour colText
, colBack
;
2302 if ( attr
->HasFont() )
2304 wxFont font
= attr
->GetFont();
2305 hFont
= (HFONT
)font
.GetResourceHandle();
2312 if ( attr
->HasTextColour() )
2314 colText
= attr
->GetTextColour();
2318 colText
= GetTextColour();
2321 if ( attr
->HasBackgroundColour() )
2323 colBack
= attr
->GetBackgroundColour();
2327 colBack
= GetBackgroundColour();
2330 lplvcd
->clrText
= wxColourToRGB(colText
);
2331 lplvcd
->clrTextBk
= wxColourToRGB(colBack
);
2333 // note that if we wanted to set colours for
2334 // individual columns (subitems), we would have
2335 // returned CDRF_NOTIFYSUBITEMREDRAW from here
2338 ::SelectObject(nmcd
.hdc
, hFont
);
2340 return CDRF_NEWFONT
;
2343 // fall through to return CDRF_DODEFAULT
2346 return CDRF_DODEFAULT
;
2350 #endif // NM_CUSTOMDRAW supported
2352 // Necessary for drawing hrules and vrules, if specified
2353 void wxListCtrl::OnPaint(wxPaintEvent
& event
)
2357 wxControl::OnPaint(event
);
2359 // Reset the device origin since it may have been set
2360 dc
.SetDeviceOrigin(0, 0);
2362 bool drawHRules
= ((GetWindowStyle() & wxLC_HRULES
) != 0);
2363 bool drawVRules
= ((GetWindowStyle() & wxLC_VRULES
) != 0);
2365 if (!drawHRules
&& !drawVRules
)
2367 if ((GetWindowStyle() & wxLC_REPORT
) == 0)
2370 wxPen
pen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
), 1, wxSOLID
);
2372 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
2374 wxSize clientSize
= GetClientSize();
2378 int itemCount
= GetItemCount();
2382 long top
= GetTopItem();
2383 for (i
= top
; i
< top
+ GetCountPerPage() + 1; i
++)
2385 if (GetItemRect(i
, itemRect
))
2387 cy
= itemRect
.GetTop();
2388 if (i
!= 0) // Don't draw the first one
2390 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2393 if (i
== itemCount
- 1)
2395 cy
= itemRect
.GetBottom();
2396 dc
.DrawLine(0, cy
, clientSize
.x
, cy
);
2402 if (drawVRules
&& (i
> -1))
2404 wxRect firstItemRect
;
2405 GetItemRect(0, firstItemRect
);
2407 if (GetItemRect(i
, itemRect
))
2410 int x
= itemRect
.GetX();
2411 for (col
= 0; col
< GetColumnCount(); col
++)
2413 int colWidth
= GetColumnWidth(col
);
2415 dc
.DrawLine(x
-1, firstItemRect
.GetY() - 2, x
-1, itemRect
.GetBottom());
2421 // ----------------------------------------------------------------------------
2422 // virtual list controls
2423 // ----------------------------------------------------------------------------
2425 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
2427 // this is a pure virtual function, in fact - which is not really pure
2428 // because the controls which are not virtual don't need to implement it
2429 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2431 return wxEmptyString
;
2434 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
2437 wxFAIL_MSG( _T("wxListCtrl::OnGetItemImage not supposed to be called") );
2442 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
2444 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
2445 _T("invalid item index in OnGetItemAttr()") );
2447 // no attributes by default
2451 void wxListCtrl::SetItemCount(long count
)
2453 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2455 if ( !::SendMessage(GetHwnd(), LVM_SETITEMCOUNT
, (WPARAM
)count
, LVSICF_NOSCROLL
) )
2457 wxLogLastError(_T("ListView_SetItemCount"));
2460 wxASSERT_MSG( m_count
== ListView_GetItemCount(GetHwnd()),
2461 wxT("m_count should match ListView_GetItemCount"));
2464 void wxListCtrl::RefreshItem(long item
)
2466 // strangely enough, ListView_Update() results in much more flicker here
2467 // than a dumb Refresh() -- why?
2469 if ( !ListView_Update(GetHwnd(), item
) )
2471 wxLogLastError(_T("ListView_Update"));
2475 GetItemRect(item
, rect
);
2480 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
2482 wxRect rect1
, rect2
;
2483 GetItemRect(itemFrom
, rect1
);
2484 GetItemRect(itemTo
, rect2
);
2486 wxRect rect
= rect1
;
2487 rect
.height
= rect2
.GetBottom() - rect1
.GetTop();
2492 static wxListItemInternalData
*wxGetInternalData(HWND hwnd
, long itemId
)
2495 it
.mask
= LVIF_PARAM
;
2498 bool success
= ListView_GetItem(hwnd
, &it
) != 0;
2500 return (wxListItemInternalData
*) it
.lParam
;
2505 static wxListItemInternalData
*wxGetInternalData(wxListCtrl
*ctl
, long itemId
)
2507 return wxGetInternalData((HWND
) ctl
->GetHWND(), itemId
);
2510 static wxListItemAttr
*wxGetInternalDataAttr(wxListCtrl
*ctl
, long itemId
)
2512 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
2519 static void wxDeleteInternalData(wxListCtrl
* ctl
, long itemId
)
2521 wxListItemInternalData
*data
= wxGetInternalData(ctl
, itemId
);
2525 memset(&item
, 0, sizeof(item
));
2526 item
.iItem
= itemId
;
2527 item
.mask
= LVIF_PARAM
;
2528 item
.lParam
= (LPARAM
) 0;
2529 ListView_SetItem((HWND
)ctl
->GetHWND(), &item
);
2534 static void wxConvertFromMSWListItem(HWND hwndListCtrl
,
2538 wxListItemInternalData
*internaldata
=
2539 (wxListItemInternalData
*) lvItem
.lParam
;
2542 info
.m_data
= internaldata
->lParam
;
2546 info
.m_stateMask
= 0;
2547 info
.m_itemId
= lvItem
.iItem
;
2549 long oldMask
= lvItem
.mask
;
2551 bool needText
= FALSE
;
2552 if (hwndListCtrl
!= 0)
2554 if ( lvItem
.mask
& LVIF_TEXT
)
2561 lvItem
.pszText
= new wxChar
[513];
2562 lvItem
.cchTextMax
= 512;
2564 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
2565 ::SendMessage(hwndListCtrl
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
);
2568 if ( lvItem
.mask
& LVIF_STATE
)
2570 info
.m_mask
|= wxLIST_MASK_STATE
;
2572 if ( lvItem
.stateMask
& LVIS_CUT
)
2574 info
.m_stateMask
|= wxLIST_STATE_CUT
;
2575 if ( lvItem
.state
& LVIS_CUT
)
2576 info
.m_state
|= wxLIST_STATE_CUT
;
2578 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
2580 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
2581 if ( lvItem
.state
& LVIS_DROPHILITED
)
2582 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
2584 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
2586 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
2587 if ( lvItem
.state
& LVIS_FOCUSED
)
2588 info
.m_state
|= wxLIST_STATE_FOCUSED
;
2590 if ( lvItem
.stateMask
& LVIS_SELECTED
)
2592 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
2593 if ( lvItem
.state
& LVIS_SELECTED
)
2594 info
.m_state
|= wxLIST_STATE_SELECTED
;
2598 if ( lvItem
.mask
& LVIF_TEXT
)
2600 info
.m_mask
|= wxLIST_MASK_TEXT
;
2601 info
.m_text
= lvItem
.pszText
;
2603 if ( lvItem
.mask
& LVIF_IMAGE
)
2605 info
.m_mask
|= wxLIST_MASK_IMAGE
;
2606 info
.m_image
= lvItem
.iImage
;
2608 if ( lvItem
.mask
& LVIF_PARAM
)
2609 info
.m_mask
|= wxLIST_MASK_DATA
;
2610 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
2611 info
.m_mask
|= wxLIST_SET_ITEM
;
2612 info
.m_col
= lvItem
.iSubItem
;
2617 delete[] lvItem
.pszText
;
2619 lvItem
.mask
= oldMask
;
2622 static void wxConvertToMSWFlags(long state
, long stateMask
, LV_ITEM
& lvItem
)
2624 if (stateMask
& wxLIST_STATE_CUT
)
2626 lvItem
.stateMask
|= LVIS_CUT
;
2627 if (state
& wxLIST_STATE_CUT
)
2628 lvItem
.state
|= LVIS_CUT
;
2630 if (stateMask
& wxLIST_STATE_DROPHILITED
)
2632 lvItem
.stateMask
|= LVIS_DROPHILITED
;
2633 if (state
& wxLIST_STATE_DROPHILITED
)
2634 lvItem
.state
|= LVIS_DROPHILITED
;
2636 if (stateMask
& wxLIST_STATE_FOCUSED
)
2638 lvItem
.stateMask
|= LVIS_FOCUSED
;
2639 if (state
& wxLIST_STATE_FOCUSED
)
2640 lvItem
.state
|= LVIS_FOCUSED
;
2642 if (stateMask
& wxLIST_STATE_SELECTED
)
2644 lvItem
.stateMask
|= LVIS_SELECTED
;
2645 if (state
& wxLIST_STATE_SELECTED
)
2646 lvItem
.state
|= LVIS_SELECTED
;
2650 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
,
2651 const wxListItem
& info
,
2654 lvItem
.iItem
= (int) info
.m_itemId
;
2656 lvItem
.iImage
= info
.m_image
;
2657 lvItem
.stateMask
= 0;
2660 lvItem
.iSubItem
= info
.m_col
;
2662 if (info
.m_mask
& wxLIST_MASK_STATE
)
2664 lvItem
.mask
|= LVIF_STATE
;
2666 wxConvertToMSWFlags(info
.m_state
, info
.m_stateMask
, lvItem
);
2669 if (info
.m_mask
& wxLIST_MASK_TEXT
)
2671 lvItem
.mask
|= LVIF_TEXT
;
2672 if ( ctrl
->GetWindowStyleFlag() & wxLC_USER_TEXT
)
2674 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
2678 // pszText is not const, hence the cast
2679 lvItem
.pszText
= (wxChar
*)info
.m_text
.c_str();
2680 if ( lvItem
.pszText
)
2681 lvItem
.cchTextMax
= info
.m_text
.Length();
2683 lvItem
.cchTextMax
= 0;
2686 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
2687 lvItem
.mask
|= LVIF_IMAGE
;
2690 static void wxConvertToMSWListCol(int WXUNUSED(col
), const wxListItem
& item
,
2693 wxZeroMemory(lvCol
);
2695 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
2697 lvCol
.mask
|= LVCF_TEXT
;
2698 lvCol
.pszText
= (wxChar
*)item
.m_text
.c_str(); // cast is safe
2701 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
2703 lvCol
.mask
|= LVCF_FMT
;
2705 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
2706 lvCol
.fmt
= LVCFMT_LEFT
;
2707 else if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
2708 lvCol
.fmt
= LVCFMT_RIGHT
;
2709 else if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
2710 lvCol
.fmt
= LVCFMT_CENTER
;
2713 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
2715 lvCol
.mask
|= LVCF_WIDTH
;
2716 if ( item
.m_width
== wxLIST_AUTOSIZE
)
2717 lvCol
.cx
= LVSCW_AUTOSIZE
;
2718 else if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
2719 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
2721 lvCol
.cx
= item
.m_width
;
2724 // see comment at the end of wxListCtrl::GetColumn()
2725 #ifdef NM_CUSTOMDRAW // _WIN32_IE >= 0x0300
2726 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
2728 if ( wxTheApp
->GetComCtl32Version() >= 470 )
2730 lvCol
.mask
|= LVCF_IMAGE
| LVCF_FMT
;
2732 // we use LVCFMT_BITMAP_ON_RIGHT because thei mages on the right
2733 // seem to be generally nicer than on the left and the generic
2734 // version only draws them on the right (we don't have a flag to
2735 // specify the image location anyhow)
2737 // we don't use LVCFMT_COL_HAS_IMAGES because it doesn't seem to
2738 // make any difference in my tests -- but maybe we should?
2739 lvCol
.fmt
|= LVCFMT_BITMAP_ON_RIGHT
| LVCFMT_IMAGE
;
2741 lvCol
.iImage
= item
.m_image
;
2743 //else: it doesn't support item images anyhow
2745 #endif // _WIN32_IE >= 0x0300
2748 #endif // wxUSE_LISTCTRL