1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/listctrl.cpp
4 // Author: Julian Smart
5 // Modified by: Agron Selimaj
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
33 #include "wx/settings.h"
34 #include "wx/dcclient.h"
35 #include "wx/textctrl.h"
38 #include "wx/mac/uma.h"
40 #include "wx/imaglist.h"
41 #include "wx/listctrl.h"
42 #include "wx/sysopt.h"
44 #define wxMAC_ALWAYS_USE_GENERIC_LISTCTRL wxT("mac.listctrl.always_use_generic")
46 #if wxUSE_EXTENDED_RTTI
47 WX_DEFINE_FLAGS( wxListCtrlStyle
)
49 wxBEGIN_FLAGS( wxListCtrlStyle
)
50 // new style border flags, we put them first to
51 // use them for streaming out
52 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
53 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
54 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
55 wxFLAGS_MEMBER(wxBORDER_RAISED
)
56 wxFLAGS_MEMBER(wxBORDER_STATIC
)
57 wxFLAGS_MEMBER(wxBORDER_NONE
)
59 // old style border flags
60 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
61 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
62 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
63 wxFLAGS_MEMBER(wxRAISED_BORDER
)
64 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
65 wxFLAGS_MEMBER(wxBORDER
)
67 // standard window styles
68 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
69 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
70 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
71 wxFLAGS_MEMBER(wxWANTS_CHARS
)
72 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
73 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
74 wxFLAGS_MEMBER(wxVSCROLL
)
75 wxFLAGS_MEMBER(wxHSCROLL
)
77 wxFLAGS_MEMBER(wxLC_LIST
)
78 wxFLAGS_MEMBER(wxLC_REPORT
)
79 wxFLAGS_MEMBER(wxLC_ICON
)
80 wxFLAGS_MEMBER(wxLC_SMALL_ICON
)
81 wxFLAGS_MEMBER(wxLC_ALIGN_TOP
)
82 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT
)
83 wxFLAGS_MEMBER(wxLC_AUTOARRANGE
)
84 wxFLAGS_MEMBER(wxLC_USER_TEXT
)
85 wxFLAGS_MEMBER(wxLC_EDIT_LABELS
)
86 wxFLAGS_MEMBER(wxLC_NO_HEADER
)
87 wxFLAGS_MEMBER(wxLC_SINGLE_SEL
)
88 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING
)
89 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING
)
90 wxFLAGS_MEMBER(wxLC_VIRTUAL
)
92 wxEND_FLAGS( wxListCtrlStyle
)
94 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl
, wxControl
,"wx/listctrl.h")
96 wxBEGIN_PROPERTIES_TABLE(wxListCtrl
)
97 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
99 wxPROPERTY_FLAGS( WindowStyle
, wxListCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
100 wxEND_PROPERTIES_TABLE()
102 wxBEGIN_HANDLERS_TABLE(wxListCtrl
)
103 wxEND_HANDLERS_TABLE()
105 wxCONSTRUCTOR_5( wxListCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
108 TODO : Expose more information of a list's layout etc. via appropriate objects (à la NotebookPageInfo)
111 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
114 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
115 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
117 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
119 WX_DECLARE_EXPORTED_LIST(wxListItem
, wxListItemList
);
120 #include "wx/listimpl.cpp"
121 WX_DEFINE_LIST(wxListItemList
)
123 class wxMacListCtrlItem
: public wxMacListBoxItem
128 virtual void Notification(wxMacDataItemBrowserControl
*owner
,
129 DataBrowserItemNotification message
,
130 DataBrowserItemDataRef itemData
) const;
132 virtual void SetColumnInfo( unsigned int column
, wxListItem
* item
);
133 virtual wxListItem
* GetColumnInfo( unsigned int column
);
134 virtual bool HasColumnInfo( unsigned int column
);
136 virtual void SetColumnTextValue( unsigned int column
, const wxString
& text
);
137 virtual const wxString
& GetColumnTextValue( unsigned int column
);
139 virtual int GetColumnImageValue( unsigned int column
);
140 virtual void SetColumnImageValue( unsigned int column
, int imageIndex
);
142 virtual OSStatus
GetSetData( wxMacDataItemBrowserControl
*owner
,
143 DataBrowserPropertyID property
,
144 DataBrowserItemDataRef itemData
,
148 virtual ~wxMacListCtrlItem();
150 wxListItemList m_rowItems
;
153 // TODO: Make a better name!!
154 class wxMacDataBrowserListCtrlControl
: public wxMacDataItemBrowserControl
157 wxMacDataBrowserListCtrlControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
);
158 virtual ~wxMacDataBrowserListCtrlControl();
160 // create a list item (can be a subclass of wxMacListBoxItem)
162 virtual wxMacListCtrlItem
* CreateItem();
164 virtual void MacInsertItem( unsigned int n
, wxListItem
* item
);
165 virtual void MacSetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
* item
);
166 virtual void MacGetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
& item
);
167 virtual void UpdateState(wxMacDataItem
* dataItem
, wxListItem
* item
);
170 wxClientDataType m_clientDataItemsType
;
174 // TODO: This gives errors, find out why.
175 //BEGIN_EVENT_TABLE(wxListCtrl, wxControl)
176 // EVT_PAINT(wxListCtrl::OnPaint)
179 // ============================================================================
181 // ============================================================================
183 wxMacListControl
* wxListCtrl::GetPeer() const
185 return dynamic_cast<wxMacListControl
*>(m_peer
);
188 // ----------------------------------------------------------------------------
189 // wxListCtrl construction
190 // ----------------------------------------------------------------------------
192 void wxListCtrl::Init()
194 m_imageListNormal
= NULL
;
195 m_imageListSmall
= NULL
;
196 m_imageListState
= NULL
;
198 // keep track of if we created our own image lists, or if they were assigned
200 m_ownsImageListNormal
= m_ownsImageListSmall
= m_ownsImageListState
= false;
204 m_genericImpl
= NULL
;
208 bool wxListCtrl::Create(wxWindow
*parent
,
213 const wxValidator
& validator
,
214 const wxString
& name
)
217 // for now, we'll always use the generic list control for ICON and LIST views,
218 // because they dynamically change the number of columns on resize.
219 // Also, allow the user to set it to use the list ctrl as well.
220 if ( (wxSystemOptions::HasOption( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
)
221 && (wxSystemOptions::GetOptionInt( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
) == 1)) ||
222 (style
& wxLC_ICON
) || (style
& wxLC_SMALL_ICON
) || (style
& wxLC_LIST
))
224 m_macIsUserPane
= true;
226 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
, name
) )
228 m_genericImpl
= new wxGenericListCtrl(this, id
, pos
, size
, style
, validator
, name
);
234 m_macIsUserPane
= false;
236 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
, name
) )
238 m_dbImpl
= new wxMacDataBrowserListCtrlControl( this, pos
, size
, style
);
241 MacPostControlCreate( pos
, size
);
247 wxListCtrl::~wxListCtrl()
249 if (m_ownsImageListNormal
)
250 delete m_imageListNormal
;
251 if (m_ownsImageListSmall
)
252 delete m_imageListSmall
;
253 if (m_ownsImageListState
)
254 delete m_imageListState
;
257 // ----------------------------------------------------------------------------
258 // set/get/change style
259 // ----------------------------------------------------------------------------
261 // Add or remove a single window style
262 void wxListCtrl::SetSingleStyle(long style
, bool add
)
264 long flag
= GetWindowStyleFlag();
266 // Get rid of conflicting styles
269 if ( style
& wxLC_MASK_TYPE
)
270 flag
= flag
& ~wxLC_MASK_TYPE
;
271 if ( style
& wxLC_MASK_ALIGN
)
272 flag
= flag
& ~wxLC_MASK_ALIGN
;
273 if ( style
& wxLC_MASK_SORT
)
274 flag
= flag
& ~wxLC_MASK_SORT
;
282 SetWindowStyleFlag(flag
);
285 // Set the whole window style
286 void wxListCtrl::SetWindowStyleFlag(long flag
)
288 if ( flag
!= m_windowStyle
)
290 m_windowStyle
= flag
;
293 m_genericImpl
->SetWindowStyleFlag(flag
);
300 void wxListCtrl::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
){
301 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
304 m_genericImpl
->SetSize(x
, y
, width
, height
, sizeFlags
);
307 // ----------------------------------------------------------------------------
309 // ----------------------------------------------------------------------------
311 // Gets information about this column
312 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
315 return m_genericImpl
->GetColumn(col
, item
);
319 if ( item
.m_mask
& wxLIST_MASK_TEXT
)
323 if ( item
.m_mask
& wxLIST_MASK_FORMAT
)
327 if ( item
.m_mask
& wxLIST_MASK_IMAGE
)
331 if ( (item
.m_mask
& wxLIST_MASK_TEXT
) )
339 // Sets information about this column
340 bool wxListCtrl::SetColumn(int col
, wxListItem
& item
)
343 return m_genericImpl
->SetColumn(col
, item
);
348 int wxListCtrl::GetColumnCount() const
351 return m_genericImpl
->GetColumnCount();
355 m_dbImpl
->GetColumnCount(&count
);
362 // Gets the column width
363 int wxListCtrl::GetColumnWidth(int col
) const
366 return m_genericImpl
->GetColumnWidth(col
);
369 return m_dbImpl
->GetColumnWidth(col
);
375 // Sets the column width
376 bool wxListCtrl::SetColumnWidth(int col
, int width
)
379 return m_genericImpl
->SetColumnWidth(col
, width
);
381 // TODO: This is setting the width of the first column
382 // to the entire window width; investigate why
386 // m_dbImpl->SetColumnWidth(col+1, width);
393 // Gets the number of items that can fit vertically in the
394 // visible area of the list control (list or report view)
395 // or the total number of items in the list control (icon
396 // or small icon view)
397 int wxListCtrl::GetCountPerPage() const
400 return m_genericImpl
->GetCountPerPage();
408 // Gets the edit control for editing labels.
409 wxTextCtrl
* wxListCtrl::GetEditControl() const
412 return m_genericImpl
->GetEditControl();
417 // Gets information about the item
418 bool wxListCtrl::GetItem(wxListItem
& info
) const
421 return m_genericImpl
->GetItem(info
);
424 m_dbImpl
->MacGetColumnInfo(info
.m_itemId
, info
.m_col
, info
);
429 // Sets information about the item
430 bool wxListCtrl::SetItem(wxListItem
& info
)
433 return m_genericImpl
->SetItem(info
);
436 m_dbImpl
->MacSetColumnInfo( info
.m_itemId
, info
.m_col
, &info
);
441 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
444 return m_genericImpl
->SetItem(index
, col
, label
, imageId
);
448 info
.m_mask
= wxLIST_MASK_TEXT
;
449 info
.m_itemId
= index
;
453 info
.m_image
= imageId
;
454 info
.m_mask
|= wxLIST_MASK_IMAGE
;
456 return SetItem(info
);
460 // Gets the item state
461 int wxListCtrl::GetItemState(long item
, long stateMask
) const
464 return m_genericImpl
->GetItemState(item
, stateMask
);
468 info
.m_mask
= wxLIST_MASK_STATE
;
469 info
.m_stateMask
= stateMask
;
470 info
.m_itemId
= item
;
478 // Sets the item state
479 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
482 return m_genericImpl
->SetItemState(item
, state
, stateMask
);
485 info
.m_mask
= wxLIST_MASK_STATE
;
486 info
.m_stateMask
= stateMask
;
487 info
.m_state
= state
;
488 info
.m_itemId
= item
;
489 return SetItem(info
);
492 // Sets the item image
493 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
495 return SetItemColumnImage(item
, 0, image
);
498 // Sets the item image
499 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
502 return m_genericImpl
->SetItemColumnImage(item
, column
, image
);
506 info
.m_mask
= wxLIST_MASK_IMAGE
;
507 info
.m_image
= image
;
508 info
.m_itemId
= item
;
511 return SetItem(info
);
514 // Gets the item text
515 wxString
wxListCtrl::GetItemText(long item
) const
518 return m_genericImpl
->GetItemText(item
);
522 info
.m_mask
= wxLIST_MASK_TEXT
;
523 info
.m_itemId
= item
;
526 return wxEmptyString
;
530 // Sets the item text
531 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
534 return m_genericImpl
->SetItemText(item
, str
);
538 info
.m_mask
= wxLIST_MASK_TEXT
;
539 info
.m_itemId
= item
;
545 // Gets the item data
546 long wxListCtrl::GetItemData(long item
) const
549 return m_genericImpl
->GetItemData(item
);
553 info
.m_mask
= wxLIST_MASK_DATA
;
554 info
.m_itemId
= item
;
561 // Sets the item data
562 bool wxListCtrl::SetItemData(long item
, long data
)
565 return m_genericImpl
->SetItemData(item
, data
);
569 info
.m_mask
= wxLIST_MASK_DATA
;
570 info
.m_itemId
= item
;
573 return SetItem(info
);
576 wxRect
wxListCtrl::GetViewRect() const
578 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
579 _T("wxListCtrl::GetViewRect() only works in icon mode") );
582 return m_genericImpl
->GetViewRect();
588 // Gets the item rectangle
589 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
592 return m_genericImpl
->GetItemRect(item
, rect
, code
);
597 // Gets the item position
598 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
601 return m_genericImpl
->GetItemPosition(item
, pos
);
603 bool success
= false;
608 // Sets the item position.
609 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
612 return m_genericImpl
->SetItemPosition(item
, pos
);
617 // Gets the number of items in the list control
618 int wxListCtrl::GetItemCount() const
621 return m_genericImpl
->GetItemCount();
624 return m_dbImpl
->MacGetCount();
629 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
632 m_genericImpl
->SetItemSpacing(spacing
, isSmall
);
635 wxSize
wxListCtrl::GetItemSpacing() const
638 return m_genericImpl
->GetItemSpacing();
643 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
646 m_genericImpl
->SetItemTextColour(item
, col
);
650 info
.m_itemId
= item
;
651 info
.SetTextColour( col
);
655 wxColour
wxListCtrl::GetItemTextColour( long item
) const
658 return m_genericImpl
->GetItemTextColour(item
);
663 return info
.GetTextColour();
668 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
671 m_genericImpl
->SetItemBackgroundColour(item
, col
);
676 info
.m_itemId
= item
;
677 info
.SetBackgroundColour( col
);
681 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
684 return m_genericImpl
->GetItemBackgroundColour(item
);
689 return info
.GetBackgroundColour();
694 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
697 m_genericImpl
->SetItemFont(item
, f
);
702 info
.m_itemId
= item
;
707 wxFont
wxListCtrl::GetItemFont( long item
) const
710 return m_genericImpl
->GetItemFont(item
);
715 return info
.GetFont();
721 // Gets the number of selected items in the list control
722 int wxListCtrl::GetSelectedItemCount() const
725 return m_genericImpl
->GetSelectedItemCount();
728 return m_dbImpl
->GetSelectedItemCount(NULL
, true);
733 // Gets the text colour of the listview
734 wxColour
wxListCtrl::GetTextColour() const
737 return m_genericImpl
->GetTextColour();
739 // TODO: we need owner drawn list items to customize text color.
744 // Sets the text colour of the listview
745 void wxListCtrl::SetTextColour(const wxColour
& col
)
748 m_genericImpl
->SetTextColour(col
);
752 // TODO: if we add owner-drawn item support for DataBrowser,
753 // consider supporting this property
756 // Gets the index of the topmost visible item when in
757 // list or report view
758 long wxListCtrl::GetTopItem() const
761 return m_genericImpl
->GetTopItem();
766 // Searches for an item, starting from 'item'.
767 // 'geometry' is one of
768 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
769 // 'state' is a state bit flag, one or more of
770 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
771 // item can be -1 to find the first item that matches the
773 // Returns the item or -1 if unsuccessful.
774 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
777 return m_genericImpl
->GetNextItem(item
, geom
, state
);
783 wxImageList
*wxListCtrl::GetImageList(int which
) const
786 return m_genericImpl
->GetImageList(which
);
788 if ( which
== wxIMAGE_LIST_NORMAL
)
790 return m_imageListNormal
;
792 else if ( which
== wxIMAGE_LIST_SMALL
)
794 return m_imageListSmall
;
796 else if ( which
== wxIMAGE_LIST_STATE
)
798 return m_imageListState
;
803 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
806 m_genericImpl
->SetImageList(imageList
, which
);
811 if ( which
== wxIMAGE_LIST_NORMAL
)
813 if (m_ownsImageListNormal
) delete m_imageListNormal
;
814 m_imageListNormal
= imageList
;
815 m_ownsImageListNormal
= false;
817 else if ( which
== wxIMAGE_LIST_SMALL
)
819 if (m_ownsImageListSmall
) delete m_imageListSmall
;
820 m_imageListSmall
= imageList
;
821 m_ownsImageListSmall
= false;
823 else if ( which
== wxIMAGE_LIST_STATE
)
825 if (m_ownsImageListState
) delete m_imageListState
;
826 m_imageListState
= imageList
;
827 m_ownsImageListState
= false;
831 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
834 m_genericImpl
->AssignImageList(imageList
, which
);
838 SetImageList(imageList
, which
);
839 if ( which
== wxIMAGE_LIST_NORMAL
)
840 m_ownsImageListNormal
= true;
841 else if ( which
== wxIMAGE_LIST_SMALL
)
842 m_ownsImageListSmall
= true;
843 else if ( which
== wxIMAGE_LIST_STATE
)
844 m_ownsImageListState
= true;
847 // ----------------------------------------------------------------------------
849 // ----------------------------------------------------------------------------
851 // Arranges the items
852 bool wxListCtrl::Arrange(int flag
)
855 return m_genericImpl
->Arrange(flag
);
860 bool wxListCtrl::DeleteItem(long item
)
863 return m_genericImpl
->DeleteItem(item
);
866 m_dbImpl
->MacDelete(item
);
867 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ITEM
, GetId() );
868 event
.SetEventObject( this );
869 event
.m_itemIndex
= item
;
870 GetEventHandler()->ProcessEvent( event
);
877 bool wxListCtrl::DeleteAllItems()
880 return m_genericImpl
->DeleteAllItems();
883 m_dbImpl
->MacClear();
884 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetId() );
885 event
.SetEventObject( this );
886 GetEventHandler()->ProcessEvent( event
);
892 bool wxListCtrl::DeleteAllColumns()
895 return m_genericImpl
->DeleteAllColumns();
899 m_dbImpl
->GetColumnCount(&cols
);
900 for (UInt32 col
= 0; col
< cols
; col
++){
909 bool wxListCtrl::DeleteColumn(int col
)
912 return m_genericImpl
->DeleteColumn(col
);
915 OSStatus err
= m_dbImpl
->RemoveColumn(col
);
922 // Clears items, and columns if there are any.
923 void wxListCtrl::ClearAll()
926 m_genericImpl
->ClearAll();
931 if ( m_colCount
> 0 )
935 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
938 return m_genericImpl
->EditLabel(item
, textControlClass
);
943 // End label editing, optionally cancelling the edit
944 bool wxListCtrl::EndEditLabel(bool cancel
)
946 // TODO: generic impl. doesn't have this method - is it needed for us?
948 return false; // m_genericImpl->EndEditLabel(cancel);
954 // Ensures this item is visible
955 bool wxListCtrl::EnsureVisible(long item
)
958 return m_genericImpl
->EnsureVisible(item
);
961 wxMacDataItem
* dataItem
= m_dbImpl
->GetItemFromLine(item
);
962 m_dbImpl
->RevealItem(dataItem
, kDataBrowserRevealWithoutSelecting
);
966 // Find an item whose label matches this string, starting from the item after 'start'
967 // or the beginning if 'start' is -1.
968 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
971 return m_genericImpl
->FindItem(start
, str
, partial
);
976 // Find an item whose data matches this data, starting from the item after 'start'
977 // or the beginning if 'start' is -1.
978 long wxListCtrl::FindItem(long start
, long data
)
981 return m_genericImpl
->FindItem(start
, data
);
983 long idx
= start
+ 1;
984 long count
= GetItemCount();
988 if (GetItemData(idx
) == data
)
996 // Find an item nearest this position in the specified direction, starting from
997 // the item after 'start' or the beginning if 'start' is -1.
998 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1001 return m_genericImpl
->FindItem(start
, pt
, direction
);
1005 // Determines which item (if any) is at the specified point,
1006 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1008 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const
1011 return m_genericImpl
->HitTest(point
, flags
, ptrSubItem
);
1017 // Inserts an item, returning the index of the new item if successful,
1019 long wxListCtrl::InsertItem(wxListItem
& info
)
1021 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1024 return m_genericImpl
->InsertItem(info
);
1027 int count
= GetItemCount();
1029 if (info
.m_itemId
> count
)
1030 info
.m_itemId
= count
;
1032 m_dbImpl
->MacInsertItem(info
.m_itemId
, &info
);
1033 wxListEvent
event( wxEVT_COMMAND_LIST_INSERT_ITEM
, GetId() );
1034 event
.SetEventObject( this );
1035 event
.m_itemIndex
= info
.m_itemId
;
1036 GetEventHandler()->ProcessEvent( event
);
1039 return info
.m_itemId
;
1042 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1045 return m_genericImpl
->InsertItem(index
, label
);
1048 info
.m_text
= label
;
1049 info
.m_mask
= wxLIST_MASK_TEXT
;
1050 info
.m_itemId
= index
;
1051 return InsertItem(info
);
1054 // Inserts an image item
1055 long wxListCtrl::InsertItem(long index
, int imageIndex
)
1058 return m_genericImpl
->InsertItem(index
, imageIndex
);
1061 info
.m_image
= imageIndex
;
1062 info
.m_mask
= wxLIST_MASK_IMAGE
;
1063 info
.m_itemId
= index
;
1064 return InsertItem(info
);
1067 // Inserts an image/string item
1068 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
1071 return m_genericImpl
->InsertItem(index
, label
, imageIndex
);
1074 info
.m_image
= imageIndex
;
1075 info
.m_text
= label
;
1076 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
1077 info
.m_itemId
= index
;
1078 return InsertItem(info
);
1081 // For list view mode (only), inserts a column.
1082 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
1085 return m_genericImpl
->InsertColumn(col
, item
);
1088 if ( !(item
.GetMask() & wxLIST_MASK_WIDTH
) )
1091 DataBrowserPropertyType type
= kDataBrowserTextType
;
1092 wxImageList
* imageList
= GetImageList(wxIMAGE_LIST_SMALL
);
1093 if (imageList
&& imageList
->GetImageCount() > 0){
1094 wxBitmap bmp
= imageList
->GetBitmap(0);
1096 type
= kDataBrowserIconAndTextType
;
1099 fprintf(stderr
, "Flush is %d\n", item
.GetAlign());
1100 SInt16 just
= teFlushDefault
;
1101 if (item
.GetMask() & wxLIST_MASK_FORMAT
){
1102 if (item
.GetAlign() == wxLIST_FORMAT_LEFT
)
1104 else if (item
.GetAlign() == wxLIST_FORMAT_CENTER
)
1106 else if (item
.GetAlign() == wxLIST_FORMAT_RIGHT
)
1107 just
= teFlushRight
;
1109 m_dbImpl
->InsertColumn(col
, type
, item
.GetText(), just
, item
.GetWidth());
1111 if (GetWindowStyleFlag() & wxLC_EDIT_LABELS
)
1113 DataBrowserTableViewColumnID id
;
1114 m_dbImpl
->GetColumnIDFromIndex(col
, &id
);
1115 DataBrowserPropertyFlags flags
;
1116 verify_noerr(m_dbImpl
->GetPropertyFlags(id
, &flags
));
1117 flags
|= kDataBrowserPropertyIsEditable
;
1118 verify_noerr(m_dbImpl
->SetPropertyFlags(id
, flags
));
1125 long wxListCtrl::InsertColumn(long col
,
1126 const wxString
& heading
,
1131 return m_genericImpl
->InsertColumn(col
, heading
, format
, width
);
1134 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
1135 item
.m_text
= heading
;
1138 item
.m_mask
|= wxLIST_MASK_WIDTH
;
1139 item
.m_width
= width
;
1141 item
.m_format
= format
;
1143 return InsertColumn(col
, item
);
1146 // scroll the control by the given number of pixels (exception: in list view,
1147 // dx is interpreted as number of columns)
1148 bool wxListCtrl::ScrollList(int dx
, int dy
)
1151 return m_genericImpl
->ScrollList(dx
, dy
);
1154 m_dbImpl
->SetScrollPosition(dx
, dy
);
1160 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
1163 return m_genericImpl
->SortItems(fn
, data
);
1168 // ----------------------------------------------------------------------------
1169 // virtual list controls
1170 // ----------------------------------------------------------------------------
1172 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
1174 // this is a pure virtual function, in fact - which is not really pure
1175 // because the controls which are not virtual don't need to implement it
1176 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
1178 return wxEmptyString
;
1181 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
1183 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
1185 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
1189 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
1192 return OnGetItemImage(item
);
1197 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
1199 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
1200 _T("invalid item index in OnGetItemAttr()") );
1202 // no attributes by default
1206 void wxListCtrl::SetItemCount(long count
)
1208 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
1211 m_genericImpl
->SetItemCount(count
);
1218 void wxListCtrl::RefreshItem(long item
)
1221 m_genericImpl
->RefreshItem(item
);
1226 GetItemRect(item
, rect
);
1230 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
1233 m_genericImpl
->RefreshItems(itemFrom
, itemTo
);
1237 wxRect rect1
, rect2
;
1238 GetItemRect(itemFrom
, rect1
);
1239 GetItemRect(itemTo
, rect2
);
1241 wxRect rect
= rect1
;
1242 rect
.height
= rect2
.GetBottom() - rect1
.GetTop();
1248 // wxMac internal data structures
1250 wxMacListCtrlItem::~wxMacListCtrlItem()
1254 void wxMacListCtrlItem::Notification(wxMacDataItemBrowserControl
*owner
,
1255 DataBrowserItemNotification message
,
1256 DataBrowserItemDataRef itemData
) const
1259 wxMacDataBrowserListCtrlControl
*lb
= dynamic_cast<wxMacDataBrowserListCtrlControl
*>(owner
);
1261 // we want to depend on as little as possible to make sure tear-down of controls is safe
1262 if ( message
== kDataBrowserItemRemoved
)
1264 if ( lb
!= NULL
&& lb
->GetClientDataType() == wxClientData_Object
)
1266 delete (wxClientData
*) (m_data
);
1272 else if ( message
== kDataBrowserItemAdded
)
1274 // we don't issue events on adding, the item is not really stored in the list yet, so we
1275 // avoid asserts by gettting out now
1279 wxListCtrl
*list
= wxDynamicCast( owner
->GetPeer() , wxListCtrl
);
1281 bool trigger
= false;
1283 wxListEvent
event( wxEVT_COMMAND_LIST_ITEM_SELECTED
, list
->GetId() );
1284 bool isSingle
= list
->GetWindowStyle() | wxLC_SINGLE_SEL
;
1285 event
.SetEventObject( list
);
1286 event
.m_itemIndex
= owner
->GetLineFromItem( this ) ;
1287 if ( !list
->IsVirtual() )
1289 lb
->MacGetColumnInfo(event
.m_itemIndex
,0,event
.m_item
);
1294 case kDataBrowserItemDeselected
:
1295 event
.SetEventType(wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
1297 trigger
= !lb
->IsSelectionSuppressed();
1300 case kDataBrowserItemSelected
:
1301 trigger
= !lb
->IsSelectionSuppressed();
1304 case kDataBrowserItemDoubleClicked
:
1305 event
.SetEventType( wxEVT_LEFT_DCLICK
);
1309 case kDataBrowserEditStarted
:
1310 // TODO : how to veto ?
1311 event
.SetEventType( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
) ;
1315 case kDataBrowserEditStopped
:
1316 // TODO probably trigger only upon the value store callback, because
1317 // here IIRC we cannot veto
1318 event
.SetEventType( wxEVT_COMMAND_LIST_END_LABEL_EDIT
) ;
1328 // direct notification is not always having the listbox GetSelection() having in synch with event
1329 wxPostEvent( list
->GetEventHandler(), event
);
1335 wxMacDataBrowserListCtrlControl::wxMacDataBrowserListCtrlControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
)
1336 : wxMacDataItemBrowserControl( peer
, pos
, size
, style
)
1338 OSStatus err
= noErr
;
1339 m_clientDataItemsType
= wxClientData_None
;
1341 DataBrowserSelectionFlags options
= kDataBrowserDragSelect
;
1342 if ( style
& wxLC_SINGLE_SEL
)
1344 options
|= kDataBrowserSelectOnlyOne
;
1348 options
|= kDataBrowserAlwaysExtendSelection
| kDataBrowserCmdTogglesSelection
;
1351 err
= SetSelectionFlags( options
);
1352 verify_noerr( err
);
1354 if ( style
& wxLC_LIST
){
1355 InsertColumn(0, kDataBrowserIconAndTextType
, wxEmptyString
, -1, -1);
1356 verify_noerr( AutoSizeColumns() );
1357 verify_noerr( SetHeaderButtonHeight( 0 ) );
1360 SetDataBrowserSortProperty( m_controlRef
, kMinColumnId
);
1361 if ( style
& wxLC_SORT_ASCENDING
)
1363 m_sortOrder
= SortOrder_Text_Ascending
;
1364 SetDataBrowserSortProperty( m_controlRef
, kMinColumnId
);
1365 SetDataBrowserSortOrder( m_controlRef
, kDataBrowserOrderIncreasing
);
1367 else if ( style
& wxLC_SORT_DESCENDING
)
1369 m_sortOrder
= SortOrder_Text_Descending
;
1370 SetDataBrowserSortProperty( m_controlRef
, kMinColumnId
);
1371 SetDataBrowserSortOrder( m_controlRef
, kDataBrowserOrderDecreasing
);
1375 m_sortOrder
= SortOrder_None
;
1376 SetDataBrowserSortProperty( m_controlRef
, kMinColumnId
);
1377 SetDataBrowserSortOrder( m_controlRef
, kDataBrowserOrderIncreasing
);
1380 verify_noerr( AutoSizeColumns() );
1381 verify_noerr( SetHiliteStyle(kDataBrowserTableViewFillHilite
) );
1382 err
= SetHasScrollBars( (style
& wxHSCROLL
) != 0 , true );
1385 wxMacDataBrowserListCtrlControl::~wxMacDataBrowserListCtrlControl()
1389 void wxMacDataBrowserListCtrlControl::MacSetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
* item
)
1391 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
1393 wxMacListCtrlItem
* listItem
= dynamic_cast<wxMacListCtrlItem
*>(dataItem
);
1394 listItem
->SetColumnInfo( column
, item
);
1395 UpdateState(dataItem
, item
);
1399 // apply changes that need to happen immediately, rather than when the
1400 // databrowser control fires a callback.
1401 void wxMacDataBrowserListCtrlControl::UpdateState(wxMacDataItem
* dataItem
, wxListItem
* listItem
)
1403 bool isSelected
= IsItemSelected( dataItem
);
1404 bool isSelectedState
= (listItem
->GetState() == wxLIST_STATE_SELECTED
);
1406 // toggle the selection state if wxListInfo state and actual state don't match.
1407 if ( isSelected
!= isSelectedState
){
1408 DataBrowserSetOption options
= kDataBrowserItemsAdd
;
1409 if (!isSelectedState
)
1410 options
= kDataBrowserItemsRemove
;
1411 fprintf(stderr
, "state = %d, db options = %d\n", isSelectedState
, options
);
1412 SetSelectedItem(dataItem
, options
);
1414 // TODO: Set column width if item width > than current column width
1417 void wxMacDataBrowserListCtrlControl::MacGetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
& item
)
1419 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
1420 // CS should this guard against dataItem = 0 ? , as item is not a pointer if (item) is not appropriate
1423 wxMacListCtrlItem
* listItem
= dynamic_cast<wxMacListCtrlItem
*>(dataItem
);
1424 wxListItem
* oldItem
= listItem
->GetColumnInfo( column
);
1426 long mask
= item
.GetMask();
1428 // by default, get everything for backwards compatibility
1431 if ( mask
& wxLIST_MASK_TEXT
)
1432 item
.SetText(oldItem
->GetText());
1433 if ( mask
& wxLIST_MASK_IMAGE
)
1434 item
.SetImage(oldItem
->GetImage());
1435 if ( mask
& wxLIST_MASK_DATA
)
1436 item
.SetData(oldItem
->GetData());
1437 if ( mask
& wxLIST_MASK_STATE
)
1438 item
.SetState(oldItem
->GetState());
1439 if ( mask
& wxLIST_MASK_WIDTH
)
1440 item
.SetWidth(oldItem
->GetWidth());
1441 if ( mask
& wxLIST_MASK_FORMAT
)
1442 item
.SetAlign(oldItem
->GetAlign());
1444 item
.SetTextColour(oldItem
->GetTextColour());
1445 item
.SetBackgroundColour(oldItem
->GetBackgroundColour());
1446 item
.SetFont(oldItem
->GetFont());
1450 void wxMacDataBrowserListCtrlControl::MacInsertItem( unsigned int n
, wxListItem
* item
)
1452 wxMacDataItemBrowserControl::MacInsert(n
, item
->GetText());
1453 MacSetColumnInfo(n
, 0, item
);
1456 wxMacListCtrlItem
* wxMacDataBrowserListCtrlControl::CreateItem()
1458 return new wxMacListCtrlItem();
1461 wxMacListCtrlItem::wxMacListCtrlItem()
1463 m_rowItems
= wxListItemList();
1466 int wxMacListCtrlItem::GetColumnImageValue( unsigned int column
)
1468 return GetColumnInfo(column
)->GetImage();
1471 void wxMacListCtrlItem::SetColumnImageValue( unsigned int column
, int imageIndex
)
1473 GetColumnInfo(column
)->SetImage(imageIndex
);
1476 const wxString
& wxMacListCtrlItem::GetColumnTextValue( unsigned int column
)
1481 return GetColumnInfo(column
)->GetText();
1484 void wxMacListCtrlItem::SetColumnTextValue( unsigned int column
, const wxString
& text
)
1486 GetColumnInfo(column
)->SetText(text
);
1488 // for compatibility with superclass APIs
1493 wxListItem
* wxMacListCtrlItem::GetColumnInfo( unsigned int column
)
1495 wxListItemList::compatibility_iterator node
= m_rowItems
.Item( column
);
1496 wxASSERT_MSG( node
, _T("invalid column index in wxMacListCtrlItem") );
1498 return node
->GetData();
1501 bool wxMacListCtrlItem::HasColumnInfo( unsigned int column
)
1503 return m_rowItems
.GetCount() > column
;
1506 void wxMacListCtrlItem::SetColumnInfo( unsigned int column
, wxListItem
* item
)
1509 if ( column
>= m_rowItems
.GetCount() ){
1510 wxListItem
* listItem
= new wxListItem(*item
);
1511 //listItem->SetAlign(item->GetAlign());
1512 //listItem->SetBackgroundColour(item->GetBackgroundColour());
1513 //listItem->SetColumn(item->GetColumn());
1514 //listItem->SetData(item->GetData());
1515 //listItem->SetFont(item->GetFont());
1516 //listItem->SetId(GetOrder());
1517 //listItem->SetImage(item->GetImage());
1518 //listItem->SetMask(item->GetMask());
1520 //listItem->SetText(item->GetText());
1521 m_rowItems
.Append( listItem
);
1524 wxListItem
* listItem
= GetColumnInfo( column
);
1525 long mask
= item
->GetMask();
1526 if (mask
& wxLIST_MASK_TEXT
)
1527 listItem
->SetText(item
->GetText());
1528 if (mask
& wxLIST_MASK_DATA
)
1529 listItem
->SetData(item
->GetData());
1530 if (mask
& wxLIST_MASK_IMAGE
)
1531 listItem
->SetImage(item
->GetImage());
1532 if (mask
& wxLIST_MASK_STATE
)
1533 listItem
->SetState(item
->GetState());
1534 if (mask
& wxLIST_MASK_FORMAT
)
1535 listItem
->SetAlign(item
->GetAlign());
1536 if (mask
& wxLIST_MASK_WIDTH
)
1537 listItem
->SetWidth(item
->GetWidth());
1541 OSStatus
wxMacListCtrlItem::GetSetData( wxMacDataItemBrowserControl
*owner
,
1542 DataBrowserPropertyID property
,
1543 DataBrowserItemDataRef itemData
,
1547 OSStatus err
= errDataBrowserPropertyNotSupported
;
1548 wxListCtrl
* list
= wxDynamicCast( owner
->GetPeer() , wxListCtrl
);
1553 case kDataBrowserItemIsEditableProperty
:
1554 if ( list
&& list
->HasFlag( wxLC_EDIT_LABELS
) )
1556 verify_noerr(SetDataBrowserItemDataBooleanValue( itemData
, true ));
1561 if ( property
>= kMinColumnId
){
1562 short listColumn
= property
- kMinColumnId
;
1564 if (HasColumnInfo(listColumn
)){
1565 wxListItem
* item
= GetColumnInfo(listColumn
);
1566 wxMacCFStringHolder cfStr
;
1568 if (item
->GetText()){
1569 cfStr
.Assign( item
->GetText(), wxLocale::GetSystemEncoding() );
1570 err
= ::SetDataBrowserItemDataText( itemData
, cfStr
);
1574 int imgIndex
= item
->GetImage();
1575 if ( (item
->GetMask() & wxLIST_MASK_IMAGE
) ){
1576 wxImageList
* imageList
= list
->GetImageList(wxIMAGE_LIST_SMALL
);
1577 if (imageList
&& imageList
->GetImageCount() > 0){
1578 wxBitmap bmp
= imageList
->GetBitmap(imgIndex
);
1579 IconRef icon
= bmp
.GetBitmapData()->GetIconRef();
1580 ::SetDataBrowserItemDataIcon(itemData
, icon
);
1594 if ( property
>= kMinColumnId
){
1595 short listColumn
= property
- kMinColumnId
;
1597 if (HasColumnInfo(listColumn
)){
1598 // TODO probably send the 'end edit' from here, as we
1599 // can then deal with the veto
1601 verify_noerr( GetDataBrowserItemDataText( itemData
, &sr
) ) ;
1602 wxMacCFStringHolder
cfStr(sr
) ;;
1603 list
->SetItem( owner
->GetLineFromItem(this) , listColumn
, cfStr
.AsString() ) ;
1611 // don't duplicate the numeric order column handling
1612 if (err
== errDataBrowserPropertyNotSupported
)
1613 err
= wxMacDataItem::GetSetData(owner
, property
, itemData
, changeValue
);
1618 #endif // wxUSE_LISTCTRL