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
)
670 bool success
= (ListView_GetItemRect((HWND
) GetHWND(), (int) item
, &rect2
) != 0);
672 bool success
= (ListView_GetItemRect((HWND
) GetHWND(), (int) item
, &rect2
, code2
) != 0);
677 rect
.width
= rect2
.right
- rect2
.left
;
678 rect
.height
= rect2
.bottom
- rect2
.left
;
682 // Gets the item position
683 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
687 bool success
= (ListView_GetItemPosition((HWND
) GetHWND(), (int) item
, &pt
) != 0);
689 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
693 // Sets the item position.
694 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
696 return (ListView_SetItemPosition((HWND
) GetHWND(), (int) item
, pos
.x
, pos
.y
) != 0);
699 // Gets the number of items in the list control
700 int wxListCtrl::GetItemCount(void) const
702 return ListView_GetItemCount((HWND
) GetHWND());
705 // Retrieves the spacing between icons in pixels.
706 // If small is TRUE, gets the spacing for the small icon
707 // view, otherwise the large icon view.
708 int wxListCtrl::GetItemSpacing(bool isSmall
) const
710 return ListView_GetItemSpacing((HWND
) GetHWND(), (BOOL
) isSmall
);
713 // Gets the number of selected items in the list control
714 int wxListCtrl::GetSelectedItemCount(void) const
716 return ListView_GetSelectedCount((HWND
) GetHWND());
719 // Gets the text colour of the listview
720 wxColour
wxListCtrl::GetTextColour(void) const
722 COLORREF ref
= ListView_GetTextColor((HWND
) GetHWND());
723 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
727 // Sets the text colour of the listview
728 void wxListCtrl::SetTextColour(const wxColour
& col
)
730 ListView_SetTextColor((HWND
) GetHWND(), PALETTERGB(col
.Red(), col
.Blue(), col
.Green()));
733 // Gets the index of the topmost visible item when in
734 // list or report view
735 long wxListCtrl::GetTopItem(void) const
737 return (long) ListView_GetTopIndex((HWND
) GetHWND());
740 // Searches for an item, starting from 'item'.
741 // 'geometry' is one of
742 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
743 // 'state' is a state bit flag, one or more of
744 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
745 // item can be -1 to find the first item that matches the
747 // Returns the item or -1 if unsuccessful.
748 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
752 if ( geom
== wxLIST_NEXT_ABOVE
)
754 if ( geom
== wxLIST_NEXT_ALL
)
756 if ( geom
== wxLIST_NEXT_BELOW
)
758 if ( geom
== wxLIST_NEXT_LEFT
)
759 flags
|= LVNI_TOLEFT
;
760 if ( geom
== wxLIST_NEXT_RIGHT
)
761 flags
|= LVNI_TORIGHT
;
763 if ( state
& wxLIST_STATE_CUT
)
765 if ( state
& wxLIST_STATE_DROPHILITED
)
766 flags
|= LVNI_DROPHILITED
;
767 if ( state
& wxLIST_STATE_FOCUSED
)
768 flags
|= LVNI_FOCUSED
;
769 if ( state
& wxLIST_STATE_SELECTED
)
770 flags
|= LVNI_SELECTED
;
772 return (long) ListView_GetNextItem((HWND
) GetHWND(), item
, flags
);
776 wxImageList
*wxListCtrl::GetImageList(int which
) const
778 if ( which
== wxIMAGE_LIST_NORMAL
)
780 return m_imageListNormal
;
782 else if ( which
== wxIMAGE_LIST_SMALL
)
784 return m_imageListSmall
;
786 else if ( which
== wxIMAGE_LIST_STATE
)
788 return m_imageListState
;
793 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
796 if ( which
== wxIMAGE_LIST_NORMAL
)
798 flags
= LVSIL_NORMAL
;
799 m_imageListNormal
= imageList
;
801 else if ( which
== wxIMAGE_LIST_SMALL
)
804 m_imageListSmall
= imageList
;
806 else if ( which
== wxIMAGE_LIST_STATE
)
809 m_imageListState
= imageList
;
811 ListView_SetImageList((HWND
) GetHWND(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
815 ////////////////////////////////////////////////////////////////////////////
817 // Arranges the items
818 bool wxListCtrl::Arrange(int flag
)
821 if ( flag
== wxLIST_ALIGN_LEFT
)
822 code
= LVA_ALIGNLEFT
;
823 else if ( flag
== wxLIST_ALIGN_TOP
)
825 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
827 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
828 code
= LVA_SNAPTOGRID
;
830 return (ListView_Arrange((HWND
) GetHWND(), code
) != 0);
834 bool wxListCtrl::DeleteItem(long item
)
836 return (ListView_DeleteItem((HWND
) GetHWND(), (int) item
) != 0);
840 bool wxListCtrl::DeleteAllItems()
842 return (ListView_DeleteAllItems((HWND
) GetHWND()) != 0);
846 bool wxListCtrl::DeleteAllColumns()
849 for ( i
= 0; i
< m_colCount
; i
++)
851 if (ListView_DeleteColumn((HWND
) GetHWND(), 0) != 0)
854 return (m_colCount
== 0);
858 bool wxListCtrl::DeleteColumn(int col
)
860 bool success
= (ListView_DeleteColumn((HWND
) GetHWND(), col
) != 0);
862 if ( success
&& (m_colCount
> 0) )
867 // Clears items, and columns if there are any.
868 void wxListCtrl::ClearAll()
871 if ( m_colCount
> 0 )
875 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
877 wxASSERT( (textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
))) );
879 HWND hWnd
= (HWND
) ListView_EditLabel((HWND
) GetHWND(), item
);
883 m_textCtrl
->UnsubclassWin();
884 m_textCtrl
->SetHWND(0);
889 m_textCtrl
= (wxTextCtrl
*) textControlClass
->CreateObject();
890 m_textCtrl
->SetHWND((WXHWND
) hWnd
);
891 m_textCtrl
->SubclassWin((WXHWND
) hWnd
);
896 // End label editing, optionally cancelling the edit
897 bool wxListCtrl::EndEditLabel(bool cancel
)
901 /* I don't know how to implement this: there's no such macro as ListView_EndEditLabelNow.
903 bool success = (ListView_EndEditLabelNow((HWND) GetHWND(), cancel) != 0);
907 m_textCtrl->UnsubclassWin();
908 m_textCtrl->SetHWND(0);
918 // Ensures this item is visible
919 bool wxListCtrl::EnsureVisible(long item
)
921 return (ListView_EnsureVisible((HWND
) GetHWND(), (int) item
, FALSE
) != 0);
924 // Find an item whose label matches this string, starting from the item after 'start'
925 // or the beginning if 'start' is -1.
926 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
928 LV_FINDINFO findInfo
;
930 findInfo
.flags
= LVFI_STRING
;
932 findInfo
.flags
|= LVFI_STRING
;
933 findInfo
.psz
= WXSTRINGCAST str
;
935 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
938 // Find an item whose data matches this data, starting from the item after 'start'
939 // or the beginning if 'start' is -1.
940 long wxListCtrl::FindItem(long start
, long data
)
942 LV_FINDINFO findInfo
;
944 findInfo
.flags
= LVFI_PARAM
;
945 findInfo
.lParam
= data
;
947 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
950 // Find an item nearest this position in the specified direction, starting from
951 // the item after 'start' or the beginning if 'start' is -1.
952 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
954 LV_FINDINFO findInfo
;
956 findInfo
.flags
= LVFI_NEARESTXY
;
957 findInfo
.pt
.x
= pt
.x
;
958 findInfo
.pt
.y
= pt
.y
;
959 findInfo
.vkDirection
= VK_RIGHT
;
961 if ( direction
== wxLIST_FIND_UP
)
962 findInfo
.vkDirection
= VK_UP
;
963 else if ( direction
== wxLIST_FIND_DOWN
)
964 findInfo
.vkDirection
= VK_DOWN
;
965 else if ( direction
== wxLIST_FIND_LEFT
)
966 findInfo
.vkDirection
= VK_LEFT
;
967 else if ( direction
== wxLIST_FIND_RIGHT
)
968 findInfo
.vkDirection
= VK_RIGHT
;
970 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
973 // Determines which item (if any) is at the specified point,
974 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
975 long wxListCtrl::HitTest(const wxPoint
& point
, int& flags
)
977 LV_HITTESTINFO hitTestInfo
;
978 hitTestInfo
.pt
.x
= (int) point
.x
;
979 hitTestInfo
.pt
.y
= (int) point
.y
;
981 ListView_HitTest((HWND
) GetHWND(), & hitTestInfo
);
984 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
985 flags
|= wxLIST_HITTEST_ABOVE
;
986 if ( hitTestInfo
.flags
& LVHT_BELOW
)
987 flags
|= wxLIST_HITTEST_BELOW
;
988 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
989 flags
|= wxLIST_HITTEST_NOWHERE
;
990 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
991 flags
|= wxLIST_HITTEST_ONITEMICON
;
992 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
993 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
994 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
995 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
996 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
997 flags
|= wxLIST_HITTEST_TOLEFT
;
998 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
999 flags
|= wxLIST_HITTEST_TORIGHT
;
1001 return (long) hitTestInfo
.iItem
;
1004 // Inserts an item, returning the index of the new item if successful,
1006 long wxListCtrl::InsertItem(wxListItem
& info
)
1009 wxConvertToMSWListItem(this, info
, item
);
1011 return (long) ListView_InsertItem((HWND
) GetHWND(), & item
);
1014 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1017 info
.m_text
= label
;
1018 info
.m_mask
= wxLIST_MASK_TEXT
;
1019 info
.m_itemId
= index
;
1020 return InsertItem(info
);
1023 // Inserts an image item
1024 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1027 info
.m_image
= imageIndex
;
1028 info
.m_mask
= wxLIST_MASK_IMAGE
;
1029 info
.m_itemId
= index
;
1030 return InsertItem(info
);
1033 // Inserts an image/string item
1034 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1037 info
.m_image
= imageIndex
;
1038 info
.m_text
= label
;
1039 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1040 info
.m_itemId
= index
;
1041 return InsertItem(info
);
1044 // For list view mode (only), inserts a column.
1045 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
1050 lvCol
.pszText
= NULL
;
1052 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
1054 lvCol
.mask
|= LVCF_TEXT
;
1055 lvCol
.pszText
= WXSTRINGCAST item
.m_text
;
1056 lvCol
.cchTextMax
= 0; // Ignored
1058 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
1060 lvCol
.mask
|= LVCF_FMT
;
1062 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
1063 lvCol
.fmt
= LVCFMT_LEFT
;
1064 if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
1065 lvCol
.fmt
= LVCFMT_RIGHT
;
1066 if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
1067 lvCol
.fmt
= LVCFMT_CENTER
;
1070 lvCol
.mask
|= LVCF_WIDTH
;
1071 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
1073 if ( item
.m_width
== wxLIST_AUTOSIZE
)
1074 lvCol
.cx
= LVSCW_AUTOSIZE
;
1075 else if ( item
.m_width
== wxLIST_AUTOSIZE_USEHEADER
)
1076 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
1078 lvCol
.cx
= item
.m_width
;
1082 // always give some width to the new column: this one is compatible
1087 lvCol
.mask
|= LVCF_SUBITEM
;
1088 lvCol
.iSubItem
= col
;
1090 bool success
= ListView_InsertColumn((HWND
) GetHWND(), col
, & lvCol
) != -1;
1097 wxLogDebug("Failed to insert the column '%s' into listview!",
1104 long wxListCtrl::InsertColumn(long col
, const wxString
& heading
, int format
,
1108 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1109 item
.m_text
= heading
;
1112 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1113 item
.m_width
= width
;
1115 item
.m_format
= format
;
1117 return InsertColumn(col
, item
);
1120 // Scrolls the list control. If in icon, small icon or report view mode,
1121 // x specifies the number of pixels to scroll. If in list view mode, x
1122 // specifies the number of columns to scroll.
1123 // If in icon, small icon or list view mode, y specifies the number of pixels
1124 // to scroll. If in report view mode, y specifies the number of lines to scroll.
1125 bool wxListCtrl::ScrollList(int dx
, int dy
)
1127 return (ListView_Scroll((HWND
) GetHWND(), dx
, dy
) != 0);
1132 // fn is a function which takes 3 long arguments: item1, item2, data.
1133 // item1 is the long data associated with a first item (NOT the index).
1134 // item2 is the long data associated with a second item (NOT the index).
1135 // data is the same value as passed to SortItems.
1136 // The return value is a negative number if the first item should precede the second
1137 // item, a positive number of the second item should precede the first,
1138 // or zero if the two items are equivalent.
1140 // data is arbitrary data to be passed to the sort function.
1141 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1143 return (ListView_SortItems((HWND
) GetHWND(), (PFNLVCOMPARE
) fn
, data
) != 0);
1146 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1148 if (cmd
== EN_UPDATE
)
1150 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1151 event
.SetEventObject( this );
1152 ProcessCommand(event
);
1155 else if (cmd
== EN_KILLFOCUS
)
1157 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1158 event
.SetEventObject( this );
1159 ProcessCommand(event
);
1165 bool wxListCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1167 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1168 wxEventType eventType
= wxEVT_NULL
;
1169 NMHDR
*hdr1
= (NMHDR
*) lParam
;
1170 switch ( hdr1
->code
)
1172 case LVN_BEGINRDRAG
:
1173 eventType
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1177 if ( eventType
== wxEVT_NULL
)
1179 eventType
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1183 NM_LISTVIEW
*hdr
= (NM_LISTVIEW
*)lParam
;
1184 event
.m_itemIndex
= hdr
->iItem
;
1185 event
.m_pointDrag
.x
= hdr
->ptAction
.x
;
1186 event
.m_pointDrag
.y
= hdr
->ptAction
.y
;
1190 case LVN_BEGINLABELEDIT
:
1192 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
1193 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1194 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1198 case LVN_COLUMNCLICK
:
1200 eventType
= wxEVT_COMMAND_LIST_COL_CLICK
;
1201 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1202 event
.m_itemIndex
= -1;
1203 event
.m_col
= hdr
->iSubItem
;
1206 case LVN_DELETEALLITEMS
:
1208 eventType
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
1209 // NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam;
1210 event
.m_itemIndex
= -1;
1213 case LVN_DELETEITEM
:
1215 eventType
= wxEVT_COMMAND_LIST_DELETE_ITEM
;
1216 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1217 event
.m_itemIndex
= hdr
->iItem
;
1220 case LVN_ENDLABELEDIT
:
1222 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
1223 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1224 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1225 if ( info
->item
.pszText
== NULL
|| info
->item
.iItem
== -1 )
1226 event
.m_cancelled
= TRUE
;
1229 case LVN_GETDISPINFO
:
1232 // TODO: some text buffering here, I think
1233 // TODO: API for getting Windows to retrieve values
1235 eventType
= wxEVT_COMMAND_LIST_GET_INFO
;
1236 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1237 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1240 case LVN_INSERTITEM
:
1242 eventType
= wxEVT_COMMAND_LIST_INSERT_ITEM
;
1243 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1244 event
.m_itemIndex
= hdr
->iItem
;
1247 case LVN_ITEMCHANGED
:
1249 // This needs to be sent to wxListCtrl as a rather more
1250 // concrete event. For now, just detect a selection
1252 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1253 if ( (hdr
->uNewState
& LVIS_SELECTED
) && !(hdr
->uOldState
& LVIS_SELECTED
) )
1255 eventType
= wxEVT_COMMAND_LIST_ITEM_SELECTED
;
1256 event
.m_itemIndex
= hdr
->iItem
;
1258 else if ( !(hdr
->uNewState
& LVIS_SELECTED
) && (hdr
->uOldState
& LVIS_SELECTED
) )
1260 eventType
= wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
1261 event
.m_itemIndex
= hdr
->iItem
;
1269 eventType
= wxEVT_COMMAND_LIST_KEY_DOWN
;
1270 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
1271 event
.m_code
= wxCharCodeMSWToWX(info
->wVKey
);
1274 case LVN_SETDISPINFO
:
1276 eventType
= wxEVT_COMMAND_LIST_SET_INFO
;
1277 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1278 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1283 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
1286 event
.SetEventObject( this );
1287 event
.SetEventType(eventType
);
1289 if ( !GetEventHandler()->ProcessEvent(event
) )
1292 if (hdr1
->code
== LVN_GETDISPINFO
)
1294 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1295 if ( info
->item
.mask
& LVIF_TEXT
)
1297 if ( !event
.m_item
.m_text
.IsNull() )
1299 info
->item
.pszText
= AddPool(event
.m_item
.m_text
);
1300 info
->item
.cchTextMax
= strlen(info
->item
.pszText
) + 1;
1303 // wxConvertToMSWListItem(this, event.m_item, info->item);
1306 *result
= !event
.IsAllowed();
1311 char *wxListCtrl::AddPool(const wxString
& str
)
1313 // Remove the first element if 3 strings exist
1314 if ( m_stringPool
.Number() == 3 )
1316 wxNode
*node
= m_stringPool
.First();
1317 delete[] (char *)node
->Data();
1320 wxNode
*node
= m_stringPool
.Add((char *) (const char *)str
);
1321 return (char *)node
->Data();
1324 // List item structure
1325 wxListItem::wxListItem()
1335 m_format
= wxLIST_FORMAT_CENTRE
;
1339 static void wxConvertFromMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& lvItem
, HWND getFullInfo
)
1341 info
.m_data
= lvItem
.lParam
;
1344 info
.m_stateMask
= 0;
1345 info
.m_itemId
= lvItem
.iItem
;
1347 long oldMask
= lvItem
.mask
;
1349 bool needText
= FALSE
;
1350 if (getFullInfo
!= 0)
1352 if ( lvItem
.mask
& LVIF_TEXT
)
1359 lvItem
.pszText
= new char[513];
1360 lvItem
.cchTextMax
= 512;
1362 // lvItem.mask |= TVIF_HANDLE | TVIF_STATE | TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_CHILDREN | TVIF_PARAM ;
1363 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
1364 ::SendMessage(getFullInfo
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
) ;
1367 if ( lvItem
.mask
& LVIF_STATE
)
1369 info
.m_mask
|= wxLIST_MASK_STATE
;
1371 if ( lvItem
.stateMask
& LVIS_CUT
)
1373 info
.m_stateMask
|= wxLIST_STATE_CUT
;
1374 if ( lvItem
.state
& LVIS_CUT
)
1375 info
.m_state
|= wxLIST_STATE_CUT
;
1377 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
1379 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
1380 if ( lvItem
.state
& LVIS_DROPHILITED
)
1381 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
1383 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
1385 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
1386 if ( lvItem
.state
& LVIS_FOCUSED
)
1387 info
.m_state
|= wxLIST_STATE_FOCUSED
;
1389 if ( lvItem
.stateMask
& LVIS_SELECTED
)
1391 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
1392 if ( lvItem
.state
& LVIS_SELECTED
)
1393 info
.m_state
|= wxLIST_STATE_SELECTED
;
1397 if ( lvItem
.mask
& LVIF_TEXT
)
1399 info
.m_mask
|= wxLIST_MASK_TEXT
;
1400 info
.m_text
= lvItem
.pszText
;
1402 if ( lvItem
.mask
& LVIF_IMAGE
)
1404 info
.m_mask
|= wxLIST_MASK_IMAGE
;
1405 info
.m_image
= lvItem
.iImage
;
1407 if ( lvItem
.mask
& LVIF_PARAM
)
1408 info
.m_mask
|= wxLIST_MASK_DATA
;
1409 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
1410 info
.m_mask
|= wxLIST_SET_ITEM
;
1411 info
.m_col
= lvItem
.iSubItem
;
1416 delete[] lvItem
.pszText
;
1418 lvItem
.mask
= oldMask
;
1421 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& lvItem
)
1423 lvItem
.iItem
= (int) info
.m_itemId
;
1425 lvItem
.iImage
= info
.m_image
;
1426 lvItem
.lParam
= info
.m_data
;
1427 lvItem
.stateMask
= 0;
1430 lvItem
.iSubItem
= info
.m_col
;
1432 if (info
.m_mask
& wxLIST_MASK_STATE
)
1434 lvItem
.mask
|= LVIF_STATE
;
1435 if (info
.m_stateMask
& wxLIST_STATE_CUT
)
1437 lvItem
.stateMask
|= LVIS_CUT
;
1438 if (info
.m_state
& wxLIST_STATE_CUT
)
1439 lvItem
.state
|= LVIS_CUT
;
1441 if (info
.m_stateMask
& wxLIST_STATE_DROPHILITED
)
1443 lvItem
.stateMask
|= LVIS_DROPHILITED
;
1444 if (info
.m_state
& wxLIST_STATE_DROPHILITED
)
1445 lvItem
.state
|= LVIS_DROPHILITED
;
1447 if (info
.m_stateMask
& wxLIST_STATE_FOCUSED
)
1449 lvItem
.stateMask
|= LVIS_FOCUSED
;
1450 if (info
.m_state
& wxLIST_STATE_FOCUSED
)
1451 lvItem
.state
|= LVIS_FOCUSED
;
1453 if (info
.m_stateMask
& wxLIST_STATE_SELECTED
)
1455 lvItem
.stateMask
|= LVIS_SELECTED
;
1456 if (info
.m_state
& wxLIST_STATE_SELECTED
)
1457 lvItem
.state
|= LVIS_SELECTED
;
1461 if (info
.m_mask
& wxLIST_MASK_TEXT
)
1463 lvItem
.mask
|= LVIF_TEXT
;
1464 if ( ctrl
->GetWindowStyleFlag() & wxLC_USER_TEXT
)
1466 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
1470 lvItem
.pszText
= (char *) (const char *)info
.m_text
;
1471 if ( lvItem
.pszText
)
1472 lvItem
.cchTextMax
= info
.m_text
.Length();
1474 lvItem
.cchTextMax
= 0;
1477 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
1478 lvItem
.mask
|= LVIF_IMAGE
;
1479 if (info
.m_mask
& wxLIST_MASK_DATA
)
1480 lvItem
.mask
|= LVIF_PARAM
;
1484 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
1486 wxListEvent::wxListEvent(wxEventType commandType
, int id
)
1487 : wxNotifyEvent(commandType
, id
)
1492 m_cancelled
= FALSE
;