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"
39 #include "wx/msw/gnuwin32/extra.h"
42 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& tvItem
);
43 static void wxConvertFromMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& tvItem
, HWND getFullInfo
= 0);
45 #if !USE_SHARED_LIBRARY
46 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
47 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
51 wxListCtrl::wxListCtrl(void)
53 m_imageListNormal
= NULL
;
54 m_imageListSmall
= NULL
;
55 m_imageListState
= NULL
;
61 bool wxListCtrl::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
62 long style
, const wxValidator
& validator
, const wxString
& name
)
64 m_imageListNormal
= NULL
;
65 m_imageListSmall
= NULL
;
66 m_imageListState
= NULL
;
70 SetValidator(validator
);
78 m_windowStyle
= style
;
91 m_windowId
= (id
== -1) ? NewControlId() : id
;
93 DWORD wstyle
= WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
;
96 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
98 // Even with extended styles, need to combine with WS_BORDER
99 // for them to look right.
100 if (want3D
|| (m_windowStyle
& wxSIMPLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
101 (m_windowStyle
& wxSUNKEN_BORDER
) || (m_windowStyle
& wxDOUBLE_BORDER
))
104 wstyle
|= LVS_SHAREIMAGELISTS
;
105 m_baseStyle
= wstyle
;
107 long oldStyle
= 0; // Dummy
108 wstyle
|= ConvertToMSWStyle(oldStyle
, m_windowStyle
);
110 // Create the ListView control.
111 m_hWnd
= (WXHWND
)CreateWindowEx(exStyle
,
116 (HWND
) parent
->GetHWND(),
122 wxLogError("Can't create list control window.");
127 wxSystemSettings settings
;
128 SetBackgroundColour(settings
.GetSystemColour(wxSYS_COLOUR_WINDOW
));
129 SetForegroundColour(parent
->GetForegroundColour());
131 if (parent
) parent
->AddChild(this);
133 SubclassWin((WXHWND
) m_hWnd
);
138 wxListCtrl::~wxListCtrl(void)
142 m_textCtrl
->UnsubclassWin();
143 m_textCtrl
->SetHWND(0);
149 // Add or remove a single window style
150 void wxListCtrl::SetSingleStyle(long style
, bool add
)
152 long flag
= GetWindowStyleFlag();
154 // Get rid of conflicting styles
157 if ( style
& wxLC_MASK_TYPE
)
158 flag
= flag
& ~wxLC_MASK_TYPE
;
159 if ( style
& wxLC_MASK_ALIGN
)
160 flag
= flag
& ~wxLC_MASK_ALIGN
;
161 if ( style
& wxLC_MASK_SORT
)
162 flag
= flag
& ~wxLC_MASK_SORT
;
178 m_windowStyle
= flag
;
183 // Set the whole window style
184 void wxListCtrl::SetWindowStyleFlag(long flag
)
186 m_windowStyle
= flag
;
191 void wxListCtrl::RecreateWindow(void)
196 long style
= ConvertToMSWStyle(oldStyle
, m_windowStyle
);
197 style
|= m_baseStyle
;
198 // ::SetWindowLong((HWND) GetHWND(), GWL_STYLE, style);
200 // The following recreation of the window appears to be necessary
201 // because SetWindowLong doesn't seem to do it.
203 int x
, y
, width
, height
;
205 GetSize(&width
, &height
);
208 ::DestroyWindow((HWND
) GetHWND());
211 // Recreate the ListView control: unfortunately I can't
212 // make it work by using SetWindowLong.
214 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
215 HWND hWndListControl
= CreateWindowEx(exStyle
,
220 (HWND
) GetParent()->GetHWND(),
225 m_hWnd
= (WXHWND
) hWndListControl
;
226 SubclassWin((WXHWND
) m_hWnd
);
228 if ( m_imageListNormal
)
229 SetImageList(m_imageListNormal
, wxIMAGE_LIST_NORMAL
);
230 if ( m_imageListSmall
)
231 SetImageList(m_imageListSmall
, wxIMAGE_LIST_SMALL
);
232 if ( m_imageListState
)
233 SetImageList(m_imageListState
, wxIMAGE_LIST_STATE
);
237 // Can be just a single style, or a bitlist
238 long wxListCtrl::ConvertToMSWStyle(long& oldStyle
, long style
) const
241 if ( style
& wxLC_ICON
)
243 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
244 oldStyle
-= LVS_SMALLICON
;
245 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
246 oldStyle
-= LVS_REPORT
;
247 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
248 oldStyle
-= LVS_LIST
;
252 if ( style
& wxLC_SMALL_ICON
)
254 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
255 oldStyle
-= LVS_ICON
;
256 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
257 oldStyle
-= LVS_REPORT
;
258 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
259 oldStyle
-= LVS_LIST
;
260 wstyle
|= LVS_SMALLICON
;
263 if ( style
& wxLC_LIST
)
265 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
266 oldStyle
-= LVS_ICON
;
267 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_REPORT
)
268 oldStyle
-= LVS_REPORT
;
269 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
270 oldStyle
-= LVS_SMALLICON
;
274 if ( style
& wxLC_REPORT
)
276 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_ICON
)
277 oldStyle
-= LVS_ICON
;
278 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_LIST
)
279 oldStyle
-= LVS_LIST
;
280 if ( (oldStyle
& LVS_TYPEMASK
) == LVS_SMALLICON
)
281 oldStyle
-= LVS_SMALLICON
;
282 wstyle
|= LVS_REPORT
;
285 if ( style
& wxLC_ALIGN_LEFT
)
287 if ( oldStyle
& LVS_ALIGNTOP
)
288 oldStyle
-= LVS_ALIGNTOP
;
289 wstyle
|= LVS_ALIGNLEFT
;
292 if ( style
& wxLC_ALIGN_TOP
)
294 if ( oldStyle
& LVS_ALIGNLEFT
)
295 oldStyle
-= LVS_ALIGNLEFT
;
296 wstyle
|= LVS_ALIGNTOP
;
299 if ( style
& wxLC_AUTOARRANGE
)
300 wstyle
|= LVS_AUTOARRANGE
;
302 // Apparently, no such style (documentation wrong?)
304 if ( style & wxLC_BUTTON )
305 wstyle |= LVS_BUTTON;
308 if ( style
& wxLC_NO_SORT_HEADER
)
309 wstyle
|= LVS_NOSORTHEADER
;
311 if ( style
& wxLC_NO_HEADER
)
312 wstyle
|= LVS_NOCOLUMNHEADER
;
314 if ( style
& wxLC_EDIT_LABELS
)
315 wstyle
|= LVS_EDITLABELS
;
317 if ( style
& wxLC_SINGLE_SEL
)
318 wstyle
|= LVS_SINGLESEL
;
320 if ( style
& wxLC_SORT_ASCENDING
)
322 if ( oldStyle
& LVS_SORTDESCENDING
)
323 oldStyle
-= LVS_SORTDESCENDING
;
324 wstyle
|= LVS_SORTASCENDING
;
327 if ( style
& wxLC_SORT_DESCENDING
)
329 if ( oldStyle
& LVS_SORTASCENDING
)
330 oldStyle
-= LVS_SORTASCENDING
;
331 wstyle
|= LVS_SORTDESCENDING
;
337 // Sets the background colour (GetBackgroundColour already implicit in
339 void wxListCtrl::SetBackgroundColour(const wxColour
& col
)
341 wxWindow::SetBackgroundColour(col
);
343 ListView_SetBkColor((HWND
) GetHWND(), PALETTERGB(col
.Red(), col
.Green(), col
.Blue()));
346 // Gets information about this column
347 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
352 lvCol
.pszText
= NULL
;
354 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
356 lvCol
.mask
|= LVCF_TEXT
;
357 lvCol
.pszText
= new char[513];
358 lvCol
.cchTextMax
= 512;
361 bool success
= (ListView_GetColumn((HWND
) GetHWND(), col
, & lvCol
) != 0);
363 // item.m_subItem = lvCol.iSubItem;
364 item
.m_width
= lvCol
.cx
;
366 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) && lvCol
.pszText
)
368 item
.m_text
= lvCol
.pszText
;
369 delete[] lvCol
.pszText
;
372 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
374 if (lvCol
.fmt
== LVCFMT_LEFT
)
375 item
.m_format
= wxLIST_FORMAT_LEFT
;
376 else if (lvCol
.fmt
== LVCFMT_RIGHT
)
377 item
.m_format
= wxLIST_FORMAT_RIGHT
;
378 else if (lvCol
.fmt
== LVCFMT_CENTER
)
379 item
.m_format
= wxLIST_FORMAT_CENTRE
;
385 // Sets information about this column
386 bool wxListCtrl::SetColumn(int col
, wxListItem
& item
)
391 lvCol
.pszText
= NULL
;
393 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
395 lvCol
.mask
|= LVCF_TEXT
;
396 lvCol
.pszText
= WXSTRINGCAST item
.m_text
;
397 lvCol
.cchTextMax
= 0; // Ignored
399 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
401 lvCol
.mask
|= LVCF_FMT
;
403 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
404 lvCol
.fmt
= LVCFMT_LEFT
;
405 if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
406 lvCol
.fmt
= LVCFMT_RIGHT
;
407 if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
408 lvCol
.fmt
= LVCFMT_CENTER
;
411 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
413 lvCol
.mask
|= LVCF_WIDTH
;
414 lvCol
.cx
= item
.m_width
;
416 if ( lvCol
.cx
== wxLIST_AUTOSIZE
)
417 lvCol
.cx
= LVSCW_AUTOSIZE
;
418 else if ( lvCol
.cx
== wxLIST_AUTOSIZE_USEHEADER
)
419 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
421 lvCol
.mask
|= LVCF_SUBITEM
;
422 lvCol
.iSubItem
= col
;
423 return (ListView_SetColumn((HWND
) GetHWND(), col
, & lvCol
) != 0);
426 // Gets the column width
427 int wxListCtrl::GetColumnWidth(int col
) const
429 return ListView_GetColumnWidth((HWND
) GetHWND(), col
);
432 // Sets the column width
433 bool wxListCtrl::SetColumnWidth(int col
, int width
)
436 if ( m_windowStyle
& wxLC_LIST
)
440 if ( width2
== wxLIST_AUTOSIZE
)
441 width2
= LVSCW_AUTOSIZE
;
442 else if ( width2
== wxLIST_AUTOSIZE_USEHEADER
)
443 width2
= LVSCW_AUTOSIZE_USEHEADER
;
445 return (ListView_SetColumnWidth((HWND
) GetHWND(), col2
, width2
) != 0);
448 // Gets the number of items that can fit vertically in the
449 // visible area of the list control (list or report view)
450 // or the total number of items in the list control (icon
451 // or small icon view)
452 int wxListCtrl::GetCountPerPage(void) const
454 return ListView_GetCountPerPage((HWND
) GetHWND());
457 // Gets the edit control for editing labels.
458 wxTextCtrl
* wxListCtrl::GetEditControl(void) const
463 // Gets information about the item
464 bool wxListCtrl::GetItem(wxListItem
& info
) const
467 ZeroMemory(&lvItem
, sizeof(lvItem
)); // must set all fields to 0
469 lvItem
.iItem
= info
.m_itemId
;
471 if ( info
.m_mask
& wxLIST_MASK_TEXT
)
473 lvItem
.mask
|= LVIF_TEXT
;
474 lvItem
.pszText
= new char[513];
475 lvItem
.cchTextMax
= 512;
479 lvItem
.pszText
= NULL
;
482 if ( info
.m_mask
& wxLIST_MASK_STATE
)
484 lvItem
.mask
|= LVIF_STATE
;
485 // the other bits are hardly interesting anyhow
486 lvItem
.stateMask
= LVIS_SELECTED
| LVIS_FOCUSED
;
489 bool success
= ListView_GetItem((HWND
)GetHWND(), &lvItem
) != 0;
492 wxLogError(_("Couldn't retrieve information about list control item %d."),
497 wxConvertFromMSWListItem(this, info
, lvItem
);
501 delete[] lvItem
.pszText
;
506 // Sets information about the item
507 bool wxListCtrl::SetItem(wxListItem
& info
)
510 wxConvertToMSWListItem(this, info
, item
);
512 return (ListView_SetItem((HWND
) GetHWND(), &item
) != 0);
515 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
519 info
.m_mask
= wxLIST_MASK_TEXT
;
520 info
.m_itemId
= index
;
524 info
.m_image
= imageId
;
525 info
.m_mask
|= wxLIST_MASK_IMAGE
;
527 return SetItem(info
);
531 // Gets the item state
532 int wxListCtrl::GetItemState(long item
, long stateMask
) const
536 info
.m_mask
= wxLIST_MASK_STATE
;
537 info
.m_stateMask
= stateMask
;
538 info
.m_itemId
= item
;
546 // Sets the item state
547 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
551 info
.m_mask
= wxLIST_MASK_STATE
;
552 info
.m_state
= state
;
553 info
.m_stateMask
= stateMask
;
554 info
.m_itemId
= item
;
556 return SetItem(info
);
559 // Sets the item image
560 bool wxListCtrl::SetItemImage(long item
, int image
, int selImage
)
564 info
.m_mask
= wxLIST_MASK_IMAGE
;
565 info
.m_image
= image
;
566 info
.m_itemId
= item
;
568 return SetItem(info
);
571 // Gets the item text
572 wxString
wxListCtrl::GetItemText(long item
) const
576 info
.m_mask
= wxLIST_MASK_TEXT
;
577 info
.m_itemId
= item
;
584 // Sets the item text
585 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
589 info
.m_mask
= wxLIST_MASK_TEXT
;
590 info
.m_itemId
= item
;
596 // Gets the item data
597 long wxListCtrl::GetItemData(long item
) const
601 info
.m_mask
= wxLIST_MASK_DATA
;
602 info
.m_itemId
= item
;
609 // Sets the item data
610 bool wxListCtrl::SetItemData(long item
, long data
)
614 info
.m_mask
= wxLIST_MASK_DATA
;
615 info
.m_itemId
= item
;
618 return SetItem(info
);
621 // Gets the item rectangle
622 bool wxListCtrl::GetItemRect(long item
, wxRectangle
& rect
, int code
) const
626 int code2
= LVIR_BOUNDS
;
627 if ( code
== wxLIST_RECT_BOUNDS
)
629 else if ( code
== wxLIST_RECT_ICON
)
631 else if ( code
== wxLIST_RECT_LABEL
)
634 bool success
= (ListView_GetItemRect((HWND
) GetHWND(), (int) item
, &rect2
, code2
) != 0);
638 rect
.width
= rect2
.right
- rect2
.left
;
639 rect
.height
= rect2
.bottom
- rect2
.left
;
643 // Gets the item position
644 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
648 bool success
= (ListView_GetItemPosition((HWND
) GetHWND(), (int) item
, &pt
) != 0);
650 pos
.x
= pt
.x
; pos
.y
= pt
.y
;
654 // Sets the item position.
655 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
657 return (ListView_SetItemPosition((HWND
) GetHWND(), (int) item
, pos
.x
, pos
.y
) != 0);
660 // Gets the number of items in the list control
661 int wxListCtrl::GetItemCount(void) const
663 return ListView_GetItemCount((HWND
) GetHWND());
666 // Retrieves the spacing between icons in pixels.
667 // If small is TRUE, gets the spacing for the small icon
668 // view, otherwise the large icon view.
669 int wxListCtrl::GetItemSpacing(bool isSmall
) const
671 return ListView_GetItemSpacing((HWND
) GetHWND(), (BOOL
) isSmall
);
674 // Gets the number of selected items in the list control
675 int wxListCtrl::GetSelectedItemCount(void) const
677 return ListView_GetSelectedCount((HWND
) GetHWND());
680 // Gets the text colour of the listview
681 wxColour
wxListCtrl::GetTextColour(void) const
683 COLORREF ref
= ListView_GetTextColor((HWND
) GetHWND());
684 wxColour
col(GetRValue(ref
), GetGValue(ref
), GetBValue(ref
));
688 // Sets the text colour of the listview
689 void wxListCtrl::SetTextColour(const wxColour
& col
)
691 ListView_SetTextColor((HWND
) GetHWND(), PALETTERGB(col
.Red(), col
.Blue(), col
.Green()));
694 // Gets the index of the topmost visible item when in
695 // list or report view
696 long wxListCtrl::GetTopItem(void) const
698 return (long) ListView_GetTopIndex((HWND
) GetHWND());
701 // Searches for an item, starting from 'item'.
702 // 'geometry' is one of
703 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
704 // 'state' is a state bit flag, one or more of
705 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
706 // item can be -1 to find the first item that matches the
708 // Returns the item or -1 if unsuccessful.
709 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
713 if ( geom
== wxLIST_NEXT_ABOVE
)
715 if ( geom
== wxLIST_NEXT_ALL
)
717 if ( geom
== wxLIST_NEXT_BELOW
)
719 if ( geom
== wxLIST_NEXT_LEFT
)
720 flags
|= LVNI_TOLEFT
;
721 if ( geom
== wxLIST_NEXT_RIGHT
)
722 flags
|= LVNI_TORIGHT
;
724 if ( state
& wxLIST_STATE_CUT
)
726 if ( state
& wxLIST_STATE_DROPHILITED
)
727 flags
|= LVNI_DROPHILITED
;
728 if ( state
& wxLIST_STATE_FOCUSED
)
729 flags
|= LVNI_FOCUSED
;
730 if ( state
& wxLIST_STATE_SELECTED
)
731 flags
|= LVNI_SELECTED
;
733 return (long) ListView_GetNextItem((HWND
) GetHWND(), item
, flags
);
737 wxImageList
*wxListCtrl::GetImageList(int which
) const
739 if ( which
== wxIMAGE_LIST_NORMAL
)
741 return m_imageListNormal
;
743 else if ( which
== wxIMAGE_LIST_SMALL
)
745 return m_imageListSmall
;
747 else if ( which
== wxIMAGE_LIST_STATE
)
749 return m_imageListState
;
754 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
757 if ( which
== wxIMAGE_LIST_NORMAL
)
759 flags
= LVSIL_NORMAL
;
760 m_imageListNormal
= imageList
;
762 else if ( which
== wxIMAGE_LIST_SMALL
)
765 m_imageListSmall
= imageList
;
767 else if ( which
== wxIMAGE_LIST_STATE
)
770 m_imageListState
= imageList
;
772 ListView_SetImageList((HWND
) GetHWND(), (HIMAGELIST
) imageList
? imageList
->GetHIMAGELIST() : 0, flags
);
776 ////////////////////////////////////////////////////////////////////////////
778 // Arranges the items
779 bool wxListCtrl::Arrange(int flag
)
782 if ( flag
== wxLIST_ALIGN_LEFT
)
783 code
= LVA_ALIGNLEFT
;
784 else if ( flag
== wxLIST_ALIGN_TOP
)
786 else if ( flag
== wxLIST_ALIGN_DEFAULT
)
788 else if ( flag
== wxLIST_ALIGN_SNAP_TO_GRID
)
789 code
= LVA_SNAPTOGRID
;
791 return (ListView_Arrange((HWND
) GetHWND(), code
) != 0);
795 bool wxListCtrl::DeleteItem(long item
)
797 return (ListView_DeleteItem((HWND
) GetHWND(), (int) item
) != 0);
801 bool wxListCtrl::DeleteAllItems(void)
803 return (ListView_DeleteAllItems((HWND
) GetHWND()) != 0);
807 bool wxListCtrl::DeleteAllColumns(void)
810 for ( i
= 0; i
< m_colCount
; i
++)
812 if (ListView_DeleteColumn((HWND
) GetHWND(), 0) != 0)
815 return (m_colCount
== 0);
819 bool wxListCtrl::DeleteColumn(int col
)
821 bool success
= (ListView_DeleteColumn((HWND
) GetHWND(), col
) != 0);
823 if ( success
&& (m_colCount
> 0) )
828 // Clears items, and columns if there are any.
829 void wxListCtrl::ClearAll(void)
832 if ( m_colCount
> 0 )
836 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
838 wxASSERT( (textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
))) );
840 HWND hWnd
= (HWND
) ListView_EditLabel((HWND
) GetHWND(), item
);
844 m_textCtrl
->UnsubclassWin();
845 m_textCtrl
->SetHWND(0);
850 m_textCtrl
= (wxTextCtrl
*) textControlClass
->CreateObject();
851 m_textCtrl
->SetHWND((WXHWND
) hWnd
);
852 m_textCtrl
->SubclassWin((WXHWND
) hWnd
);
857 // End label editing, optionally cancelling the edit
858 bool wxListCtrl::EndEditLabel(bool cancel
)
862 /* I don't know how to implement this: there's no such macro as ListView_EndEditLabelNow.
864 bool success = (ListView_EndEditLabelNow((HWND) GetHWND(), cancel) != 0);
868 m_textCtrl->UnsubclassWin();
869 m_textCtrl->SetHWND(0);
879 // Ensures this item is visible
880 bool wxListCtrl::EnsureVisible(long item
)
882 return (ListView_EnsureVisible((HWND
) GetHWND(), (int) item
, FALSE
) != 0);
885 // Find an item whose label matches this string, starting from the item after 'start'
886 // or the beginning if 'start' is -1.
887 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
889 LV_FINDINFO findInfo
;
891 findInfo
.flags
= LVFI_STRING
;
893 findInfo
.flags
|= LVFI_STRING
;
894 findInfo
.psz
= WXSTRINGCAST str
;
896 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
899 // Find an item whose data matches this data, starting from the item after 'start'
900 // or the beginning if 'start' is -1.
901 long wxListCtrl::FindItem(long start
, long data
)
903 LV_FINDINFO findInfo
;
905 findInfo
.flags
= LVFI_PARAM
;
906 findInfo
.lParam
= data
;
908 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
911 // Find an item nearest this position in the specified direction, starting from
912 // the item after 'start' or the beginning if 'start' is -1.
913 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
915 LV_FINDINFO findInfo
;
917 findInfo
.flags
= LVFI_NEARESTXY
;
918 findInfo
.pt
.x
= pt
.x
;
919 findInfo
.pt
.y
= pt
.y
;
920 findInfo
.vkDirection
= VK_RIGHT
;
922 if ( direction
== wxLIST_FIND_UP
)
923 findInfo
.vkDirection
= VK_UP
;
924 else if ( direction
== wxLIST_FIND_DOWN
)
925 findInfo
.vkDirection
= VK_DOWN
;
926 else if ( direction
== wxLIST_FIND_LEFT
)
927 findInfo
.vkDirection
= VK_LEFT
;
928 else if ( direction
== wxLIST_FIND_RIGHT
)
929 findInfo
.vkDirection
= VK_RIGHT
;
931 return ListView_FindItem((HWND
) GetHWND(), (int) start
, & findInfo
);
934 // Determines which item (if any) is at the specified point,
935 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
936 long wxListCtrl::HitTest(const wxPoint
& point
, int& flags
)
938 LV_HITTESTINFO hitTestInfo
;
939 hitTestInfo
.pt
.x
= (int) point
.x
;
940 hitTestInfo
.pt
.y
= (int) point
.y
;
942 ListView_HitTest((HWND
) GetHWND(), & hitTestInfo
);
945 if ( hitTestInfo
.flags
& LVHT_ABOVE
)
946 flags
|= wxLIST_HITTEST_ABOVE
;
947 if ( hitTestInfo
.flags
& LVHT_BELOW
)
948 flags
|= wxLIST_HITTEST_BELOW
;
949 if ( hitTestInfo
.flags
& LVHT_NOWHERE
)
950 flags
|= wxLIST_HITTEST_NOWHERE
;
951 if ( hitTestInfo
.flags
& LVHT_ONITEMICON
)
952 flags
|= wxLIST_HITTEST_ONITEMICON
;
953 if ( hitTestInfo
.flags
& LVHT_ONITEMLABEL
)
954 flags
|= wxLIST_HITTEST_ONITEMLABEL
;
955 if ( hitTestInfo
.flags
& LVHT_ONITEMSTATEICON
)
956 flags
|= wxLIST_HITTEST_ONITEMSTATEICON
;
957 if ( hitTestInfo
.flags
& LVHT_TOLEFT
)
958 flags
|= wxLIST_HITTEST_TOLEFT
;
959 if ( hitTestInfo
.flags
& LVHT_TORIGHT
)
960 flags
|= wxLIST_HITTEST_TORIGHT
;
962 return (long) hitTestInfo
.iItem
;
965 // Inserts an item, returning the index of the new item if successful,
967 long wxListCtrl::InsertItem(wxListItem
& info
)
970 wxConvertToMSWListItem(this, info
, item
);
972 return (long) ListView_InsertItem((HWND
) GetHWND(), & item
);
975 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
979 info
.m_mask
= wxLIST_MASK_TEXT
;
980 info
.m_itemId
= index
;
981 return InsertItem(info
);
984 // Inserts an image item
985 long wxListCtrl::InsertItem(long index
, int imageIndex
)
988 info
.m_image
= imageIndex
;
989 info
.m_mask
= wxLIST_MASK_IMAGE
;
990 info
.m_itemId
= index
;
991 return InsertItem(info
);
994 // Inserts an image/string item
995 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
998 info
.m_image
= imageIndex
;
1000 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1001 info
.m_itemId
= index
;
1002 return InsertItem(info
);
1005 // For list view mode (only), inserts a column.
1006 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
1011 lvCol
.pszText
= NULL
;
1013 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
1015 lvCol
.mask
|= LVCF_TEXT
;
1016 lvCol
.pszText
= WXSTRINGCAST item
.m_text
;
1017 lvCol
.cchTextMax
= 0; // Ignored
1019 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
1021 lvCol
.mask
|= LVCF_FMT
;
1023 if ( item
.m_format
== wxLIST_FORMAT_LEFT
)
1024 lvCol
.fmt
= LVCFMT_LEFT
;
1025 if ( item
.m_format
== wxLIST_FORMAT_RIGHT
)
1026 lvCol
.fmt
= LVCFMT_RIGHT
;
1027 if ( item
.m_format
== wxLIST_FORMAT_CENTRE
)
1028 lvCol
.fmt
= LVCFMT_CENTER
;
1031 if ( item
.m_mask
& wxLIST_MASK_WIDTH
)
1033 lvCol
.mask
|= LVCF_WIDTH
;
1034 lvCol
.cx
= item
.m_width
;
1036 if ( lvCol
.cx
== wxLIST_AUTOSIZE
)
1037 lvCol
.cx
= LVSCW_AUTOSIZE
;
1038 else if ( lvCol
.cx
== wxLIST_AUTOSIZE_USEHEADER
)
1039 lvCol
.cx
= LVSCW_AUTOSIZE_USEHEADER
;
1041 lvCol
.mask
|= LVCF_SUBITEM
;
1042 lvCol
.iSubItem
= col
;
1044 bool success
= (ListView_InsertColumn((HWND
) GetHWND(), col
, & lvCol
) != 0);
1050 long wxListCtrl::InsertColumn(long col
, const wxString
& heading
, int format
,
1054 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1055 item
.m_text
= heading
;
1058 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1059 item
.m_width
= width
;
1061 item
.m_format
= format
;
1063 return InsertColumn(col
, item
);
1066 // Scrolls the list control. If in icon, small icon or report view mode,
1067 // x specifies the number of pixels to scroll. If in list view mode, x
1068 // specifies the number of columns to scroll.
1069 // If in icon, small icon or list view mode, y specifies the number of pixels
1070 // to scroll. If in report view mode, y specifies the number of lines to scroll.
1071 bool wxListCtrl::ScrollList(int dx
, int dy
)
1073 return (ListView_Scroll((HWND
) GetHWND(), dx
, dy
) != 0);
1078 // fn is a function which takes 3 long arguments: item1, item2, data.
1079 // item1 is the long data associated with a first item (NOT the index).
1080 // item2 is the long data associated with a second item (NOT the index).
1081 // data is the same value as passed to SortItems.
1082 // The return value is a negative number if the first item should precede the second
1083 // item, a positive number of the second item should precede the first,
1084 // or zero if the two items are equivalent.
1086 // data is arbitrary data to be passed to the sort function.
1087 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1089 return (ListView_SortItems((HWND
) GetHWND(), (PFNLVCOMPARE
) fn
, data
) != 0);
1092 bool wxListCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1094 if (cmd
== EN_UPDATE
)
1096 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1097 event
.SetEventObject( this );
1098 ProcessCommand(event
);
1101 else if (cmd
== EN_KILLFOCUS
)
1103 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1104 event
.SetEventObject( this );
1105 ProcessCommand(event
);
1111 bool wxListCtrl::MSWNotify(WXWPARAM wParam
, WXLPARAM lParam
)
1113 wxListEvent
event(wxEVT_NULL
, m_windowId
);
1114 wxEventType eventType
= wxEVT_NULL
;
1115 NMHDR
*hdr1
= (NMHDR
*) lParam
;
1116 switch ( hdr1
->code
)
1120 eventType
= wxEVT_COMMAND_LIST_BEGIN_DRAG
;
1121 NM_LISTVIEW
*hdr
= (NM_LISTVIEW
*)lParam
;
1122 event
.m_itemIndex
= hdr
->iItem
;
1123 event
.m_pointDrag
.x
= hdr
->ptAction
.x
;
1124 event
.m_pointDrag
.y
= hdr
->ptAction
.y
;
1127 case LVN_BEGINLABELEDIT
:
1129 eventType
= wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
1130 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1131 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1134 case LVN_BEGINRDRAG
:
1136 eventType
= wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
1137 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1138 event
.m_itemIndex
= hdr
->iItem
;
1139 event
.m_pointDrag
.x
= hdr
->ptAction
.x
;
1140 event
.m_pointDrag
.y
= hdr
->ptAction
.y
;
1143 case LVN_COLUMNCLICK
:
1145 eventType
= wxEVT_COMMAND_LIST_COL_CLICK
;
1146 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1147 event
.m_itemIndex
= -1;
1148 event
.m_col
= hdr
->iSubItem
;
1151 case LVN_DELETEALLITEMS
:
1153 eventType
= wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
1154 // NM_LISTVIEW* hdr = (NM_LISTVIEW*)lParam;
1155 event
.m_itemIndex
= -1;
1158 case LVN_DELETEITEM
:
1160 eventType
= wxEVT_COMMAND_LIST_DELETE_ITEM
;
1161 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1162 event
.m_itemIndex
= hdr
->iItem
;
1165 case LVN_ENDLABELEDIT
:
1167 eventType
= wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
1168 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1169 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1170 if ( info
->item
.pszText
== NULL
|| info
->item
.iItem
== -1 )
1171 event
.m_cancelled
= TRUE
;
1174 case LVN_GETDISPINFO
:
1177 // TODO: some text buffering here, I think
1178 // TODO: API for getting Windows to retrieve values
1180 eventType
= wxEVT_COMMAND_LIST_GET_INFO
;
1181 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1182 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1185 case LVN_INSERTITEM
:
1187 eventType
= wxEVT_COMMAND_LIST_INSERT_ITEM
;
1188 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1189 event
.m_itemIndex
= hdr
->iItem
;
1192 case LVN_ITEMCHANGED
:
1194 // This needs to be sent to wxListCtrl as a rather more
1195 // concrete event. For now, just detect a selection
1197 NM_LISTVIEW
* hdr
= (NM_LISTVIEW
*)lParam
;
1198 if ( (hdr
->uNewState
& LVIS_SELECTED
) && !(hdr
->uOldState
& LVIS_SELECTED
) )
1200 eventType
= wxEVT_COMMAND_LIST_ITEM_SELECTED
;
1201 event
.m_itemIndex
= hdr
->iItem
;
1203 else if ( !(hdr
->uNewState
& LVIS_SELECTED
) && (hdr
->uOldState
& LVIS_SELECTED
) )
1205 eventType
= wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
1206 event
.m_itemIndex
= hdr
->iItem
;
1214 eventType
= wxEVT_COMMAND_LIST_KEY_DOWN
;
1215 LV_KEYDOWN
*info
= (LV_KEYDOWN
*)lParam
;
1216 event
.m_code
= wxCharCodeMSWToWX(info
->wVKey
);
1219 case LVN_SETDISPINFO
:
1221 eventType
= wxEVT_COMMAND_LIST_SET_INFO
;
1222 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1223 wxConvertFromMSWListItem(this, event
.m_item
, info
->item
, (HWND
) GetHWND());
1228 return wxControl::MSWNotify(wParam
, lParam
);
1232 event
.SetEventObject( this );
1233 event
.SetEventType(eventType
);
1235 if ( !GetEventHandler()->ProcessEvent(event
) )
1238 if (hdr1
->code
== LVN_GETDISPINFO
)
1240 LV_DISPINFO
*info
= (LV_DISPINFO
*)lParam
;
1241 if ( info
->item
.mask
& LVIF_TEXT
)
1243 if ( !event
.m_item
.m_text
.IsNull() )
1245 info
->item
.pszText
= AddPool(event
.m_item
.m_text
);
1246 info
->item
.cchTextMax
= strlen(info
->item
.pszText
) + 1;
1249 // wxConvertToMSWListItem(this, event.m_item, info->item);
1255 char *wxListCtrl::AddPool(const wxString
& str
)
1257 // Remove the first element if 3 strings exist
1258 if ( m_stringPool
.Number() == 3 )
1260 wxNode
*node
= m_stringPool
.First();
1261 delete[] (char *)node
->Data();
1264 wxNode
*node
= m_stringPool
.Add((char *) (const char *)str
);
1265 return (char *)node
->Data();
1268 // List item structure
1269 wxListItem::wxListItem(void)
1279 m_format
= wxLIST_FORMAT_CENTRE
;
1283 static void wxConvertFromMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& lvItem
, HWND getFullInfo
)
1285 info
.m_data
= lvItem
.lParam
;
1288 info
.m_stateMask
= 0;
1289 info
.m_itemId
= lvItem
.iItem
;
1291 long oldMask
= lvItem
.mask
;
1293 bool needText
= FALSE
;
1294 if (getFullInfo
!= 0)
1296 if ( lvItem
.mask
& LVIF_TEXT
)
1303 lvItem
.pszText
= new char[513];
1304 lvItem
.cchTextMax
= 512;
1306 // lvItem.mask |= TVIF_HANDLE | TVIF_STATE | TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_CHILDREN | TVIF_PARAM ;
1307 lvItem
.mask
|= LVIF_TEXT
| LVIF_IMAGE
| LVIF_PARAM
;
1308 ::SendMessage(getFullInfo
, LVM_GETITEM
, 0, (LPARAM
)& lvItem
) ;
1311 if ( lvItem
.mask
& LVIF_STATE
)
1313 info
.m_mask
|= wxLIST_MASK_STATE
;
1315 if ( lvItem
.stateMask
& LVIS_CUT
)
1317 info
.m_stateMask
|= wxLIST_STATE_CUT
;
1318 if ( lvItem
.state
& LVIS_CUT
)
1319 info
.m_state
|= wxLIST_STATE_CUT
;
1321 if ( lvItem
.stateMask
& LVIS_DROPHILITED
)
1323 info
.m_stateMask
|= wxLIST_STATE_DROPHILITED
;
1324 if ( lvItem
.state
& LVIS_DROPHILITED
)
1325 info
.m_state
|= wxLIST_STATE_DROPHILITED
;
1327 if ( lvItem
.stateMask
& LVIS_FOCUSED
)
1329 info
.m_stateMask
|= wxLIST_STATE_FOCUSED
;
1330 if ( lvItem
.state
& LVIS_FOCUSED
)
1331 info
.m_state
|= wxLIST_STATE_FOCUSED
;
1333 if ( lvItem
.stateMask
& LVIS_SELECTED
)
1335 info
.m_stateMask
|= wxLIST_STATE_SELECTED
;
1336 if ( lvItem
.state
& LVIS_SELECTED
)
1337 info
.m_state
|= wxLIST_STATE_SELECTED
;
1341 if ( lvItem
.mask
& LVIF_TEXT
)
1343 info
.m_mask
|= wxLIST_MASK_TEXT
;
1344 info
.m_text
= lvItem
.pszText
;
1346 if ( lvItem
.mask
& LVIF_IMAGE
)
1348 info
.m_mask
|= wxLIST_MASK_IMAGE
;
1349 info
.m_image
= lvItem
.iImage
;
1351 if ( lvItem
.mask
& LVIF_PARAM
)
1352 info
.m_mask
|= wxLIST_MASK_DATA
;
1353 if ( lvItem
.mask
& LVIF_DI_SETITEM
)
1354 info
.m_mask
|= wxLIST_SET_ITEM
;
1355 info
.m_col
= lvItem
.iSubItem
;
1360 delete[] lvItem
.pszText
;
1362 lvItem
.mask
= oldMask
;
1365 static void wxConvertToMSWListItem(const wxListCtrl
*ctrl
, wxListItem
& info
, LV_ITEM
& lvItem
)
1367 lvItem
.iItem
= (int) info
.m_itemId
;
1369 lvItem
.iImage
= info
.m_image
;
1370 lvItem
.lParam
= info
.m_data
;
1371 lvItem
.stateMask
= 0;
1374 lvItem
.iSubItem
= info
.m_col
;
1376 if (info
.m_mask
& wxLIST_MASK_STATE
)
1378 lvItem
.mask
|= LVIF_STATE
;
1379 if (info
.m_stateMask
& wxLIST_STATE_CUT
)
1381 lvItem
.stateMask
|= LVIS_CUT
;
1382 if (info
.m_state
& wxLIST_STATE_CUT
)
1383 lvItem
.state
|= LVIS_CUT
;
1385 if (info
.m_stateMask
& wxLIST_STATE_DROPHILITED
)
1387 lvItem
.stateMask
|= LVIS_DROPHILITED
;
1388 if (info
.m_state
& wxLIST_STATE_DROPHILITED
)
1389 lvItem
.state
|= LVIS_DROPHILITED
;
1391 if (info
.m_stateMask
& wxLIST_STATE_FOCUSED
)
1393 lvItem
.stateMask
|= LVIS_FOCUSED
;
1394 if (info
.m_state
& wxLIST_STATE_FOCUSED
)
1395 lvItem
.state
|= LVIS_FOCUSED
;
1397 if (info
.m_stateMask
& wxLIST_STATE_SELECTED
)
1399 lvItem
.stateMask
|= LVIS_SELECTED
;
1400 if (info
.m_state
& wxLIST_STATE_SELECTED
)
1401 lvItem
.state
|= LVIS_SELECTED
;
1405 if (info
.m_mask
& wxLIST_MASK_TEXT
)
1407 lvItem
.mask
|= LVIF_TEXT
;
1408 if ( ctrl
->GetWindowStyleFlag() & wxLC_USER_TEXT
)
1410 lvItem
.pszText
= LPSTR_TEXTCALLBACK
;
1414 lvItem
.pszText
= (char *) (const char *)info
.m_text
;
1415 if ( lvItem
.pszText
)
1416 lvItem
.cchTextMax
= info
.m_text
.Length();
1418 lvItem
.cchTextMax
= 0;
1421 if (info
.m_mask
& wxLIST_MASK_IMAGE
)
1422 lvItem
.mask
|= LVIF_IMAGE
;
1423 if (info
.m_mask
& wxLIST_MASK_DATA
)
1424 lvItem
.mask
|= LVIF_PARAM
;
1428 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxCommandEvent
)
1430 wxListEvent::wxListEvent(wxEventType commandType
, int id
):
1431 wxCommandEvent(commandType
, id
)
1436 m_cancelled
= FALSE
;