1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/listctrl_mac.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"
29 #include "wx/listctrl.h"
35 #include "wx/mac/uma.h"
37 #include "wx/imaglist.h"
38 #include "wx/sysopt.h"
41 #include "wx/hashmap.h"
43 #if wxUSE_EXTENDED_RTTI
44 WX_DEFINE_FLAGS( wxListCtrlStyle
)
46 wxBEGIN_FLAGS( wxListCtrlStyle
)
47 // new style border flags, we put them first to
48 // use them for streaming out
49 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
50 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
51 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
52 wxFLAGS_MEMBER(wxBORDER_RAISED
)
53 wxFLAGS_MEMBER(wxBORDER_STATIC
)
54 wxFLAGS_MEMBER(wxBORDER_NONE
)
56 // old style border flags
57 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
58 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
59 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
60 wxFLAGS_MEMBER(wxRAISED_BORDER
)
61 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
62 wxFLAGS_MEMBER(wxBORDER
)
64 // standard window styles
65 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
66 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
67 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
68 wxFLAGS_MEMBER(wxWANTS_CHARS
)
69 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
70 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
71 wxFLAGS_MEMBER(wxVSCROLL
)
72 wxFLAGS_MEMBER(wxHSCROLL
)
74 wxFLAGS_MEMBER(wxLC_LIST
)
75 wxFLAGS_MEMBER(wxLC_REPORT
)
76 wxFLAGS_MEMBER(wxLC_ICON
)
77 wxFLAGS_MEMBER(wxLC_SMALL_ICON
)
78 wxFLAGS_MEMBER(wxLC_ALIGN_TOP
)
79 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT
)
80 wxFLAGS_MEMBER(wxLC_AUTOARRANGE
)
81 wxFLAGS_MEMBER(wxLC_USER_TEXT
)
82 wxFLAGS_MEMBER(wxLC_EDIT_LABELS
)
83 wxFLAGS_MEMBER(wxLC_NO_HEADER
)
84 wxFLAGS_MEMBER(wxLC_SINGLE_SEL
)
85 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING
)
86 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING
)
87 wxFLAGS_MEMBER(wxLC_VIRTUAL
)
89 wxEND_FLAGS( wxListCtrlStyle
)
91 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl
, wxControl
,"wx/listctrl.h")
93 wxBEGIN_PROPERTIES_TABLE(wxListCtrl
)
94 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
96 wxPROPERTY_FLAGS( WindowStyle
, wxListCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
97 wxEND_PROPERTIES_TABLE()
99 wxBEGIN_HANDLERS_TABLE(wxListCtrl
)
100 wxEND_HANDLERS_TABLE()
102 wxCONSTRUCTOR_5( wxListCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
105 TODO : Expose more information of a list's layout etc. via appropriate objects (à la NotebookPageInfo)
108 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
111 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
112 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
114 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
116 WX_DECLARE_HASH_MAP( int, wxListItem
*, wxIntegerHash
, wxIntegerEqual
, wxListItemList
);
118 #include "wx/listimpl.cpp"
119 WX_DEFINE_LIST(wxColumnList
)
121 // so we can check for column clicks
122 static const EventTypeSpec eventList
[] =
124 { kEventClassControl
, kEventControlHit
},
125 { kEventClassControl
, kEventControlDraw
}
128 static pascal OSStatus
wxMacListCtrlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
130 OSStatus result
= eventNotHandledErr
;
132 wxMacCarbonEvent
cEvent( event
) ;
134 ControlRef controlRef
;
135 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
137 wxListCtrl
*window
= (wxListCtrl
*) data
;
138 wxListEvent
le( wxEVT_COMMAND_LIST_COL_CLICK
, window
->GetId() );
139 le
.SetEventObject( window
);
141 switch ( GetEventKind( event
) )
143 // check if the column was clicked on and fire an event if so
144 case kEventControlHit
:
146 ControlPartCode result
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
) ;
147 if (result
== kControlButtonPart
){
148 DataBrowserPropertyID col
;
149 GetDataBrowserSortProperty(controlRef
, &col
);
150 int column
= col
- kMinColumnId
;
152 // FIXME: we can't use the sort property for virtual listctrls
153 // so we need to find a better way to determine which column was clicked...
154 if (!window
->IsVirtual())
155 window
->GetEventHandler()->ProcessEvent( le
);
157 result
= CallNextEventHandler(handler
, event
);
160 case kEventControlDraw
:
162 CGContextRef context
= cEvent
.GetParameter
<CGContextRef
>(kEventParamCGContextRef
, typeCGContextRef
) ;
163 window
->MacSetDrawingContext(context
);
164 result
= CallNextEventHandler(handler
, event
);
165 window
->MacSetDrawingContext(NULL
);
176 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacListCtrlEventHandler
)
178 class wxMacListCtrlItem
: public wxMacListBoxItem
183 virtual void Notification(wxMacDataItemBrowserControl
*owner
,
184 DataBrowserItemNotification message
,
185 DataBrowserItemDataRef itemData
) const;
187 virtual void SetColumnInfo( unsigned int column
, wxListItem
* item
);
188 virtual wxListItem
* GetColumnInfo( unsigned int column
);
189 virtual bool HasColumnInfo( unsigned int column
);
191 virtual void SetColumnTextValue( unsigned int column
, const wxString
& text
);
192 virtual wxString
GetColumnTextValue( unsigned int column
);
194 virtual int GetColumnImageValue( unsigned int column
);
195 virtual void SetColumnImageValue( unsigned int column
, int imageIndex
);
197 virtual ~wxMacListCtrlItem();
199 wxListItemList m_rowItems
;
202 DataBrowserDrawItemUPP gDataBrowserDrawItemUPP
= NULL
;
203 //DataBrowserEditItemUPP gDataBrowserEditItemUPP = NULL;
204 DataBrowserHitTestUPP gDataBrowserHitTestUPP
= NULL
;
206 // TODO: Make a better name!!
207 class wxMacDataBrowserListCtrlControl
: public wxMacDataItemBrowserControl
210 wxMacDataBrowserListCtrlControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
);
211 wxMacDataBrowserListCtrlControl() {}
212 virtual ~wxMacDataBrowserListCtrlControl();
214 // create a list item (can be a subclass of wxMacListBoxItem)
216 virtual wxMacDataItem
* CreateItem();
218 virtual void MacInsertItem( unsigned int n
, wxListItem
* item
);
219 virtual void MacSetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
* item
);
220 virtual void MacGetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
& item
);
221 virtual void UpdateState(wxMacDataItem
* dataItem
, wxListItem
* item
);
222 int GetFlags() { return m_flags
; }
225 // we need to override to provide specialized handling for virtual wxListCtrls
226 virtual OSStatus
GetSetItemData(DataBrowserItemID itemID
,
227 DataBrowserPropertyID property
,
228 DataBrowserItemDataRef itemData
,
229 Boolean changeValue
);
231 virtual void ItemNotification(
232 DataBrowserItemID itemID
,
233 DataBrowserItemNotification message
,
234 DataBrowserItemDataRef itemData
);
236 virtual Boolean
CompareItems(DataBrowserItemID itemOneID
,
237 DataBrowserItemID itemTwoID
,
238 DataBrowserPropertyID sortProperty
);
240 static pascal void DataBrowserDrawItemProc(ControlRef browser
,
241 DataBrowserItemID item
,
242 DataBrowserPropertyID property
,
243 DataBrowserItemState itemState
,
246 Boolean colorDevice
);
248 virtual void DrawItem(DataBrowserItemID itemID
,
249 DataBrowserPropertyID property
,
250 DataBrowserItemState itemState
,
251 const Rect
*itemRect
,
253 Boolean colorDevice
);
255 static pascal Boolean
DataBrowserEditTextProc(ControlRef browser
,
256 DataBrowserItemID item
,
257 DataBrowserPropertyID property
,
258 CFStringRef theString
,
259 Rect
*maxEditTextRect
,
260 Boolean
*shrinkToFit
);
262 static pascal Boolean
DataBrowserHitTestProc(ControlRef browser
,
263 DataBrowserItemID itemID
,
264 DataBrowserPropertyID property
,
266 const Rect
*mouseRect
) { return true; }
268 virtual bool ConfirmEditText(DataBrowserItemID item
,
269 DataBrowserPropertyID property
,
270 CFStringRef theString
,
271 Rect
*maxEditTextRect
,
272 Boolean
*shrinkToFit
);
276 wxClientDataType m_clientDataItemsType
;
279 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacDataBrowserListCtrlControl
)
282 class wxMacListCtrlEventDelegate
: public wxEvtHandler
285 wxMacListCtrlEventDelegate( wxListCtrl
* list
, int id
);
286 virtual bool ProcessEvent( wxEvent
& event
);
293 wxMacListCtrlEventDelegate::wxMacListCtrlEventDelegate( wxListCtrl
* list
, int id
)
299 bool wxMacListCtrlEventDelegate::ProcessEvent( wxEvent
& event
)
301 // even though we use a generic list ctrl underneath, make sure
302 // we present ourselves as wxListCtrl.
303 event
.SetEventObject( m_list
);
306 if ( !event
.IsKindOf( CLASSINFO( wxCommandEvent
) ) )
308 if (m_list
->GetEventHandler()->ProcessEvent( event
))
311 return wxEvtHandler::ProcessEvent(event
);
314 //-----------------------------------------------------------------------------
315 // wxListCtrlRenameTimer (internal)
316 //-----------------------------------------------------------------------------
318 class wxListCtrlRenameTimer
: public wxTimer
324 wxListCtrlRenameTimer( wxListCtrl
*owner
);
328 //-----------------------------------------------------------------------------
329 // wxListCtrlTextCtrlWrapper: wraps a wxTextCtrl to make it work for inline editing
330 //-----------------------------------------------------------------------------
332 class wxListCtrlTextCtrlWrapper
: public wxEvtHandler
335 // NB: text must be a valid object but not Create()d yet
336 wxListCtrlTextCtrlWrapper(wxListCtrl
*owner
,
340 wxTextCtrl
*GetText() const { return m_text
; }
342 void AcceptChangesAndFinish();
345 void OnChar( wxKeyEvent
&event
);
346 void OnKeyUp( wxKeyEvent
&event
);
347 void OnKillFocus( wxFocusEvent
&event
);
349 bool AcceptChanges();
355 wxString m_startValue
;
358 bool m_aboutToFinish
;
360 DECLARE_EVENT_TABLE()
363 //-----------------------------------------------------------------------------
364 // wxListCtrlRenameTimer (internal)
365 //-----------------------------------------------------------------------------
367 wxListCtrlRenameTimer::wxListCtrlRenameTimer( wxListCtrl
*owner
)
372 void wxListCtrlRenameTimer::Notify()
374 m_owner
->OnRenameTimer();
377 //-----------------------------------------------------------------------------
378 // wxListCtrlTextCtrlWrapper (internal)
379 //-----------------------------------------------------------------------------
381 BEGIN_EVENT_TABLE(wxListCtrlTextCtrlWrapper
, wxEvtHandler
)
382 EVT_CHAR (wxListCtrlTextCtrlWrapper::OnChar
)
383 EVT_KEY_UP (wxListCtrlTextCtrlWrapper::OnKeyUp
)
384 EVT_KILL_FOCUS (wxListCtrlTextCtrlWrapper::OnKillFocus
)
387 wxListCtrlTextCtrlWrapper::wxListCtrlTextCtrlWrapper(wxListCtrl
*owner
,
390 : m_startValue(owner
->GetItemText(itemEdit
)),
391 m_itemEdited(itemEdit
)
396 m_aboutToFinish
= false;
400 owner
->GetItemRect(itemEdit
, rectLabel
);
402 m_text
->Create(owner
, wxID_ANY
, m_startValue
,
403 wxPoint(rectLabel
.x
+offset
,rectLabel
.y
),
404 wxSize(rectLabel
.width
-offset
,rectLabel
.height
));
407 m_text
->PushEventHandler(this);
410 void wxListCtrlTextCtrlWrapper::Finish()
416 m_text
->RemoveEventHandler(this);
417 m_owner
->FinishEditing(m_text
);
419 wxPendingDelete
.Append( this );
423 bool wxListCtrlTextCtrlWrapper::AcceptChanges()
425 const wxString value
= m_text
->GetValue();
427 if ( value
== m_startValue
)
428 // nothing changed, always accept
431 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
432 // vetoed by the user
435 // accepted, do rename the item
436 m_owner
->SetItemText(m_itemEdited
, value
);
441 void wxListCtrlTextCtrlWrapper::AcceptChangesAndFinish()
443 m_aboutToFinish
= true;
445 // Notify the owner about the changes
448 // Even if vetoed, close the control (consistent with MSW)
452 void wxListCtrlTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
454 switch ( event
.m_keyCode
)
457 AcceptChangesAndFinish();
461 m_owner
->OnRenameCancelled( m_itemEdited
);
470 void wxListCtrlTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
478 // auto-grow the textctrl:
479 wxSize parentSize
= m_owner
->GetSize();
480 wxPoint myPos
= m_text
->GetPosition();
481 wxSize mySize
= m_text
->GetSize();
483 m_text
->GetTextExtent(m_text
->GetValue() + _T("MM"), &sx
, &sy
);
484 if (myPos
.x
+ sx
> parentSize
.x
)
485 sx
= parentSize
.x
- myPos
.x
;
488 m_text
->SetSize(sx
, wxDefaultCoord
);
493 void wxListCtrlTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
495 if ( !m_finished
&& !m_aboutToFinish
)
497 if ( !AcceptChanges() )
498 m_owner
->OnRenameCancelled( m_itemEdited
);
503 // We must let the native text control handle focus
507 BEGIN_EVENT_TABLE(wxListCtrl
, wxControl
)
508 EVT_LEFT_DOWN(wxListCtrl::OnLeftDown
)
509 EVT_LEFT_DCLICK(wxListCtrl::OnDblClick
)
510 EVT_MIDDLE_DOWN(wxListCtrl::OnMiddleDown
)
511 EVT_RIGHT_DOWN(wxListCtrl::OnRightDown
)
512 EVT_CHAR(wxListCtrl::OnChar
)
515 // ============================================================================
517 // ============================================================================
519 wxMacListControl
* wxListCtrl::GetPeer() const
521 wxMacDataBrowserListCtrlControl
*lb
= wxDynamicCast(m_peer
,wxMacDataBrowserListCtrlControl
);
522 return lb
? wx_static_cast(wxMacListControl
*,lb
) : 0 ;
525 // ----------------------------------------------------------------------------
526 // wxListCtrl construction
527 // ----------------------------------------------------------------------------
529 void wxListCtrl::Init()
531 m_imageListNormal
= NULL
;
532 m_imageListSmall
= NULL
;
533 m_imageListState
= NULL
;
535 // keep track of if we created our own image lists, or if they were assigned
537 m_ownsImageListNormal
= m_ownsImageListSmall
= m_ownsImageListState
= false;
541 m_genericImpl
= NULL
;
543 m_compareFunc
= NULL
;
544 m_compareFuncData
= 0;
545 m_colsInfo
= wxColumnList();
546 m_textColor
= wxNullColour
;
547 m_bgColor
= wxNullColour
;
548 m_textctrlWrapper
= NULL
;
550 m_renameTimer
= new wxListCtrlRenameTimer( this );
553 class wxGenericListCtrlHook
: public wxGenericListCtrl
556 wxGenericListCtrlHook(wxListCtrl
* parent
,
561 const wxValidator
& validator
,
562 const wxString
& name
)
563 : wxGenericListCtrl(parent
, id
, pos
, size
, style
, validator
, name
),
564 m_nativeListCtrl(parent
)
569 virtual wxListItemAttr
* OnGetItemAttr(long item
) const
571 return m_nativeListCtrl
->OnGetItemAttr(item
);
574 virtual int OnGetItemImage(long item
) const
576 return m_nativeListCtrl
->OnGetItemImage(item
);
579 virtual int OnGetItemColumnImage(long item
, long column
) const
581 return m_nativeListCtrl
->OnGetItemColumnImage(item
, column
);
584 virtual wxString
OnGetItemText(long item
, long column
) const
586 return m_nativeListCtrl
->OnGetItemText(item
, column
);
589 wxListCtrl
* m_nativeListCtrl
;
593 void wxListCtrl::OnLeftDown(wxMouseEvent
& event
)
595 if ( m_textctrlWrapper
)
598 m_textctrlWrapper
->AcceptChangesAndFinish();
602 long current
= HitTest(event
.GetPosition(), hitResult
);
603 if ((current
== m_current
) &&
604 (hitResult
== wxLIST_HITTEST_ONITEM
) &&
605 HasFlag(wxLC_EDIT_LABELS
) )
607 m_renameTimer
->Start( 100, true );
616 void wxListCtrl::OnDblClick(wxMouseEvent
& event
)
622 #if wxABI_VERSION >= 20801
623 void wxListCtrl::OnRightDown(wxMouseEvent
& event
)
626 FireMouseEvent(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition());
630 void wxListCtrl::OnMiddleDown(wxMouseEvent
& event
)
633 FireMouseEvent(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, event
.GetPosition());
637 void wxListCtrl::FireMouseEvent(wxEventType eventType
, wxPoint position
)
639 wxListEvent
le( eventType
, GetId() );
640 le
.SetEventObject(this);
641 le
.m_pointDrag
= position
;
645 long item
= HitTest(position
, flags
);
646 if (flags
& wxLIST_HITTEST_ONITEM
)
648 le
.m_itemIndex
= item
;
649 le
.m_item
.m_itemId
= item
;
651 GetEventHandler()->ProcessEvent(le
);
655 void wxListCtrl::OnChar(wxKeyEvent
& event
)
661 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetId() );
662 le
.SetEventObject(this);
663 le
.m_code
= event
.GetKeyCode();
668 // if m_current isn't set, check if there's been a selection
669 // made before continuing
670 m_current
= GetNextItem(-1, wxLIST_NEXT_BELOW
, wxLIST_STATE_SELECTED
);
673 // We need to determine m_current ourselves when navigation keys
674 // are used. Note that PAGEUP and PAGEDOWN do not alter the current
675 // item on native Mac ListCtrl, so we only handle up and down keys.
676 switch ( event
.GetKeyCode() )
687 if ( m_current
< GetItemCount() - 1 )
690 m_current
= GetItemCount() - 1;
697 le
.m_itemIndex
= m_current
;
698 le
.m_item
.m_itemId
= m_current
;
700 GetEventHandler()->ProcessEvent(le
);
707 bool wxListCtrl::Create(wxWindow
*parent
,
712 const wxValidator
& validator
,
713 const wxString
& name
)
716 // for now, we'll always use the generic list control for ICON and LIST views,
717 // because they dynamically change the number of columns on resize.
718 // Also, allow the user to set it to use the list ctrl as well.
719 if ( (wxSystemOptions::HasOption( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
)
720 && (wxSystemOptions::GetOptionInt( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
) == 1)) ||
721 (style
& wxLC_ICON
) || (style
& wxLC_SMALL_ICON
) || (style
& wxLC_LIST
) )
723 m_macIsUserPane
= true;
725 long paneStyle
= style
;
726 paneStyle
&= ~wxSIMPLE_BORDER
;
727 paneStyle
&= ~wxDOUBLE_BORDER
;
728 paneStyle
&= ~wxSUNKEN_BORDER
;
729 paneStyle
&= ~wxRAISED_BORDER
;
730 paneStyle
&= ~wxSTATIC_BORDER
;
731 if ( !wxWindow::Create(parent
, id
, pos
, size
, paneStyle
| wxNO_BORDER
, name
) )
734 // since the generic control is a child, make sure we position it at 0, 0
735 m_genericImpl
= new wxGenericListCtrlHook(this, id
, wxPoint(0, 0), size
, style
, validator
, name
);
736 m_genericImpl
->PushEventHandler( new wxMacListCtrlEventDelegate( this, GetId() ) );
742 m_macIsUserPane
= false;
743 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
& ~(wxHSCROLL
| wxVSCROLL
), name
) )
745 m_dbImpl
= new wxMacDataBrowserListCtrlControl( this, pos
, size
, style
);
748 MacPostControlCreate( pos
, size
);
750 InstallControlEventHandler( m_peer
->GetControlRef() , GetwxMacListCtrlEventHandlerUPP(),
751 GetEventTypeCount(eventList
), eventList
, this,
752 (EventHandlerRef
*)&m_macListCtrlEventHandler
);
758 wxListCtrl::~wxListCtrl()
762 m_genericImpl
->PopEventHandler(/* deleteHandler = */ true);
765 if (m_ownsImageListNormal
)
766 delete m_imageListNormal
;
767 if (m_ownsImageListSmall
)
768 delete m_imageListSmall
;
769 if (m_ownsImageListState
)
770 delete m_imageListState
;
772 delete m_renameTimer
;
775 // ----------------------------------------------------------------------------
776 // set/get/change style
777 // ----------------------------------------------------------------------------
779 // Add or remove a single window style
780 void wxListCtrl::SetSingleStyle(long style
, bool add
)
782 long flag
= GetWindowStyleFlag();
784 // Get rid of conflicting styles
787 if ( style
& wxLC_MASK_TYPE
)
788 flag
= flag
& ~wxLC_MASK_TYPE
;
789 if ( style
& wxLC_MASK_ALIGN
)
790 flag
= flag
& ~wxLC_MASK_ALIGN
;
791 if ( style
& wxLC_MASK_SORT
)
792 flag
= flag
& ~wxLC_MASK_SORT
;
800 SetWindowStyleFlag(flag
);
803 // Set the whole window style
804 void wxListCtrl::SetWindowStyleFlag(long flag
)
806 if ( flag
!= m_windowStyle
)
808 m_windowStyle
= flag
;
812 m_genericImpl
->SetWindowStyleFlag(flag
);
819 void wxListCtrl::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
821 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
824 m_genericImpl
->SetSize(0, 0, width
, height
, sizeFlags
);
826 // determine if we need a horizontal scrollbar, and add it if so
830 for (int column
= 0; column
< GetColumnCount(); column
++)
832 totalWidth
+= m_dbImpl
->GetColumnWidth( column
);
835 if ( !(m_dbImpl
->GetFlags() & wxHSCROLL
) )
837 Boolean vertScrollBar
;
838 GetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), NULL
, &vertScrollBar
);
839 if (totalWidth
> width
)
840 SetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), true, vertScrollBar
);
842 SetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), false, vertScrollBar
);
847 wxSize
wxListCtrl::DoGetBestSize() const
849 return wxWindow::DoGetBestSize();
852 bool wxListCtrl::SetFont(const wxFont
& font
)
855 rv
= wxControl::SetFont(font
);
857 rv
= m_genericImpl
->SetFont(font
);
861 bool wxListCtrl::SetForegroundColour(const wxColour
& colour
)
865 rv
= m_genericImpl
->SetForegroundColour(colour
);
867 SetTextColour(colour
);
871 bool wxListCtrl::SetBackgroundColour(const wxColour
& colour
)
875 rv
= m_genericImpl
->SetBackgroundColour(colour
);
881 wxColour
wxListCtrl::GetBackgroundColour()
884 return m_genericImpl
->GetBackgroundColour();
891 // ----------------------------------------------------------------------------
893 // ----------------------------------------------------------------------------
895 // Gets information about this column
896 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
899 return m_genericImpl
->GetColumn(col
, item
);
905 wxColumnList::compatibility_iterator node
= m_colsInfo
.Item( col
);
906 wxASSERT_MSG( node
, _T("invalid column index in wxMacListCtrlItem") );
907 wxListItem
* column
= node
->GetData();
909 long mask
= column
->GetMask();
910 if (mask
& wxLIST_MASK_TEXT
)
911 item
.SetText(column
->GetText());
912 if (mask
& wxLIST_MASK_DATA
)
913 item
.SetData(column
->GetData());
914 if (mask
& wxLIST_MASK_IMAGE
)
915 item
.SetImage(column
->GetImage());
916 if (mask
& wxLIST_MASK_STATE
)
917 item
.SetState(column
->GetState());
918 if (mask
& wxLIST_MASK_FORMAT
)
919 item
.SetAlign(column
->GetAlign());
920 if (mask
& wxLIST_MASK_WIDTH
)
921 item
.SetWidth(column
->GetWidth());
927 // Sets information about this column
928 bool wxListCtrl::SetColumn(int col
, wxListItem
& item
)
931 return m_genericImpl
->SetColumn(col
, item
);
935 long mask
= item
.GetMask();
936 if ( col
>= (int)m_colsInfo
.GetCount() )
938 wxListItem
* listItem
= new wxListItem(item
);
939 m_colsInfo
.Append( listItem
);
944 GetColumn( col
, listItem
);
946 if (mask
& wxLIST_MASK_TEXT
)
947 listItem
.SetText(item
.GetText());
948 if (mask
& wxLIST_MASK_DATA
)
949 listItem
.SetData(item
.GetData());
950 if (mask
& wxLIST_MASK_IMAGE
)
951 listItem
.SetImage(item
.GetImage());
952 if (mask
& wxLIST_MASK_STATE
)
953 listItem
.SetState(item
.GetState());
954 if (mask
& wxLIST_MASK_FORMAT
)
955 listItem
.SetAlign(item
.GetAlign());
956 if (mask
& wxLIST_MASK_WIDTH
)
957 listItem
.SetWidth(item
.GetWidth());
960 // change the appearance in the databrowser.
961 DataBrowserListViewHeaderDesc columnDesc
;
962 columnDesc
.version
=kDataBrowserListViewLatestHeaderDesc
;
963 verify_noerr( m_dbImpl
->GetHeaderDesc( kMinColumnId
+ col
, &columnDesc
) );
966 if (item.GetMask() & wxLIST_MASK_TEXT)
970 enc = m_font.GetEncoding();
972 enc = wxLocale::GetSystemEncoding();
973 wxMacCFStringHolder cfTitle;
974 cfTitle.Assign( item.GetText() , enc );
975 if(columnDesc.titleString)
976 CFRelease(columnDesc.titleString);
977 columnDesc.titleString = cfTitle;
981 if (item
.GetMask() & wxLIST_MASK_IMAGE
&& item
.GetImage() != -1 )
983 columnDesc
.btnContentInfo
.contentType
= kControlContentIconRef
;
984 wxImageList
* imageList
= GetImageList(wxIMAGE_LIST_SMALL
);
985 if (imageList
&& imageList
->GetImageCount() > 0 )
987 wxBitmap bmp
= imageList
->GetBitmap( item
.GetImage() );
988 IconRef icon
= bmp
.GetBitmapData()->GetIconRef();
989 columnDesc
.btnContentInfo
.u
.iconRef
= icon
;
993 verify_noerr( m_dbImpl
->SetHeaderDesc( kMinColumnId
+ col
, &columnDesc
) );
999 int wxListCtrl::GetColumnCount() const
1002 return m_genericImpl
->GetColumnCount();
1007 m_dbImpl
->GetColumnCount(&count
);
1014 // Gets the column width
1015 int wxListCtrl::GetColumnWidth(int col
) const
1018 return m_genericImpl
->GetColumnWidth(col
);
1022 return m_dbImpl
->GetColumnWidth(col
);
1028 // Sets the column width
1029 bool wxListCtrl::SetColumnWidth(int col
, int width
)
1032 return m_genericImpl
->SetColumnWidth(col
, width
);
1036 int mywidth
= width
;
1037 if (width
== wxLIST_AUTOSIZE
|| width
== wxLIST_AUTOSIZE_USEHEADER
)
1042 for (int column
= 0; column
< GetColumnCount(); column
++)
1045 GetColumn(col
, colInfo
);
1047 colInfo
.SetWidth(width
);
1048 SetColumn(col
, colInfo
);
1050 m_dbImpl
->SetColumnWidth(col
, mywidth
);
1056 GetColumn(col
, colInfo
);
1058 colInfo
.SetWidth(width
);
1059 SetColumn(col
, colInfo
);
1060 m_dbImpl
->SetColumnWidth(col
, mywidth
);
1068 // Gets the number of items that can fit vertically in the
1069 // visible area of the list control (list or report view)
1070 // or the total number of items in the list control (icon
1071 // or small icon view)
1072 int wxListCtrl::GetCountPerPage() const
1075 return m_genericImpl
->GetCountPerPage();
1080 m_dbImpl
->GetDefaultRowHeight( &height
);
1082 return GetClientSize().y
/ height
;
1088 // Gets the edit control for editing labels.
1089 wxTextCtrl
* wxListCtrl::GetEditControl() const
1092 return m_genericImpl
->GetEditControl();
1097 // Gets information about the item
1098 bool wxListCtrl::GetItem(wxListItem
& info
) const
1101 return m_genericImpl
->GetItem(info
);
1107 if (info
.m_itemId
>= 0 && info
.m_itemId
< GetItemCount())
1108 m_dbImpl
->MacGetColumnInfo(info
.m_itemId
, info
.m_col
, info
);
1112 if (info
.m_itemId
>= 0 && info
.m_itemId
< GetItemCount())
1114 info
.SetText( OnGetItemText(info
.m_itemId
, info
.m_col
) );
1115 info
.SetImage( OnGetItemColumnImage(info
.m_itemId
, info
.m_col
) );
1116 if (info
.GetMask() & wxLIST_MASK_STATE
)
1118 if (IsDataBrowserItemSelected( m_dbImpl
->GetControlRef(), info
.m_itemId
+1 ))
1119 info
.SetState(info
.GetState() | wxLIST_STATE_SELECTED
);
1122 wxListItemAttr
* attrs
= OnGetItemAttr( info
.m_itemId
);
1125 info
.SetFont( attrs
->GetFont() );
1126 info
.SetBackgroundColour( attrs
->GetBackgroundColour() );
1127 info
.SetTextColour( attrs
->GetTextColour() );
1132 bool success
= true;
1136 // Sets information about the item
1137 bool wxListCtrl::SetItem(wxListItem
& info
)
1140 return m_genericImpl
->SetItem(info
);
1143 m_dbImpl
->MacSetColumnInfo( info
.m_itemId
, info
.m_col
, &info
);
1148 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
1151 return m_genericImpl
->SetItem(index
, col
, label
, imageId
);
1154 info
.m_text
= label
;
1155 info
.m_mask
= wxLIST_MASK_TEXT
;
1156 info
.m_itemId
= index
;
1160 info
.m_image
= imageId
;
1161 info
.m_mask
|= wxLIST_MASK_IMAGE
;
1163 return SetItem(info
);
1167 // Gets the item state
1168 int wxListCtrl::GetItemState(long item
, long stateMask
) const
1171 return m_genericImpl
->GetItemState(item
, stateMask
);
1175 if ( HasFlag(wxLC_VIRTUAL
) )
1177 if (stateMask
== wxLIST_STATE_SELECTED
)
1179 if (IsDataBrowserItemSelected( m_dbImpl
->GetControlRef(), item
+1 ))
1180 return wxLIST_STATE_SELECTED
;
1189 info
.m_mask
= wxLIST_MASK_STATE
;
1190 info
.m_stateMask
= stateMask
;
1191 info
.m_itemId
= item
;
1196 return info
.m_state
;
1203 // Sets the item state
1204 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
1207 return m_genericImpl
->SetItemState(item
, state
, stateMask
);
1211 DataBrowserSetOption option
= kDataBrowserItemsAdd
;
1212 if ( (stateMask
& wxLIST_STATE_SELECTED
) && state
== 0 )
1213 option
= kDataBrowserItemsRemove
;
1217 if ( HasFlag(wxLC_VIRTUAL
) )
1219 wxMacDataItemBrowserSelectionSuppressor
suppressor(m_dbImpl
);
1220 m_dbImpl
->SetSelectedAllItems(option
);
1224 for(int i
= 0; i
< GetItemCount();i
++)
1228 info
.m_mask
= wxLIST_MASK_STATE
;
1229 info
.m_stateMask
= stateMask
;
1230 info
.m_state
= state
;
1237 if ( HasFlag(wxLC_VIRTUAL
) )
1239 long itemID
= item
+1;
1240 bool isSelected
= IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), (DataBrowserItemID
)itemID
);
1241 bool isSelectedState
= (state
== wxLIST_STATE_SELECTED
);
1243 // toggle the selection state if wxListInfo state and actual state don't match.
1244 if ( (stateMask
& wxLIST_STATE_SELECTED
) && isSelected
!= isSelectedState
)
1246 SetDataBrowserSelectedItems(m_dbImpl
->GetControlRef(), 1, (DataBrowserItemID
*)&itemID
, option
);
1252 info
.m_itemId
= item
;
1253 info
.m_mask
= wxLIST_MASK_STATE
;
1254 info
.m_stateMask
= stateMask
;
1255 info
.m_state
= state
;
1256 return SetItem(info
);
1263 // Sets the item image
1264 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
1266 return SetItemColumnImage(item
, 0, image
);
1269 // Sets the item image
1270 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
1273 return m_genericImpl
->SetItemColumnImage(item
, column
, image
);
1277 info
.m_mask
= wxLIST_MASK_IMAGE
;
1278 info
.m_image
= image
;
1279 info
.m_itemId
= item
;
1280 info
.m_col
= column
;
1282 return SetItem(info
);
1285 // Gets the item text
1286 wxString
wxListCtrl::GetItemText(long item
) const
1289 return m_genericImpl
->GetItemText(item
);
1293 info
.m_mask
= wxLIST_MASK_TEXT
;
1294 info
.m_itemId
= item
;
1297 return wxEmptyString
;
1301 // Sets the item text
1302 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
1305 return m_genericImpl
->SetItemText(item
, str
);
1309 info
.m_mask
= wxLIST_MASK_TEXT
;
1310 info
.m_itemId
= item
;
1316 // Gets the item data
1317 long wxListCtrl::GetItemData(long item
) const
1320 return m_genericImpl
->GetItemData(item
);
1324 info
.m_mask
= wxLIST_MASK_DATA
;
1325 info
.m_itemId
= item
;
1332 // Sets the item data
1333 bool wxListCtrl::SetItemPtrData(long item
, wxUIntPtr data
)
1336 return m_genericImpl
->SetItemData(item
, data
);
1340 info
.m_mask
= wxLIST_MASK_DATA
;
1341 info
.m_itemId
= item
;
1344 return SetItem(info
);
1347 wxRect
wxListCtrl::GetViewRect() const
1349 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
1350 _T("wxListCtrl::GetViewRect() only works in icon mode") );
1353 return m_genericImpl
->GetViewRect();
1359 // Gets the item rectangle
1360 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
1363 return m_genericImpl
->GetItemRect(item
, rect
, code
);
1368 DataBrowserItemID id
;
1369 DataBrowserPropertyID col
= kMinColumnId
;
1371 DataBrowserPropertyPart part
= kDataBrowserPropertyEnclosingPart
;
1372 if ( code
== wxLIST_RECT_LABEL
)
1373 part
= kDataBrowserPropertyTextPart
;
1374 else if ( code
== wxLIST_RECT_ICON
)
1375 part
= kDataBrowserPropertyIconPart
;
1377 if ( !(GetWindowStyleFlag() & wxLC_VIRTUAL
) )
1379 wxMacDataItem
* thisItem
= m_dbImpl
->GetItemFromLine(item
);
1380 id
= (DataBrowserItemID
) thisItem
;
1385 GetDataBrowserItemPartBounds( m_dbImpl
->GetControlRef(), id
, col
, part
, &bounds
);
1387 rect
.x
= bounds
.left
;
1388 rect
.y
= bounds
.top
;
1389 rect
.width
= bounds
.right
- bounds
.left
; //GetClientSize().x; // we need the width of the whole row, not just the item.
1390 rect
.height
= bounds
.bottom
- bounds
.top
;
1391 //fprintf("id = %d, bounds = %d, %d, %d, %d\n", id, rect.x, rect.y, rect.width, rect.height);
1396 // Gets the item position
1397 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1400 return m_genericImpl
->GetItemPosition(item
, pos
);
1402 bool success
= false;
1407 GetItemRect(item
, itemRect
);
1408 pos
= itemRect
.GetPosition();
1415 // Sets the item position.
1416 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1419 return m_genericImpl
->SetItemPosition(item
, pos
);
1424 // Gets the number of items in the list control
1425 int wxListCtrl::GetItemCount() const
1428 return m_genericImpl
->GetItemCount();
1431 return m_dbImpl
->MacGetCount();
1436 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
1439 m_genericImpl
->SetItemSpacing(spacing
, isSmall
);
1442 wxSize
wxListCtrl::GetItemSpacing() const
1445 return m_genericImpl
->GetItemSpacing();
1447 return wxSize(0, 0);
1450 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1454 m_genericImpl
->SetItemTextColour(item
, col
);
1459 info
.m_itemId
= item
;
1460 info
.SetTextColour( col
);
1464 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1467 return m_genericImpl
->GetItemTextColour(item
);
1473 return info
.GetTextColour();
1475 return wxNullColour
;
1478 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1482 m_genericImpl
->SetItemBackgroundColour(item
, col
);
1487 info
.m_itemId
= item
;
1488 info
.SetBackgroundColour( col
);
1492 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1495 return m_genericImpl
->GetItemBackgroundColour(item
);
1501 return info
.GetBackgroundColour();
1503 return wxNullColour
;
1506 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
1510 m_genericImpl
->SetItemFont(item
, f
);
1515 info
.m_itemId
= item
;
1520 wxFont
wxListCtrl::GetItemFont( long item
) const
1523 return m_genericImpl
->GetItemFont(item
);
1529 return info
.GetFont();
1535 // Gets the number of selected items in the list control
1536 int wxListCtrl::GetSelectedItemCount() const
1539 return m_genericImpl
->GetSelectedItemCount();
1542 return m_dbImpl
->GetSelectedItemCount(NULL
, true);
1547 // Gets the text colour of the listview
1548 wxColour
wxListCtrl::GetTextColour() const
1551 return m_genericImpl
->GetTextColour();
1553 // TODO: we need owner drawn list items to customize text color.
1557 return wxNullColour
;
1560 // Sets the text colour of the listview
1561 void wxListCtrl::SetTextColour(const wxColour
& col
)
1565 m_genericImpl
->SetTextColour(col
);
1573 // Gets the index of the topmost visible item when in
1574 // list or report view
1575 long wxListCtrl::GetTopItem() const
1578 return m_genericImpl
->GetTopItem();
1583 long item
= HitTest( wxPoint(1, 1), flags
);
1584 if (flags
== wxLIST_HITTEST_ONITEM
)
1591 // Searches for an item, starting from 'item'.
1592 // 'geometry' is one of
1593 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1594 // 'state' is a state bit flag, one or more of
1595 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1596 // item can be -1 to find the first item that matches the
1598 // Returns the item or -1 if unsuccessful.
1599 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1602 return m_genericImpl
->GetNextItem(item
, geom
, state
);
1604 // TODO: implement all geometry and state options?
1607 if ( geom
== wxLIST_NEXT_ALL
|| geom
== wxLIST_NEXT_BELOW
)
1609 long count
= m_dbImpl
->MacGetCount() ;
1610 for ( long line
= item
+ 1 ; line
< count
; line
++ )
1612 DataBrowserItemID id
= line
+ 1;
1614 id
= (DataBrowserItemID
)m_dbImpl
->GetItemFromLine(line
);
1616 if ( (state
== wxLIST_STATE_DONTCARE
) )
1619 if ( (state
& wxLIST_STATE_SELECTED
) && IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), id
) )
1624 if ( geom
== wxLIST_NEXT_ABOVE
)
1628 item2
= m_dbImpl
->MacGetCount();
1630 for ( long line
= item2
- 1 ; line
>= 0; line
-- )
1632 DataBrowserItemID id
= line
+ 1;
1634 id
= (DataBrowserItemID
)m_dbImpl
->GetItemFromLine(line
);
1636 if ( (state
== wxLIST_STATE_DONTCARE
) )
1639 if ( (state
& wxLIST_STATE_SELECTED
) && IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), id
) )
1649 wxImageList
*wxListCtrl::GetImageList(int which
) const
1652 return m_genericImpl
->GetImageList(which
);
1654 if ( which
== wxIMAGE_LIST_NORMAL
)
1656 return m_imageListNormal
;
1658 else if ( which
== wxIMAGE_LIST_SMALL
)
1660 return m_imageListSmall
;
1662 else if ( which
== wxIMAGE_LIST_STATE
)
1664 return m_imageListState
;
1669 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1673 m_genericImpl
->SetImageList(imageList
, which
);
1677 if ( which
== wxIMAGE_LIST_NORMAL
)
1679 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1680 m_imageListNormal
= imageList
;
1681 m_ownsImageListNormal
= false;
1683 else if ( which
== wxIMAGE_LIST_SMALL
)
1685 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1686 m_imageListSmall
= imageList
;
1687 m_ownsImageListSmall
= false;
1689 else if ( which
== wxIMAGE_LIST_STATE
)
1691 if (m_ownsImageListState
) delete m_imageListState
;
1692 m_imageListState
= imageList
;
1693 m_ownsImageListState
= false;
1697 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1701 m_genericImpl
->AssignImageList(imageList
, which
);
1705 SetImageList(imageList
, which
);
1706 if ( which
== wxIMAGE_LIST_NORMAL
)
1707 m_ownsImageListNormal
= true;
1708 else if ( which
== wxIMAGE_LIST_SMALL
)
1709 m_ownsImageListSmall
= true;
1710 else if ( which
== wxIMAGE_LIST_STATE
)
1711 m_ownsImageListState
= true;
1714 // ----------------------------------------------------------------------------
1716 // ----------------------------------------------------------------------------
1718 // Arranges the items
1719 bool wxListCtrl::Arrange(int flag
)
1722 return m_genericImpl
->Arrange(flag
);
1727 bool wxListCtrl::DeleteItem(long item
)
1730 return m_genericImpl
->DeleteItem(item
);
1734 m_dbImpl
->MacDelete(item
);
1735 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ITEM
, GetId() );
1736 event
.SetEventObject( this );
1737 event
.m_itemIndex
= item
;
1738 GetEventHandler()->ProcessEvent( event
);
1744 // Deletes all items
1745 bool wxListCtrl::DeleteAllItems()
1748 return m_genericImpl
->DeleteAllItems();
1752 m_dbImpl
->MacClear();
1753 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetId() );
1754 event
.SetEventObject( this );
1755 GetEventHandler()->ProcessEvent( event
);
1760 // Deletes all items
1761 bool wxListCtrl::DeleteAllColumns()
1764 return m_genericImpl
->DeleteAllColumns();
1769 m_dbImpl
->GetColumnCount(&cols
);
1770 for (UInt32 col
= 0; col
< cols
; col
++)
1780 bool wxListCtrl::DeleteColumn(int col
)
1783 return m_genericImpl
->DeleteColumn(col
);
1787 OSStatus err
= m_dbImpl
->RemoveColumn(col
);
1788 return err
== noErr
;
1794 // Clears items, and columns if there are any.
1795 void wxListCtrl::ClearAll()
1799 m_genericImpl
->ClearAll();
1810 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1813 return m_genericImpl
->EditLabel(item
, textControlClass
);
1817 wxCHECK_MSG( (item
>= 0) && ((long)item
< GetItemCount()), NULL
,
1818 wxT("wrong index in wxListCtrl::EditLabel()") );
1820 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
1821 wxT("EditLabel() needs a text control") );
1823 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
1824 le
.SetEventObject( this );
1825 le
.m_itemIndex
= item
;
1827 GetItem( le
.m_item
);
1829 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
1831 // vetoed by user code
1835 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
1836 m_textctrlWrapper
= new wxListCtrlTextCtrlWrapper(this, text
, item
);
1837 return m_textctrlWrapper
->GetText();
1842 // End label editing, optionally cancelling the edit
1843 bool wxListCtrl::EndEditLabel(bool cancel
)
1845 // TODO: generic impl. doesn't have this method - is it needed for us?
1847 return true; // m_genericImpl->EndEditLabel(cancel);
1850 verify_noerr( SetDataBrowserEditItem(m_dbImpl
->GetControlRef(), kDataBrowserNoItem
, kMinColumnId
) );
1854 // Ensures this item is visible
1855 bool wxListCtrl::EnsureVisible(long item
)
1858 return m_genericImpl
->EnsureVisible(item
);
1862 wxMacDataItem
* dataItem
= m_dbImpl
->GetItemFromLine(item
);
1863 m_dbImpl
->RevealItem(dataItem
, kDataBrowserRevealWithoutSelecting
);
1869 // Find an item whose label matches this string, starting from the item after 'start'
1870 // or the beginning if 'start' is -1.
1871 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1874 return m_genericImpl
->FindItem(start
, str
, partial
);
1876 wxString str_upper
= str
.Upper();
1881 long count
= GetItemCount();
1885 wxString line_upper
= GetItemText(idx
).Upper();
1888 if (line_upper
== str_upper
)
1893 if (line_upper
.find(str_upper
) == 0)
1903 // Find an item whose data matches this data, starting from the item after 'start'
1904 // or the beginning if 'start' is -1.
1905 long wxListCtrl::FindItem(long start
, long data
)
1908 return m_genericImpl
->FindItem(start
, data
);
1913 long count
= GetItemCount();
1917 if (GetItemData(idx
) == data
)
1925 // Find an item nearest this position in the specified direction, starting from
1926 // the item after 'start' or the beginning if 'start' is -1.
1927 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1930 return m_genericImpl
->FindItem(start
, pt
, direction
);
1934 // Determines which item (if any) is at the specified point,
1935 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1937 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const
1940 return m_genericImpl
->HitTest(point
, flags
, ptrSubItem
);
1942 flags
= wxLIST_HITTEST_NOWHERE
;
1945 int colHeaderHeight
= 22; // TODO: Find a way to get this value from the db control?
1946 UInt16 rowHeight
= 0;
1947 m_dbImpl
->GetDefaultRowHeight(&rowHeight
);
1950 // get the actual row by taking scroll position into account
1951 UInt32 offsetX
, offsetY
;
1952 m_dbImpl
->GetScrollPosition( &offsetY
, &offsetX
);
1955 if ( !(GetWindowStyleFlag() & wxLC_NO_HEADER
) )
1956 y
-= colHeaderHeight
;
1961 int row
= y
/ rowHeight
;
1962 DataBrowserItemID id
;
1963 m_dbImpl
->GetItemID( (DataBrowserTableViewRowIndex
) row
, &id
);
1965 // TODO: Use GetDataBrowserItemPartBounds to return if we are in icon or label
1966 if ( !(GetWindowStyleFlag() & wxLC_VIRTUAL
) )
1968 wxMacListCtrlItem
* lcItem
;
1969 lcItem
= (wxMacListCtrlItem
*) id
;
1972 flags
= wxLIST_HITTEST_ONITEM
;
1978 if (row
< GetItemCount() )
1980 flags
= wxLIST_HITTEST_ONITEM
;
1989 int wxListCtrl::GetScrollPos(int orient
) const
1992 return m_genericImpl
->GetScrollPos(orient
);
1996 UInt32 offsetX
, offsetY
;
1997 m_dbImpl
->GetScrollPosition( &offsetY
, &offsetX
);
1998 if ( orient
== wxHORIZONTAL
)
2007 // Inserts an item, returning the index of the new item if successful,
2009 long wxListCtrl::InsertItem(wxListItem
& info
)
2011 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
2014 return m_genericImpl
->InsertItem(info
);
2016 if (m_dbImpl
&& !IsVirtual())
2018 int count
= GetItemCount();
2020 if (info
.m_itemId
> count
)
2021 info
.m_itemId
= count
;
2023 m_dbImpl
->MacInsertItem(info
.m_itemId
, &info
);
2025 wxListEvent
event( wxEVT_COMMAND_LIST_INSERT_ITEM
, GetId() );
2026 event
.SetEventObject( this );
2027 event
.m_itemIndex
= info
.m_itemId
;
2028 GetEventHandler()->ProcessEvent( event
);
2029 return info
.m_itemId
;
2034 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
2037 return m_genericImpl
->InsertItem(index
, label
);
2040 info
.m_text
= label
;
2041 info
.m_mask
= wxLIST_MASK_TEXT
;
2042 info
.m_itemId
= index
;
2043 return InsertItem(info
);
2046 // Inserts an image item
2047 long wxListCtrl::InsertItem(long index
, int imageIndex
)
2050 return m_genericImpl
->InsertItem(index
, imageIndex
);
2053 info
.m_image
= imageIndex
;
2054 info
.m_mask
= wxLIST_MASK_IMAGE
;
2055 info
.m_itemId
= index
;
2056 return InsertItem(info
);
2059 // Inserts an image/string item
2060 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
2063 return m_genericImpl
->InsertItem(index
, label
, imageIndex
);
2066 info
.m_image
= imageIndex
;
2067 info
.m_text
= label
;
2068 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
2069 info
.m_itemId
= index
;
2070 return InsertItem(info
);
2073 // For list view mode (only), inserts a column.
2074 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
2077 return m_genericImpl
->InsertColumn(col
, item
);
2081 int width
= item
.GetWidth();
2082 if ( !(item
.GetMask() & wxLIST_MASK_WIDTH
) )
2085 DataBrowserPropertyType type
= kDataBrowserCustomType
; //kDataBrowserTextType;
2086 wxImageList
* imageList
= GetImageList(wxIMAGE_LIST_SMALL
);
2087 if (imageList
&& imageList
->GetImageCount() > 0)
2089 wxBitmap bmp
= imageList
->GetBitmap(0);
2091 // type = kDataBrowserIconAndTextType;
2094 SInt16 just
= teFlushDefault
;
2095 if (item
.GetMask() & wxLIST_MASK_FORMAT
)
2097 if (item
.GetAlign() == wxLIST_FORMAT_LEFT
)
2099 else if (item
.GetAlign() == wxLIST_FORMAT_CENTER
)
2101 else if (item
.GetAlign() == wxLIST_FORMAT_RIGHT
)
2102 just
= teFlushRight
;
2104 m_dbImpl
->InsertColumn(col
, type
, item
.GetText(), just
, width
);
2105 SetColumn(col
, item
);
2107 // set/remove options based on the wxListCtrl type.
2108 DataBrowserTableViewColumnID id
;
2109 m_dbImpl
->GetColumnIDFromIndex(col
, &id
);
2110 DataBrowserPropertyFlags flags
;
2111 verify_noerr(m_dbImpl
->GetPropertyFlags(id
, &flags
));
2112 if (GetWindowStyleFlag() & wxLC_EDIT_LABELS
)
2113 flags
|= kDataBrowserPropertyIsEditable
;
2115 if (GetWindowStyleFlag() & wxLC_VIRTUAL
){
2116 flags
&= ~kDataBrowserListViewSortableColumn
;
2118 verify_noerr(m_dbImpl
->SetPropertyFlags(id
, flags
));
2124 long wxListCtrl::InsertColumn(long col
,
2125 const wxString
& heading
,
2130 return m_genericImpl
->InsertColumn(col
, heading
, format
, width
);
2133 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
2134 item
.m_text
= heading
;
2137 item
.m_mask
|= wxLIST_MASK_WIDTH
;
2138 item
.m_width
= width
;
2140 item
.m_format
= format
;
2142 return InsertColumn(col
, item
);
2145 // scroll the control by the given number of pixels (exception: in list view,
2146 // dx is interpreted as number of columns)
2147 bool wxListCtrl::ScrollList(int dx
, int dy
)
2150 return m_genericImpl
->ScrollList(dx
, dy
);
2154 m_dbImpl
->SetScrollPosition(dx
, dy
);
2160 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
2163 return m_genericImpl
->SortItems(fn
, data
);
2168 m_compareFuncData
= data
;
2169 SortDataBrowserContainer( m_dbImpl
->GetControlRef(), kDataBrowserNoItem
, true);
2171 // we need to do this after each call, else we get a crash from wxPython when
2172 // SortItems is called the second time.
2173 m_compareFunc
= NULL
;
2174 m_compareFuncData
= 0;
2180 void wxListCtrl::OnRenameTimer()
2182 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2184 EditLabel( m_current
);
2187 bool wxListCtrl::OnRenameAccept(long itemEdit
, const wxString
& value
)
2189 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetId() );
2190 le
.SetEventObject( this );
2191 le
.m_itemIndex
= itemEdit
;
2193 GetItem( le
.m_item
);
2194 le
.m_item
.m_text
= value
;
2195 return !GetEventHandler()->ProcessEvent( le
) ||
2199 void wxListCtrl::OnRenameCancelled(long itemEdit
)
2201 // let owner know that the edit was cancelled
2202 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2204 le
.SetEditCanceled(true);
2206 le
.SetEventObject( this );
2207 le
.m_itemIndex
= itemEdit
;
2209 GetItem( le
.m_item
);
2210 GetEventHandler()->ProcessEvent( le
);
2213 // ----------------------------------------------------------------------------
2214 // virtual list controls
2215 // ----------------------------------------------------------------------------
2217 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
2219 // this is a pure virtual function, in fact - which is not really pure
2220 // because the controls which are not virtual don't need to implement it
2221 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2223 return wxEmptyString
;
2226 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
2228 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
2230 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
2234 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
2237 return OnGetItemImage(item
);
2242 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
2244 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
2245 _T("invalid item index in OnGetItemAttr()") );
2247 // no attributes by default
2251 void wxListCtrl::SetItemCount(long count
)
2253 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2257 m_genericImpl
->SetItemCount(count
);
2263 // we need to temporarily disable the new item creation notification
2264 // procedure to speed things up
2265 // FIXME: Even this doesn't seem to help much...
2267 // FIXME: Find a more efficient way to do this.
2268 m_dbImpl
->MacClear();
2270 DataBrowserCallbacks callbacks
;
2271 DataBrowserItemNotificationUPP itemUPP
;
2272 GetDataBrowserCallbacks(m_dbImpl
->GetControlRef(), &callbacks
);
2273 itemUPP
= callbacks
.u
.v1
.itemNotificationCallback
;
2274 callbacks
.u
.v1
.itemNotificationCallback
= 0;
2275 m_dbImpl
->SetCallbacks(&callbacks
);
2276 ::AddDataBrowserItems(m_dbImpl
->GetControlRef(), kDataBrowserNoItem
,
2277 count
, NULL
, kDataBrowserItemNoProperty
);
2278 callbacks
.u
.v1
.itemNotificationCallback
= itemUPP
;
2279 m_dbImpl
->SetCallbacks(&callbacks
);
2284 void wxListCtrl::RefreshItem(long item
)
2288 m_genericImpl
->RefreshItem(item
);
2293 GetItemRect(item
, rect
);
2297 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
2301 m_genericImpl
->RefreshItems(itemFrom
, itemTo
);
2305 wxRect rect1
, rect2
;
2306 GetItemRect(itemFrom
, rect1
);
2307 GetItemRect(itemTo
, rect2
);
2309 wxRect rect
= rect1
;
2310 rect
.height
= rect2
.GetBottom() - rect1
.GetTop();
2315 void wxListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
2317 #if wxUSE_DRAG_AND_DROP
2319 m_genericImpl
->SetDropTarget( dropTarget
);
2322 wxWindow::SetDropTarget( dropTarget
);
2326 wxDropTarget
*wxListCtrl::GetDropTarget() const
2328 #if wxUSE_DRAG_AND_DROP
2330 return m_genericImpl
->GetDropTarget();
2333 return wxWindow::GetDropTarget();
2338 #if wxABI_VERSION >= 20801
2339 void wxListCtrl::SetFocus()
2343 m_genericImpl
->SetFocus();
2347 wxWindow::SetFocus();
2351 // wxMac internal data structures
2353 wxMacListCtrlItem::~wxMacListCtrlItem()
2357 void wxMacListCtrlItem::Notification(wxMacDataItemBrowserControl
*owner
,
2358 DataBrowserItemNotification message
,
2359 DataBrowserItemDataRef itemData
) const
2362 wxMacDataBrowserListCtrlControl
*lb
= wxDynamicCast(owner
, wxMacDataBrowserListCtrlControl
);
2364 // we want to depend on as little as possible to make sure tear-down of controls is safe
2365 if ( message
== kDataBrowserItemRemoved
)
2367 if ( lb
!= NULL
&& lb
->GetClientDataType() == wxClientData_Object
)
2369 delete (wxClientData
*) (m_data
);
2375 else if ( message
== kDataBrowserItemAdded
)
2377 // we don't issue events on adding, the item is not really stored in the list yet, so we
2378 // avoid asserts by gettting out now
2382 wxListCtrl
*list
= wxDynamicCast( owner
->GetPeer() , wxListCtrl
);
2385 bool trigger
= false;
2387 wxListEvent
event( wxEVT_COMMAND_LIST_ITEM_SELECTED
, list
->GetId() );
2388 bool isSingle
= (list
->GetWindowStyle() & wxLC_SINGLE_SEL
) != 0;
2390 event
.SetEventObject( list
);
2391 event
.m_itemIndex
= owner
->GetLineFromItem( this ) ;
2392 event
.m_item
.m_itemId
= event
.m_itemIndex
;
2393 list
->GetItem(event
.m_item
);
2397 case kDataBrowserItemDeselected
:
2398 event
.SetEventType(wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2400 trigger
= !lb
->IsSelectionSuppressed();
2403 case kDataBrowserItemSelected
:
2404 trigger
= !lb
->IsSelectionSuppressed();
2407 case kDataBrowserItemDoubleClicked
:
2408 event
.SetEventType( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2412 case kDataBrowserEditStarted
:
2413 // TODO : how to veto ?
2414 event
.SetEventType( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
) ;
2418 case kDataBrowserEditStopped
:
2419 // TODO probably trigger only upon the value store callback, because
2420 // here IIRC we cannot veto
2421 event
.SetEventType( wxEVT_COMMAND_LIST_END_LABEL_EDIT
) ;
2431 // direct notification is not always having the listbox GetSelection() having in synch with event
2432 wxPostEvent( list
->GetEventHandler(), event
);
2438 IMPLEMENT_DYNAMIC_CLASS(wxMacDataBrowserListCtrlControl
, wxMacDataItemBrowserControl
)
2440 wxMacDataBrowserListCtrlControl::wxMacDataBrowserListCtrlControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
)
2441 : wxMacDataItemBrowserControl( peer
, pos
, size
, style
)
2443 OSStatus err
= noErr
;
2444 m_clientDataItemsType
= wxClientData_None
;
2445 m_isVirtual
= false;
2448 if ( style
& wxLC_VIRTUAL
)
2451 DataBrowserSelectionFlags options
= kDataBrowserDragSelect
;
2452 if ( style
& wxLC_SINGLE_SEL
)
2454 options
|= kDataBrowserSelectOnlyOne
;
2458 options
|= kDataBrowserCmdTogglesSelection
;
2461 err
= SetSelectionFlags( options
);
2462 verify_noerr( err
);
2464 DataBrowserCustomCallbacks callbacks
;
2465 InitializeDataBrowserCustomCallbacks( &callbacks
, kDataBrowserLatestCustomCallbacks
);
2467 if ( gDataBrowserDrawItemUPP
== NULL
)
2468 gDataBrowserDrawItemUPP
= NewDataBrowserDrawItemUPP(DataBrowserDrawItemProc
);
2470 if ( gDataBrowserHitTestUPP
== NULL
)
2471 gDataBrowserHitTestUPP
= NewDataBrowserHitTestUPP(DataBrowserHitTestProc
);
2473 callbacks
.u
.v1
.drawItemCallback
= gDataBrowserDrawItemUPP
;
2474 callbacks
.u
.v1
.hitTestCallback
= gDataBrowserHitTestUPP
;
2476 SetDataBrowserCustomCallbacks( GetControlRef(), &callbacks
);
2478 if ( style
& wxLC_LIST
)
2480 InsertColumn(0, kDataBrowserIconAndTextType
, wxEmptyString
, -1, -1);
2481 verify_noerr( AutoSizeColumns() );
2484 if ( style
& wxLC_LIST
|| style
& wxLC_NO_HEADER
)
2485 verify_noerr( SetHeaderButtonHeight( 0 ) );
2488 SetSortProperty( kMinColumnId
- 1 );
2490 SetSortProperty( kMinColumnId
);
2492 m_sortOrder
= SortOrder_None
;
2494 if ( style
& wxLC_SORT_DESCENDING
)
2496 SetSortOrder( kDataBrowserOrderDecreasing
);
2498 else if ( style
& wxLC_SORT_ASCENDING
)
2500 SetSortOrder( kDataBrowserOrderIncreasing
);
2503 if ( style
& wxLC_VRULES
)
2505 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
2506 verify_noerr( DataBrowserChangeAttributes(m_controlRef
, kDataBrowserAttributeListViewDrawColumnDividers
, kDataBrowserAttributeNone
) );
2510 verify_noerr( SetHiliteStyle(kDataBrowserTableViewFillHilite
) );
2511 verify_noerr( SetHasScrollBars( (style
& wxHSCROLL
) != 0 , true ) );
2514 pascal Boolean
wxMacDataBrowserListCtrlControl::DataBrowserEditTextProc(
2516 DataBrowserItemID itemID
,
2517 DataBrowserPropertyID property
,
2518 CFStringRef theString
,
2519 Rect
*maxEditTextRect
,
2520 Boolean
*shrinkToFit
)
2522 Boolean result
= false;
2523 wxMacDataBrowserListCtrlControl
* ctl
= wxDynamicCast(wxMacControl::GetReferenceFromNativeControl( browser
), wxMacDataBrowserListCtrlControl
);
2526 result
= ctl
->ConfirmEditText(itemID
, property
, theString
, maxEditTextRect
, shrinkToFit
);
2527 theString
= CFSTR("Hello!");
2532 bool wxMacDataBrowserListCtrlControl::ConfirmEditText(
2533 DataBrowserItemID itemID
,
2534 DataBrowserPropertyID property
,
2535 CFStringRef theString
,
2536 Rect
*maxEditTextRect
,
2537 Boolean
*shrinkToFit
)
2542 pascal void wxMacDataBrowserListCtrlControl::DataBrowserDrawItemProc(
2544 DataBrowserItemID itemID
,
2545 DataBrowserPropertyID property
,
2546 DataBrowserItemState itemState
,
2547 const Rect
*itemRect
,
2549 Boolean colorDevice
)
2551 wxMacDataBrowserListCtrlControl
* ctl
= wxDynamicCast(wxMacControl::GetReferenceFromNativeControl( browser
), wxMacDataBrowserListCtrlControl
);
2554 ctl
->DrawItem(itemID
, property
, itemState
, itemRect
, gdDepth
, colorDevice
);
2558 // routines needed for DrawItem
2563 kTextBoxHeight
= 14,
2564 kIconTextSpacingV
= 2,
2566 kContentHeight
= kIconHeight
+ kTextBoxHeight
+ kIconTextSpacingV
2569 static void calculateCGDrawingBounds(CGRect inItemRect
, CGRect
*outIconRect
, CGRect
*outTextRect
, bool hasIcon
= false)
2572 float iconH
, iconW
= 0;
2573 float padding
= kItemPadding
;
2576 iconH
= kIconHeight
;
2578 padding
= padding
*2;
2581 textBottom
= inItemRect
.origin
.y
;
2583 *outIconRect
= CGRectMake(inItemRect
.origin
.x
+ kItemPadding
,
2584 textBottom
+ kIconTextSpacingV
, kIconWidth
,
2587 *outTextRect
= CGRectMake(inItemRect
.origin
.x
+ padding
+ iconW
,
2588 textBottom
+ kIconTextSpacingV
, inItemRect
.size
.width
- padding
- iconW
,
2589 inItemRect
.size
.height
- kIconTextSpacingV
);
2592 void wxMacDataBrowserListCtrlControl::DrawItem(
2593 DataBrowserItemID itemID
,
2594 DataBrowserPropertyID property
,
2595 DataBrowserItemState itemState
,
2596 const Rect
*itemRect
,
2598 Boolean colorDevice
)
2601 wxFont font
= wxNullFont
;
2603 short listColumn
= property
- kMinColumnId
;
2605 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2606 wxMacListCtrlItem
* lcItem
;
2607 wxColour color
= *wxBLACK
;
2608 wxColour bgColor
= wxNullColour
;
2610 if (listColumn
>= 0)
2614 lcItem
= (wxMacListCtrlItem
*) itemID
;
2615 if (lcItem
->HasColumnInfo(listColumn
)){
2616 wxListItem
* item
= lcItem
->GetColumnInfo(listColumn
);
2618 // we always use the 0 column to get font and text/background colors.
2619 if (lcItem
->HasColumnInfo(0))
2621 wxListItem
* firstItem
= lcItem
->GetColumnInfo(0);
2622 color
= firstItem
->GetTextColour();
2623 bgColor
= firstItem
->GetBackgroundColour();
2624 font
= firstItem
->GetFont();
2627 if (item
->GetMask() & wxLIST_MASK_TEXT
)
2628 text
= item
->GetText();
2629 if (item
->GetMask() & wxLIST_MASK_IMAGE
)
2630 imgIndex
= item
->GetImage();
2636 long itemNum
= (long)itemID
-1;
2637 if (itemNum
>= 0 && itemNum
< list
->GetItemCount())
2639 text
= list
->OnGetItemText( itemNum
, listColumn
);
2640 imgIndex
= list
->OnGetItemColumnImage( itemNum
, listColumn
);
2641 wxListItemAttr
* attrs
= list
->OnGetItemAttr( itemNum
);
2644 if (attrs
->HasBackgroundColour())
2645 bgColor
= attrs
->GetBackgroundColour();
2646 if (attrs
->HasTextColour())
2647 color
= attrs
->GetTextColour();
2648 if (attrs
->HasFont())
2649 font
= attrs
->GetFont();
2655 wxColour listBgColor
= list
->GetBackgroundColour();
2656 if (bgColor
== wxNullColour
)
2657 bgColor
= listBgColor
;
2659 wxFont listFont
= list
->GetFont();
2660 if (font
== wxNullFont
)
2663 wxMacCFStringHolder cfString
;
2664 cfString
.Assign( text
, wxLocale::GetSystemEncoding() );
2667 CGRect enclosingCGRect
, iconCGRect
, textCGRect
;
2669 ThemeDrawingState savedState
= NULL
;
2670 CGContextRef context
= (CGContextRef
)list
->MacGetDrawingContext();
2671 RGBColor labelColor
;
2673 labelColor
.green
= 0;
2674 labelColor
.blue
= 0;
2676 RGBColor backgroundColor
;
2677 backgroundColor
.red
= 255;
2678 backgroundColor
.green
= 255;
2679 backgroundColor
.blue
= 255;
2681 GetDataBrowserItemPartBounds(GetControlRef(), itemID
, property
, kDataBrowserPropertyEnclosingPart
,
2684 enclosingCGRect
= CGRectMake(enclosingRect
.left
,
2686 enclosingRect
.right
- enclosingRect
.left
,
2687 enclosingRect
.bottom
- enclosingRect
.top
);
2689 bool hasFocus
= (wxWindow::FindFocus() == list
);
2690 active
= IsControlActive(GetControlRef());
2692 // don't paint the background over the vertical rule line
2693 if ( list
->GetWindowStyleFlag() & wxLC_VRULES
)
2695 enclosingCGRect
.origin
.x
+= 1;
2696 enclosingCGRect
.size
.width
-= 1;
2698 if (itemState
== kDataBrowserItemIsSelected
)
2701 GetThemeDrawingState(&savedState
);
2703 if (active
&& hasFocus
)
2705 GetThemeBrushAsColor(kThemeBrushAlternatePrimaryHighlightColor
, 32, true, &backgroundColor
);
2706 GetThemeTextColor(kThemeTextColorWhite
, gdDepth
, colorDevice
, &labelColor
);
2710 GetThemeBrushAsColor(kThemeBrushSecondaryHighlightColor
, 32, true, &backgroundColor
);
2711 GetThemeTextColor(kThemeTextColorBlack
, gdDepth
, colorDevice
, &labelColor
);
2713 CGContextSaveGState(context
);
2715 CGContextSetRGBFillColor(context
, (float)backgroundColor
.red
/ (float)USHRT_MAX
,
2716 (float)backgroundColor
.green
/ (float)USHRT_MAX
,
2717 (float)backgroundColor
.blue
/ (float)USHRT_MAX
, 1.0);
2718 CGContextFillRect(context
, enclosingCGRect
);
2720 CGContextRestoreGState(context
);
2726 labelColor
= MAC_WXCOLORREF( color
.GetPixel() );
2727 else if (list
->GetTextColour().Ok())
2728 labelColor
= MAC_WXCOLORREF( list
->GetTextColour().GetPixel() );
2732 backgroundColor
= MAC_WXCOLORREF( bgColor
.GetPixel() );
2733 CGContextSaveGState(context
);
2735 CGContextSetRGBFillColor(context
, (float)backgroundColor
.red
/ (float)USHRT_MAX
,
2736 (float)backgroundColor
.green
/ (float)USHRT_MAX
,
2737 (float)backgroundColor
.blue
/ (float)USHRT_MAX
, 1.0);
2738 CGContextFillRect(context
, enclosingCGRect
);
2740 CGContextRestoreGState(context
);
2744 calculateCGDrawingBounds(enclosingCGRect
, &iconCGRect
, &textCGRect
, (imgIndex
!= -1) );
2748 wxImageList
* imageList
= list
->GetImageList(wxIMAGE_LIST_SMALL
);
2749 if (imageList
&& imageList
->GetImageCount() > 0){
2750 wxBitmap bmp
= imageList
->GetBitmap(imgIndex
);
2751 IconRef icon
= bmp
.GetBitmapData()->GetIconRef();
2753 CGContextSaveGState(context
);
2754 CGContextTranslateCTM(context
, 0,iconCGRect
.origin
.y
+ CGRectGetMaxY(iconCGRect
));
2755 CGContextScaleCTM(context
,1.0f
,-1.0f
);
2756 PlotIconRefInContext(context
, &iconCGRect
, kAlignNone
,
2757 active
? kTransformNone
: kTransformDisabled
, NULL
,
2758 kPlotIconRefNormalFlags
, icon
);
2760 CGContextRestoreGState(context
);
2764 HIThemeTextHorizontalFlush hFlush
= kHIThemeTextHorizontalFlushLeft
;
2765 UInt16 fontID
= kThemeViewsFont
;
2769 if (font
.GetFamily() != wxFONTFAMILY_DEFAULT
)
2770 fontID
= font
.MacGetThemeFontID();
2772 // FIXME: replace these with CG or ATSUI calls so we can remove this #ifndef.
2774 ::TextSize( (short)(font
.MacGetFontSize()) ) ;
2775 ::TextFace( font
.MacGetFontStyle() ) ;
2780 list
->GetColumn(listColumn
, item
);
2781 if (item
.GetMask() & wxLIST_MASK_FORMAT
)
2783 if (item
.GetAlign() == wxLIST_FORMAT_LEFT
)
2784 hFlush
= kHIThemeTextHorizontalFlushLeft
;
2785 else if (item
.GetAlign() == wxLIST_FORMAT_CENTER
)
2786 hFlush
= kHIThemeTextHorizontalFlushCenter
;
2787 else if (item
.GetAlign() == wxLIST_FORMAT_RIGHT
)
2789 hFlush
= kHIThemeTextHorizontalFlushRight
;
2790 textCGRect
.origin
.x
-= kItemPadding
; // give a little extra paddding
2794 HIThemeTextInfo info
;
2795 info
.version
= kHIThemeTextInfoVersionZero
;
2796 info
.state
= active
? kThemeStateActive
: kThemeStateInactive
;
2797 info
.fontID
= fontID
;
2798 info
.horizontalFlushness
= hFlush
;
2799 info
.verticalFlushness
= kHIThemeTextVerticalFlushCenter
;
2800 info
.options
= kHIThemeTextBoxOptionNone
;
2801 info
.truncationPosition
= kHIThemeTextTruncationEnd
;
2802 info
.truncationMaxLines
= 1;
2804 CGContextSaveGState(context
);
2805 CGContextSetRGBFillColor (context
, (float)labelColor
.red
/ (float)USHRT_MAX
,
2806 (float)labelColor
.green
/ (float)USHRT_MAX
,
2807 (float)labelColor
.blue
/ (float)USHRT_MAX
, 1.0);
2809 HIThemeDrawTextBox(cfString
, &textCGRect
, &info
, context
, kHIThemeOrientationNormal
);
2811 CGContextRestoreGState(context
);
2813 if (savedState
!= NULL
)
2814 SetThemeDrawingState(savedState
, true);
2817 OSStatus
wxMacDataBrowserListCtrlControl::GetSetItemData(DataBrowserItemID itemID
,
2818 DataBrowserPropertyID property
,
2819 DataBrowserItemDataRef itemData
,
2820 Boolean changeValue
)
2824 short listColumn
= property
- kMinColumnId
;
2826 OSStatus err
= errDataBrowserPropertyNotSupported
;
2827 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2828 wxMacListCtrlItem
* lcItem
;
2830 if (listColumn
>= 0)
2834 lcItem
= (wxMacListCtrlItem
*) itemID
;
2835 if (lcItem
&& lcItem
->HasColumnInfo(listColumn
)){
2836 wxListItem
* item
= lcItem
->GetColumnInfo(listColumn
);
2837 if (item
->GetMask() & wxLIST_MASK_TEXT
)
2838 text
= item
->GetText();
2839 if (item
->GetMask() & wxLIST_MASK_IMAGE
)
2840 imgIndex
= item
->GetImage();
2845 long itemNum
= (long)itemID
-1;
2846 if (itemNum
>= 0 && itemNum
< list
->GetItemCount())
2848 text
= list
->OnGetItemText( itemNum
, listColumn
);
2849 imgIndex
= list
->OnGetItemColumnImage( itemNum
, listColumn
);
2858 case kDataBrowserItemIsEditableProperty
:
2859 if ( list
&& list
->HasFlag( wxLC_EDIT_LABELS
) )
2861 verify_noerr(SetDataBrowserItemDataBooleanValue( itemData
, true ));
2865 if ( property
>= kMinColumnId
)
2867 wxMacCFStringHolder
cfStr(text
);
2868 verify_noerr( ::SetDataBrowserItemDataText( itemData
, cfStr
) );
2872 if ( imgIndex
!= -1 )
2874 wxImageList
* imageList
= list
->GetImageList(wxIMAGE_LIST_SMALL
);
2875 if (imageList
&& imageList
->GetImageCount() > 0){
2876 wxBitmap bmp
= imageList
->GetBitmap(imgIndex
);
2877 IconRef icon
= bmp
.GetBitmapData()->GetIconRef();
2878 ::SetDataBrowserItemDataIcon(itemData
, icon
);
2892 if ( property
>= kMinColumnId
)
2894 short listColumn
= property
- kMinColumnId
;
2896 // TODO probably send the 'end edit' from here, as we
2897 // can then deal with the veto
2899 verify_noerr( GetDataBrowserItemDataText( itemData
, &sr
) ) ;
2900 wxMacCFStringHolder
cfStr(sr
) ;;
2902 list
->SetItem( (long)itemData
-1 , listColumn
, cfStr
.AsString() ) ;
2906 lcItem
->SetColumnTextValue( listColumn
, cfStr
.AsString() );
2916 void wxMacDataBrowserListCtrlControl::ItemNotification(DataBrowserItemID itemID
,
2917 DataBrowserItemNotification message
,
2918 DataBrowserItemDataRef itemData
)
2920 // we want to depend on as little as possible to make sure tear-down of controls is safe
2921 if ( message
== kDataBrowserItemRemoved
)
2923 // make sure MacDelete does the proper teardown.
2926 else if ( message
== kDataBrowserItemAdded
)
2928 // we don't issue events on adding, the item is not really stored in the list yet, so we
2929 // avoid asserts by getting out now
2933 wxListCtrl
*list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2936 bool trigger
= false;
2938 wxListEvent
event( wxEVT_COMMAND_LIST_ITEM_SELECTED
, list
->GetId() );
2939 bool isSingle
= (list
->GetWindowStyle() & wxLC_SINGLE_SEL
) != 0;
2941 event
.SetEventObject( list
);
2942 if ( !list
->IsVirtual() )
2944 DataBrowserTableViewRowIndex result
= 0;
2945 verify_noerr( GetItemRow( itemID
, &result
) ) ;
2946 event
.m_itemIndex
= result
;
2950 event
.m_itemIndex
= (long)itemID
-1;
2952 event
.m_item
.m_itemId
= event
.m_itemIndex
;
2953 list
->GetItem(event
.m_item
);
2957 case kDataBrowserItemDeselected
:
2958 event
.SetEventType(wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2960 trigger
= !IsSelectionSuppressed();
2963 case kDataBrowserItemSelected
:
2964 trigger
= !IsSelectionSuppressed();
2968 case kDataBrowserItemDoubleClicked
:
2969 event
.SetEventType( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2973 case kDataBrowserEditStarted
:
2974 // TODO : how to veto ?
2975 event
.SetEventType( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
) ;
2979 case kDataBrowserEditStopped
:
2980 // TODO probably trigger only upon the value store callback, because
2981 // here IIRC we cannot veto
2982 event
.SetEventType( wxEVT_COMMAND_LIST_END_LABEL_EDIT
) ;
2992 // direct notification is not always having the listbox GetSelection() having in synch with event
2993 wxPostEvent( list
->GetEventHandler(), event
);
2998 Boolean
wxMacDataBrowserListCtrlControl::CompareItems(DataBrowserItemID itemOneID
,
2999 DataBrowserItemID itemTwoID
,
3000 DataBrowserPropertyID sortProperty
)
3003 bool retval
= false;
3005 wxString otherItemText
;
3007 long otherItemOrder
;
3009 int colId
= sortProperty
- kMinColumnId
;
3011 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
3013 DataBrowserSortOrder sort
;
3014 verify_noerr(GetSortOrder(&sort
));
3020 wxMacListCtrlItem
* item
= (wxMacListCtrlItem
*)itemOneID
;
3021 wxMacListCtrlItem
* otherItem
= (wxMacListCtrlItem
*)itemTwoID
;
3023 itemOrder
= item
->GetOrder();
3024 otherItemOrder
= item
->GetOrder();
3026 wxListCtrlCompare func
= list
->GetCompareFunc();
3031 if (item
&& item
->HasColumnInfo(0))
3032 item1
= item
->GetColumnInfo(0)->GetData();
3033 if (otherItem
&& otherItem
->HasColumnInfo(0))
3034 item2
= otherItem
->GetColumnInfo(0)->GetData();
3036 if (item1
> -1 && item2
> -1)
3038 int result
= func(item1
, item2
, list
->GetCompareFuncData());
3039 if (sort
== kDataBrowserOrderIncreasing
)
3046 // we can't use the native control's sorting abilities, so just
3048 return itemOrder
< otherItemOrder
;
3053 long itemNum
= (long)itemOneID
;
3054 long otherItemNum
= (long)itemTwoID
;
3056 // virtual listctrls don't support sorting
3057 return itemNum
< otherItemNum
;
3061 // fallback for undefined cases
3062 retval
= itemOneID
< itemTwoID
;
3068 wxMacDataBrowserListCtrlControl::~wxMacDataBrowserListCtrlControl()
3072 void wxMacDataBrowserListCtrlControl::MacSetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
* item
)
3074 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
3075 wxASSERT_MSG( dataItem
, _T("could not obtain wxMacDataItem for row in MacSetColumnInfo. Is row a valid wxListCtrl row?") );
3078 wxMacListCtrlItem
* listItem
= wx_static_cast(wxMacListCtrlItem
*,dataItem
);
3079 bool hasInfo
= listItem
->HasColumnInfo( column
);
3080 listItem
->SetColumnInfo( column
, item
);
3081 listItem
->SetOrder(row
);
3082 UpdateState(dataItem
, item
);
3084 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
3086 // NB: When this call was made before a control was completely shown, it would
3087 // update the item prematurely (i.e. no text would be listed) and, on show,
3088 // only the sorted column would be refreshed, meaning only first column text labels
3089 // would be shown. Making sure not to update items until the control is visible
3090 // seems to fix this issue.
3091 if (hasInfo
&& list
->IsShown())
3092 UpdateItem( wxMacDataBrowserRootContainer
, listItem
, kMinColumnId
+ column
);
3096 // apply changes that need to happen immediately, rather than when the
3097 // databrowser control fires a callback.
3098 void wxMacDataBrowserListCtrlControl::UpdateState(wxMacDataItem
* dataItem
, wxListItem
* listItem
)
3100 bool isSelected
= IsItemSelected( dataItem
);
3101 bool isSelectedState
= (listItem
->GetState() == wxLIST_STATE_SELECTED
);
3103 // toggle the selection state if wxListInfo state and actual state don't match.
3104 if ( listItem
->GetMask() & wxLIST_MASK_STATE
&& isSelected
!= isSelectedState
)
3106 DataBrowserSetOption options
= kDataBrowserItemsAdd
;
3107 if (!isSelectedState
)
3108 options
= kDataBrowserItemsRemove
;
3109 SetSelectedItem(dataItem
, options
);
3111 // TODO: Set column width if item width > than current column width
3114 void wxMacDataBrowserListCtrlControl::MacGetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
& item
)
3116 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
3117 wxASSERT_MSG( dataItem
, _T("could not obtain wxMacDataItem in MacGetColumnInfo. Is row a valid wxListCtrl row?") );
3118 // CS should this guard against dataItem = 0 ? , as item is not a pointer if (item) is not appropriate
3121 wxMacListCtrlItem
* listItem
=wx_static_cast(wxMacListCtrlItem
*,dataItem
);
3123 if (!listItem
->HasColumnInfo( column
))
3126 wxListItem
* oldItem
= listItem
->GetColumnInfo( column
);
3130 long mask
= item
.GetMask();
3132 // by default, get everything for backwards compatibility
3135 if ( mask
& wxLIST_MASK_TEXT
)
3136 item
.SetText(oldItem
->GetText());
3137 if ( mask
& wxLIST_MASK_IMAGE
)
3138 item
.SetImage(oldItem
->GetImage());
3139 if ( mask
& wxLIST_MASK_DATA
)
3140 item
.SetData(oldItem
->GetData());
3141 if ( mask
& wxLIST_MASK_STATE
)
3142 item
.SetState(oldItem
->GetState());
3143 if ( mask
& wxLIST_MASK_WIDTH
)
3144 item
.SetWidth(oldItem
->GetWidth());
3145 if ( mask
& wxLIST_MASK_FORMAT
)
3146 item
.SetAlign(oldItem
->GetAlign());
3148 item
.SetTextColour(oldItem
->GetTextColour());
3149 item
.SetBackgroundColour(oldItem
->GetBackgroundColour());
3150 item
.SetFont(oldItem
->GetFont());
3155 void wxMacDataBrowserListCtrlControl::MacInsertItem( unsigned int n
, wxListItem
* item
)
3157 wxMacDataItemBrowserControl::MacInsert(n
, item
->GetText());
3158 MacSetColumnInfo(n
, 0, item
);
3161 wxMacDataItem
* wxMacDataBrowserListCtrlControl::CreateItem()
3163 return new wxMacListCtrlItem();
3166 wxMacListCtrlItem::wxMacListCtrlItem()
3168 m_rowItems
= wxListItemList();
3171 int wxMacListCtrlItem::GetColumnImageValue( unsigned int column
)
3173 if ( HasColumnInfo(column
) )
3174 return GetColumnInfo(column
)->GetImage();
3179 void wxMacListCtrlItem::SetColumnImageValue( unsigned int column
, int imageIndex
)
3181 if ( HasColumnInfo(column
) )
3182 GetColumnInfo(column
)->SetImage(imageIndex
);
3185 wxString
wxMacListCtrlItem::GetColumnTextValue( unsigned int column
)
3190 if ( HasColumnInfo(column
) )
3191 return GetColumnInfo(column
)->GetText();
3193 return wxEmptyString
;
3196 void wxMacListCtrlItem::SetColumnTextValue( unsigned int column
, const wxString
& text
)
3198 if ( HasColumnInfo(column
) )
3199 GetColumnInfo(column
)->SetText(text
);
3201 // for compatibility with superclass APIs
3206 wxListItem
* wxMacListCtrlItem::GetColumnInfo( unsigned int column
)
3208 wxASSERT_MSG( HasColumnInfo(column
), _T("invalid column index in wxMacListCtrlItem") );
3209 return m_rowItems
[column
];
3212 bool wxMacListCtrlItem::HasColumnInfo( unsigned int column
)
3214 return !(m_rowItems
.find( column
) == m_rowItems
.end());
3217 void wxMacListCtrlItem::SetColumnInfo( unsigned int column
, wxListItem
* item
)
3220 if ( !HasColumnInfo(column
) )
3222 wxListItem
* listItem
= new wxListItem(*item
);
3223 m_rowItems
[column
] = listItem
;
3227 wxListItem
* listItem
= GetColumnInfo( column
);
3228 long mask
= item
->GetMask();
3229 if (mask
& wxLIST_MASK_TEXT
)
3230 listItem
->SetText(item
->GetText());
3231 if (mask
& wxLIST_MASK_DATA
)
3232 listItem
->SetData(item
->GetData());
3233 if (mask
& wxLIST_MASK_IMAGE
)
3234 listItem
->SetImage(item
->GetImage());
3235 if (mask
& wxLIST_MASK_STATE
)
3236 listItem
->SetState(item
->GetState());
3237 if (mask
& wxLIST_MASK_FORMAT
)
3238 listItem
->SetAlign(item
->GetAlign());
3239 if (mask
& wxLIST_MASK_WIDTH
)
3240 listItem
->SetWidth(item
->GetWidth());
3242 if ( item
->HasAttributes() )
3244 if ( listItem
->HasAttributes() )
3245 listItem
->GetAttributes()->AssignFrom(*item
->GetAttributes());
3248 listItem
->SetTextColour(item
->GetTextColour());
3249 listItem
->SetBackgroundColour(item
->GetBackgroundColour());
3250 listItem
->SetFont(item
->GetFont());
3256 #endif // wxUSE_LISTCTRL