1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "listctrl.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #if defined(__WIN95__)
29 #include "wx/listctrl.h"
32 #include "wx/msw/private.h"
34 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
40 #include "wx/msw/gnuwin32/extra.h"
44 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& tvItem
);
45 static void wxConvertFromMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& tvItem
, HWND getFullInfo
= 0);
47 #if !USE_SHARED_LIBRARY
48 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
49 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
50 #endif // USE_SHARED_LIBRARY
52 wxListCtrl::wxListCtrl()
54 m_imageListNormal
= NULL
;
55 m_imageListSmall
= NULL
;
56 m_imageListState
= NULL
;
62 bool wxListCtrl::Create(wxWindow
*parent
,
67 const wxValidator
& validator
,
70 m_imageListNormal
= NULL
;
71 m_imageListSmall
= NULL
;
72 m_imageListState
= NULL
;
76 SetValidator(validator
);
84 m_windowStyle
= style
;
97 m_windowId
= (id
== -1) ? NewControlId() : id
;
99 DWORD wstyle
= WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
;
102 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
104 // Even with extended styles, need to combine with WS_BORDER
105 // for them to look right.
106 if ( want3D
|| wxStyleHasBorder(m_windowStyle
) )
109 wstyle
|= LVS_SHAREIMAGELISTS
| LVS_SHOWSELALWAYS
;
110 m_baseStyle
= wstyle
;
112 long oldStyle
= 0; // Dummy
113 wstyle
|= ConvertToMSWStyle(oldStyle
, m_windowStyle
);
115 // Create the ListView control.
116 m_hWnd
= (WXHWND
)CreateWindowEx(exStyle
,
121 (HWND
) parent
->GetHWND(),
127 wxLogError("Can't create list control window.");
132 // for comctl32.dll v 4.70+ we want to have this attribute because it's
133 // prettier (and also because wxGTK does it like this)
134 #ifdef ListView_SetExtendedListViewStyle
135 if ( wstyle
& LVS_REPORT
)
137 ListView_SetExtendedListViewStyle((HWND
)GetHWND(),
138 LVS_EX_FULLROWSELECT
);
140 #endif // ListView_SetExtendedListViewStyle
142 wxSystemSettings settings
;
143 SetBackgroundColour(settings
.GetSystemColour(wxSYS_COLOUR_WINDOW
));
144 SetForegroundColour(parent
->GetForegroundColour());
146 if (parent
) parent
->AddChild(this);
148 SubclassWin((WXHWND
) m_hWnd
);
153 wxListCtrl::~wxListCtrl()
157 m_textCtrl
->UnsubclassWin();
158 m_textCtrl
->SetHWND(0);
164 // Add or remove a single window style
165 void wxListCtrl::SetSingleStyle(long style
, bool add
)
167 long flag
= GetWindowStyleFlag();
169 // Get rid of conflicting styles
172 if ( style
& wxLC_MASK_TYPE
)
173 flag
= flag
& ~wxLC_MASK_TYPE
;
174 if ( style
& wxLC_MASK_ALIGN
)
175 flag
= flag
& ~wxLC_MASK_ALIGN
;
176 if ( style
& wxLC_MASK_SORT
)
177 flag
= flag
& ~wxLC_MASK_SORT
;
193 m_windowStyle
= flag
;
198 // Set the whole window style
199 void wxListCtrl::SetWindowStyleFlag(long flag
)
201 m_windowStyle
= flag
;
206 void wxListCtrl::RecreateWindow()
211 long style
= ConvertToMSWStyle(oldStyle
, m_windowStyle
);
212 style
|= m_baseStyle
;
213 // ::SetWindowLong((HWND) GetHWND(), GWL_STYLE, style);
215 // The following recreation of the window appears to be necessary
216 // because SetWindowLong doesn't seem to do it.
218 int x
, y
, width
, height
;
220 GetSize(&width
, &height
);
223 ::DestroyWindow((HWND
) GetHWND());
226 // Recreate the ListView control: unfortunately I can't
227 // make it work by using SetWindowLong.
229 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
230 HWND hWndListControl
= CreateWindowEx(exStyle
,
235 (HWND
) GetParent()->GetHWND(),
240 m_hWnd
= (WXHWND
) hWndListControl
;
241 SubclassWin((WXHWND
) m_hWnd
);
243 #ifdef ListView_SetExtendedListViewStyle
244 if ( style
& LVS_REPORT
)
246 ListView_SetExtendedListViewStyle((HWND
)GetHWND(),
247 LVS_EX_FULLROWSELECT
);
249 #endif // ListView_SetExtendedListViewStyle
251 if ( m_imageListNormal
)
252 SetImageList(m_imageListNormal
, wxIMAGE_LIST_NORMAL
);
253 if ( m_imageListSmall
)
254 SetImageList(m_imageListSmall
, wxIMAGE_LIST_SMALL
);
255 if ( m_imageListState
)
256 SetImageList(m_imageListState
, wxIMAGE_LIST_STATE
);
260 // Can be just a single style, or a bitlist
261 long wxListCtrl::ConvertToMSWStyle(long& oldStyle
, long style
) const
264 if ( style
& wxLC_ICON
)
266 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
267 oldStyle
-= LVS_SMALLICON
;
268 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
269 oldStyle
-= LVS_REPORT
;
270 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
271 oldStyle
-= LVS_LIST
;
275 if ( style
& wxLC_SMALL_ICON
)
277 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
278 oldStyle
-= LVS_ICON
;
279 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
280 oldStyle
-= LVS_REPORT
;
281 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
282 oldStyle
-= LVS_LIST
;
283 wstyle
|= LVS_SMALLICON
;
286 if ( style
& wxLC_LIST
)
288 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
289 oldStyle
-= LVS_ICON
;
290 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
291 oldStyle
-= LVS_REPORT
;
292 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
293 oldStyle
-= LVS_SMALLICON
;
297 if ( style
& wxLC_REPORT
)
299 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
300 oldStyle
-= LVS_ICON
;
301 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
302 oldStyle
-= LVS_LIST
;
303 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
304 oldStyle
-= LVS_SMALLICON
;
306 wstyle
|= LVS_REPORT
;
309 if ( style
& wxLC_ALIGN_LEFT
)
311 if ( oldStyle
& LVS_ALIGNTOP
)
312 oldStyle
-= LVS_ALIGNTOP
;
313 wstyle
|= LVS_ALIGNLEFT
;
316 if ( style
& wxLC_ALIGN_TOP
)
318 if ( oldStyle
& LVS_ALIGNLEFT
)
319 oldStyle
-= LVS_ALIGNLEFT
;
320 wstyle
|= LVS_ALIGNTOP
;
323 if ( style
& wxLC_AUTOARRANGE
)
324 wstyle
|= LVS_AUTOARRANGE
;
326 // Apparently, no such style (documentation wrong?)
328 if ( style & wxLC_BUTTON )
329 wstyle |= LVS_BUTTON;
332 if ( style
& wxLC_NO_SORT_HEADER
)
333 wstyle
|= LVS_NOSORTHEADER
;
335 if ( style
& wxLC_NO_HEADER
)
336 wstyle
|= LVS_NOCOLUMNHEADER
;
338 if ( style
& wxLC_EDIT_LABELS
)
339 wstyle
|= LVS_EDITLABELS
;
341 if ( style
& wxLC_SINGLE_SEL
)
342 wstyle
|= LVS_SINGLESEL
;
344 if ( style
& wxLC_SORT_ASCENDING
)
346 if ( oldStyle
& LVS_SORTDESCENDING
)
347 oldStyle
-= LVS_SORTDESCENDING
;
348 wstyle
|= LVS_SORTASCENDING
;
351 if ( style
& wxLC_SORT_DESCENDING
)
353 if ( oldStyle
& LVS_SORTASCENDING
)
354 oldStyle
-= LVS_SORTASCENDING
;
355 wstyle
|= LVS_SORTDESCENDING
;
361 // Sets the background colour (GetBackgroundColour already implicit in
363 bool wxListCtrl::SetBackgroundColour(const wxColour
& col
)
365 if ( !wxWindow::SetBackgroundColour(col
) )
368 ListView_SetBkColor((HWND
) GetHWND(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue()));
373 // Gets information about this column
374 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
379 lvCol
.pszText
= NULL
;
381 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
383 lvCol
.mask
|= LVCF_TEXT
;
384 lvCol
.pszText
= new char[513];
385 lvCol
.cchTextMax
= 512;
388 bool success
= (ListView_GetColumn((HWND
) GetHWND(), col
, & lvCol
) != 0);
390 // item.m_subItem = lvCol.iSubItem;
391 item
.m_width
= lvCol
.cx
;
393 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) && lvCol
.pszText
)
395 item
.m_text
= lvCol
.pszText
;
396 delete[] lvCol
.pszText
;
399 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
401 if (lvCol
.fmt
== LVCFMT_LEFT
)
402 item
.m_format
= wxLIST_FORMAT_LEFT
;
403 else if (lvCol
.fmt
== LVCFMT_RIGHT
)
404 item
.m_format
= wxLIST_FORMAT_RIGHT
;
405 else if (lvCol
.fmt
== LVCFMT_CENTER
)
406 item
.m_format
= wxLIST_FORMAT_CENTRE
;
412 // Sets information about this column
413 bool wxListCtrl::SetColumn(int col
, wxListItem
& item
)
418 lvCol
.pszText
= NULL
;
420 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
422 lvCol
.mask
|= LVCF_TEXT
;
423 lvCol
.pszText
= WXSTRINGCAST item
.m_text
;
424 lvCol
.cchTextMax
= 0; // Ignored
426 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
428 lvCol
.mask
|= LVCF_FMT
;
430 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
431 lvCol
.fmt
= LVCFMT_LEFT
;
432 if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
433 lvCol
.fmt
= LVCFMT_RIGHT
;
434 if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
435 lvCol
.fmt
= LVCFMT_CENTER
;
438 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
440 lvCol
.mask
|= LVCF_WIDTH
;
441 lvCol
.cx
= item
.m_width
;
443 if ( lvCol
.cx
== wxLIST_AUTOSIZE
)
444 lvCol
.cx
= LVSCW_AUTOSIZE
;
445 else if ( lvCol
.cx
== wxLIST_AUTOSIZE_USEHEADER
)
446 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
448 lvCol
.mask
|= LVCF_SUBITEM
;
449 lvCol
.iSubItem
= col
;
450 return (ListView_SetColumn((HWND
) GetHWND(), col
, & lvCol
) != 0);
453 // Gets the column width
454 int wxListCtrl::GetColumnWidth(int col
) const
456 return ListView_GetColumnWidth((HWND
) GetHWND(), col
);
459 // Sets the column width
460 bool wxListCtrl::SetColumnWidth(int col
, int width
)
463 if ( m_windowStyle
& wxLC_LIST
)
467 if ( width2
== wxLIST_AUTOSIZE
)
468 width2
= LVSCW_AUTOSIZE
;
469 else if ( width2
== wxLIST_AUTOSIZE_USEHEADER
)
470 width2
= LVSCW_AUTOSIZE_USEHEADER
;
472 return (ListView_SetColumnWidth((HWND
) GetHWND(), col2
, width2
) != 0);
475 // Gets the number of items that can fit vertically in the
476 // visible area of the list control (list or report view)
477 // or the total number of items in the list control (icon
478 // or small icon view)
479 int wxListCtrl::GetCountPerPage(void) const
481 return ListView_GetCountPerPage((HWND
) GetHWND());
484 // Gets the edit control for editing labels.
485 wxTextCtrl
* wxListCtrl::GetEditControl(void) const
490 // Gets information about the item
491 bool wxListCtrl::GetItem(wxListItem
& info
) const
495 memset(&lvItem
, 0, sizeof(lvItem
));
497 ZeroMemory(&lvItem
, sizeof(lvItem
)); // must set all fields to 0
500 lvItem
.iItem
= info
.m_itemId
;
501 lvItem
.iSubItem
= info
.m_col
;
503 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
505 lvItem
.mask
|= LVIF_TEXT
;
506 lvItem
.pszText
= new char[513];
507 lvItem
.cchTextMax
= 512;
511 lvItem
.pszText
= NULL
;
514 if (info
.m_mask
& wxLIST_MASK_DATA
)
515 lvItem
.mask
|= LVIF_PARAM
;
517 if ( info
.m_mask
& wxLIST_MASK_STATE
)
519 lvItem
.mask
|= LVIF_STATE
;
520 // the other bits are hardly interesting anyhow
521 lvItem
.stateMask
= LVIS_SELECTED
| LVIS_FOCUSED
;
524 bool success
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0;
527 wxLogError(_("Couldn't retrieve information about list control item %d."),
532 wxConvertFromMSWListItem(this, info
, lvItem
);
536 delete[] lvItem
.pszText
;
541 // Sets information about the item
542 bool wxListCtrl::SetItem(wxListItem
& info
)
545 wxConvertToMSWListItem(this, info
, item
);
547 return (ListView_SetItem((HWND
) GetHWND(), &item
) != 0);
550 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
554 info
.m_mask
= wxLIST_MASK_TEXT
;
555 info
.m_itemId
= index
;
559 info
.m_image
= imageId
;
560 info
.m_mask
|= wxLIST_MASK_IMAGE
;
562 return SetItem(info
);
566 // Gets the item state
567 int wxListCtrl::GetItemState(long item
, long stateMask
) const
571 info
.m_mask
= wxLIST_MASK_STATE
;
572 info
.m_stateMask
= stateMask
;
573 info
.m_itemId
= item
;
581 // Sets the item state
582 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
586 info
.m_mask
= wxLIST_MASK_STATE
;
587 info
.m_state
= state
;
588 info
.m_stateMask
= stateMask
;
589 info
.m_itemId
= item
;
591 return SetItem(info
);
594 // Sets the item image
595 bool wxListCtrl::SetItemImage(long item
, int image
, int selImage
)
599 info
.m_mask
= wxLIST_MASK_IMAGE
;
600 info
.m_image
= image
;
601 info
.m_itemId
= item
;
603 return SetItem(info
);
606 // Gets the item text
607 wxString
wxListCtrl::GetItemText(long item
) const
611 info
.m_mask
= wxLIST_MASK_TEXT
;
612 info
.m_itemId
= item
;
619 // Sets the item text
620 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
624 info
.m_mask
= wxLIST_MASK_TEXT
;
625 info
.m_itemId
= item
;
631 // Gets the item data
632 long wxListCtrl::GetItemData(long item
) const
636 info
.m_mask
= wxLIST_MASK_DATA
;
637 info
.m_itemId
= item
;
644 // Sets the item data
645 bool wxListCtrl::SetItemData(long item
, long data
)
649 info
.m_mask
= wxLIST_MASK_DATA
;
650 info
.m_itemId
= item
;
653 return SetItem(info
);
656 // Gets the item rectangle
657 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
661 int code2
= LVIR_BOUNDS
;
662 if ( code
== wxLIST_RECT_BOUNDS
)
664 else if ( code
== wxLIST_RECT_ICON
)
666 else if ( code
== wxLIST_RECT_LABEL
)
669 bool success
= (ListView_GetItemRect((HWND
) GetHWND(), (int) item
, &rect2
, code2
) != 0);
673 rect
.width
= rect2
.right
- rect2
.left
;
674 rect
.height
= rect2
.bottom
- rect2
.left
;
678 // Gets the item position
679 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
683 bool success
= (ListView_GetItemPosition((HWND
) GetHWND(), (int) item
, &pt
) != 0);
685 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
689 // Sets the item position.
690 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
692 return (ListView_SetItemPosition((HWND
) GetHWND(), (int) item
, pos
.x
, pos
.y
) != 0);
695 // Gets the number of items in the list control
696 int wxListCtrl::GetItemCount(void) const
698 return ListView_GetItemCount((HWND
) GetHWND());
701 // Retrieves the spacing between icons in pixels.
702 // If small is TRUE, gets the spacing for the small icon
703 // view, otherwise the large icon view.
704 int wxListCtrl::GetItemSpacing(bool isSmall
) const
706 return ListView_GetItemSpacing((HWND
) GetHWND(), (BOOL
) isSmall
);
709 // Gets the number of selected items in the list control
710 int wxListCtrl::GetSelectedItemCount(void) const
712 return ListView_GetSelectedCount((HWND
) GetHWND());
715 // Gets the text colour of the listview
716 wxColour
wxListCtrl::GetTextColour(void) const
718 COLORREF ref
= ListView_GetTextColor((HWND
) GetHWND());
719 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
723 // Sets the text colour of the listview
724 void wxListCtrl::SetTextColour(const wxColour
& col
)
726 ListView_SetTextColor((HWND
) GetHWND(), PALETTERGB(col
.Red(), col
.Blue(), col
.Green()));
729 // Gets the index of the topmost visible item when in
730 // list or report view
731 long wxListCtrl::GetTopItem(void) const
733 return (long) ListView_GetTopIndex((HWND
) GetHWND());
736 // Searches for an item, starting from 'item'.
737 // 'geometry' is one of
738 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
739 // 'state' is a state bit flag, one or more of
740 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
741 // item can be -1 to find the first item that matches the
743 // Returns the item or -1 if unsuccessful.
744 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
748 if ( geom
== wxLIST_NEXT_ABOVE
)
750 if ( geom
== wxLIST_NEXT_ALL
)
752 if ( geom
== wxLIST_NEXT_BELOW
)
754 if ( geom
== wxLIST_NEXT_LEFT
)
755 flags
|= LVNI_TOLEFT
;
756 if ( geom
== wxLIST_NEXT_RIGHT
)
757 flags
|= LVNI_TORIGHT
;
759 if ( state
& wxLIST_STATE_CUT
)
761 if ( state
& wxLIST_STATE_DROPHILITED
)
762 flags
|= LVNI_DROPHILITED
;
763 if ( state
& wxLIST_STATE_FOCUSED
)
764 flags
|= LVNI_FOCUSED
;
765 if ( state
& wxLIST_STATE_SELECTED
)
766 flags
|= LVNI_SELECTED
;
768 return (long) ListView_GetNextItem((HWND
) GetHWND(), item
, flags
);
772 wxImageList
*wxListCtrl::GetImageList(int which
) const
774 if ( which
== wxIMAGE_LIST_NORMAL
)
776 return m_imageListNormal
;
778 else if ( which
== wxIMAGE_LIST_SMALL
)
780 return m_imageListSmall
;
782 else if ( which
== wxIMAGE_LIST_STATE
)
784 return m_imageListState
;
789 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
792 if ( which
== wxIMAGE_LIST_NORMAL
)
794 flags
= LVSIL_NORMAL
;
795 m_imageListNormal
= imageList
;
797 else if ( which
== wxIMAGE_LIST_SMALL
)
800 m_imageListSmall
= imageList
;
802 else if ( which
== wxIMAGE_LIST_STATE
)
805 m_imageListState
= imageList
;
807 ListView_SetImageList((HWND
) GetHWND(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
811 ////////////////////////////////////////////////////////////////////////////
813 // Arranges the items
814 bool wxListCtrl::Arrange(int flag
)
817 if ( flag
== wxLIST_ALIGN_LEFT
)
818 code
= LVA_ALIGNLEFT
;
819 else if ( flag
== wxLIST_ALIGN_TOP
)
821 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
823 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
824 code
= LVA_SNAPTOGRID
;
826 return (ListView_Arrange((HWND
) GetHWND(), code
) != 0);
830 bool wxListCtrl::DeleteItem(long item
)
832 return (ListView_DeleteItem((HWND
) GetHWND(), (int) item
) != 0);
836 bool wxListCtrl::DeleteAllItems()
838 return (ListView_DeleteAllItems((HWND
) GetHWND()) != 0);
842 bool wxListCtrl::DeleteAllColumns()
845 for ( i
= 0; i
< m_colCount
; i
++)
847 if (ListView_DeleteColumn((HWND
) GetHWND(), 0) != 0)
850 return (m_colCount
== 0);
854 bool wxListCtrl::DeleteColumn(int col
)
856 bool success
= (ListView_DeleteColumn((HWND
) GetHWND(), col
) != 0);
858 if ( success
&& (m_colCount
> 0) )
863 // Clears items, and columns if there are any.
864 void wxListCtrl::ClearAll()
867 if ( m_colCount
> 0 )
871 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
873 wxASSERT( (textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
))) );
875 HWND hWnd
= (HWND
) ListView_EditLabel((HWND
) GetHWND(), item
);
879 m_textCtrl
->UnsubclassWin();
880 m_textCtrl
->SetHWND(0);
885 m_textCtrl
= (wxTextCtrl
*) textControlClass
->CreateObject();
886 m_textCtrl
->SetHWND((WXHWND
) hWnd
);
887 m_textCtrl
->SubclassWin((WXHWND
) hWnd
);
892 // End label editing, optionally cancelling the edit
893 bool wxListCtrl::EndEditLabel(bool cancel
)
897 /* I don't know how to implement this: there's no such macro as ListView_EndEditLabelNow.
899 bool success = (ListView_EndEditLabelNow((HWND) GetHWND(), cancel) != 0);
903 m_textCtrl->UnsubclassWin();
904 m_textCtrl->SetHWND(0);
914 // Ensures this item is visible
915 bool wxListCtrl::EnsureVisible(long item
)
917 return (ListView_EnsureVisible((HWND
) GetHWND(), (int) item
, FALSE
) != 0);
920 // Find an item whose label matches this string, starting from the item after 'start'
921 // or the beginning if 'start' is -1.
922 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
924 LV_FINDINFO findInfo
;
926 findInfo
.flags
= LVFI_STRING
;
928 findInfo
.flags
|= LVFI_STRING
;
929 findInfo
.psz
= WXSTRINGCAST str
;
931 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
934 // Find an item whose data matches this data, starting from the item after 'start'
935 // or the beginning if 'start' is -1.
936 long wxListCtrl::FindItem(long start
, long data
)
938 LV_FINDINFO findInfo
;
940 findInfo
.flags
= LVFI_PARAM
;
941 findInfo
.lParam
= data
;
943 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
946 // Find an item nearest this position in the specified direction, starting from
947 // the item after 'start' or the beginning if 'start' is -1.
948 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
950 LV_FINDINFO findInfo
;
952 findInfo
.flags
= LVFI_NEARESTXY
;
953 findInfo
.pt
.x
= pt
.x
;
954 findInfo
.pt
.y
= pt
.y
;
955 findInfo
.vkDirection
= VK_RIGHT
;
957 if ( direction
== wxLIST_FIND_UP
)
958 findInfo
.vkDirection
= VK_UP
;
959 else if ( direction
== wxLIST_FIND_DOWN
)
960 findInfo
.vkDirection
= VK_DOWN
;
961 else if ( direction
== wxLIST_FIND_LEFT
)
962 findInfo
.vkDirection
= VK_LEFT
;
963 else if ( direction
== wxLIST_FIND_RIGHT
)
964 findInfo
.vkDirection
= VK_RIGHT
;
966 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
969 // Determines which item (if any) is at the specified point,
970 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
971 long wxListCtrl::HitTest(const wxPoint
& point
, int& flags
)
973 LV_HITTESTINFO hitTestInfo
;
974 hitTestInfo
.pt
.x
= (int) point
.x
;
975 hitTestInfo
.pt
.y
= (int) point
.y
;
977 ListView_HitTest((HWND
) GetHWND(), & hitTestInfo
);
980 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
981 flags
|= wxLIST_HITTEST_ABOVE
;
982 if ( hitTestInfo
.flags
& LVHT_BELOW
)
983 flags
|= wxLIST_HITTEST_BELOW
;
984 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
985 flags
|= wxLIST_HITTEST_NOWHERE
;
986 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
987 flags
|= wxLIST_HITTEST_ONITEMICON
;
988 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
989 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
990 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
991 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
992 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
993 flags
|= wxLIST_HITTEST_TOLEFT
;
994 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
995 flags
|= wxLIST_HITTEST_TORIGHT
;
997 return (long) hitTestInfo
.iItem
;
1000 // Inserts an item, returning the index of the new item if successful,
1002 long wxListCtrl::InsertItem(wxListItem
& info
)
1005 wxConvertToMSWListItem(this, info
, item
);
1007 return (long) ListView_InsertItem((HWND
) GetHWND(), & item
);
1010 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1013 info
.m_text
= label
;
1014 info
.m_mask
= wxLIST_MASK_TEXT
;
1015 info
.m_itemId
= index
;
1016 return InsertItem(info
);
1019 // Inserts an image item
1020 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1023 info
.m_image
= imageIndex
;
1024 info
.m_mask
= wxLIST_MASK_IMAGE
;
1025 info
.m_itemId
= index
;
1026 return InsertItem(info
);
1029 // Inserts an image/string item
1030 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1033 info
.m_image
= imageIndex
;
1034 info
.m_text
= label
;
1035 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1036 info
.m_itemId
= index
;
1037 return InsertItem(info
);
1040 // For list view mode (only), inserts a column.
1041 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
1046 lvCol
.pszText
= NULL
;
1048 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
1050 lvCol
.mask
|= LVCF_TEXT
;
1051 lvCol
.pszText
= WXSTRINGCAST item
.m_text
;
1052 lvCol
.cchTextMax
= 0; // Ignored
1054 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
1056 lvCol
.mask
|= LVCF_FMT
;
1058 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
1059 lvCol
.fmt
= LVCFMT_LEFT
;
1060 if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
1061 lvCol
.fmt
= LVCFMT_RIGHT
;
1062 if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
1063 lvCol
.fmt
= LVCFMT_CENTER
;
1066 lvCol
.mask
|= LVCF_WIDTH
;
1067 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
1069 if ( item
.m_width
== wxLIST_AUTOSIZE
)
1070 lvCol
.cx
= LVSCW_AUTOSIZE
;
1071 else if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
1072 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
1074 lvCol
.cx
= item
.m_width
;
1078 // always give some width to the new column: this one is compatible
1083 lvCol
.mask
|= LVCF_SUBITEM
;
1084 lvCol
.iSubItem
= col
;
1086 bool success
= ListView_InsertColumn((HWND
) GetHWND(), col
, & lvCol
) != -1;
1093 wxLogDebug("Failed to insert the column '%s' into listview!",
1100 long wxListCtrl::InsertColumn(long col
, const wxString
& heading
, int format
,
1104 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1105 item
.m_text
= heading
;
1108 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1109 item
.m_width
= width
;
1111 item
.m_format
= format
;
1113 return InsertColumn(col
, item
);
1116 // Scrolls the list control. If in icon, small icon or report view mode,
1117 // x specifies the number of pixels to scroll. If in list view mode, x
1118 // specifies the number of columns to scroll.
1119 // If in icon, small icon or list view mode, y specifies the number of pixels
1120 // to scroll. If in report view mode, y specifies the number of lines to scroll.
1121 bool wxListCtrl::ScrollList(int dx
, int dy
)
1123 return (ListView_Scroll((HWND
) GetHWND(), dx
, dy
) != 0);
1128 // fn is a function which takes 3 long arguments: item1, item2, data.
1129 // item1 is the long data associated with a first item (NOT the index).
1130 // item2 is the long data associated with a second item (NOT the index).
1131 // data is the same value as passed to SortItems.
1132 // The return value is a negative number if the first item should precede the second
1133 // item, a positive number of the second item should precede the first,
1134 // or zero if the two items are equivalent.
1136 // data is arbitrary data to be passed to the sort function.
1137 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1139 return (ListView_SortItems((HWND
) GetHWND(), (PFNLVCOMPARE
) fn
, data
) != 0);
1142 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1144 if (cmd
== EN_UPDATE
)
1146 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1147 event
.SetEventObject( this );
1148 ProcessCommand(event
);
1151 else if (cmd
== EN_KILLFOCUS
)
1153 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1154 event
.SetEventObject( this );
1155 ProcessCommand(event
);
1161 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1163 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1164 wxEventType eventType
= wxEVT_NULL
;
1165 NMHDR
*hdr1
= (NMHDR
*) lParam
;
1166 switch ( hdr1
->code
)
1168 case LVN_BEGINRDRAG
:
1169 eventType
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1173 if ( eventType
== wxEVT_NULL
)
1175 eventType
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1179 NM_LISTVIEW
*hdr
= (NM_LISTVIEW
*)lParam
;
1180 event
.m_itemIndex
= hdr
->iItem
;
1181 event
.m_pointDrag
.x
= hdr
->ptAction
.x
;
1182 event
.m_pointDrag
.y
= hdr
->ptAction
.y
;
1186 case LVN_BEGINLABELEDIT
:
1188 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
1189 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1190 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1194 case LVN_COLUMNCLICK
:
1196 eventType
= wxEVT_COMMAND_LIST_COL_CLICK
;
1197 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1198 event
.m_itemIndex
= -1;
1199 event
.m_col
= hdr
->iSubItem
;
1202 case LVN_DELETEALLITEMS
:
1204 eventType
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
1205 // NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam;
1206 event
.m_itemIndex
= -1;
1209 case LVN_DELETEITEM
:
1211 eventType
= wxEVT_COMMAND_LIST_DELETE_ITEM
;
1212 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1213 event
.m_itemIndex
= hdr
->iItem
;
1216 case LVN_ENDLABELEDIT
:
1218 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
1219 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1220 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1221 if ( info
->item
.pszText
== NULL
|| info
->item
.iItem
== -1 )
1222 event
.m_cancelled
= TRUE
;
1225 case LVN_GETDISPINFO
:
1228 // TODO: some text buffering here, I think
1229 // TODO: API for getting Windows to retrieve values
1231 eventType
= wxEVT_COMMAND_LIST_GET_INFO
;
1232 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1233 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1236 case LVN_INSERTITEM
:
1238 eventType
= wxEVT_COMMAND_LIST_INSERT_ITEM
;
1239 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1240 event
.m_itemIndex
= hdr
->iItem
;
1243 case LVN_ITEMCHANGED
:
1245 // This needs to be sent to wxListCtrl as a rather more
1246 // concrete event. For now, just detect a selection
1248 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1249 if ( (hdr
->uNewState
& LVIS_SELECTED
) && !(hdr
->uOldState
& LVIS_SELECTED
) )
1251 eventType
= wxEVT_COMMAND_LIST_ITEM_SELECTED
;
1252 event
.m_itemIndex
= hdr
->iItem
;
1254 else if ( !(hdr
->uNewState
& LVIS_SELECTED
) && (hdr
->uOldState
& LVIS_SELECTED
) )
1256 eventType
= wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
1257 event
.m_itemIndex
= hdr
->iItem
;
1265 eventType
= wxEVT_COMMAND_LIST_KEY_DOWN
;
1266 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
1267 event
.m_code
= wxCharCodeMSWToWX(info
->wVKey
);
1270 case LVN_SETDISPINFO
:
1272 eventType
= wxEVT_COMMAND_LIST_SET_INFO
;
1273 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1274 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1279 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
1282 event
.SetEventObject( this );
1283 event
.SetEventType(eventType
);
1285 if ( !GetEventHandler()->ProcessEvent(event
) )
1288 if (hdr1
->code
== LVN_GETDISPINFO
)
1290 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1291 if ( info
->item
.mask
& LVIF_TEXT
)
1293 if ( !event
.m_item
.m_text
.IsNull() )
1295 info
->item
.pszText
= AddPool(event
.m_item
.m_text
);
1296 info
->item
.cchTextMax
= strlen(info
->item
.pszText
) + 1;
1299 // wxConvertToMSWListItem(this, event.m_item, info->item);
1302 *result
= !event
.IsAllowed();
1307 char *wxListCtrl::AddPool(const wxString
& str
)
1309 // Remove the first element if 3 strings exist
1310 if ( m_stringPool
.Number() == 3 )
1312 wxNode
*node
= m_stringPool
.First();
1313 delete[] (char *)node
->Data();
1316 wxNode
*node
= m_stringPool
.Add((char *) (const char *)str
);
1317 return (char *)node
->Data();
1320 // List item structure
1321 wxListItem::wxListItem()
1331 m_format
= wxLIST_FORMAT_CENTRE
;
1335 static void wxConvertFromMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& lvItem
, HWND getFullInfo
)
1337 info
.m_data
= lvItem
.lParam
;
1340 info
.m_stateMask
= 0;
1341 info
.m_itemId
= lvItem
.iItem
;
1343 long oldMask
= lvItem
.mask
;
1345 bool needText
= FALSE
;
1346 if (getFullInfo
!= 0)
1348 if ( lvItem
.mask
& LVIF_TEXT
)
1355 lvItem
.pszText
= new char[513];
1356 lvItem
.cchTextMax
= 512;
1358 // lvItem.mask |= TVIF_HANDLE | TVIF_STATE | TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_CHILDREN | TVIF_PARAM ;
1359 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
1360 ::SendMessage(getFullInfo
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
) ;
1363 if ( lvItem
.mask
& LVIF_STATE
)
1365 info
.m_mask
|= wxLIST_MASK_STATE
;
1367 if ( lvItem
.stateMask
& LVIS_CUT
)
1369 info
.m_stateMask
|= wxLIST_STATE_CUT
;
1370 if ( lvItem
.state
& LVIS_CUT
)
1371 info
.m_state
|= wxLIST_STATE_CUT
;
1373 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
1375 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
1376 if ( lvItem
.state
& LVIS_DROPHILITED
)
1377 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
1379 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
1381 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
1382 if ( lvItem
.state
& LVIS_FOCUSED
)
1383 info
.m_state
|= wxLIST_STATE_FOCUSED
;
1385 if ( lvItem
.stateMask
& LVIS_SELECTED
)
1387 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
1388 if ( lvItem
.state
& LVIS_SELECTED
)
1389 info
.m_state
|= wxLIST_STATE_SELECTED
;
1393 if ( lvItem
.mask
& LVIF_TEXT
)
1395 info
.m_mask
|= wxLIST_MASK_TEXT
;
1396 info
.m_text
= lvItem
.pszText
;
1398 if ( lvItem
.mask
& LVIF_IMAGE
)
1400 info
.m_mask
|= wxLIST_MASK_IMAGE
;
1401 info
.m_image
= lvItem
.iImage
;
1403 if ( lvItem
.mask
& LVIF_PARAM
)
1404 info
.m_mask
|= wxLIST_MASK_DATA
;
1405 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
1406 info
.m_mask
|= wxLIST_SET_ITEM
;
1407 info
.m_col
= lvItem
.iSubItem
;
1412 delete[] lvItem
.pszText
;
1414 lvItem
.mask
= oldMask
;
1417 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& lvItem
)
1419 lvItem
.iItem
= (int) info
.m_itemId
;
1421 lvItem
.iImage
= info
.m_image
;
1422 lvItem
.lParam
= info
.m_data
;
1423 lvItem
.stateMask
= 0;
1426 lvItem
.iSubItem
= info
.m_col
;
1428 if (info
.m_mask
& wxLIST_MASK_STATE
)
1430 lvItem
.mask
|= LVIF_STATE
;
1431 if (info
.m_stateMask
& wxLIST_STATE_CUT
)
1433 lvItem
.stateMask
|= LVIS_CUT
;
1434 if (info
.m_state
& wxLIST_STATE_CUT
)
1435 lvItem
.state
|= LVIS_CUT
;
1437 if (info
.m_stateMask
& wxLIST_STATE_DROPHILITED
)
1439 lvItem
.stateMask
|= LVIS_DROPHILITED
;
1440 if (info
.m_state
& wxLIST_STATE_DROPHILITED
)
1441 lvItem
.state
|= LVIS_DROPHILITED
;
1443 if (info
.m_stateMask
& wxLIST_STATE_FOCUSED
)
1445 lvItem
.stateMask
|= LVIS_FOCUSED
;
1446 if (info
.m_state
& wxLIST_STATE_FOCUSED
)
1447 lvItem
.state
|= LVIS_FOCUSED
;
1449 if (info
.m_stateMask
& wxLIST_STATE_SELECTED
)
1451 lvItem
.stateMask
|= LVIS_SELECTED
;
1452 if (info
.m_state
& wxLIST_STATE_SELECTED
)
1453 lvItem
.state
|= LVIS_SELECTED
;
1457 if (info
.m_mask
& wxLIST_MASK_TEXT
)
1459 lvItem
.mask
|= LVIF_TEXT
;
1460 if ( ctrl
->GetWindowStyleFlag() & wxLC_USER_TEXT
)
1462 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
1466 lvItem
.pszText
= (char *) (const char *)info
.m_text
;
1467 if ( lvItem
.pszText
)
1468 lvItem
.cchTextMax
= info
.m_text
.Length();
1470 lvItem
.cchTextMax
= 0;
1473 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
1474 lvItem
.mask
|= LVIF_IMAGE
;
1475 if (info
.m_mask
& wxLIST_MASK_DATA
)
1476 lvItem
.mask
|= LVIF_PARAM
;
1480 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
1482 wxListEvent::wxListEvent(wxEventType commandType
, int id
)
1483 : wxNotifyEvent(commandType
, id
)
1488 m_cancelled
= FALSE
;