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"
33 #include "wx/settings.h"
36 #include "wx/mac/uma.h"
38 #include "wx/imaglist.h"
39 #include "wx/sysopt.h"
42 #include "wx/hashmap.h"
44 #if wxUSE_EXTENDED_RTTI
45 WX_DEFINE_FLAGS( wxListCtrlStyle
)
47 wxBEGIN_FLAGS( wxListCtrlStyle
)
48 // new style border flags, we put them first to
49 // use them for streaming out
50 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
51 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
52 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
53 wxFLAGS_MEMBER(wxBORDER_RAISED
)
54 wxFLAGS_MEMBER(wxBORDER_STATIC
)
55 wxFLAGS_MEMBER(wxBORDER_NONE
)
57 // old style border flags
58 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
59 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
60 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
61 wxFLAGS_MEMBER(wxRAISED_BORDER
)
62 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
63 wxFLAGS_MEMBER(wxBORDER
)
65 // standard window styles
66 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
67 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
68 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
69 wxFLAGS_MEMBER(wxWANTS_CHARS
)
70 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
71 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
72 wxFLAGS_MEMBER(wxVSCROLL
)
73 wxFLAGS_MEMBER(wxHSCROLL
)
75 wxFLAGS_MEMBER(wxLC_LIST
)
76 wxFLAGS_MEMBER(wxLC_REPORT
)
77 wxFLAGS_MEMBER(wxLC_ICON
)
78 wxFLAGS_MEMBER(wxLC_SMALL_ICON
)
79 wxFLAGS_MEMBER(wxLC_ALIGN_TOP
)
80 wxFLAGS_MEMBER(wxLC_ALIGN_LEFT
)
81 wxFLAGS_MEMBER(wxLC_AUTOARRANGE
)
82 wxFLAGS_MEMBER(wxLC_USER_TEXT
)
83 wxFLAGS_MEMBER(wxLC_EDIT_LABELS
)
84 wxFLAGS_MEMBER(wxLC_NO_HEADER
)
85 wxFLAGS_MEMBER(wxLC_SINGLE_SEL
)
86 wxFLAGS_MEMBER(wxLC_SORT_ASCENDING
)
87 wxFLAGS_MEMBER(wxLC_SORT_DESCENDING
)
88 wxFLAGS_MEMBER(wxLC_VIRTUAL
)
90 wxEND_FLAGS( wxListCtrlStyle
)
92 IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl
, wxControl
,"wx/listctrl.h")
94 wxBEGIN_PROPERTIES_TABLE(wxListCtrl
)
95 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
97 wxPROPERTY_FLAGS( WindowStyle
, wxListCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
98 wxEND_PROPERTIES_TABLE()
100 wxBEGIN_HANDLERS_TABLE(wxListCtrl
)
101 wxEND_HANDLERS_TABLE()
103 wxCONSTRUCTOR_5( wxListCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
106 TODO : Expose more information of a list's layout etc. via appropriate objects (¢ la NotebookPageInfo)
109 IMPLEMENT_DYNAMIC_CLASS(wxListCtrl
, wxControl
)
112 IMPLEMENT_DYNAMIC_CLASS(wxListView
, wxListCtrl
)
113 IMPLEMENT_DYNAMIC_CLASS(wxListItem
, wxObject
)
115 IMPLEMENT_DYNAMIC_CLASS(wxListEvent
, wxNotifyEvent
)
117 WX_DECLARE_HASH_MAP( int, wxListItem
*, wxIntegerHash
, wxIntegerEqual
, wxListItemList
);
119 #include "wx/listimpl.cpp"
120 WX_DEFINE_LIST(wxColumnList
)
122 // so we can check for column clicks
123 static const EventTypeSpec eventList
[] =
125 { kEventClassControl
, kEventControlHit
},
126 { kEventClassControl
, kEventControlDraw
}
129 static pascal OSStatus
wxMacListCtrlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
131 OSStatus result
= eventNotHandledErr
;
133 wxMacCarbonEvent
cEvent( event
) ;
135 ControlRef controlRef
;
136 cEvent
.GetParameter( kEventParamDirectObject
, &controlRef
) ;
138 wxListCtrl
*window
= (wxListCtrl
*) data
;
139 wxListEvent
le( wxEVT_COMMAND_LIST_COL_CLICK
, window
->GetId() );
140 le
.SetEventObject( window
);
142 switch ( GetEventKind( event
) )
144 // check if the column was clicked on and fire an event if so
145 case kEventControlHit
:
147 ControlPartCode result
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
) ;
148 if (result
== kControlButtonPart
){
149 DataBrowserPropertyID col
;
150 GetDataBrowserSortProperty(controlRef
, &col
);
151 int column
= col
- kMinColumnId
;
153 // FIXME: we can't use the sort property for virtual listctrls
154 // so we need to find a better way to determine which column was clicked...
155 if (!window
->IsVirtual())
156 window
->HandleWindowEvent( le
);
158 result
= CallNextEventHandler(handler
, event
);
161 case kEventControlDraw
:
163 CGContextRef context
= cEvent
.GetParameter
<CGContextRef
>(kEventParamCGContextRef
, typeCGContextRef
) ;
164 window
->MacSetDrawingContext(context
);
165 result
= CallNextEventHandler(handler
, event
);
166 window
->MacSetDrawingContext(NULL
);
177 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacListCtrlEventHandler
)
179 class wxMacListCtrlItem
: public wxMacListBoxItem
184 virtual void Notification(wxMacDataItemBrowserControl
*owner
,
185 DataBrowserItemNotification message
,
186 DataBrowserItemDataRef itemData
) const;
188 virtual void SetColumnInfo( unsigned int column
, wxListItem
* item
);
189 virtual wxListItem
* GetColumnInfo( unsigned int column
);
190 virtual bool HasColumnInfo( unsigned int column
);
192 virtual void SetColumnTextValue( unsigned int column
, const wxString
& text
);
193 virtual wxString
GetColumnTextValue( unsigned int column
);
195 virtual int GetColumnImageValue( unsigned int column
);
196 virtual void SetColumnImageValue( unsigned int column
, int imageIndex
);
198 virtual ~wxMacListCtrlItem();
200 wxListItemList m_rowItems
;
203 DataBrowserDrawItemUPP gDataBrowserDrawItemUPP
= NULL
;
204 //DataBrowserEditItemUPP gDataBrowserEditItemUPP = NULL;
205 DataBrowserHitTestUPP gDataBrowserHitTestUPP
= NULL
;
207 // TODO: Make a better name!!
208 class wxMacDataBrowserListCtrlControl
: public wxMacDataItemBrowserControl
211 wxMacDataBrowserListCtrlControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
);
212 wxMacDataBrowserListCtrlControl() {}
213 virtual ~wxMacDataBrowserListCtrlControl();
215 // create a list item (can be a subclass of wxMacListBoxItem)
217 virtual wxMacDataItem
* CreateItem();
219 virtual void MacInsertItem( unsigned int n
, wxListItem
* item
);
220 virtual void MacSetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
* item
);
221 virtual void MacGetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
& item
);
222 virtual void UpdateState(wxMacDataItem
* dataItem
, wxListItem
* item
);
223 int GetFlags() { return m_flags
; }
226 // we need to override to provide specialized handling for virtual wxListCtrls
227 virtual OSStatus
GetSetItemData(DataBrowserItemID itemID
,
228 DataBrowserPropertyID property
,
229 DataBrowserItemDataRef itemData
,
230 Boolean changeValue
);
232 virtual void ItemNotification(
233 DataBrowserItemID itemID
,
234 DataBrowserItemNotification message
,
235 DataBrowserItemDataRef itemData
);
237 virtual Boolean
CompareItems(DataBrowserItemID itemOneID
,
238 DataBrowserItemID itemTwoID
,
239 DataBrowserPropertyID sortProperty
);
241 static pascal void DataBrowserDrawItemProc(ControlRef browser
,
242 DataBrowserItemID item
,
243 DataBrowserPropertyID property
,
244 DataBrowserItemState itemState
,
247 Boolean colorDevice
);
249 virtual void DrawItem(DataBrowserItemID itemID
,
250 DataBrowserPropertyID property
,
251 DataBrowserItemState itemState
,
252 const Rect
*itemRect
,
254 Boolean colorDevice
);
256 static pascal Boolean
DataBrowserEditTextProc(ControlRef browser
,
257 DataBrowserItemID item
,
258 DataBrowserPropertyID property
,
259 CFStringRef theString
,
260 Rect
*maxEditTextRect
,
261 Boolean
*shrinkToFit
);
263 static pascal Boolean
DataBrowserHitTestProc(ControlRef
WXUNUSED(browser
),
264 DataBrowserItemID
WXUNUSED(itemID
),
265 DataBrowserPropertyID
WXUNUSED(property
),
266 const Rect
*WXUNUSED(theRect
),
267 const Rect
*WXUNUSED(mouseRect
)) { return true; }
269 virtual bool ConfirmEditText(DataBrowserItemID item
,
270 DataBrowserPropertyID property
,
271 CFStringRef theString
,
272 Rect
*maxEditTextRect
,
273 Boolean
*shrinkToFit
);
277 wxClientDataType m_clientDataItemsType
;
280 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacDataBrowserListCtrlControl
)
283 class wxMacListCtrlEventDelegate
: public wxEvtHandler
286 wxMacListCtrlEventDelegate( wxListCtrl
* list
, int id
);
287 virtual bool ProcessEvent( wxEvent
& event
);
294 wxMacListCtrlEventDelegate::wxMacListCtrlEventDelegate( wxListCtrl
* list
, int id
)
300 bool wxMacListCtrlEventDelegate::ProcessEvent( wxEvent
& event
)
302 // even though we use a generic list ctrl underneath, make sure
303 // we present ourselves as wxListCtrl.
304 event
.SetEventObject( m_list
);
307 if ( !event
.IsKindOf( CLASSINFO( wxCommandEvent
) ) )
309 if (m_list
->HandleWindowEvent( event
))
312 return wxEvtHandler::ProcessEvent(event
);
315 //-----------------------------------------------------------------------------
316 // wxListCtrlRenameTimer (internal)
317 //-----------------------------------------------------------------------------
319 class wxListCtrlRenameTimer
: public wxTimer
325 wxListCtrlRenameTimer( wxListCtrl
*owner
);
329 //-----------------------------------------------------------------------------
330 // wxListCtrlTextCtrlWrapper: wraps a wxTextCtrl to make it work for inline editing
331 //-----------------------------------------------------------------------------
333 class wxListCtrlTextCtrlWrapper
: public wxEvtHandler
336 // NB: text must be a valid object but not Create()d yet
337 wxListCtrlTextCtrlWrapper(wxListCtrl
*owner
,
341 wxTextCtrl
*GetText() const { return m_text
; }
343 void AcceptChangesAndFinish();
346 void OnChar( wxKeyEvent
&event
);
347 void OnKeyUp( wxKeyEvent
&event
);
348 void OnKillFocus( wxFocusEvent
&event
);
350 bool AcceptChanges();
356 wxString m_startValue
;
359 bool m_aboutToFinish
;
361 DECLARE_EVENT_TABLE()
364 //-----------------------------------------------------------------------------
365 // wxListCtrlRenameTimer (internal)
366 //-----------------------------------------------------------------------------
368 wxListCtrlRenameTimer::wxListCtrlRenameTimer( wxListCtrl
*owner
)
373 void wxListCtrlRenameTimer::Notify()
375 m_owner
->OnRenameTimer();
378 //-----------------------------------------------------------------------------
379 // wxListCtrlTextCtrlWrapper (internal)
380 //-----------------------------------------------------------------------------
382 BEGIN_EVENT_TABLE(wxListCtrlTextCtrlWrapper
, wxEvtHandler
)
383 EVT_CHAR (wxListCtrlTextCtrlWrapper::OnChar
)
384 EVT_KEY_UP (wxListCtrlTextCtrlWrapper::OnKeyUp
)
385 EVT_KILL_FOCUS (wxListCtrlTextCtrlWrapper::OnKillFocus
)
388 wxListCtrlTextCtrlWrapper::wxListCtrlTextCtrlWrapper(wxListCtrl
*owner
,
391 : m_startValue(owner
->GetItemText(itemEdit
)),
392 m_itemEdited(itemEdit
)
397 m_aboutToFinish
= false;
401 owner
->GetItemRect(itemEdit
, rectLabel
);
403 m_text
->Create(owner
, wxID_ANY
, m_startValue
,
404 wxPoint(rectLabel
.x
+offset
,rectLabel
.y
),
405 wxSize(rectLabel
.width
-offset
,rectLabel
.height
));
408 m_text
->PushEventHandler(this);
411 void wxListCtrlTextCtrlWrapper::Finish()
417 m_text
->RemoveEventHandler(this);
418 m_owner
->FinishEditing(m_text
);
420 wxPendingDelete
.Append( this );
424 bool wxListCtrlTextCtrlWrapper::AcceptChanges()
426 const wxString value
= m_text
->GetValue();
428 if ( value
== m_startValue
)
429 // nothing changed, always accept
432 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
433 // vetoed by the user
436 // accepted, do rename the item
437 m_owner
->SetItemText(m_itemEdited
, value
);
442 void wxListCtrlTextCtrlWrapper::AcceptChangesAndFinish()
444 m_aboutToFinish
= true;
446 // Notify the owner about the changes
449 // Even if vetoed, close the control (consistent with MSW)
453 void wxListCtrlTextCtrlWrapper::OnChar( wxKeyEvent
&event
)
455 switch ( event
.m_keyCode
)
458 AcceptChangesAndFinish();
462 m_owner
->OnRenameCancelled( m_itemEdited
);
471 void wxListCtrlTextCtrlWrapper::OnKeyUp( wxKeyEvent
&event
)
479 // auto-grow the textctrl:
480 wxSize parentSize
= m_owner
->GetSize();
481 wxPoint myPos
= m_text
->GetPosition();
482 wxSize mySize
= m_text
->GetSize();
484 m_text
->GetTextExtent(m_text
->GetValue() + _T("MM"), &sx
, &sy
);
485 if (myPos
.x
+ sx
> parentSize
.x
)
486 sx
= parentSize
.x
- myPos
.x
;
489 m_text
->SetSize(sx
, wxDefaultCoord
);
494 void wxListCtrlTextCtrlWrapper::OnKillFocus( wxFocusEvent
&event
)
496 if ( !m_finished
&& !m_aboutToFinish
)
498 if ( !AcceptChanges() )
499 m_owner
->OnRenameCancelled( m_itemEdited
);
504 // We must let the native text control handle focus
508 BEGIN_EVENT_TABLE(wxListCtrl
, wxControl
)
509 EVT_LEFT_DOWN(wxListCtrl::OnLeftDown
)
510 EVT_LEFT_DCLICK(wxListCtrl::OnDblClick
)
511 EVT_MIDDLE_DOWN(wxListCtrl::OnMiddleDown
)
512 EVT_RIGHT_DOWN(wxListCtrl::OnRightDown
)
513 EVT_CHAR(wxListCtrl::OnChar
)
516 // ============================================================================
518 // ============================================================================
520 wxMacListControl
* wxListCtrl::GetPeer() const
522 wxMacDataBrowserListCtrlControl
*lb
= wxDynamicCast(m_peer
,wxMacDataBrowserListCtrlControl
);
523 return lb
? wx_static_cast(wxMacListControl
*,lb
) : 0 ;
526 // ----------------------------------------------------------------------------
527 // wxListCtrl construction
528 // ----------------------------------------------------------------------------
530 void wxListCtrl::Init()
532 m_imageListNormal
= NULL
;
533 m_imageListSmall
= NULL
;
534 m_imageListState
= NULL
;
536 // keep track of if we created our own image lists, or if they were assigned
538 m_ownsImageListNormal
= m_ownsImageListSmall
= m_ownsImageListState
= false;
542 m_genericImpl
= NULL
;
544 m_compareFunc
= NULL
;
545 m_compareFuncData
= 0;
546 m_colsInfo
= wxColumnList();
547 m_textColor
= wxNullColour
;
548 m_bgColor
= wxNullColour
;
549 m_textctrlWrapper
= NULL
;
551 m_renameTimer
= new wxListCtrlRenameTimer( this );
554 class wxGenericListCtrlHook
: public wxGenericListCtrl
557 wxGenericListCtrlHook(wxListCtrl
* parent
,
562 const wxValidator
& validator
,
563 const wxString
& name
)
564 : wxGenericListCtrl(parent
, id
, pos
, size
, style
, validator
, name
),
565 m_nativeListCtrl(parent
)
570 virtual wxListItemAttr
* OnGetItemAttr(long item
) const
572 return m_nativeListCtrl
->OnGetItemAttr(item
);
575 virtual int OnGetItemImage(long item
) const
577 return m_nativeListCtrl
->OnGetItemImage(item
);
580 virtual int OnGetItemColumnImage(long item
, long column
) const
582 return m_nativeListCtrl
->OnGetItemColumnImage(item
, column
);
585 virtual wxString
OnGetItemText(long item
, long column
) const
587 return m_nativeListCtrl
->OnGetItemText(item
, column
);
590 wxListCtrl
* m_nativeListCtrl
;
594 void wxListCtrl::OnLeftDown(wxMouseEvent
& event
)
596 if ( m_textctrlWrapper
)
599 m_textctrlWrapper
->AcceptChangesAndFinish();
603 long current
= HitTest(event
.GetPosition(), hitResult
);
604 if ((current
== m_current
) &&
605 (hitResult
== wxLIST_HITTEST_ONITEM
) &&
606 HasFlag(wxLC_EDIT_LABELS
) )
608 m_renameTimer
->Start( 100, true );
617 void wxListCtrl::OnDblClick(wxMouseEvent
& event
)
623 #if wxABI_VERSION >= 20801
624 void wxListCtrl::OnRightDown(wxMouseEvent
& event
)
627 FireMouseEvent(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, event
.GetPosition());
631 void wxListCtrl::OnMiddleDown(wxMouseEvent
& event
)
634 FireMouseEvent(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, event
.GetPosition());
638 void wxListCtrl::FireMouseEvent(wxEventType eventType
, wxPoint position
)
640 wxListEvent
le( eventType
, GetId() );
641 le
.SetEventObject(this);
642 le
.m_pointDrag
= position
;
646 long item
= HitTest(position
, flags
);
647 if (flags
& wxLIST_HITTEST_ONITEM
)
649 le
.m_itemIndex
= item
;
650 le
.m_item
.m_itemId
= item
;
652 HandleWindowEvent(le
);
656 void wxListCtrl::OnChar(wxKeyEvent
& event
)
662 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetId() );
663 le
.SetEventObject(this);
664 le
.m_code
= event
.GetKeyCode();
669 // if m_current isn't set, check if there's been a selection
670 // made before continuing
671 m_current
= GetNextItem(-1, wxLIST_NEXT_BELOW
, wxLIST_STATE_SELECTED
);
674 // We need to determine m_current ourselves when navigation keys
675 // are used. Note that PAGEUP and PAGEDOWN do not alter the current
676 // item on native Mac ListCtrl, so we only handle up and down keys.
677 switch ( event
.GetKeyCode() )
688 if ( m_current
< GetItemCount() - 1 )
691 m_current
= GetItemCount() - 1;
698 le
.m_itemIndex
= m_current
;
699 le
.m_item
.m_itemId
= m_current
;
701 HandleWindowEvent(le
);
708 bool wxListCtrl::Create(wxWindow
*parent
,
713 const wxValidator
& validator
,
714 const wxString
& name
)
717 // for now, we'll always use the generic list control for ICON and LIST views,
718 // because they dynamically change the number of columns on resize.
719 // Also, allow the user to set it to use the list ctrl as well.
720 if ( (wxSystemOptions::HasOption( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
)
721 && (wxSystemOptions::GetOptionInt( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
) == 1)) ||
722 (style
& wxLC_ICON
) || (style
& wxLC_SMALL_ICON
) || (style
& wxLC_LIST
) )
724 m_macIsUserPane
= true;
726 long paneStyle
= style
;
727 paneStyle
&= ~wxSIMPLE_BORDER
;
728 paneStyle
&= ~wxDOUBLE_BORDER
;
729 paneStyle
&= ~wxSUNKEN_BORDER
;
730 paneStyle
&= ~wxRAISED_BORDER
;
731 paneStyle
&= ~wxSTATIC_BORDER
;
732 if ( !wxWindow::Create(parent
, id
, pos
, size
, paneStyle
| wxNO_BORDER
, name
) )
735 // since the generic control is a child, make sure we position it at 0, 0
736 m_genericImpl
= new wxGenericListCtrlHook(this, id
, wxPoint(0, 0), size
, style
, validator
, name
);
737 m_genericImpl
->PushEventHandler( new wxMacListCtrlEventDelegate( this, GetId() ) );
743 m_macIsUserPane
= false;
744 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
& ~(wxHSCROLL
| wxVSCROLL
), name
) )
746 m_dbImpl
= new wxMacDataBrowserListCtrlControl( this, pos
, size
, style
);
749 MacPostControlCreate( pos
, size
);
751 InstallControlEventHandler( m_peer
->GetControlRef() , GetwxMacListCtrlEventHandlerUPP(),
752 GetEventTypeCount(eventList
), eventList
, this,
753 (EventHandlerRef
*)&m_macListCtrlEventHandler
);
759 wxListCtrl::~wxListCtrl()
763 m_genericImpl
->PopEventHandler(/* deleteHandler = */ true);
766 if (m_ownsImageListNormal
)
767 delete m_imageListNormal
;
768 if (m_ownsImageListSmall
)
769 delete m_imageListSmall
;
770 if (m_ownsImageListState
)
771 delete m_imageListState
;
773 delete m_renameTimer
;
778 wxListCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
780 wxVisualAttributes attr
;
782 attr
.colFg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
783 attr
.colBg
= wxSystemSettings::GetColour( wxSYS_COLOUR_LISTBOX
);
784 attr
.font
.MacCreateFromThemeFont(kThemeViewsFont
);
789 // ----------------------------------------------------------------------------
790 // set/get/change style
791 // ----------------------------------------------------------------------------
793 // Add or remove a single window style
794 void wxListCtrl::SetSingleStyle(long style
, bool add
)
796 long flag
= GetWindowStyleFlag();
798 // Get rid of conflicting styles
801 if ( style
& wxLC_MASK_TYPE
)
802 flag
= flag
& ~wxLC_MASK_TYPE
;
803 if ( style
& wxLC_MASK_ALIGN
)
804 flag
= flag
& ~wxLC_MASK_ALIGN
;
805 if ( style
& wxLC_MASK_SORT
)
806 flag
= flag
& ~wxLC_MASK_SORT
;
814 SetWindowStyleFlag(flag
);
817 // Set the whole window style
818 void wxListCtrl::SetWindowStyleFlag(long flag
)
820 if ( flag
!= m_windowStyle
)
822 m_windowStyle
= flag
;
826 m_genericImpl
->SetWindowStyleFlag(flag
);
833 void wxListCtrl::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
835 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
838 m_genericImpl
->SetSize(0, 0, width
, height
, sizeFlags
);
840 // determine if we need a horizontal scrollbar, and add it if so
844 for (int column
= 0; column
< GetColumnCount(); column
++)
846 totalWidth
+= m_dbImpl
->GetColumnWidth( column
);
849 if ( !(m_dbImpl
->GetFlags() & wxHSCROLL
) )
851 Boolean vertScrollBar
;
852 GetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), NULL
, &vertScrollBar
);
853 if (totalWidth
> width
)
854 SetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), true, vertScrollBar
);
856 SetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), false, vertScrollBar
);
861 wxSize
wxListCtrl::DoGetBestSize() const
863 return wxWindow::DoGetBestSize();
866 bool wxListCtrl::SetFont(const wxFont
& font
)
869 rv
= wxControl::SetFont(font
);
871 rv
= m_genericImpl
->SetFont(font
);
875 bool wxListCtrl::SetForegroundColour(const wxColour
& colour
)
879 rv
= m_genericImpl
->SetForegroundColour(colour
);
881 SetTextColour(colour
);
885 bool wxListCtrl::SetBackgroundColour(const wxColour
& colour
)
889 rv
= m_genericImpl
->SetBackgroundColour(colour
);
895 wxColour
wxListCtrl::GetBackgroundColour()
898 return m_genericImpl
->GetBackgroundColour();
905 // ----------------------------------------------------------------------------
907 // ----------------------------------------------------------------------------
909 // Gets information about this column
910 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
913 return m_genericImpl
->GetColumn(col
, item
);
919 wxColumnList::compatibility_iterator node
= m_colsInfo
.Item( col
);
920 wxASSERT_MSG( node
, _T("invalid column index in wxMacListCtrlItem") );
921 wxListItem
* column
= node
->GetData();
923 long mask
= column
->GetMask();
924 if (mask
& wxLIST_MASK_TEXT
)
925 item
.SetText(column
->GetText());
926 if (mask
& wxLIST_MASK_DATA
)
927 item
.SetData(column
->GetData());
928 if (mask
& wxLIST_MASK_IMAGE
)
929 item
.SetImage(column
->GetImage());
930 if (mask
& wxLIST_MASK_STATE
)
931 item
.SetState(column
->GetState());
932 if (mask
& wxLIST_MASK_FORMAT
)
933 item
.SetAlign(column
->GetAlign());
934 if (mask
& wxLIST_MASK_WIDTH
)
935 item
.SetWidth(column
->GetWidth());
941 // Sets information about this column
942 bool wxListCtrl::SetColumn(int col
, wxListItem
& item
)
945 return m_genericImpl
->SetColumn(col
, item
);
949 long mask
= item
.GetMask();
950 if ( col
>= (int)m_colsInfo
.GetCount() )
952 wxListItem
* listItem
= new wxListItem(item
);
953 m_colsInfo
.Append( listItem
);
958 GetColumn( col
, listItem
);
960 if (mask
& wxLIST_MASK_TEXT
)
961 listItem
.SetText(item
.GetText());
962 if (mask
& wxLIST_MASK_DATA
)
963 listItem
.SetData(item
.GetData());
964 if (mask
& wxLIST_MASK_IMAGE
)
965 listItem
.SetImage(item
.GetImage());
966 if (mask
& wxLIST_MASK_STATE
)
967 listItem
.SetState(item
.GetState());
968 if (mask
& wxLIST_MASK_FORMAT
)
969 listItem
.SetAlign(item
.GetAlign());
970 if (mask
& wxLIST_MASK_WIDTH
)
971 listItem
.SetWidth(item
.GetWidth());
974 // change the appearance in the databrowser.
975 DataBrowserListViewHeaderDesc columnDesc
;
976 columnDesc
.version
=kDataBrowserListViewLatestHeaderDesc
;
977 verify_noerr( m_dbImpl
->GetHeaderDesc( kMinColumnId
+ col
, &columnDesc
) );
980 if (item.GetMask() & wxLIST_MASK_TEXT)
984 enc = GetFont().GetEncoding();
986 enc = wxLocale::GetSystemEncoding();
987 wxCFStringRef cfTitle;
988 cfTitle.Assign( item.GetText() , enc );
989 if(columnDesc.titleString)
990 CFRelease(columnDesc.titleString);
991 columnDesc.titleString = cfTitle;
995 if (item
.GetMask() & wxLIST_MASK_IMAGE
&& item
.GetImage() != -1 )
997 wxImageList
* imageList
= GetImageList(wxIMAGE_LIST_SMALL
);
998 if (imageList
&& imageList
->GetImageCount() > 0 )
1000 wxBitmap bmp
= imageList
->GetBitmap( item
.GetImage() );
1001 IconRef icon
= bmp
.GetIconRef();
1002 columnDesc
.btnContentInfo
.u
.iconRef
= icon
;
1003 columnDesc
.btnContentInfo
.contentType
= kControlContentIconRef
;
1007 verify_noerr( m_dbImpl
->SetHeaderDesc( kMinColumnId
+ col
, &columnDesc
) );
1013 int wxListCtrl::GetColumnCount() const
1016 return m_genericImpl
->GetColumnCount();
1021 m_dbImpl
->GetColumnCount(&count
);
1028 // Gets the column width
1029 int wxListCtrl::GetColumnWidth(int col
) const
1032 return m_genericImpl
->GetColumnWidth(col
);
1036 return m_dbImpl
->GetColumnWidth(col
);
1042 // Sets the column width
1043 bool wxListCtrl::SetColumnWidth(int col
, int width
)
1046 return m_genericImpl
->SetColumnWidth(col
, width
);
1050 if ( width
== wxLIST_AUTOSIZE_USEHEADER
)
1052 width
= 150; // FIXME
1057 for (int column
= 0; column
< GetColumnCount(); column
++)
1060 GetColumn(column
, colInfo
);
1062 colInfo
.SetWidth(width
);
1063 SetColumn(column
, colInfo
);
1065 const int mywidth
= (width
== wxLIST_AUTOSIZE
)
1066 ? CalcColumnAutoWidth(column
) : width
;
1067 m_dbImpl
->SetColumnWidth(column
, mywidth
);
1072 if ( width
== wxLIST_AUTOSIZE
)
1073 width
= CalcColumnAutoWidth(col
);
1076 GetColumn(col
, colInfo
);
1078 colInfo
.SetWidth(width
);
1079 SetColumn(col
, colInfo
);
1080 m_dbImpl
->SetColumnWidth(col
, width
);
1088 // Gets the number of items that can fit vertically in the
1089 // visible area of the list control (list or report view)
1090 // or the total number of items in the list control (icon
1091 // or small icon view)
1092 int wxListCtrl::GetCountPerPage() const
1095 return m_genericImpl
->GetCountPerPage();
1100 m_dbImpl
->GetDefaultRowHeight( &height
);
1102 return GetClientSize().y
/ height
;
1108 // Gets the edit control for editing labels.
1109 wxTextCtrl
* wxListCtrl::GetEditControl() const
1112 return m_genericImpl
->GetEditControl();
1117 // Gets information about the item
1118 bool wxListCtrl::GetItem(wxListItem
& info
) const
1121 return m_genericImpl
->GetItem(info
);
1127 if (info
.m_itemId
>= 0 && info
.m_itemId
< GetItemCount())
1129 m_dbImpl
->MacGetColumnInfo(info
.m_itemId
, info
.m_col
, info
);
1130 if (info
.GetMask() & wxLIST_MASK_STATE
)
1132 DataBrowserItemID id
= (DataBrowserItemID
)m_dbImpl
->GetItemFromLine(info
.m_itemId
);
1133 if (IsDataBrowserItemSelected( m_dbImpl
->GetControlRef(), id
))
1134 info
.SetState(info
.GetState() | wxLIST_STATE_SELECTED
);
1140 if (info
.m_itemId
>= 0 && info
.m_itemId
< GetItemCount())
1142 info
.SetText( OnGetItemText(info
.m_itemId
, info
.m_col
) );
1143 info
.SetImage( OnGetItemColumnImage(info
.m_itemId
, info
.m_col
) );
1144 if (info
.GetMask() & wxLIST_MASK_STATE
)
1146 if (IsDataBrowserItemSelected( m_dbImpl
->GetControlRef(), info
.m_itemId
+1 ))
1147 info
.SetState(info
.GetState() | wxLIST_STATE_SELECTED
);
1150 wxListItemAttr
* attrs
= OnGetItemAttr( info
.m_itemId
);
1153 info
.SetFont( attrs
->GetFont() );
1154 info
.SetBackgroundColour( attrs
->GetBackgroundColour() );
1155 info
.SetTextColour( attrs
->GetTextColour() );
1160 bool success
= true;
1164 // Sets information about the item
1165 bool wxListCtrl::SetItem(wxListItem
& info
)
1168 return m_genericImpl
->SetItem(info
);
1171 m_dbImpl
->MacSetColumnInfo( info
.m_itemId
, info
.m_col
, &info
);
1176 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
1179 return m_genericImpl
->SetItem(index
, col
, label
, imageId
);
1182 info
.m_text
= label
;
1183 info
.m_mask
= wxLIST_MASK_TEXT
;
1184 info
.m_itemId
= index
;
1188 info
.m_image
= imageId
;
1189 info
.m_mask
|= wxLIST_MASK_IMAGE
;
1191 return SetItem(info
);
1195 // Gets the item state
1196 int wxListCtrl::GetItemState(long item
, long stateMask
) const
1199 return m_genericImpl
->GetItemState(item
, stateMask
);
1203 if ( HasFlag(wxLC_VIRTUAL
) )
1205 if (stateMask
== wxLIST_STATE_SELECTED
)
1207 if (IsDataBrowserItemSelected( m_dbImpl
->GetControlRef(), item
+1 ))
1208 return wxLIST_STATE_SELECTED
;
1217 info
.m_mask
= wxLIST_MASK_STATE
;
1218 info
.m_stateMask
= stateMask
;
1219 info
.m_itemId
= item
;
1224 return info
.m_state
;
1231 // Sets the item state
1232 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
1235 return m_genericImpl
->SetItemState(item
, state
, stateMask
);
1239 DataBrowserSetOption option
= kDataBrowserItemsAdd
;
1240 if ( (stateMask
& wxLIST_STATE_SELECTED
) && state
== 0 )
1241 option
= kDataBrowserItemsRemove
;
1245 if ( HasFlag(wxLC_VIRTUAL
) )
1247 wxMacDataItemBrowserSelectionSuppressor
suppressor(m_dbImpl
);
1248 m_dbImpl
->SetSelectedAllItems(option
);
1252 for(int i
= 0; i
< GetItemCount();i
++)
1256 info
.m_mask
= wxLIST_MASK_STATE
;
1257 info
.m_stateMask
= stateMask
;
1258 info
.m_state
= state
;
1265 if ( HasFlag(wxLC_VIRTUAL
) )
1267 long itemID
= item
+1;
1268 bool isSelected
= IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), (DataBrowserItemID
)itemID
);
1269 bool isSelectedState
= (state
== wxLIST_STATE_SELECTED
);
1271 // toggle the selection state if wxListInfo state and actual state don't match.
1272 if ( (stateMask
& wxLIST_STATE_SELECTED
) && isSelected
!= isSelectedState
)
1274 SetDataBrowserSelectedItems(m_dbImpl
->GetControlRef(), 1, (DataBrowserItemID
*)&itemID
, option
);
1280 info
.m_itemId
= item
;
1281 info
.m_mask
= wxLIST_MASK_STATE
;
1282 info
.m_stateMask
= stateMask
;
1283 info
.m_state
= state
;
1284 return SetItem(info
);
1291 // Sets the item image
1292 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
1294 return SetItemColumnImage(item
, 0, image
);
1297 // Sets the item image
1298 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
1301 return m_genericImpl
->SetItemColumnImage(item
, column
, image
);
1305 info
.m_mask
= wxLIST_MASK_IMAGE
;
1306 info
.m_image
= image
;
1307 info
.m_itemId
= item
;
1308 info
.m_col
= column
;
1310 return SetItem(info
);
1313 // Gets the item text
1314 wxString
wxListCtrl::GetItemText(long item
) const
1317 return m_genericImpl
->GetItemText(item
);
1321 info
.m_mask
= wxLIST_MASK_TEXT
;
1322 info
.m_itemId
= item
;
1325 return wxEmptyString
;
1329 // Sets the item text
1330 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
1333 return m_genericImpl
->SetItemText(item
, str
);
1337 info
.m_mask
= wxLIST_MASK_TEXT
;
1338 info
.m_itemId
= item
;
1344 // Gets the item data
1345 long wxListCtrl::GetItemData(long item
) const
1348 return m_genericImpl
->GetItemData(item
);
1352 info
.m_mask
= wxLIST_MASK_DATA
;
1353 info
.m_itemId
= item
;
1360 // Sets the item data
1361 bool wxListCtrl::SetItemPtrData(long item
, wxUIntPtr data
)
1364 return m_genericImpl
->SetItemData(item
, data
);
1368 info
.m_mask
= wxLIST_MASK_DATA
;
1369 info
.m_itemId
= item
;
1372 return SetItem(info
);
1375 wxRect
wxListCtrl::GetViewRect() const
1377 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
1378 _T("wxListCtrl::GetViewRect() only works in icon mode") );
1381 return m_genericImpl
->GetViewRect();
1387 // Gets the item rectangle
1388 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
1391 return m_genericImpl
->GetItemRect(item
, rect
, code
);
1396 DataBrowserItemID id
;
1397 DataBrowserPropertyID col
= kMinColumnId
;
1399 DataBrowserPropertyPart part
= kDataBrowserPropertyEnclosingPart
;
1400 if ( code
== wxLIST_RECT_LABEL
)
1401 part
= kDataBrowserPropertyTextPart
;
1402 else if ( code
== wxLIST_RECT_ICON
)
1403 part
= kDataBrowserPropertyIconPart
;
1405 if ( !(GetWindowStyleFlag() & wxLC_VIRTUAL
) )
1407 wxMacDataItem
* thisItem
= m_dbImpl
->GetItemFromLine(item
);
1408 id
= (DataBrowserItemID
) thisItem
;
1413 GetDataBrowserItemPartBounds( m_dbImpl
->GetControlRef(), id
, col
, part
, &bounds
);
1415 rect
.x
= bounds
.left
;
1416 rect
.y
= bounds
.top
;
1417 rect
.width
= bounds
.right
- bounds
.left
; //GetClientSize().x; // we need the width of the whole row, not just the item.
1418 rect
.height
= bounds
.bottom
- bounds
.top
;
1419 //fprintf("id = %d, bounds = %d, %d, %d, %d\n", id, rect.x, rect.y, rect.width, rect.height);
1424 // Gets the item position
1425 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1428 return m_genericImpl
->GetItemPosition(item
, pos
);
1430 bool success
= false;
1435 GetItemRect(item
, itemRect
);
1436 pos
= itemRect
.GetPosition();
1443 // Sets the item position.
1444 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1447 return m_genericImpl
->SetItemPosition(item
, pos
);
1452 // Gets the number of items in the list control
1453 int wxListCtrl::GetItemCount() const
1456 return m_genericImpl
->GetItemCount();
1459 return m_dbImpl
->MacGetCount();
1464 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
1467 m_genericImpl
->SetItemSpacing(spacing
, isSmall
);
1470 wxSize
wxListCtrl::GetItemSpacing() const
1473 return m_genericImpl
->GetItemSpacing();
1475 return wxSize(0, 0);
1478 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1482 m_genericImpl
->SetItemTextColour(item
, col
);
1487 info
.m_itemId
= item
;
1488 info
.SetTextColour( col
);
1492 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1495 return m_genericImpl
->GetItemTextColour(item
);
1501 return info
.GetTextColour();
1503 return wxNullColour
;
1506 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1510 m_genericImpl
->SetItemBackgroundColour(item
, col
);
1515 info
.m_itemId
= item
;
1516 info
.SetBackgroundColour( col
);
1520 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1523 return m_genericImpl
->GetItemBackgroundColour(item
);
1529 return info
.GetBackgroundColour();
1531 return wxNullColour
;
1534 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
1538 m_genericImpl
->SetItemFont(item
, f
);
1543 info
.m_itemId
= item
;
1548 wxFont
wxListCtrl::GetItemFont( long item
) const
1551 return m_genericImpl
->GetItemFont(item
);
1557 return info
.GetFont();
1563 // Gets the number of selected items in the list control
1564 int wxListCtrl::GetSelectedItemCount() const
1567 return m_genericImpl
->GetSelectedItemCount();
1570 return m_dbImpl
->GetSelectedItemCount(NULL
, true);
1575 // Gets the text colour of the listview
1576 wxColour
wxListCtrl::GetTextColour() const
1579 return m_genericImpl
->GetTextColour();
1581 // TODO: we need owner drawn list items to customize text color.
1585 return wxNullColour
;
1588 // Sets the text colour of the listview
1589 void wxListCtrl::SetTextColour(const wxColour
& col
)
1593 m_genericImpl
->SetTextColour(col
);
1601 // Gets the index of the topmost visible item when in
1602 // list or report view
1603 long wxListCtrl::GetTopItem() const
1606 return m_genericImpl
->GetTopItem();
1611 long item
= HitTest( wxPoint(1, 1), flags
);
1612 if (flags
== wxLIST_HITTEST_ONITEM
)
1619 // Searches for an item, starting from 'item'.
1620 // 'geometry' is one of
1621 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1622 // 'state' is a state bit flag, one or more of
1623 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1624 // item can be -1 to find the first item that matches the
1626 // Returns the item or -1 if unsuccessful.
1627 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1630 return m_genericImpl
->GetNextItem(item
, geom
, state
);
1632 // TODO: implement all geometry and state options?
1635 if ( geom
== wxLIST_NEXT_ALL
|| geom
== wxLIST_NEXT_BELOW
)
1637 long count
= m_dbImpl
->MacGetCount() ;
1638 for ( long line
= item
+ 1 ; line
< count
; line
++ )
1640 DataBrowserItemID id
= line
+ 1;
1642 id
= (DataBrowserItemID
)m_dbImpl
->GetItemFromLine(line
);
1644 if ( (state
== wxLIST_STATE_DONTCARE
) )
1647 if ( (state
& wxLIST_STATE_SELECTED
) && IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), id
) )
1652 if ( geom
== wxLIST_NEXT_ABOVE
)
1656 item2
= m_dbImpl
->MacGetCount();
1658 for ( long line
= item2
- 1 ; line
>= 0; line
-- )
1660 DataBrowserItemID id
= line
+ 1;
1662 id
= (DataBrowserItemID
)m_dbImpl
->GetItemFromLine(line
);
1664 if ( (state
== wxLIST_STATE_DONTCARE
) )
1667 if ( (state
& wxLIST_STATE_SELECTED
) && IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), id
) )
1677 wxImageList
*wxListCtrl::GetImageList(int which
) const
1680 return m_genericImpl
->GetImageList(which
);
1682 if ( which
== wxIMAGE_LIST_NORMAL
)
1684 return m_imageListNormal
;
1686 else if ( which
== wxIMAGE_LIST_SMALL
)
1688 return m_imageListSmall
;
1690 else if ( which
== wxIMAGE_LIST_STATE
)
1692 return m_imageListState
;
1697 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1701 m_genericImpl
->SetImageList(imageList
, which
);
1705 if ( which
== wxIMAGE_LIST_NORMAL
)
1707 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1708 m_imageListNormal
= imageList
;
1709 m_ownsImageListNormal
= false;
1711 else if ( which
== wxIMAGE_LIST_SMALL
)
1713 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1714 m_imageListSmall
= imageList
;
1715 m_ownsImageListSmall
= false;
1717 else if ( which
== wxIMAGE_LIST_STATE
)
1719 if (m_ownsImageListState
) delete m_imageListState
;
1720 m_imageListState
= imageList
;
1721 m_ownsImageListState
= false;
1725 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1729 m_genericImpl
->AssignImageList(imageList
, which
);
1733 SetImageList(imageList
, which
);
1734 if ( which
== wxIMAGE_LIST_NORMAL
)
1735 m_ownsImageListNormal
= true;
1736 else if ( which
== wxIMAGE_LIST_SMALL
)
1737 m_ownsImageListSmall
= true;
1738 else if ( which
== wxIMAGE_LIST_STATE
)
1739 m_ownsImageListState
= true;
1742 // ----------------------------------------------------------------------------
1744 // ----------------------------------------------------------------------------
1746 // Arranges the items
1747 bool wxListCtrl::Arrange(int flag
)
1750 return m_genericImpl
->Arrange(flag
);
1755 bool wxListCtrl::DeleteItem(long item
)
1758 return m_genericImpl
->DeleteItem(item
);
1762 m_dbImpl
->MacDelete(item
);
1763 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ITEM
, GetId() );
1764 event
.SetEventObject( this );
1765 event
.m_itemIndex
= item
;
1766 HandleWindowEvent( event
);
1772 // Deletes all items
1773 bool wxListCtrl::DeleteAllItems()
1776 return m_genericImpl
->DeleteAllItems();
1780 m_dbImpl
->MacClear();
1781 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetId() );
1782 event
.SetEventObject( this );
1783 HandleWindowEvent( event
);
1788 // Deletes all items
1789 bool wxListCtrl::DeleteAllColumns()
1792 return m_genericImpl
->DeleteAllColumns();
1797 m_dbImpl
->GetColumnCount(&cols
);
1798 for (UInt32 col
= 0; col
< cols
; col
++)
1808 bool wxListCtrl::DeleteColumn(int col
)
1811 return m_genericImpl
->DeleteColumn(col
);
1815 OSStatus err
= m_dbImpl
->RemoveColumn(col
);
1816 return err
== noErr
;
1822 // Clears items, and columns if there are any.
1823 void wxListCtrl::ClearAll()
1827 m_genericImpl
->ClearAll();
1838 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1841 return m_genericImpl
->EditLabel(item
, textControlClass
);
1845 wxCHECK_MSG( (item
>= 0) && ((long)item
< GetItemCount()), NULL
,
1846 wxT("wrong index in wxListCtrl::EditLabel()") );
1848 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
1849 wxT("EditLabel() needs a text control") );
1851 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
1852 le
.SetEventObject( this );
1853 le
.m_itemIndex
= item
;
1855 GetItem( le
.m_item
);
1857 if ( GetParent()->HandleWindowEvent( le
) && !le
.IsAllowed() )
1859 // vetoed by user code
1863 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
1864 m_textctrlWrapper
= new wxListCtrlTextCtrlWrapper(this, text
, item
);
1865 return m_textctrlWrapper
->GetText();
1870 // End label editing, optionally cancelling the edit
1871 bool wxListCtrl::EndEditLabel(bool WXUNUSED(cancel
))
1873 // TODO: generic impl. doesn't have this method - is it needed for us?
1875 return true; // m_genericImpl->EndEditLabel(cancel);
1878 verify_noerr( SetDataBrowserEditItem(m_dbImpl
->GetControlRef(), kDataBrowserNoItem
, kMinColumnId
) );
1882 // Ensures this item is visible
1883 bool wxListCtrl::EnsureVisible(long item
)
1886 return m_genericImpl
->EnsureVisible(item
);
1890 wxMacDataItem
* dataItem
= m_dbImpl
->GetItemFromLine(item
);
1891 m_dbImpl
->RevealItem(dataItem
, kDataBrowserRevealWithoutSelecting
);
1897 // Find an item whose label matches this string, starting from the item after 'start'
1898 // or the beginning if 'start' is -1.
1899 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1902 return m_genericImpl
->FindItem(start
, str
, partial
);
1904 wxString str_upper
= str
.Upper();
1909 long count
= GetItemCount();
1913 wxString line_upper
= GetItemText(idx
).Upper();
1916 if (line_upper
== str_upper
)
1921 if (line_upper
.find(str_upper
) == 0)
1931 // Find an item whose data matches this data, starting from the item after 'start'
1932 // or the beginning if 'start' is -1.
1933 long wxListCtrl::FindItem(long start
, long data
)
1936 return m_genericImpl
->FindItem(start
, data
);
1941 long count
= GetItemCount();
1945 if (GetItemData(idx
) == data
)
1953 // Find an item nearest this position in the specified direction, starting from
1954 // the item after 'start' or the beginning if 'start' is -1.
1955 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1958 return m_genericImpl
->FindItem(start
, pt
, direction
);
1962 // Determines which item (if any) is at the specified point,
1963 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1965 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const
1968 return m_genericImpl
->HitTest(point
, flags
, ptrSubItem
);
1970 flags
= wxLIST_HITTEST_NOWHERE
;
1973 int colHeaderHeight
= 22; // TODO: Find a way to get this value from the db control?
1974 UInt16 rowHeight
= 0;
1975 m_dbImpl
->GetDefaultRowHeight(&rowHeight
);
1978 // get the actual row by taking scroll position into account
1979 UInt32 offsetX
, offsetY
;
1980 m_dbImpl
->GetScrollPosition( &offsetY
, &offsetX
);
1983 if ( !(GetWindowStyleFlag() & wxLC_NO_HEADER
) )
1984 y
-= colHeaderHeight
;
1989 int row
= y
/ rowHeight
;
1990 DataBrowserItemID id
;
1991 m_dbImpl
->GetItemID( (DataBrowserTableViewRowIndex
) row
, &id
);
1993 // TODO: Use GetDataBrowserItemPartBounds to return if we are in icon or label
1994 if ( !(GetWindowStyleFlag() & wxLC_VIRTUAL
) )
1996 wxMacListCtrlItem
* lcItem
;
1997 lcItem
= (wxMacListCtrlItem
*) id
;
2000 flags
= wxLIST_HITTEST_ONITEM
;
2006 if (row
< GetItemCount() )
2008 flags
= wxLIST_HITTEST_ONITEM
;
2017 int wxListCtrl::GetScrollPos(int orient
) const
2020 return m_genericImpl
->GetScrollPos(orient
);
2024 UInt32 offsetX
, offsetY
;
2025 m_dbImpl
->GetScrollPosition( &offsetY
, &offsetX
);
2026 if ( orient
== wxHORIZONTAL
)
2035 // Inserts an item, returning the index of the new item if successful,
2037 long wxListCtrl::InsertItem(wxListItem
& info
)
2039 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
2042 return m_genericImpl
->InsertItem(info
);
2044 if (m_dbImpl
&& !IsVirtual())
2046 int count
= GetItemCount();
2048 if (info
.m_itemId
> count
)
2049 info
.m_itemId
= count
;
2051 m_dbImpl
->MacInsertItem(info
.m_itemId
, &info
);
2053 wxListEvent
event( wxEVT_COMMAND_LIST_INSERT_ITEM
, GetId() );
2054 event
.SetEventObject( this );
2055 event
.m_itemIndex
= info
.m_itemId
;
2056 HandleWindowEvent( event
);
2057 return info
.m_itemId
;
2062 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
2065 return m_genericImpl
->InsertItem(index
, label
);
2068 info
.m_text
= label
;
2069 info
.m_mask
= wxLIST_MASK_TEXT
;
2070 info
.m_itemId
= index
;
2071 return InsertItem(info
);
2074 // Inserts an image item
2075 long wxListCtrl::InsertItem(long index
, int imageIndex
)
2078 return m_genericImpl
->InsertItem(index
, imageIndex
);
2081 info
.m_image
= imageIndex
;
2082 info
.m_mask
= wxLIST_MASK_IMAGE
;
2083 info
.m_itemId
= index
;
2084 return InsertItem(info
);
2087 // Inserts an image/string item
2088 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
2091 return m_genericImpl
->InsertItem(index
, label
, imageIndex
);
2094 info
.m_image
= imageIndex
;
2095 info
.m_text
= label
;
2096 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
2097 info
.m_itemId
= index
;
2098 return InsertItem(info
);
2101 // For list view mode (only), inserts a column.
2102 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
2105 return m_genericImpl
->InsertColumn(col
, item
);
2109 int width
= item
.GetWidth();
2110 if ( !(item
.GetMask() & wxLIST_MASK_WIDTH
) )
2113 DataBrowserPropertyType type
= kDataBrowserCustomType
; //kDataBrowserTextType;
2114 wxImageList
* imageList
= GetImageList(wxIMAGE_LIST_SMALL
);
2115 if (imageList
&& imageList
->GetImageCount() > 0)
2117 wxBitmap bmp
= imageList
->GetBitmap(0);
2119 // type = kDataBrowserIconAndTextType;
2122 SInt16 just
= teFlushDefault
;
2123 if (item
.GetMask() & wxLIST_MASK_FORMAT
)
2125 if (item
.GetAlign() == wxLIST_FORMAT_LEFT
)
2127 else if (item
.GetAlign() == wxLIST_FORMAT_CENTER
)
2129 else if (item
.GetAlign() == wxLIST_FORMAT_RIGHT
)
2130 just
= teFlushRight
;
2132 m_dbImpl
->InsertColumn(col
, type
, item
.GetText(), just
, width
);
2133 SetColumn(col
, item
);
2135 // set/remove options based on the wxListCtrl type.
2136 DataBrowserTableViewColumnID id
;
2137 m_dbImpl
->GetColumnIDFromIndex(col
, &id
);
2138 DataBrowserPropertyFlags flags
;
2139 verify_noerr(m_dbImpl
->GetPropertyFlags(id
, &flags
));
2140 if (GetWindowStyleFlag() & wxLC_EDIT_LABELS
)
2141 flags
|= kDataBrowserPropertyIsEditable
;
2143 if (GetWindowStyleFlag() & wxLC_VIRTUAL
){
2144 flags
&= ~kDataBrowserListViewSortableColumn
;
2146 verify_noerr(m_dbImpl
->SetPropertyFlags(id
, flags
));
2152 long wxListCtrl::InsertColumn(long col
,
2153 const wxString
& heading
,
2158 return m_genericImpl
->InsertColumn(col
, heading
, format
, width
);
2161 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
2162 item
.m_text
= heading
;
2165 item
.m_mask
|= wxLIST_MASK_WIDTH
;
2166 item
.m_width
= width
;
2168 item
.m_format
= format
;
2170 return InsertColumn(col
, item
);
2173 // scroll the control by the given number of pixels (exception: in list view,
2174 // dx is interpreted as number of columns)
2175 bool wxListCtrl::ScrollList(int dx
, int dy
)
2178 return m_genericImpl
->ScrollList(dx
, dy
);
2182 m_dbImpl
->SetScrollPosition(dx
, dy
);
2188 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
2191 return m_genericImpl
->SortItems(fn
, data
);
2196 m_compareFuncData
= data
;
2197 SortDataBrowserContainer( m_dbImpl
->GetControlRef(), kDataBrowserNoItem
, true);
2199 // we need to do this after each call, else we get a crash from wxPython when
2200 // SortItems is called the second time.
2201 m_compareFunc
= NULL
;
2202 m_compareFuncData
= 0;
2208 void wxListCtrl::OnRenameTimer()
2210 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2212 EditLabel( m_current
);
2215 bool wxListCtrl::OnRenameAccept(long itemEdit
, const wxString
& value
)
2217 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetId() );
2218 le
.SetEventObject( this );
2219 le
.m_itemIndex
= itemEdit
;
2221 GetItem( le
.m_item
);
2222 le
.m_item
.m_text
= value
;
2223 return !HandleWindowEvent( le
) ||
2227 void wxListCtrl::OnRenameCancelled(long itemEdit
)
2229 // let owner know that the edit was cancelled
2230 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2232 le
.SetEditCanceled(true);
2234 le
.SetEventObject( this );
2235 le
.m_itemIndex
= itemEdit
;
2237 GetItem( le
.m_item
);
2238 HandleWindowEvent( le
);
2241 // ----------------------------------------------------------------------------
2242 // virtual list controls
2243 // ----------------------------------------------------------------------------
2245 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
2247 // this is a pure virtual function, in fact - which is not really pure
2248 // because the controls which are not virtual don't need to implement it
2249 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2251 return wxEmptyString
;
2254 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
2256 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
2258 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
2262 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
2265 return OnGetItemImage(item
);
2270 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
2272 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
2273 _T("invalid item index in OnGetItemAttr()") );
2275 // no attributes by default
2279 void wxListCtrl::SetItemCount(long count
)
2281 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2285 m_genericImpl
->SetItemCount(count
);
2291 // we need to temporarily disable the new item creation notification
2292 // procedure to speed things up
2293 // FIXME: Even this doesn't seem to help much...
2295 // FIXME: Find a more efficient way to do this.
2296 m_dbImpl
->MacClear();
2298 DataBrowserCallbacks callbacks
;
2299 DataBrowserItemNotificationUPP itemUPP
;
2300 GetDataBrowserCallbacks(m_dbImpl
->GetControlRef(), &callbacks
);
2301 itemUPP
= callbacks
.u
.v1
.itemNotificationCallback
;
2302 callbacks
.u
.v1
.itemNotificationCallback
= 0;
2303 m_dbImpl
->SetCallbacks(&callbacks
);
2304 ::AddDataBrowserItems(m_dbImpl
->GetControlRef(), kDataBrowserNoItem
,
2305 count
, NULL
, kDataBrowserItemNoProperty
);
2306 callbacks
.u
.v1
.itemNotificationCallback
= itemUPP
;
2307 m_dbImpl
->SetCallbacks(&callbacks
);
2312 void wxListCtrl::RefreshItem(long item
)
2316 m_genericImpl
->RefreshItem(item
);
2322 DataBrowserItemID id
;
2326 wxMacDataItem
* thisItem
= m_dbImpl
->GetItemFromLine(item
);
2327 id
= (DataBrowserItemID
) thisItem
;
2332 m_dbImpl
->wxMacDataBrowserControl::UpdateItems
2336 kDataBrowserItemNoProperty
, // preSortProperty
2337 kDataBrowserNoItem
// update all columns
2342 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
2346 m_genericImpl
->RefreshItems(itemFrom
, itemTo
);
2352 const long count
= itemTo
- itemFrom
+ 1;
2353 DataBrowserItemID
*ids
= new DataBrowserItemID
[count
];
2357 for ( long i
= 0; i
< count
; i
++ )
2359 wxMacDataItem
* thisItem
= m_dbImpl
->GetItemFromLine(itemFrom
+i
);
2360 ids
[i
] = (DataBrowserItemID
) thisItem
;
2365 for ( long i
= 0; i
< count
; i
++ )
2366 ids
[i
] = itemFrom
+i
+1;
2369 m_dbImpl
->wxMacDataBrowserControl::UpdateItems
2373 kDataBrowserItemNoProperty
, // preSortProperty
2374 kDataBrowserNoItem
// update all columns
2381 void wxListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
2383 #if wxUSE_DRAG_AND_DROP
2385 m_genericImpl
->SetDropTarget( dropTarget
);
2388 wxWindow::SetDropTarget( dropTarget
);
2392 wxDropTarget
*wxListCtrl::GetDropTarget() const
2394 #if wxUSE_DRAG_AND_DROP
2396 return m_genericImpl
->GetDropTarget();
2399 return wxWindow::GetDropTarget();
2404 #if wxABI_VERSION >= 20801
2405 void wxListCtrl::SetFocus()
2409 m_genericImpl
->SetFocus();
2413 wxWindow::SetFocus();
2417 // wxMac internal data structures
2419 wxMacListCtrlItem::~wxMacListCtrlItem()
2423 void wxMacListCtrlItem::Notification(wxMacDataItemBrowserControl
*owner
,
2424 DataBrowserItemNotification message
,
2425 DataBrowserItemDataRef
WXUNUSED(itemData
) ) const
2428 wxMacDataBrowserListCtrlControl
*lb
= wxDynamicCast(owner
, wxMacDataBrowserListCtrlControl
);
2430 // we want to depend on as little as possible to make sure tear-down of controls is safe
2431 if ( message
== kDataBrowserItemRemoved
)
2433 if ( lb
!= NULL
&& lb
->GetClientDataType() == wxClientData_Object
)
2435 delete (wxClientData
*) (m_data
);
2441 else if ( message
== kDataBrowserItemAdded
)
2443 // we don't issue events on adding, the item is not really stored in the list yet, so we
2444 // avoid asserts by gettting out now
2448 wxListCtrl
*list
= wxDynamicCast( owner
->GetPeer() , wxListCtrl
);
2451 bool trigger
= false;
2453 wxListEvent
event( wxEVT_COMMAND_LIST_ITEM_SELECTED
, list
->GetId() );
2454 bool isSingle
= (list
->GetWindowStyle() & wxLC_SINGLE_SEL
) != 0;
2456 event
.SetEventObject( list
);
2457 event
.m_itemIndex
= owner
->GetLineFromItem( this ) ;
2458 event
.m_item
.m_itemId
= event
.m_itemIndex
;
2459 list
->GetItem(event
.m_item
);
2463 case kDataBrowserItemDeselected
:
2464 event
.SetEventType(wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2466 trigger
= !lb
->IsSelectionSuppressed();
2469 case kDataBrowserItemSelected
:
2470 trigger
= !lb
->IsSelectionSuppressed();
2473 case kDataBrowserItemDoubleClicked
:
2474 event
.SetEventType( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2478 case kDataBrowserEditStarted
:
2479 // TODO : how to veto ?
2480 event
.SetEventType( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
) ;
2484 case kDataBrowserEditStopped
:
2485 // TODO probably trigger only upon the value store callback, because
2486 // here IIRC we cannot veto
2487 event
.SetEventType( wxEVT_COMMAND_LIST_END_LABEL_EDIT
) ;
2497 // direct notification is not always having the listbox GetSelection() having in synch with event
2498 wxPostEvent( list
->GetEventHandler(), event
);
2504 IMPLEMENT_DYNAMIC_CLASS(wxMacDataBrowserListCtrlControl
, wxMacDataItemBrowserControl
)
2506 wxMacDataBrowserListCtrlControl::wxMacDataBrowserListCtrlControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
)
2507 : wxMacDataItemBrowserControl( peer
, pos
, size
, style
)
2509 OSStatus err
= noErr
;
2510 m_clientDataItemsType
= wxClientData_None
;
2511 m_isVirtual
= false;
2514 if ( style
& wxLC_VIRTUAL
)
2517 DataBrowserSelectionFlags options
= kDataBrowserDragSelect
;
2518 if ( style
& wxLC_SINGLE_SEL
)
2520 options
|= kDataBrowserSelectOnlyOne
;
2524 options
|= kDataBrowserCmdTogglesSelection
;
2527 err
= SetSelectionFlags( options
);
2528 verify_noerr( err
);
2530 DataBrowserCustomCallbacks callbacks
;
2531 InitializeDataBrowserCustomCallbacks( &callbacks
, kDataBrowserLatestCustomCallbacks
);
2533 if ( gDataBrowserDrawItemUPP
== NULL
)
2534 gDataBrowserDrawItemUPP
= NewDataBrowserDrawItemUPP(DataBrowserDrawItemProc
);
2536 if ( gDataBrowserHitTestUPP
== NULL
)
2537 gDataBrowserHitTestUPP
= NewDataBrowserHitTestUPP(DataBrowserHitTestProc
);
2539 callbacks
.u
.v1
.drawItemCallback
= gDataBrowserDrawItemUPP
;
2540 callbacks
.u
.v1
.hitTestCallback
= gDataBrowserHitTestUPP
;
2542 SetDataBrowserCustomCallbacks( GetControlRef(), &callbacks
);
2544 if ( style
& wxLC_LIST
)
2546 InsertColumn(0, kDataBrowserIconAndTextType
, wxEmptyString
, -1, -1);
2547 verify_noerr( AutoSizeColumns() );
2550 if ( style
& wxLC_LIST
|| style
& wxLC_NO_HEADER
)
2551 verify_noerr( SetHeaderButtonHeight( 0 ) );
2554 SetSortProperty( kMinColumnId
- 1 );
2556 SetSortProperty( kMinColumnId
);
2558 m_sortOrder
= SortOrder_None
;
2560 if ( style
& wxLC_SORT_DESCENDING
)
2562 SetSortOrder( kDataBrowserOrderDecreasing
);
2564 else if ( style
& wxLC_SORT_ASCENDING
)
2566 SetSortOrder( kDataBrowserOrderIncreasing
);
2569 if ( style
& wxLC_VRULES
)
2571 verify_noerr( DataBrowserChangeAttributes(m_controlRef
, kDataBrowserAttributeListViewDrawColumnDividers
, kDataBrowserAttributeNone
) );
2574 verify_noerr( SetHiliteStyle(kDataBrowserTableViewFillHilite
) );
2575 verify_noerr( SetHasScrollBars( (style
& wxHSCROLL
) != 0 , true ) );
2578 pascal Boolean
wxMacDataBrowserListCtrlControl::DataBrowserEditTextProc(
2580 DataBrowserItemID itemID
,
2581 DataBrowserPropertyID property
,
2582 CFStringRef theString
,
2583 Rect
*maxEditTextRect
,
2584 Boolean
*shrinkToFit
)
2586 Boolean result
= false;
2587 wxMacDataBrowserListCtrlControl
* ctl
= wxDynamicCast(wxMacControl::GetReferenceFromNativeControl( browser
), wxMacDataBrowserListCtrlControl
);
2590 result
= ctl
->ConfirmEditText(itemID
, property
, theString
, maxEditTextRect
, shrinkToFit
);
2591 theString
= CFSTR("Hello!");
2596 bool wxMacDataBrowserListCtrlControl::ConfirmEditText(
2597 DataBrowserItemID
WXUNUSED(itemID
),
2598 DataBrowserPropertyID
WXUNUSED(property
),
2599 CFStringRef
WXUNUSED(theString
),
2600 Rect
*WXUNUSED(maxEditTextRect
),
2601 Boolean
*WXUNUSED(shrinkToFit
))
2606 pascal void wxMacDataBrowserListCtrlControl::DataBrowserDrawItemProc(
2608 DataBrowserItemID itemID
,
2609 DataBrowserPropertyID property
,
2610 DataBrowserItemState itemState
,
2611 const Rect
*itemRect
,
2613 Boolean colorDevice
)
2615 wxMacDataBrowserListCtrlControl
* ctl
= wxDynamicCast(wxMacControl::GetReferenceFromNativeControl( browser
), wxMacDataBrowserListCtrlControl
);
2618 ctl
->DrawItem(itemID
, property
, itemState
, itemRect
, gdDepth
, colorDevice
);
2622 // routines needed for DrawItem
2627 kTextBoxHeight
= 14,
2628 kIconTextSpacingV
= 2,
2630 kContentHeight
= kIconHeight
+ kTextBoxHeight
+ kIconTextSpacingV
2633 static void calculateCGDrawingBounds(CGRect inItemRect
, CGRect
*outIconRect
, CGRect
*outTextRect
, bool hasIcon
= false)
2636 float iconH
, iconW
= 0;
2637 float padding
= kItemPadding
;
2640 iconH
= kIconHeight
;
2642 padding
= padding
*2;
2645 textBottom
= inItemRect
.origin
.y
;
2647 *outIconRect
= CGRectMake(inItemRect
.origin
.x
+ kItemPadding
,
2648 textBottom
+ kIconTextSpacingV
, kIconWidth
,
2651 *outTextRect
= CGRectMake(inItemRect
.origin
.x
+ padding
+ iconW
,
2652 textBottom
+ kIconTextSpacingV
, inItemRect
.size
.width
- padding
- iconW
,
2653 inItemRect
.size
.height
- kIconTextSpacingV
);
2656 void wxMacDataBrowserListCtrlControl::DrawItem(
2657 DataBrowserItemID itemID
,
2658 DataBrowserPropertyID property
,
2659 DataBrowserItemState itemState
,
2660 const Rect
*WXUNUSED(itemRect
),
2662 Boolean colorDevice
)
2665 wxFont font
= wxNullFont
;
2667 short listColumn
= property
- kMinColumnId
;
2669 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2670 wxMacListCtrlItem
* lcItem
;
2671 wxColour color
= *wxBLACK
;
2672 wxColour bgColor
= wxNullColour
;
2674 if (listColumn
>= 0)
2678 lcItem
= (wxMacListCtrlItem
*) itemID
;
2679 if (lcItem
->HasColumnInfo(listColumn
)){
2680 wxListItem
* item
= lcItem
->GetColumnInfo(listColumn
);
2682 // we always use the 0 column to get font and text/background colors.
2683 if (lcItem
->HasColumnInfo(0))
2685 wxListItem
* firstItem
= lcItem
->GetColumnInfo(0);
2686 color
= firstItem
->GetTextColour();
2687 bgColor
= firstItem
->GetBackgroundColour();
2688 font
= firstItem
->GetFont();
2691 if (item
->GetMask() & wxLIST_MASK_TEXT
)
2692 text
= item
->GetText();
2693 if (item
->GetMask() & wxLIST_MASK_IMAGE
)
2694 imgIndex
= item
->GetImage();
2700 long itemNum
= (long)itemID
-1;
2701 if (itemNum
>= 0 && itemNum
< list
->GetItemCount())
2703 text
= list
->OnGetItemText( itemNum
, listColumn
);
2704 imgIndex
= list
->OnGetItemColumnImage( itemNum
, listColumn
);
2705 wxListItemAttr
* attrs
= list
->OnGetItemAttr( itemNum
);
2708 if (attrs
->HasBackgroundColour())
2709 bgColor
= attrs
->GetBackgroundColour();
2710 if (attrs
->HasTextColour())
2711 color
= attrs
->GetTextColour();
2712 if (attrs
->HasFont())
2713 font
= attrs
->GetFont();
2719 wxColour listBgColor
= list
->GetBackgroundColour();
2720 if (bgColor
== wxNullColour
)
2721 bgColor
= listBgColor
;
2724 font
= list
->GetFont();
2726 wxCFStringRef
cfString( text
, wxLocale::GetSystemEncoding() );
2729 CGRect enclosingCGRect
, iconCGRect
, textCGRect
;
2731 ThemeDrawingState savedState
= NULL
;
2732 CGContextRef context
= (CGContextRef
)list
->MacGetDrawingContext();
2733 RGBColor labelColor
;
2735 labelColor
.green
= 0;
2736 labelColor
.blue
= 0;
2738 RGBColor backgroundColor
;
2739 backgroundColor
.red
= 255;
2740 backgroundColor
.green
= 255;
2741 backgroundColor
.blue
= 255;
2743 GetDataBrowserItemPartBounds(GetControlRef(), itemID
, property
, kDataBrowserPropertyEnclosingPart
,
2746 enclosingCGRect
= CGRectMake(enclosingRect
.left
,
2748 enclosingRect
.right
- enclosingRect
.left
,
2749 enclosingRect
.bottom
- enclosingRect
.top
);
2751 bool hasFocus
= (wxWindow::FindFocus() == list
);
2752 active
= IsControlActive(GetControlRef());
2754 // don't paint the background over the vertical rule line
2755 if ( list
->GetWindowStyleFlag() & wxLC_VRULES
)
2757 enclosingCGRect
.origin
.x
+= 1;
2758 enclosingCGRect
.size
.width
-= 1;
2760 if (itemState
== kDataBrowserItemIsSelected
)
2763 GetThemeDrawingState(&savedState
);
2765 if (active
&& hasFocus
)
2767 GetThemeBrushAsColor(kThemeBrushAlternatePrimaryHighlightColor
, 32, true, &backgroundColor
);
2768 GetThemeTextColor(kThemeTextColorWhite
, gdDepth
, colorDevice
, &labelColor
);
2772 GetThemeBrushAsColor(kThemeBrushSecondaryHighlightColor
, 32, true, &backgroundColor
);
2773 GetThemeTextColor(kThemeTextColorBlack
, gdDepth
, colorDevice
, &labelColor
);
2775 CGContextSaveGState(context
);
2777 CGContextSetRGBFillColor(context
, (CGFloat
)backgroundColor
.red
/ (CGFloat
)USHRT_MAX
,
2778 (CGFloat
)backgroundColor
.green
/ (CGFloat
)USHRT_MAX
,
2779 (CGFloat
)backgroundColor
.blue
/ (CGFloat
)USHRT_MAX
, (CGFloat
) 1.0);
2780 CGContextFillRect(context
, enclosingCGRect
);
2782 CGContextRestoreGState(context
);
2788 color
.GetRGBColor(&labelColor
);
2789 else if (list
->GetTextColour().Ok())
2790 list
->GetTextColour().GetRGBColor(&labelColor
);
2794 bgColor
.GetRGBColor(&backgroundColor
);
2795 CGContextSaveGState(context
);
2797 CGContextSetRGBFillColor(context
, (CGFloat
)backgroundColor
.red
/ (CGFloat
)USHRT_MAX
,
2798 (CGFloat
)backgroundColor
.green
/ (CGFloat
)USHRT_MAX
,
2799 (CGFloat
)backgroundColor
.blue
/ (CGFloat
)USHRT_MAX
, (CGFloat
) 1.0);
2800 CGContextFillRect(context
, enclosingCGRect
);
2802 CGContextRestoreGState(context
);
2806 calculateCGDrawingBounds(enclosingCGRect
, &iconCGRect
, &textCGRect
, (imgIndex
!= -1) );
2810 wxImageList
* imageList
= list
->GetImageList(wxIMAGE_LIST_SMALL
);
2811 if (imageList
&& imageList
->GetImageCount() > 0){
2812 wxBitmap bmp
= imageList
->GetBitmap(imgIndex
);
2813 IconRef icon
= bmp
.GetIconRef();
2815 CGContextSaveGState(context
);
2816 CGContextTranslateCTM(context
, 0,iconCGRect
.origin
.y
+ CGRectGetMaxY(iconCGRect
));
2817 CGContextScaleCTM(context
,1.0f
,-1.0f
);
2818 PlotIconRefInContext(context
, &iconCGRect
, kAlignNone
,
2819 active
? kTransformNone
: kTransformDisabled
, NULL
,
2820 kPlotIconRefNormalFlags
, icon
);
2822 CGContextRestoreGState(context
);
2826 HIThemeTextHorizontalFlush hFlush
= kHIThemeTextHorizontalFlushLeft
;
2827 HIThemeTextInfo info
;
2829 #if wxMAC_USE_CORE_TEXT
2830 if ( UMAGetSystemVersion() >= 0x1050 )
2832 info
.version
= kHIThemeTextInfoVersionOne
;
2833 info
.fontID
= kThemeViewsFont
;
2836 info
.fontID
= kThemeSpecifiedFont
;
2837 info
.font
= (CTFontRef
) font
.MacGetCTFont();
2842 #if wxMAC_USE_ATSU_TEXT
2845 info
.version
= kHIThemeTextInfoVersionZero
;
2846 info
.fontID
= kThemeViewsFont
;
2850 info
.fontID
= font
.MacGetThemeFontID();
2852 ::TextSize( (short)(font
.MacGetFontSize()) ) ;
2853 ::TextFace( font
.MacGetFontStyle() ) ;
2859 list
->GetColumn(listColumn
, item
);
2860 if (item
.GetMask() & wxLIST_MASK_FORMAT
)
2862 if (item
.GetAlign() == wxLIST_FORMAT_LEFT
)
2863 hFlush
= kHIThemeTextHorizontalFlushLeft
;
2864 else if (item
.GetAlign() == wxLIST_FORMAT_CENTER
)
2865 hFlush
= kHIThemeTextHorizontalFlushCenter
;
2866 else if (item
.GetAlign() == wxLIST_FORMAT_RIGHT
)
2868 hFlush
= kHIThemeTextHorizontalFlushRight
;
2869 textCGRect
.origin
.x
-= kItemPadding
; // give a little extra paddding
2873 info
.state
= active
? kThemeStateActive
: kThemeStateInactive
;
2874 info
.horizontalFlushness
= hFlush
;
2875 info
.verticalFlushness
= kHIThemeTextVerticalFlushCenter
;
2876 info
.options
= kHIThemeTextBoxOptionNone
;
2877 info
.truncationPosition
= kHIThemeTextTruncationEnd
;
2878 info
.truncationMaxLines
= 1;
2880 CGContextSaveGState(context
);
2881 CGContextSetRGBFillColor (context
, (CGFloat
)labelColor
.red
/ (CGFloat
)USHRT_MAX
,
2882 (CGFloat
)labelColor
.green
/ (CGFloat
)USHRT_MAX
,
2883 (CGFloat
)labelColor
.blue
/ (CGFloat
)USHRT_MAX
, (CGFloat
) 1.0);
2885 HIThemeDrawTextBox(cfString
, &textCGRect
, &info
, context
, kHIThemeOrientationNormal
);
2887 CGContextRestoreGState(context
);
2890 if (savedState
!= NULL
)
2891 SetThemeDrawingState(savedState
, true);
2895 OSStatus
wxMacDataBrowserListCtrlControl::GetSetItemData(DataBrowserItemID itemID
,
2896 DataBrowserPropertyID property
,
2897 DataBrowserItemDataRef itemData
,
2898 Boolean changeValue
)
2902 short listColumn
= property
- kMinColumnId
;
2904 OSStatus err
= errDataBrowserPropertyNotSupported
;
2905 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2906 wxMacListCtrlItem
* lcItem
= NULL
;
2908 if (listColumn
>= 0)
2912 lcItem
= (wxMacListCtrlItem
*) itemID
;
2913 if (lcItem
&& lcItem
->HasColumnInfo(listColumn
)){
2914 wxListItem
* item
= lcItem
->GetColumnInfo(listColumn
);
2915 if (item
->GetMask() & wxLIST_MASK_TEXT
)
2916 text
= item
->GetText();
2917 if (item
->GetMask() & wxLIST_MASK_IMAGE
)
2918 imgIndex
= item
->GetImage();
2923 long itemNum
= (long)itemID
-1;
2924 if (itemNum
>= 0 && itemNum
< list
->GetItemCount())
2926 text
= list
->OnGetItemText( itemNum
, listColumn
);
2927 imgIndex
= list
->OnGetItemColumnImage( itemNum
, listColumn
);
2936 case kDataBrowserItemIsEditableProperty
:
2937 if ( list
&& list
->HasFlag( wxLC_EDIT_LABELS
) )
2939 verify_noerr(SetDataBrowserItemDataBooleanValue( itemData
, true ));
2944 if ( property
>= kMinColumnId
)
2946 if (!text
.IsEmpty()){
2947 wxCFStringRef
cfStr( text
, wxLocale::GetSystemEncoding() );
2948 err
= ::SetDataBrowserItemDataText( itemData
, cfStr
);
2954 if ( imgIndex
!= -1 )
2956 wxImageList
* imageList
= list
->GetImageList(wxIMAGE_LIST_SMALL
);
2957 if (imageList
&& imageList
->GetImageCount() > 0){
2958 wxBitmap bmp
= imageList
->GetBitmap(imgIndex
);
2959 IconRef icon
= bmp
.GetIconRef();
2960 ::SetDataBrowserItemDataIcon(itemData
, icon
);
2974 if ( property
>= kMinColumnId
)
2976 short listColumn
= property
- kMinColumnId
;
2978 // TODO probably send the 'end edit' from here, as we
2979 // can then deal with the veto
2981 verify_noerr( GetDataBrowserItemDataText( itemData
, &sr
) ) ;
2982 wxCFStringRef
cfStr(sr
) ;;
2984 list
->SetItem( (long)itemData
-1 , listColumn
, cfStr
.AsString() ) ;
2988 lcItem
->SetColumnTextValue( listColumn
, cfStr
.AsString() );
2998 void wxMacDataBrowserListCtrlControl::ItemNotification(DataBrowserItemID itemID
,
2999 DataBrowserItemNotification message
,
3000 DataBrowserItemDataRef
WXUNUSED(itemData
) )
3002 // we want to depend on as little as possible to make sure tear-down of controls is safe
3003 if ( message
== kDataBrowserItemRemoved
)
3005 // make sure MacDelete does the proper teardown.
3008 else if ( message
== kDataBrowserItemAdded
)
3010 // we don't issue events on adding, the item is not really stored in the list yet, so we
3011 // avoid asserts by getting out now
3015 wxListCtrl
*list
= wxDynamicCast( GetPeer() , wxListCtrl
);
3018 bool trigger
= false;
3020 wxListEvent
event( wxEVT_COMMAND_LIST_ITEM_SELECTED
, list
->GetId() );
3022 event
.SetEventObject( list
);
3023 if ( !list
->IsVirtual() )
3025 DataBrowserTableViewRowIndex result
= 0;
3026 verify_noerr( GetItemRow( itemID
, &result
) ) ;
3027 event
.m_itemIndex
= result
;
3031 event
.m_itemIndex
= (long)itemID
-1;
3033 event
.m_item
.m_itemId
= event
.m_itemIndex
;
3034 list
->GetItem(event
.m_item
);
3038 case kDataBrowserItemDeselected
:
3039 event
.SetEventType(wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
3040 // as the generic implementation is also triggering this
3041 // event for single selection, we do the same (different than listbox)
3042 trigger
= !IsSelectionSuppressed();
3045 case kDataBrowserItemSelected
:
3046 trigger
= !IsSelectionSuppressed();
3050 case kDataBrowserItemDoubleClicked
:
3051 event
.SetEventType( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
3055 case kDataBrowserEditStarted
:
3056 // TODO : how to veto ?
3057 event
.SetEventType( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
) ;
3061 case kDataBrowserEditStopped
:
3062 // TODO probably trigger only upon the value store callback, because
3063 // here IIRC we cannot veto
3064 event
.SetEventType( wxEVT_COMMAND_LIST_END_LABEL_EDIT
) ;
3074 // direct notification is not always having the listbox GetSelection() having in synch with event
3075 wxPostEvent( list
->GetEventHandler(), event
);
3080 Boolean
wxMacDataBrowserListCtrlControl::CompareItems(DataBrowserItemID itemOneID
,
3081 DataBrowserItemID itemTwoID
,
3082 DataBrowserPropertyID sortProperty
)
3085 bool retval
= false;
3087 wxString otherItemText
;
3089 long otherItemOrder
;
3091 int colId
= sortProperty
- kMinColumnId
;
3093 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
3095 DataBrowserSortOrder sort
;
3096 verify_noerr(GetSortOrder(&sort
));
3102 wxMacListCtrlItem
* item
= (wxMacListCtrlItem
*)itemOneID
;
3103 wxMacListCtrlItem
* otherItem
= (wxMacListCtrlItem
*)itemTwoID
;
3105 itemOrder
= item
->GetOrder();
3106 otherItemOrder
= item
->GetOrder();
3108 wxListCtrlCompare func
= list
->GetCompareFunc();
3113 if (item
&& item
->HasColumnInfo(0))
3114 item1
= item
->GetColumnInfo(0)->GetData();
3115 if (otherItem
&& otherItem
->HasColumnInfo(0))
3116 item2
= otherItem
->GetColumnInfo(0)->GetData();
3118 if (item1
> -1 && item2
> -1)
3120 int result
= func(item1
, item2
, list
->GetCompareFuncData());
3121 if (sort
== kDataBrowserOrderIncreasing
)
3128 // we can't use the native control's sorting abilities, so just
3130 return itemOrder
< otherItemOrder
;
3135 long itemNum
= (long)itemOneID
;
3136 long otherItemNum
= (long)itemTwoID
;
3138 // virtual listctrls don't support sorting
3139 return itemNum
< otherItemNum
;
3143 // fallback for undefined cases
3144 retval
= itemOneID
< itemTwoID
;
3150 wxMacDataBrowserListCtrlControl::~wxMacDataBrowserListCtrlControl()
3154 void wxMacDataBrowserListCtrlControl::MacSetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
* item
)
3156 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
3157 wxASSERT_MSG( dataItem
, _T("could not obtain wxMacDataItem for row in MacSetColumnInfo. Is row a valid wxListCtrl row?") );
3160 wxMacListCtrlItem
* listItem
= wx_static_cast(wxMacListCtrlItem
*,dataItem
);
3161 bool hasInfo
= listItem
->HasColumnInfo( column
);
3162 listItem
->SetColumnInfo( column
, item
);
3163 listItem
->SetOrder(row
);
3164 UpdateState(dataItem
, item
);
3166 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
3168 // NB: When this call was made before a control was completely shown, it would
3169 // update the item prematurely (i.e. no text would be listed) and, on show,
3170 // only the sorted column would be refreshed, meaning only first column text labels
3171 // would be shown. Making sure not to update items until the control is visible
3172 // seems to fix this issue.
3173 if (hasInfo
&& list
->IsShown())
3174 UpdateItem( wxMacDataBrowserRootContainer
, listItem
, kMinColumnId
+ column
);
3178 // apply changes that need to happen immediately, rather than when the
3179 // databrowser control fires a callback.
3180 void wxMacDataBrowserListCtrlControl::UpdateState(wxMacDataItem
* dataItem
, wxListItem
* listItem
)
3182 bool isSelected
= IsItemSelected( dataItem
);
3183 bool isSelectedState
= (listItem
->GetState() == wxLIST_STATE_SELECTED
);
3185 // toggle the selection state if wxListInfo state and actual state don't match.
3186 if ( listItem
->GetMask() & wxLIST_MASK_STATE
&& isSelected
!= isSelectedState
)
3188 DataBrowserSetOption options
= kDataBrowserItemsAdd
;
3189 if (!isSelectedState
)
3190 options
= kDataBrowserItemsRemove
;
3191 SetSelectedItem(dataItem
, options
);
3193 // TODO: Set column width if item width > than current column width
3196 void wxMacDataBrowserListCtrlControl::MacGetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
& item
)
3198 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
3199 wxASSERT_MSG( dataItem
, _T("could not obtain wxMacDataItem in MacGetColumnInfo. Is row a valid wxListCtrl row?") );
3200 // CS should this guard against dataItem = 0 ? , as item is not a pointer if (item) is not appropriate
3203 wxMacListCtrlItem
* listItem
=wx_static_cast(wxMacListCtrlItem
*,dataItem
);
3205 if (!listItem
->HasColumnInfo( column
))
3208 wxListItem
* oldItem
= listItem
->GetColumnInfo( column
);
3212 long mask
= item
.GetMask();
3214 // by default, get everything for backwards compatibility
3217 if ( mask
& wxLIST_MASK_TEXT
)
3218 item
.SetText(oldItem
->GetText());
3219 if ( mask
& wxLIST_MASK_IMAGE
)
3220 item
.SetImage(oldItem
->GetImage());
3221 if ( mask
& wxLIST_MASK_DATA
)
3222 item
.SetData(oldItem
->GetData());
3223 if ( mask
& wxLIST_MASK_STATE
)
3224 item
.SetState(oldItem
->GetState());
3225 if ( mask
& wxLIST_MASK_WIDTH
)
3226 item
.SetWidth(oldItem
->GetWidth());
3227 if ( mask
& wxLIST_MASK_FORMAT
)
3228 item
.SetAlign(oldItem
->GetAlign());
3230 item
.SetTextColour(oldItem
->GetTextColour());
3231 item
.SetBackgroundColour(oldItem
->GetBackgroundColour());
3232 item
.SetFont(oldItem
->GetFont());
3237 void wxMacDataBrowserListCtrlControl::MacInsertItem( unsigned int n
, wxListItem
* item
)
3239 wxMacDataItemBrowserControl::MacInsert(n
, item
->GetText());
3240 MacSetColumnInfo(n
, 0, item
);
3243 wxMacDataItem
* wxMacDataBrowserListCtrlControl::CreateItem()
3245 return new wxMacListCtrlItem();
3248 wxMacListCtrlItem::wxMacListCtrlItem()
3250 m_rowItems
= wxListItemList();
3253 int wxMacListCtrlItem::GetColumnImageValue( unsigned int column
)
3255 if ( HasColumnInfo(column
) )
3256 return GetColumnInfo(column
)->GetImage();
3261 void wxMacListCtrlItem::SetColumnImageValue( unsigned int column
, int imageIndex
)
3263 if ( HasColumnInfo(column
) )
3264 GetColumnInfo(column
)->SetImage(imageIndex
);
3267 wxString
wxMacListCtrlItem::GetColumnTextValue( unsigned int column
)
3272 if ( HasColumnInfo(column
) )
3273 return GetColumnInfo(column
)->GetText();
3275 return wxEmptyString
;
3278 void wxMacListCtrlItem::SetColumnTextValue( unsigned int column
, const wxString
& text
)
3280 if ( HasColumnInfo(column
) )
3281 GetColumnInfo(column
)->SetText(text
);
3283 // for compatibility with superclass APIs
3288 wxListItem
* wxMacListCtrlItem::GetColumnInfo( unsigned int column
)
3290 wxASSERT_MSG( HasColumnInfo(column
), _T("invalid column index in wxMacListCtrlItem") );
3291 return m_rowItems
[column
];
3294 bool wxMacListCtrlItem::HasColumnInfo( unsigned int column
)
3296 return !(m_rowItems
.find( column
) == m_rowItems
.end());
3299 void wxMacListCtrlItem::SetColumnInfo( unsigned int column
, wxListItem
* item
)
3302 if ( !HasColumnInfo(column
) )
3304 wxListItem
* listItem
= new wxListItem(*item
);
3305 m_rowItems
[column
] = listItem
;
3309 wxListItem
* listItem
= GetColumnInfo( column
);
3310 long mask
= item
->GetMask();
3311 if (mask
& wxLIST_MASK_TEXT
)
3312 listItem
->SetText(item
->GetText());
3313 if (mask
& wxLIST_MASK_DATA
)
3314 listItem
->SetData(item
->GetData());
3315 if (mask
& wxLIST_MASK_IMAGE
)
3316 listItem
->SetImage(item
->GetImage());
3317 if (mask
& wxLIST_MASK_STATE
)
3318 listItem
->SetState(item
->GetState());
3319 if (mask
& wxLIST_MASK_FORMAT
)
3320 listItem
->SetAlign(item
->GetAlign());
3321 if (mask
& wxLIST_MASK_WIDTH
)
3322 listItem
->SetWidth(item
->GetWidth());
3324 if ( item
->HasAttributes() )
3326 if ( listItem
->HasAttributes() )
3327 listItem
->GetAttributes()->AssignFrom(*item
->GetAttributes());
3330 listItem
->SetTextColour(item
->GetTextColour());
3331 listItem
->SetBackgroundColour(item
->GetBackgroundColour());
3332 listItem
->SetFont(item
->GetFont());
3338 int wxListCtrl::CalcColumnAutoWidth(int col
) const
3342 for ( int i
= 0; i
< GetItemCount(); i
++ )
3345 info
.SetMask(wxLIST_MASK_TEXT
| wxLIST_MASK_IMAGE
);
3347 info
.SetColumn(col
);
3350 const wxFont font
= info
.GetFont();
3354 GetTextExtent(info
.GetText(), &w
, NULL
, NULL
, NULL
, &font
);
3356 GetTextExtent(info
.GetText(), &w
, NULL
);
3358 w
+= 2 * kItemPadding
;
3360 if ( info
.GetImage() != -1 )
3363 width
= wxMax(width
, w
);
3369 #endif // wxUSE_LISTCTRL