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
)
659 wxListEvent
le( wxEVT_COMMAND_LIST_KEY_DOWN
, GetId() );
660 le
.SetEventObject(this);
661 le
.m_code
= event
.GetKeyCode();
666 le
.m_itemIndex
= m_current
;
667 le
.m_item
.m_itemId
= m_current
;
669 GetEventHandler()->ProcessEvent(le
);
676 bool wxListCtrl::Create(wxWindow
*parent
,
681 const wxValidator
& validator
,
682 const wxString
& name
)
685 // for now, we'll always use the generic list control for ICON and LIST views,
686 // because they dynamically change the number of columns on resize.
687 // Also, allow the user to set it to use the list ctrl as well.
688 if ( (wxSystemOptions::HasOption( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
)
689 && (wxSystemOptions::GetOptionInt( wxMAC_ALWAYS_USE_GENERIC_LISTCTRL
) == 1)) ||
690 (style
& wxLC_ICON
) || (style
& wxLC_SMALL_ICON
) || (style
& wxLC_LIST
) )
692 m_macIsUserPane
= true;
694 long paneStyle
= style
;
695 paneStyle
&= ~wxSIMPLE_BORDER
;
696 paneStyle
&= ~wxDOUBLE_BORDER
;
697 paneStyle
&= ~wxSUNKEN_BORDER
;
698 paneStyle
&= ~wxRAISED_BORDER
;
699 paneStyle
&= ~wxSTATIC_BORDER
;
700 if ( !wxWindow::Create(parent
, id
, pos
, size
, paneStyle
| wxNO_BORDER
, name
) )
703 // since the generic control is a child, make sure we position it at 0, 0
704 m_genericImpl
= new wxGenericListCtrlHook(this, id
, wxPoint(0, 0), size
, style
, validator
, name
);
705 m_genericImpl
->PushEventHandler( new wxMacListCtrlEventDelegate( this, GetId() ) );
711 m_macIsUserPane
= false;
712 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
& ~(wxHSCROLL
| wxVSCROLL
), name
) )
714 m_dbImpl
= new wxMacDataBrowserListCtrlControl( this, pos
, size
, style
);
717 MacPostControlCreate( pos
, size
);
719 InstallControlEventHandler( m_peer
->GetControlRef() , GetwxMacListCtrlEventHandlerUPP(),
720 GetEventTypeCount(eventList
), eventList
, this,
721 (EventHandlerRef
*)&m_macListCtrlEventHandler
);
727 wxListCtrl::~wxListCtrl()
731 m_genericImpl
->PopEventHandler(/* deleteHandler = */ true);
734 if (m_ownsImageListNormal
)
735 delete m_imageListNormal
;
736 if (m_ownsImageListSmall
)
737 delete m_imageListSmall
;
738 if (m_ownsImageListState
)
739 delete m_imageListState
;
741 delete m_renameTimer
;
744 // ----------------------------------------------------------------------------
745 // set/get/change style
746 // ----------------------------------------------------------------------------
748 // Add or remove a single window style
749 void wxListCtrl::SetSingleStyle(long style
, bool add
)
751 long flag
= GetWindowStyleFlag();
753 // Get rid of conflicting styles
756 if ( style
& wxLC_MASK_TYPE
)
757 flag
= flag
& ~wxLC_MASK_TYPE
;
758 if ( style
& wxLC_MASK_ALIGN
)
759 flag
= flag
& ~wxLC_MASK_ALIGN
;
760 if ( style
& wxLC_MASK_SORT
)
761 flag
= flag
& ~wxLC_MASK_SORT
;
769 SetWindowStyleFlag(flag
);
772 // Set the whole window style
773 void wxListCtrl::SetWindowStyleFlag(long flag
)
775 if ( flag
!= m_windowStyle
)
777 m_windowStyle
= flag
;
781 m_genericImpl
->SetWindowStyleFlag(flag
);
788 void wxListCtrl::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
790 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
793 m_genericImpl
->SetSize(0, 0, width
, height
, sizeFlags
);
795 // determine if we need a horizontal scrollbar, and add it if so
799 for (int column
= 0; column
< GetColumnCount(); column
++)
801 totalWidth
+= m_dbImpl
->GetColumnWidth( column
);
804 if ( !(m_dbImpl
->GetFlags() & wxHSCROLL
) )
806 Boolean vertScrollBar
;
807 GetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), NULL
, &vertScrollBar
);
808 if (totalWidth
> width
)
809 SetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), true, vertScrollBar
);
811 SetDataBrowserHasScrollBars( m_dbImpl
->GetControlRef(), false, vertScrollBar
);
816 wxSize
wxListCtrl::DoGetBestSize() const
818 return wxWindow::DoGetBestSize();
821 bool wxListCtrl::SetFont(const wxFont
& font
)
824 rv
= wxControl::SetFont(font
);
826 rv
= m_genericImpl
->SetFont(font
);
830 bool wxListCtrl::SetForegroundColour(const wxColour
& colour
)
834 rv
= m_genericImpl
->SetForegroundColour(colour
);
836 SetTextColour(colour
);
840 bool wxListCtrl::SetBackgroundColour(const wxColour
& colour
)
844 rv
= m_genericImpl
->SetBackgroundColour(colour
);
850 wxColour
wxListCtrl::GetBackgroundColour()
853 return m_genericImpl
->GetBackgroundColour();
860 // ----------------------------------------------------------------------------
862 // ----------------------------------------------------------------------------
864 // Gets information about this column
865 bool wxListCtrl::GetColumn(int col
, wxListItem
& item
) const
868 return m_genericImpl
->GetColumn(col
, item
);
874 wxColumnList::compatibility_iterator node
= m_colsInfo
.Item( col
);
875 wxASSERT_MSG( node
, _T("invalid column index in wxMacListCtrlItem") );
876 wxListItem
* column
= node
->GetData();
878 long mask
= column
->GetMask();
879 if (mask
& wxLIST_MASK_TEXT
)
880 item
.SetText(column
->GetText());
881 if (mask
& wxLIST_MASK_DATA
)
882 item
.SetData(column
->GetData());
883 if (mask
& wxLIST_MASK_IMAGE
)
884 item
.SetImage(column
->GetImage());
885 if (mask
& wxLIST_MASK_STATE
)
886 item
.SetState(column
->GetState());
887 if (mask
& wxLIST_MASK_FORMAT
)
888 item
.SetAlign(column
->GetAlign());
889 if (mask
& wxLIST_MASK_WIDTH
)
890 item
.SetWidth(column
->GetWidth());
896 // Sets information about this column
897 bool wxListCtrl::SetColumn(int col
, wxListItem
& item
)
900 return m_genericImpl
->SetColumn(col
, item
);
904 long mask
= item
.GetMask();
905 if ( col
>= (int)m_colsInfo
.GetCount() )
907 wxListItem
* listItem
= new wxListItem(item
);
908 m_colsInfo
.Append( listItem
);
913 GetColumn( col
, listItem
);
915 if (mask
& wxLIST_MASK_TEXT
)
916 listItem
.SetText(item
.GetText());
917 if (mask
& wxLIST_MASK_DATA
)
918 listItem
.SetData(item
.GetData());
919 if (mask
& wxLIST_MASK_IMAGE
)
920 listItem
.SetImage(item
.GetImage());
921 if (mask
& wxLIST_MASK_STATE
)
922 listItem
.SetState(item
.GetState());
923 if (mask
& wxLIST_MASK_FORMAT
)
924 listItem
.SetAlign(item
.GetAlign());
925 if (mask
& wxLIST_MASK_WIDTH
)
926 listItem
.SetWidth(item
.GetWidth());
929 // change the appearance in the databrowser.
930 DataBrowserListViewHeaderDesc columnDesc
;
931 columnDesc
.version
=kDataBrowserListViewLatestHeaderDesc
;
932 verify_noerr( m_dbImpl
->GetHeaderDesc( kMinColumnId
+ col
, &columnDesc
) );
935 if (item.GetMask() & wxLIST_MASK_TEXT)
939 enc = m_font.GetEncoding();
941 enc = wxLocale::GetSystemEncoding();
942 wxMacCFStringHolder cfTitle;
943 cfTitle.Assign( item.GetText() , enc );
944 if(columnDesc.titleString)
945 CFRelease(columnDesc.titleString);
946 columnDesc.titleString = cfTitle;
950 if (item
.GetMask() & wxLIST_MASK_IMAGE
&& item
.GetImage() != -1 )
952 columnDesc
.btnContentInfo
.contentType
= kControlContentIconRef
;
953 wxImageList
* imageList
= GetImageList(wxIMAGE_LIST_SMALL
);
954 if (imageList
&& imageList
->GetImageCount() > 0 )
956 wxBitmap bmp
= imageList
->GetBitmap( item
.GetImage() );
957 IconRef icon
= bmp
.GetBitmapData()->GetIconRef();
958 columnDesc
.btnContentInfo
.u
.iconRef
= icon
;
962 verify_noerr( m_dbImpl
->SetHeaderDesc( kMinColumnId
+ col
, &columnDesc
) );
968 int wxListCtrl::GetColumnCount() const
971 return m_genericImpl
->GetColumnCount();
976 m_dbImpl
->GetColumnCount(&count
);
983 // Gets the column width
984 int wxListCtrl::GetColumnWidth(int col
) const
987 return m_genericImpl
->GetColumnWidth(col
);
991 return m_dbImpl
->GetColumnWidth(col
);
997 // Sets the column width
998 bool wxListCtrl::SetColumnWidth(int col
, int width
)
1001 return m_genericImpl
->SetColumnWidth(col
, width
);
1005 int mywidth
= width
;
1006 if (width
== wxLIST_AUTOSIZE
|| width
== wxLIST_AUTOSIZE_USEHEADER
)
1011 for (int column
= 0; column
< GetColumnCount(); column
++)
1014 GetColumn(col
, colInfo
);
1016 colInfo
.SetWidth(width
);
1017 SetColumn(col
, colInfo
);
1019 m_dbImpl
->SetColumnWidth(col
, mywidth
);
1025 GetColumn(col
, colInfo
);
1027 colInfo
.SetWidth(width
);
1028 SetColumn(col
, colInfo
);
1029 m_dbImpl
->SetColumnWidth(col
, mywidth
);
1037 // Gets the number of items that can fit vertically in the
1038 // visible area of the list control (list or report view)
1039 // or the total number of items in the list control (icon
1040 // or small icon view)
1041 int wxListCtrl::GetCountPerPage() const
1044 return m_genericImpl
->GetCountPerPage();
1053 // Gets the edit control for editing labels.
1054 wxTextCtrl
* wxListCtrl::GetEditControl() const
1057 return m_genericImpl
->GetEditControl();
1062 // Gets information about the item
1063 bool wxListCtrl::GetItem(wxListItem
& info
) const
1066 return m_genericImpl
->GetItem(info
);
1072 if (info
.m_itemId
>= 0 && info
.m_itemId
< GetItemCount())
1073 m_dbImpl
->MacGetColumnInfo(info
.m_itemId
, info
.m_col
, info
);
1077 if (info
.m_itemId
>= 0 && info
.m_itemId
< GetItemCount())
1079 info
.SetText( OnGetItemText(info
.m_itemId
, info
.m_col
) );
1080 info
.SetImage( OnGetItemColumnImage(info
.m_itemId
, info
.m_col
) );
1081 if (info
.GetMask() & wxLIST_MASK_STATE
)
1083 if (IsDataBrowserItemSelected( m_dbImpl
->GetControlRef(), info
.m_itemId
+1 ))
1084 info
.SetState(info
.GetState() | wxLIST_STATE_SELECTED
);
1087 wxListItemAttr
* attrs
= OnGetItemAttr( info
.m_itemId
);
1090 info
.SetFont( attrs
->GetFont() );
1091 info
.SetBackgroundColour( attrs
->GetBackgroundColour() );
1092 info
.SetTextColour( attrs
->GetTextColour() );
1097 bool success
= true;
1101 // Sets information about the item
1102 bool wxListCtrl::SetItem(wxListItem
& info
)
1105 return m_genericImpl
->SetItem(info
);
1108 m_dbImpl
->MacSetColumnInfo( info
.m_itemId
, info
.m_col
, &info
);
1113 long wxListCtrl::SetItem(long index
, int col
, const wxString
& label
, int imageId
)
1116 return m_genericImpl
->SetItem(index
, col
, label
, imageId
);
1119 info
.m_text
= label
;
1120 info
.m_mask
= wxLIST_MASK_TEXT
;
1121 info
.m_itemId
= index
;
1125 info
.m_image
= imageId
;
1126 info
.m_mask
|= wxLIST_MASK_IMAGE
;
1128 return SetItem(info
);
1132 // Gets the item state
1133 int wxListCtrl::GetItemState(long item
, long stateMask
) const
1136 return m_genericImpl
->GetItemState(item
, stateMask
);
1140 if ( HasFlag(wxLC_VIRTUAL
) )
1142 if (stateMask
== wxLIST_STATE_SELECTED
)
1144 if (IsDataBrowserItemSelected( m_dbImpl
->GetControlRef(), item
+1 ))
1145 return wxLIST_STATE_SELECTED
;
1154 info
.m_mask
= wxLIST_MASK_STATE
;
1155 info
.m_stateMask
= stateMask
;
1156 info
.m_itemId
= item
;
1161 return info
.m_state
;
1168 // Sets the item state
1169 bool wxListCtrl::SetItemState(long item
, long state
, long stateMask
)
1172 return m_genericImpl
->SetItemState(item
, state
, stateMask
);
1176 DataBrowserSetOption option
= kDataBrowserItemsAdd
;
1177 if ( stateMask
== wxLIST_STATE_SELECTED
&& state
== 0 )
1178 option
= kDataBrowserItemsRemove
;
1182 if ( HasFlag(wxLC_VIRTUAL
) )
1184 wxMacDataItemBrowserSelectionSuppressor
suppressor(m_dbImpl
);
1185 m_dbImpl
->SetSelectedAllItems(option
);
1189 for(int i
= 0; i
< GetItemCount();i
++)
1193 info
.m_mask
= wxLIST_MASK_STATE
;
1194 info
.m_stateMask
= stateMask
;
1195 info
.m_state
= state
;
1202 if ( HasFlag(wxLC_VIRTUAL
) )
1204 long itemID
= item
+1;
1205 SetDataBrowserSelectedItems(m_dbImpl
->GetControlRef(), 1, (DataBrowserItemID
*)&itemID
, option
);
1210 info
.m_itemId
= item
;
1211 info
.m_mask
= wxLIST_MASK_STATE
;
1212 info
.m_stateMask
= stateMask
;
1213 info
.m_state
= state
;
1214 return SetItem(info
);
1221 // Sets the item image
1222 bool wxListCtrl::SetItemImage(long item
, int image
, int WXUNUSED(selImage
))
1224 return SetItemColumnImage(item
, 0, image
);
1227 // Sets the item image
1228 bool wxListCtrl::SetItemColumnImage(long item
, long column
, int image
)
1231 return m_genericImpl
->SetItemColumnImage(item
, column
, image
);
1235 info
.m_mask
= wxLIST_MASK_IMAGE
;
1236 info
.m_image
= image
;
1237 info
.m_itemId
= item
;
1238 info
.m_col
= column
;
1240 return SetItem(info
);
1243 // Gets the item text
1244 wxString
wxListCtrl::GetItemText(long item
) const
1247 return m_genericImpl
->GetItemText(item
);
1251 info
.m_mask
= wxLIST_MASK_TEXT
;
1252 info
.m_itemId
= item
;
1255 return wxEmptyString
;
1259 // Sets the item text
1260 void wxListCtrl::SetItemText(long item
, const wxString
& str
)
1263 return m_genericImpl
->SetItemText(item
, str
);
1267 info
.m_mask
= wxLIST_MASK_TEXT
;
1268 info
.m_itemId
= item
;
1274 // Gets the item data
1275 long wxListCtrl::GetItemData(long item
) const
1278 return m_genericImpl
->GetItemData(item
);
1282 info
.m_mask
= wxLIST_MASK_DATA
;
1283 info
.m_itemId
= item
;
1290 // Sets the item data
1291 bool wxListCtrl::SetItemData(long item
, long data
)
1294 return m_genericImpl
->SetItemData(item
, data
);
1298 info
.m_mask
= wxLIST_MASK_DATA
;
1299 info
.m_itemId
= item
;
1302 return SetItem(info
);
1305 wxRect
wxListCtrl::GetViewRect() const
1307 wxASSERT_MSG( !HasFlag(wxLC_REPORT
| wxLC_LIST
),
1308 _T("wxListCtrl::GetViewRect() only works in icon mode") );
1311 return m_genericImpl
->GetViewRect();
1317 // Gets the item rectangle
1318 bool wxListCtrl::GetItemRect(long item
, wxRect
& rect
, int code
) const
1321 return m_genericImpl
->GetItemRect(item
, rect
, code
);
1326 DataBrowserItemID id
;
1327 DataBrowserPropertyID col
= kMinColumnId
;
1329 DataBrowserPropertyPart part
= kDataBrowserPropertyEnclosingPart
;
1330 if ( code
== wxLIST_RECT_LABEL
)
1331 part
= kDataBrowserPropertyTextPart
;
1332 else if ( code
== wxLIST_RECT_ICON
)
1333 part
= kDataBrowserPropertyIconPart
;
1335 if ( !(GetWindowStyleFlag() & wxLC_VIRTUAL
) )
1337 wxMacDataItem
* thisItem
= m_dbImpl
->GetItemFromLine(item
);
1338 id
= (DataBrowserItemID
) thisItem
;
1343 GetDataBrowserItemPartBounds( m_dbImpl
->GetControlRef(), id
, col
, part
, &bounds
);
1345 rect
.x
= bounds
.left
;
1346 rect
.y
= bounds
.top
;
1347 rect
.width
= bounds
.right
- bounds
.left
; //GetClientSize().x; // we need the width of the whole row, not just the item.
1348 rect
.height
= bounds
.bottom
- bounds
.top
;
1349 //fprintf("id = %d, bounds = %d, %d, %d, %d\n", id, rect.x, rect.y, rect.width, rect.height);
1354 // Gets the item position
1355 bool wxListCtrl::GetItemPosition(long item
, wxPoint
& pos
) const
1358 return m_genericImpl
->GetItemPosition(item
, pos
);
1360 bool success
= false;
1365 GetItemRect(item
, itemRect
);
1366 pos
= itemRect
.GetPosition();
1373 // Sets the item position.
1374 bool wxListCtrl::SetItemPosition(long item
, const wxPoint
& pos
)
1377 return m_genericImpl
->SetItemPosition(item
, pos
);
1382 // Gets the number of items in the list control
1383 int wxListCtrl::GetItemCount() const
1386 return m_genericImpl
->GetItemCount();
1389 return m_dbImpl
->MacGetCount();
1394 void wxListCtrl::SetItemSpacing( int spacing
, bool isSmall
)
1397 m_genericImpl
->SetItemSpacing(spacing
, isSmall
);
1400 wxSize
wxListCtrl::GetItemSpacing() const
1403 return m_genericImpl
->GetItemSpacing();
1405 return wxSize(0, 0);
1408 void wxListCtrl::SetItemTextColour( long item
, const wxColour
&col
)
1412 m_genericImpl
->SetItemTextColour(item
, col
);
1417 info
.m_itemId
= item
;
1418 info
.SetTextColour( col
);
1422 wxColour
wxListCtrl::GetItemTextColour( long item
) const
1425 return m_genericImpl
->GetItemTextColour(item
);
1431 return info
.GetTextColour();
1433 return wxNullColour
;
1436 void wxListCtrl::SetItemBackgroundColour( long item
, const wxColour
&col
)
1440 m_genericImpl
->SetItemBackgroundColour(item
, col
);
1445 info
.m_itemId
= item
;
1446 info
.SetBackgroundColour( col
);
1450 wxColour
wxListCtrl::GetItemBackgroundColour( long item
) const
1453 return m_genericImpl
->GetItemBackgroundColour(item
);
1459 return info
.GetBackgroundColour();
1461 return wxNullColour
;
1464 void wxListCtrl::SetItemFont( long item
, const wxFont
&f
)
1468 m_genericImpl
->SetItemFont(item
, f
);
1473 info
.m_itemId
= item
;
1478 wxFont
wxListCtrl::GetItemFont( long item
) const
1481 return m_genericImpl
->GetItemFont(item
);
1487 return info
.GetFont();
1493 // Gets the number of selected items in the list control
1494 int wxListCtrl::GetSelectedItemCount() const
1497 return m_genericImpl
->GetSelectedItemCount();
1500 return m_dbImpl
->GetSelectedItemCount(NULL
, true);
1505 // Gets the text colour of the listview
1506 wxColour
wxListCtrl::GetTextColour() const
1509 return m_genericImpl
->GetTextColour();
1511 // TODO: we need owner drawn list items to customize text color.
1515 return wxNullColour
;
1518 // Sets the text colour of the listview
1519 void wxListCtrl::SetTextColour(const wxColour
& col
)
1523 m_genericImpl
->SetTextColour(col
);
1531 // Gets the index of the topmost visible item when in
1532 // list or report view
1533 long wxListCtrl::GetTopItem() const
1536 return m_genericImpl
->GetTopItem();
1541 long item
= HitTest( wxPoint(1, 1), flags
);
1542 if (flags
== wxLIST_HITTEST_ONITEM
)
1549 // Searches for an item, starting from 'item'.
1550 // 'geometry' is one of
1551 // wxLIST_NEXT_ABOVE/ALL/BELOW/LEFT/RIGHT.
1552 // 'state' is a state bit flag, one or more of
1553 // wxLIST_STATE_DROPHILITED/FOCUSED/SELECTED/CUT.
1554 // item can be -1 to find the first item that matches the
1556 // Returns the item or -1 if unsuccessful.
1557 long wxListCtrl::GetNextItem(long item
, int geom
, int state
) const
1560 return m_genericImpl
->GetNextItem(item
, geom
, state
);
1562 // TODO: implement all geometry and state options?
1565 if ( geom
== wxLIST_NEXT_ALL
|| geom
== wxLIST_NEXT_BELOW
)
1567 long count
= m_dbImpl
->MacGetCount() ;
1568 for ( long line
= item
+ 1 ; line
< count
; line
++ )
1570 DataBrowserItemID id
= line
+ 1;
1572 id
= (DataBrowserItemID
)m_dbImpl
->GetItemFromLine(line
);
1574 if ( (state
== wxLIST_STATE_DONTCARE
) )
1577 if ( (state
& wxLIST_STATE_SELECTED
) && IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), id
) )
1582 if ( geom
== wxLIST_NEXT_ALL
|| geom
== wxLIST_NEXT_ABOVE
)
1586 item2
= m_dbImpl
->MacGetCount();
1588 for ( long line
= item2
- 1 ; line
>= 0; line
-- )
1590 DataBrowserItemID id
= line
+ 1;
1592 id
= (DataBrowserItemID
)m_dbImpl
->GetItemFromLine(line
);
1594 if ( (state
== wxLIST_STATE_DONTCARE
) )
1597 if ( (state
& wxLIST_STATE_SELECTED
) && IsDataBrowserItemSelected(m_dbImpl
->GetControlRef(), id
) )
1607 wxImageList
*wxListCtrl::GetImageList(int which
) const
1610 return m_genericImpl
->GetImageList(which
);
1612 if ( which
== wxIMAGE_LIST_NORMAL
)
1614 return m_imageListNormal
;
1616 else if ( which
== wxIMAGE_LIST_SMALL
)
1618 return m_imageListSmall
;
1620 else if ( which
== wxIMAGE_LIST_STATE
)
1622 return m_imageListState
;
1627 void wxListCtrl::SetImageList(wxImageList
*imageList
, int which
)
1631 m_genericImpl
->SetImageList(imageList
, which
);
1635 if ( which
== wxIMAGE_LIST_NORMAL
)
1637 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1638 m_imageListNormal
= imageList
;
1639 m_ownsImageListNormal
= false;
1641 else if ( which
== wxIMAGE_LIST_SMALL
)
1643 if (m_ownsImageListSmall
) delete m_imageListSmall
;
1644 m_imageListSmall
= imageList
;
1645 m_ownsImageListSmall
= false;
1647 else if ( which
== wxIMAGE_LIST_STATE
)
1649 if (m_ownsImageListState
) delete m_imageListState
;
1650 m_imageListState
= imageList
;
1651 m_ownsImageListState
= false;
1655 void wxListCtrl::AssignImageList(wxImageList
*imageList
, int which
)
1659 m_genericImpl
->AssignImageList(imageList
, which
);
1663 SetImageList(imageList
, which
);
1664 if ( which
== wxIMAGE_LIST_NORMAL
)
1665 m_ownsImageListNormal
= true;
1666 else if ( which
== wxIMAGE_LIST_SMALL
)
1667 m_ownsImageListSmall
= true;
1668 else if ( which
== wxIMAGE_LIST_STATE
)
1669 m_ownsImageListState
= true;
1672 // ----------------------------------------------------------------------------
1674 // ----------------------------------------------------------------------------
1676 // Arranges the items
1677 bool wxListCtrl::Arrange(int flag
)
1680 return m_genericImpl
->Arrange(flag
);
1685 bool wxListCtrl::DeleteItem(long item
)
1688 return m_genericImpl
->DeleteItem(item
);
1692 m_dbImpl
->MacDelete(item
);
1693 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ITEM
, GetId() );
1694 event
.SetEventObject( this );
1695 event
.m_itemIndex
= item
;
1696 GetEventHandler()->ProcessEvent( event
);
1702 // Deletes all items
1703 bool wxListCtrl::DeleteAllItems()
1706 return m_genericImpl
->DeleteAllItems();
1710 m_dbImpl
->MacClear();
1711 wxListEvent
event( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, GetId() );
1712 event
.SetEventObject( this );
1713 GetEventHandler()->ProcessEvent( event
);
1718 // Deletes all items
1719 bool wxListCtrl::DeleteAllColumns()
1722 return m_genericImpl
->DeleteAllColumns();
1727 m_dbImpl
->GetColumnCount(&cols
);
1728 for (UInt32 col
= 0; col
< cols
; col
++)
1738 bool wxListCtrl::DeleteColumn(int col
)
1741 return m_genericImpl
->DeleteColumn(col
);
1745 OSStatus err
= m_dbImpl
->RemoveColumn(col
);
1746 return err
== noErr
;
1752 // Clears items, and columns if there are any.
1753 void wxListCtrl::ClearAll()
1757 m_genericImpl
->ClearAll();
1768 wxTextCtrl
* wxListCtrl::EditLabel(long item
, wxClassInfo
* textControlClass
)
1771 return m_genericImpl
->EditLabel(item
, textControlClass
);
1775 wxCHECK_MSG( (item
>= 0) && ((long)item
< GetItemCount()), NULL
,
1776 wxT("wrong index in wxListCtrl::EditLabel()") );
1778 wxASSERT_MSG( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)),
1779 wxT("EditLabel() needs a text control") );
1781 wxListEvent
le( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, GetParent()->GetId() );
1782 le
.SetEventObject( this );
1783 le
.m_itemIndex
= item
;
1785 GetItem( le
.m_item
);
1787 if ( GetParent()->GetEventHandler()->ProcessEvent( le
) && !le
.IsAllowed() )
1789 // vetoed by user code
1793 wxTextCtrl
* const text
= (wxTextCtrl
*)textControlClass
->CreateObject();
1794 m_textctrlWrapper
= new wxListCtrlTextCtrlWrapper(this, text
, item
);
1795 return m_textctrlWrapper
->GetText();
1800 // End label editing, optionally cancelling the edit
1801 bool wxListCtrl::EndEditLabel(bool cancel
)
1803 // TODO: generic impl. doesn't have this method - is it needed for us?
1805 return true; // m_genericImpl->EndEditLabel(cancel);
1808 verify_noerr( SetDataBrowserEditItem(m_dbImpl
->GetControlRef(), kDataBrowserNoItem
, kMinColumnId
) );
1812 // Ensures this item is visible
1813 bool wxListCtrl::EnsureVisible(long item
)
1816 return m_genericImpl
->EnsureVisible(item
);
1820 wxMacDataItem
* dataItem
= m_dbImpl
->GetItemFromLine(item
);
1821 m_dbImpl
->RevealItem(dataItem
, kDataBrowserRevealWithoutSelecting
);
1827 // Find an item whose label matches this string, starting from the item after 'start'
1828 // or the beginning if 'start' is -1.
1829 long wxListCtrl::FindItem(long start
, const wxString
& str
, bool partial
)
1832 return m_genericImpl
->FindItem(start
, str
, partial
);
1834 wxString str_upper
= str
.Upper();
1839 long count
= GetItemCount();
1843 wxString line_upper
= GetItemText(idx
).Upper();
1846 if (line_upper
== str_upper
)
1851 if (line_upper
.find(str_upper
) == 0)
1861 // Find an item whose data matches this data, starting from the item after 'start'
1862 // or the beginning if 'start' is -1.
1863 long wxListCtrl::FindItem(long start
, long data
)
1866 return m_genericImpl
->FindItem(start
, data
);
1871 long count
= GetItemCount();
1875 if (GetItemData(idx
) == data
)
1883 // Find an item nearest this position in the specified direction, starting from
1884 // the item after 'start' or the beginning if 'start' is -1.
1885 long wxListCtrl::FindItem(long start
, const wxPoint
& pt
, int direction
)
1888 return m_genericImpl
->FindItem(start
, pt
, direction
);
1892 // Determines which item (if any) is at the specified point,
1893 // giving details in 'flags' (see wxLIST_HITTEST_... flags above)
1895 wxListCtrl::HitTest(const wxPoint
& point
, int& flags
, long *ptrSubItem
) const
1898 return m_genericImpl
->HitTest(point
, flags
, ptrSubItem
);
1900 flags
= wxLIST_HITTEST_NOWHERE
;
1903 int colHeaderHeight
= 22; // TODO: Find a way to get this value from the db control?
1904 UInt16 rowHeight
= 0;
1905 m_dbImpl
->GetDefaultRowHeight(&rowHeight
);
1908 // get the actual row by taking scroll position into account
1909 UInt32 offsetX
, offsetY
;
1910 m_dbImpl
->GetScrollPosition( &offsetY
, &offsetX
);
1913 if ( !(GetWindowStyleFlag() & wxLC_NO_HEADER
) )
1914 y
-= colHeaderHeight
;
1919 int row
= y
/ rowHeight
;
1920 DataBrowserItemID id
;
1921 m_dbImpl
->GetItemID( (DataBrowserTableViewRowIndex
) row
, &id
);
1923 // TODO: Use GetDataBrowserItemPartBounds to return if we are in icon or label
1924 if ( !(GetWindowStyleFlag() & wxLC_VIRTUAL
) )
1926 wxMacListCtrlItem
* lcItem
;
1927 lcItem
= (wxMacListCtrlItem
*) id
;
1930 flags
= wxLIST_HITTEST_ONITEM
;
1936 if (row
< GetItemCount() )
1938 flags
= wxLIST_HITTEST_ONITEM
;
1947 int wxListCtrl::GetScrollPos(int orient
) const
1950 return m_genericImpl
->GetScrollPos(orient
);
1954 UInt32 offsetX
, offsetY
;
1955 m_dbImpl
->GetScrollPosition( &offsetY
, &offsetX
);
1956 if ( orient
== wxHORIZONTAL
)
1965 // Inserts an item, returning the index of the new item if successful,
1967 long wxListCtrl::InsertItem(wxListItem
& info
)
1969 wxASSERT_MSG( !IsVirtual(), _T("can't be used with virtual controls") );
1972 return m_genericImpl
->InsertItem(info
);
1974 if (m_dbImpl
&& !IsVirtual())
1976 int count
= GetItemCount();
1978 if (info
.m_itemId
> count
)
1979 info
.m_itemId
= count
;
1981 m_dbImpl
->MacInsertItem(info
.m_itemId
, &info
);
1983 wxListEvent
event( wxEVT_COMMAND_LIST_INSERT_ITEM
, GetId() );
1984 event
.SetEventObject( this );
1985 event
.m_itemIndex
= info
.m_itemId
;
1986 GetEventHandler()->ProcessEvent( event
);
1987 return info
.m_itemId
;
1992 long wxListCtrl::InsertItem(long index
, const wxString
& label
)
1995 return m_genericImpl
->InsertItem(index
, label
);
1998 info
.m_text
= label
;
1999 info
.m_mask
= wxLIST_MASK_TEXT
;
2000 info
.m_itemId
= index
;
2001 return InsertItem(info
);
2004 // Inserts an image item
2005 long wxListCtrl::InsertItem(long index
, int imageIndex
)
2008 return m_genericImpl
->InsertItem(index
, imageIndex
);
2011 info
.m_image
= imageIndex
;
2012 info
.m_mask
= wxLIST_MASK_IMAGE
;
2013 info
.m_itemId
= index
;
2014 return InsertItem(info
);
2017 // Inserts an image/string item
2018 long wxListCtrl::InsertItem(long index
, const wxString
& label
, int imageIndex
)
2021 return m_genericImpl
->InsertItem(index
, label
, imageIndex
);
2024 info
.m_image
= imageIndex
;
2025 info
.m_text
= label
;
2026 info
.m_mask
= wxLIST_MASK_IMAGE
| wxLIST_MASK_TEXT
;
2027 info
.m_itemId
= index
;
2028 return InsertItem(info
);
2031 // For list view mode (only), inserts a column.
2032 long wxListCtrl::InsertColumn(long col
, wxListItem
& item
)
2035 return m_genericImpl
->InsertColumn(col
, item
);
2039 int width
= item
.GetWidth();
2040 if ( !(item
.GetMask() & wxLIST_MASK_WIDTH
) )
2043 DataBrowserPropertyType type
= kDataBrowserCustomType
; //kDataBrowserTextType;
2044 wxImageList
* imageList
= GetImageList(wxIMAGE_LIST_SMALL
);
2045 if (imageList
&& imageList
->GetImageCount() > 0)
2047 wxBitmap bmp
= imageList
->GetBitmap(0);
2049 // type = kDataBrowserIconAndTextType;
2052 SInt16 just
= teFlushDefault
;
2053 if (item
.GetMask() & wxLIST_MASK_FORMAT
)
2055 if (item
.GetAlign() == wxLIST_FORMAT_LEFT
)
2057 else if (item
.GetAlign() == wxLIST_FORMAT_CENTER
)
2059 else if (item
.GetAlign() == wxLIST_FORMAT_RIGHT
)
2060 just
= teFlushRight
;
2062 m_dbImpl
->InsertColumn(col
, type
, item
.GetText(), just
, width
);
2063 SetColumn(col
, item
);
2065 // set/remove options based on the wxListCtrl type.
2066 DataBrowserTableViewColumnID id
;
2067 m_dbImpl
->GetColumnIDFromIndex(col
, &id
);
2068 DataBrowserPropertyFlags flags
;
2069 verify_noerr(m_dbImpl
->GetPropertyFlags(id
, &flags
));
2070 if (GetWindowStyleFlag() & wxLC_EDIT_LABELS
)
2071 flags
|= kDataBrowserPropertyIsEditable
;
2073 if (GetWindowStyleFlag() & wxLC_VIRTUAL
){
2074 flags
&= ~kDataBrowserListViewSortableColumn
;
2076 verify_noerr(m_dbImpl
->SetPropertyFlags(id
, flags
));
2082 long wxListCtrl::InsertColumn(long col
,
2083 const wxString
& heading
,
2088 return m_genericImpl
->InsertColumn(col
, heading
, format
, width
);
2091 item
.m_mask
= wxLIST_MASK_TEXT
| wxLIST_MASK_FORMAT
;
2092 item
.m_text
= heading
;
2095 item
.m_mask
|= wxLIST_MASK_WIDTH
;
2096 item
.m_width
= width
;
2098 item
.m_format
= format
;
2100 return InsertColumn(col
, item
);
2103 // scroll the control by the given number of pixels (exception: in list view,
2104 // dx is interpreted as number of columns)
2105 bool wxListCtrl::ScrollList(int dx
, int dy
)
2108 return m_genericImpl
->ScrollList(dx
, dy
);
2112 m_dbImpl
->SetScrollPosition(dx
, dy
);
2118 bool wxListCtrl::SortItems(wxListCtrlCompare fn
, long data
)
2121 return m_genericImpl
->SortItems(fn
, data
);
2126 m_compareFuncData
= data
;
2127 SortDataBrowserContainer( m_dbImpl
->GetControlRef(), kDataBrowserNoItem
, true);
2129 // we need to do this after each call, else we get a crash from wxPython when
2130 // SortItems is called the second time.
2131 m_compareFunc
= NULL
;
2132 m_compareFuncData
= 0;
2138 void wxListCtrl::OnRenameTimer()
2140 wxCHECK_RET( HasCurrent(), wxT("unexpected rename timer") );
2142 EditLabel( m_current
);
2145 bool wxListCtrl::OnRenameAccept(long itemEdit
, const wxString
& value
)
2147 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetId() );
2148 le
.SetEventObject( this );
2149 le
.m_itemIndex
= itemEdit
;
2151 GetItem( le
.m_item
);
2152 le
.m_item
.m_text
= value
;
2153 return !GetEventHandler()->ProcessEvent( le
) ||
2157 void wxListCtrl::OnRenameCancelled(long itemEdit
)
2159 // let owner know that the edit was cancelled
2160 wxListEvent
le( wxEVT_COMMAND_LIST_END_LABEL_EDIT
, GetParent()->GetId() );
2162 le
.SetEditCanceled(true);
2164 le
.SetEventObject( this );
2165 le
.m_itemIndex
= itemEdit
;
2167 GetItem( le
.m_item
);
2168 GetEventHandler()->ProcessEvent( le
);
2171 // ----------------------------------------------------------------------------
2172 // virtual list controls
2173 // ----------------------------------------------------------------------------
2175 wxString
wxListCtrl::OnGetItemText(long WXUNUSED(item
), long WXUNUSED(col
)) const
2177 // this is a pure virtual function, in fact - which is not really pure
2178 // because the controls which are not virtual don't need to implement it
2179 wxFAIL_MSG( _T("wxListCtrl::OnGetItemText not supposed to be called") );
2181 return wxEmptyString
;
2184 int wxListCtrl::OnGetItemImage(long WXUNUSED(item
)) const
2186 wxCHECK_MSG(!GetImageList(wxIMAGE_LIST_SMALL
),
2188 wxT("List control has an image list, OnGetItemImage or OnGetItemColumnImage should be overridden."));
2192 int wxListCtrl::OnGetItemColumnImage(long item
, long column
) const
2195 return OnGetItemImage(item
);
2200 wxListItemAttr
*wxListCtrl::OnGetItemAttr(long WXUNUSED_UNLESS_DEBUG(item
)) const
2202 wxASSERT_MSG( item
>= 0 && item
< GetItemCount(),
2203 _T("invalid item index in OnGetItemAttr()") );
2205 // no attributes by default
2209 void wxListCtrl::SetItemCount(long count
)
2211 wxASSERT_MSG( IsVirtual(), _T("this is for virtual controls only") );
2215 m_genericImpl
->SetItemCount(count
);
2221 // we need to temporarily disable the new item creation notification
2222 // procedure to speed things up
2223 // FIXME: Even this doesn't seem to help much...
2225 // FIXME: Find a more efficient way to do this.
2226 m_dbImpl
->MacClear();
2228 DataBrowserCallbacks callbacks
;
2229 DataBrowserItemNotificationUPP itemUPP
;
2230 GetDataBrowserCallbacks(m_dbImpl
->GetControlRef(), &callbacks
);
2231 itemUPP
= callbacks
.u
.v1
.itemNotificationCallback
;
2232 callbacks
.u
.v1
.itemNotificationCallback
= 0;
2233 m_dbImpl
->SetCallbacks(&callbacks
);
2234 ::AddDataBrowserItems(m_dbImpl
->GetControlRef(), kDataBrowserNoItem
,
2235 count
, NULL
, kDataBrowserItemNoProperty
);
2236 callbacks
.u
.v1
.itemNotificationCallback
= itemUPP
;
2237 m_dbImpl
->SetCallbacks(&callbacks
);
2242 void wxListCtrl::RefreshItem(long item
)
2246 m_genericImpl
->RefreshItem(item
);
2251 GetItemRect(item
, rect
);
2255 void wxListCtrl::RefreshItems(long itemFrom
, long itemTo
)
2259 m_genericImpl
->RefreshItems(itemFrom
, itemTo
);
2263 wxRect rect1
, rect2
;
2264 GetItemRect(itemFrom
, rect1
);
2265 GetItemRect(itemTo
, rect2
);
2267 wxRect rect
= rect1
;
2268 rect
.height
= rect2
.GetBottom() - rect1
.GetTop();
2273 void wxListCtrl::SetDropTarget( wxDropTarget
*dropTarget
)
2275 #if wxUSE_DRAG_AND_DROP
2277 m_genericImpl
->SetDropTarget( dropTarget
);
2280 wxWindow::SetDropTarget( dropTarget
);
2284 wxDropTarget
*wxListCtrl::GetDropTarget() const
2286 #if wxUSE_DRAG_AND_DROP
2288 return m_genericImpl
->GetDropTarget();
2291 return wxWindow::GetDropTarget();
2296 #if wxABI_VERSION >= 20801
2297 void wxListCtrl::SetFocus()
2301 m_genericImpl
->SetFocus();
2305 wxWindow::SetFocus();
2309 // wxMac internal data structures
2311 wxMacListCtrlItem::~wxMacListCtrlItem()
2315 void wxMacListCtrlItem::Notification(wxMacDataItemBrowserControl
*owner
,
2316 DataBrowserItemNotification message
,
2317 DataBrowserItemDataRef itemData
) const
2320 wxMacDataBrowserListCtrlControl
*lb
= wxDynamicCast(owner
, wxMacDataBrowserListCtrlControl
);
2322 // we want to depend on as little as possible to make sure tear-down of controls is safe
2323 if ( message
== kDataBrowserItemRemoved
)
2325 if ( lb
!= NULL
&& lb
->GetClientDataType() == wxClientData_Object
)
2327 delete (wxClientData
*) (m_data
);
2333 else if ( message
== kDataBrowserItemAdded
)
2335 // we don't issue events on adding, the item is not really stored in the list yet, so we
2336 // avoid asserts by gettting out now
2340 wxListCtrl
*list
= wxDynamicCast( owner
->GetPeer() , wxListCtrl
);
2343 bool trigger
= false;
2345 wxListEvent
event( wxEVT_COMMAND_LIST_ITEM_SELECTED
, list
->GetId() );
2346 bool isSingle
= (list
->GetWindowStyle() & wxLC_SINGLE_SEL
) != 0;
2348 event
.SetEventObject( list
);
2349 event
.m_itemIndex
= owner
->GetLineFromItem( this ) ;
2350 event
.m_item
.m_itemId
= event
.m_itemIndex
;
2351 list
->GetItem(event
.m_item
);
2355 case kDataBrowserItemDeselected
:
2356 event
.SetEventType(wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2358 trigger
= !lb
->IsSelectionSuppressed();
2361 case kDataBrowserItemSelected
:
2362 trigger
= !lb
->IsSelectionSuppressed();
2365 case kDataBrowserItemDoubleClicked
:
2366 event
.SetEventType( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2370 case kDataBrowserEditStarted
:
2371 // TODO : how to veto ?
2372 event
.SetEventType( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
) ;
2376 case kDataBrowserEditStopped
:
2377 // TODO probably trigger only upon the value store callback, because
2378 // here IIRC we cannot veto
2379 event
.SetEventType( wxEVT_COMMAND_LIST_END_LABEL_EDIT
) ;
2389 // direct notification is not always having the listbox GetSelection() having in synch with event
2390 wxPostEvent( list
->GetEventHandler(), event
);
2396 IMPLEMENT_DYNAMIC_CLASS(wxMacDataBrowserListCtrlControl
, wxMacDataItemBrowserControl
)
2398 wxMacDataBrowserListCtrlControl::wxMacDataBrowserListCtrlControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
)
2399 : wxMacDataItemBrowserControl( peer
, pos
, size
, style
)
2401 OSStatus err
= noErr
;
2402 m_clientDataItemsType
= wxClientData_None
;
2403 m_isVirtual
= false;
2406 if ( style
& wxLC_VIRTUAL
)
2409 DataBrowserSelectionFlags options
= kDataBrowserDragSelect
;
2410 if ( style
& wxLC_SINGLE_SEL
)
2412 options
|= kDataBrowserSelectOnlyOne
;
2416 options
|= kDataBrowserCmdTogglesSelection
;
2419 err
= SetSelectionFlags( options
);
2420 verify_noerr( err
);
2422 DataBrowserCustomCallbacks callbacks
;
2423 InitializeDataBrowserCustomCallbacks( &callbacks
, kDataBrowserLatestCustomCallbacks
);
2425 if ( gDataBrowserDrawItemUPP
== NULL
)
2426 gDataBrowserDrawItemUPP
= NewDataBrowserDrawItemUPP(DataBrowserDrawItemProc
);
2428 if ( gDataBrowserHitTestUPP
== NULL
)
2429 gDataBrowserHitTestUPP
= NewDataBrowserHitTestUPP(DataBrowserHitTestProc
);
2431 callbacks
.u
.v1
.drawItemCallback
= gDataBrowserDrawItemUPP
;
2432 callbacks
.u
.v1
.hitTestCallback
= gDataBrowserHitTestUPP
;
2434 SetDataBrowserCustomCallbacks( GetControlRef(), &callbacks
);
2436 if ( style
& wxLC_LIST
)
2438 InsertColumn(0, kDataBrowserIconAndTextType
, wxEmptyString
, -1, -1);
2439 verify_noerr( AutoSizeColumns() );
2442 if ( style
& wxLC_LIST
|| style
& wxLC_NO_HEADER
)
2443 verify_noerr( SetHeaderButtonHeight( 0 ) );
2446 SetSortProperty( kMinColumnId
- 1 );
2448 SetSortProperty( kMinColumnId
);
2450 m_sortOrder
= SortOrder_None
;
2452 if ( style
& wxLC_SORT_DESCENDING
)
2454 SetSortOrder( kDataBrowserOrderDecreasing
);
2456 else if ( style
& wxLC_SORT_ASCENDING
)
2458 SetSortOrder( kDataBrowserOrderIncreasing
);
2461 if ( style
& wxLC_VRULES
)
2463 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
2464 verify_noerr( DataBrowserChangeAttributes(m_controlRef
, kDataBrowserAttributeListViewDrawColumnDividers
, kDataBrowserAttributeNone
) );
2468 verify_noerr( SetHiliteStyle(kDataBrowserTableViewFillHilite
) );
2469 verify_noerr( SetHasScrollBars( (style
& wxHSCROLL
) != 0 , true ) );
2472 pascal Boolean
wxMacDataBrowserListCtrlControl::DataBrowserEditTextProc(
2474 DataBrowserItemID itemID
,
2475 DataBrowserPropertyID property
,
2476 CFStringRef theString
,
2477 Rect
*maxEditTextRect
,
2478 Boolean
*shrinkToFit
)
2480 Boolean result
= false;
2481 wxMacDataBrowserListCtrlControl
* ctl
= wxDynamicCast(wxMacControl::GetReferenceFromNativeControl( browser
), wxMacDataBrowserListCtrlControl
);
2484 result
= ctl
->ConfirmEditText(itemID
, property
, theString
, maxEditTextRect
, shrinkToFit
);
2485 theString
= CFSTR("Hello!");
2490 bool wxMacDataBrowserListCtrlControl::ConfirmEditText(
2491 DataBrowserItemID itemID
,
2492 DataBrowserPropertyID property
,
2493 CFStringRef theString
,
2494 Rect
*maxEditTextRect
,
2495 Boolean
*shrinkToFit
)
2500 pascal void wxMacDataBrowserListCtrlControl::DataBrowserDrawItemProc(
2502 DataBrowserItemID itemID
,
2503 DataBrowserPropertyID property
,
2504 DataBrowserItemState itemState
,
2505 const Rect
*itemRect
,
2507 Boolean colorDevice
)
2509 wxMacDataBrowserListCtrlControl
* ctl
= wxDynamicCast(wxMacControl::GetReferenceFromNativeControl( browser
), wxMacDataBrowserListCtrlControl
);
2512 ctl
->DrawItem(itemID
, property
, itemState
, itemRect
, gdDepth
, colorDevice
);
2516 // routines needed for DrawItem
2521 kTextBoxHeight
= 14,
2522 kIconTextSpacingV
= 2,
2524 kContentHeight
= kIconHeight
+ kTextBoxHeight
+ kIconTextSpacingV
2527 static void calculateCGDrawingBounds(CGRect inItemRect
, CGRect
*outIconRect
, CGRect
*outTextRect
, bool hasIcon
= false)
2530 float iconH
, iconW
= 0;
2531 float padding
= kItemPadding
;
2534 iconH
= kIconHeight
;
2536 padding
= padding
*2;
2539 textBottom
= inItemRect
.origin
.y
;
2541 *outIconRect
= CGRectMake(inItemRect
.origin
.x
+ kItemPadding
,
2542 textBottom
+ kIconTextSpacingV
, kIconWidth
,
2545 *outTextRect
= CGRectMake(inItemRect
.origin
.x
+ padding
+ iconW
,
2546 textBottom
+ kIconTextSpacingV
, inItemRect
.size
.width
- padding
- iconW
,
2547 inItemRect
.size
.height
- kIconTextSpacingV
);
2550 void wxMacDataBrowserListCtrlControl::DrawItem(
2551 DataBrowserItemID itemID
,
2552 DataBrowserPropertyID property
,
2553 DataBrowserItemState itemState
,
2554 const Rect
*itemRect
,
2556 Boolean colorDevice
)
2559 wxFont font
= wxNullFont
;
2561 short listColumn
= property
- kMinColumnId
;
2563 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2564 wxMacListCtrlItem
* lcItem
;
2565 wxColour color
= *wxBLACK
;
2566 wxColour bgColor
= wxNullColour
;
2568 if (listColumn
>= 0)
2572 lcItem
= (wxMacListCtrlItem
*) itemID
;
2573 if (lcItem
->HasColumnInfo(listColumn
)){
2574 wxListItem
* item
= lcItem
->GetColumnInfo(listColumn
);
2576 // we always use the 0 column to get font and text/background colors.
2577 if (lcItem
->HasColumnInfo(0))
2579 wxListItem
* firstItem
= lcItem
->GetColumnInfo(0);
2580 color
= firstItem
->GetTextColour();
2581 bgColor
= firstItem
->GetBackgroundColour();
2582 font
= firstItem
->GetFont();
2585 if (item
->GetMask() & wxLIST_MASK_TEXT
)
2586 text
= item
->GetText();
2587 if (item
->GetMask() & wxLIST_MASK_IMAGE
)
2588 imgIndex
= item
->GetImage();
2594 long itemNum
= (long)itemID
-1;
2595 if (itemNum
>= 0 && itemNum
< list
->GetItemCount())
2597 text
= list
->OnGetItemText( itemNum
, listColumn
);
2598 imgIndex
= list
->OnGetItemColumnImage( itemNum
, listColumn
);
2599 wxListItemAttr
* attrs
= list
->OnGetItemAttr( itemNum
);
2602 if (attrs
->HasBackgroundColour())
2603 bgColor
= attrs
->GetBackgroundColour();
2604 if (attrs
->HasTextColour())
2605 color
= attrs
->GetTextColour();
2606 if (attrs
->HasFont())
2607 font
= attrs
->GetFont();
2613 wxColour listBgColor
= list
->GetBackgroundColour();
2614 if (bgColor
== wxNullColour
)
2615 bgColor
= listBgColor
;
2617 wxFont listFont
= list
->GetFont();
2618 if (font
== wxNullFont
)
2621 wxMacCFStringHolder cfString
;
2622 cfString
.Assign( text
, wxLocale::GetSystemEncoding() );
2625 CGRect enclosingCGRect
, iconCGRect
, textCGRect
;
2627 ThemeDrawingState savedState
= NULL
;
2628 CGContextRef context
= (CGContextRef
)list
->MacGetDrawingContext();
2629 RGBColor labelColor
;
2631 labelColor
.green
= 0;
2632 labelColor
.blue
= 0;
2634 RGBColor backgroundColor
;
2635 backgroundColor
.red
= 255;
2636 backgroundColor
.green
= 255;
2637 backgroundColor
.blue
= 255;
2639 GetDataBrowserItemPartBounds(GetControlRef(), itemID
, property
, kDataBrowserPropertyEnclosingPart
,
2642 enclosingCGRect
= CGRectMake(enclosingRect
.left
,
2644 enclosingRect
.right
- enclosingRect
.left
,
2645 enclosingRect
.bottom
- enclosingRect
.top
);
2647 bool hasFocus
= (wxWindow::FindFocus() == list
);
2648 active
= IsControlActive(GetControlRef());
2650 // don't paint the background over the vertical rule line
2651 if ( list
->GetWindowStyleFlag() & wxLC_VRULES
)
2653 enclosingCGRect
.origin
.x
+= 1;
2654 enclosingCGRect
.size
.width
-= 1;
2656 if (itemState
== kDataBrowserItemIsSelected
)
2659 GetThemeDrawingState(&savedState
);
2661 if (active
&& hasFocus
)
2663 GetThemeBrushAsColor(kThemeBrushAlternatePrimaryHighlightColor
, 32, true, &backgroundColor
);
2664 GetThemeTextColor(kThemeTextColorWhite
, gdDepth
, colorDevice
, &labelColor
);
2668 GetThemeBrushAsColor(kThemeBrushSecondaryHighlightColor
, 32, true, &backgroundColor
);
2669 GetThemeTextColor(kThemeTextColorBlack
, gdDepth
, colorDevice
, &labelColor
);
2671 CGContextSaveGState(context
);
2673 CGContextSetRGBFillColor(context
, (float)backgroundColor
.red
/ (float)USHRT_MAX
,
2674 (float)backgroundColor
.green
/ (float)USHRT_MAX
,
2675 (float)backgroundColor
.blue
/ (float)USHRT_MAX
, 1.0);
2676 CGContextFillRect(context
, enclosingCGRect
);
2678 CGContextRestoreGState(context
);
2684 labelColor
= MAC_WXCOLORREF( color
.GetPixel() );
2685 else if (list
->GetTextColour().Ok())
2686 labelColor
= MAC_WXCOLORREF( list
->GetTextColour().GetPixel() );
2690 backgroundColor
= MAC_WXCOLORREF( bgColor
.GetPixel() );
2691 CGContextSaveGState(context
);
2693 CGContextSetRGBFillColor(context
, (float)backgroundColor
.red
/ (float)USHRT_MAX
,
2694 (float)backgroundColor
.green
/ (float)USHRT_MAX
,
2695 (float)backgroundColor
.blue
/ (float)USHRT_MAX
, 1.0);
2696 CGContextFillRect(context
, enclosingCGRect
);
2698 CGContextRestoreGState(context
);
2702 calculateCGDrawingBounds(enclosingCGRect
, &iconCGRect
, &textCGRect
, (imgIndex
!= -1) );
2706 wxImageList
* imageList
= list
->GetImageList(wxIMAGE_LIST_SMALL
);
2707 if (imageList
&& imageList
->GetImageCount() > 0){
2708 wxBitmap bmp
= imageList
->GetBitmap(imgIndex
);
2709 IconRef icon
= bmp
.GetBitmapData()->GetIconRef();
2711 CGContextSaveGState(context
);
2712 CGContextTranslateCTM(context
, 0,iconCGRect
.origin
.y
+ CGRectGetMaxY(iconCGRect
));
2713 CGContextScaleCTM(context
,1.0f
,-1.0f
);
2714 PlotIconRefInContext(context
, &iconCGRect
, kAlignNone
,
2715 active
? kTransformNone
: kTransformDisabled
, NULL
,
2716 kPlotIconRefNormalFlags
, icon
);
2718 CGContextRestoreGState(context
);
2722 HIThemeTextHorizontalFlush hFlush
= kHIThemeTextHorizontalFlushLeft
;
2723 UInt16 fontID
= kThemeViewsFont
;
2727 if (font
.GetFamily() != wxFONTFAMILY_DEFAULT
)
2728 fontID
= font
.MacGetThemeFontID();
2730 // FIXME: replace these with CG or ATSUI calls so we can remove this #ifndef.
2732 ::TextSize( (short)(font
.MacGetFontSize()) ) ;
2733 ::TextFace( font
.MacGetFontStyle() ) ;
2738 list
->GetColumn(listColumn
, item
);
2739 if (item
.GetMask() & wxLIST_MASK_FORMAT
)
2741 if (item
.GetAlign() == wxLIST_FORMAT_LEFT
)
2742 hFlush
= kHIThemeTextHorizontalFlushLeft
;
2743 else if (item
.GetAlign() == wxLIST_FORMAT_CENTER
)
2744 hFlush
= kHIThemeTextHorizontalFlushCenter
;
2745 else if (item
.GetAlign() == wxLIST_FORMAT_RIGHT
)
2747 hFlush
= kHIThemeTextHorizontalFlushRight
;
2748 textCGRect
.origin
.x
-= kItemPadding
; // give a little extra paddding
2752 HIThemeTextInfo info
;
2753 info
.version
= kHIThemeTextInfoVersionZero
;
2754 info
.state
= active
? kThemeStateActive
: kThemeStateInactive
;
2755 info
.fontID
= fontID
;
2756 info
.horizontalFlushness
= hFlush
;
2757 info
.verticalFlushness
= kHIThemeTextVerticalFlushCenter
;
2758 info
.options
= kHIThemeTextBoxOptionNone
;
2759 info
.truncationPosition
= kHIThemeTextTruncationEnd
;
2760 info
.truncationMaxLines
= 1;
2762 CGContextSaveGState(context
);
2763 CGContextSetRGBFillColor (context
, (float)labelColor
.red
/ (float)USHRT_MAX
,
2764 (float)labelColor
.green
/ (float)USHRT_MAX
,
2765 (float)labelColor
.blue
/ (float)USHRT_MAX
, 1.0);
2767 HIThemeDrawTextBox(cfString
, &textCGRect
, &info
, context
, kHIThemeOrientationNormal
);
2769 CGContextRestoreGState(context
);
2771 if (savedState
!= NULL
)
2772 SetThemeDrawingState(savedState
, true);
2775 OSStatus
wxMacDataBrowserListCtrlControl::GetSetItemData(DataBrowserItemID itemID
,
2776 DataBrowserPropertyID property
,
2777 DataBrowserItemDataRef itemData
,
2778 Boolean changeValue
)
2782 short listColumn
= property
- kMinColumnId
;
2784 OSStatus err
= errDataBrowserPropertyNotSupported
;
2785 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2786 wxMacListCtrlItem
* lcItem
;
2788 if (listColumn
>= 0)
2792 lcItem
= (wxMacListCtrlItem
*) itemID
;
2793 if (lcItem
&& lcItem
->HasColumnInfo(listColumn
)){
2794 wxListItem
* item
= lcItem
->GetColumnInfo(listColumn
);
2795 if (item
->GetMask() & wxLIST_MASK_TEXT
)
2796 text
= item
->GetText();
2797 if (item
->GetMask() & wxLIST_MASK_IMAGE
)
2798 imgIndex
= item
->GetImage();
2803 long itemNum
= (long)itemID
-1;
2804 if (itemNum
>= 0 && itemNum
< list
->GetItemCount())
2806 text
= list
->OnGetItemText( itemNum
, listColumn
);
2807 imgIndex
= list
->OnGetItemColumnImage( itemNum
, listColumn
);
2816 case kDataBrowserItemIsEditableProperty
:
2817 if ( list
&& list
->HasFlag( wxLC_EDIT_LABELS
) )
2819 verify_noerr(SetDataBrowserItemDataBooleanValue( itemData
, true ));
2824 if ( property
>= kMinColumnId
)
2826 wxMacCFStringHolder cfStr
;
2829 cfStr
.Assign( text
, wxLocale::GetSystemEncoding() );
2830 err
= ::SetDataBrowserItemDataText( itemData
, cfStr
);
2836 if ( imgIndex
!= -1 )
2838 wxImageList
* imageList
= list
->GetImageList(wxIMAGE_LIST_SMALL
);
2839 if (imageList
&& imageList
->GetImageCount() > 0){
2840 wxBitmap bmp
= imageList
->GetBitmap(imgIndex
);
2841 IconRef icon
= bmp
.GetBitmapData()->GetIconRef();
2842 ::SetDataBrowserItemDataIcon(itemData
, icon
);
2856 if ( property
>= kMinColumnId
)
2858 short listColumn
= property
- kMinColumnId
;
2860 // TODO probably send the 'end edit' from here, as we
2861 // can then deal with the veto
2863 verify_noerr( GetDataBrowserItemDataText( itemData
, &sr
) ) ;
2864 wxMacCFStringHolder
cfStr(sr
) ;;
2866 list
->SetItem( (long)itemData
-1 , listColumn
, cfStr
.AsString() ) ;
2870 lcItem
->SetColumnTextValue( listColumn
, cfStr
.AsString() );
2880 void wxMacDataBrowserListCtrlControl::ItemNotification(DataBrowserItemID itemID
,
2881 DataBrowserItemNotification message
,
2882 DataBrowserItemDataRef itemData
)
2884 // we want to depend on as little as possible to make sure tear-down of controls is safe
2885 if ( message
== kDataBrowserItemRemoved
)
2887 // make sure MacDelete does the proper teardown.
2890 else if ( message
== kDataBrowserItemAdded
)
2892 // we don't issue events on adding, the item is not really stored in the list yet, so we
2893 // avoid asserts by getting out now
2897 wxListCtrl
*list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2900 bool trigger
= false;
2902 wxListEvent
event( wxEVT_COMMAND_LIST_ITEM_SELECTED
, list
->GetId() );
2903 bool isSingle
= (list
->GetWindowStyle() & wxLC_SINGLE_SEL
) != 0;
2905 event
.SetEventObject( list
);
2906 if ( !list
->IsVirtual() )
2908 DataBrowserTableViewRowIndex result
= 0;
2909 verify_noerr( GetItemRow( itemID
, &result
) ) ;
2910 event
.m_itemIndex
= result
;
2914 event
.m_itemIndex
= (long)itemID
-1;
2916 event
.m_item
.m_itemId
= event
.m_itemIndex
;
2917 list
->GetItem(event
.m_item
);
2921 case kDataBrowserItemDeselected
:
2922 event
.SetEventType(wxEVT_COMMAND_LIST_ITEM_DESELECTED
);
2924 trigger
= !IsSelectionSuppressed();
2927 case kDataBrowserItemSelected
:
2928 trigger
= !IsSelectionSuppressed();
2932 case kDataBrowserItemDoubleClicked
:
2933 event
.SetEventType( wxEVT_COMMAND_LIST_ITEM_ACTIVATED
);
2937 case kDataBrowserEditStarted
:
2938 // TODO : how to veto ?
2939 event
.SetEventType( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
) ;
2943 case kDataBrowserEditStopped
:
2944 // TODO probably trigger only upon the value store callback, because
2945 // here IIRC we cannot veto
2946 event
.SetEventType( wxEVT_COMMAND_LIST_END_LABEL_EDIT
) ;
2956 // direct notification is not always having the listbox GetSelection() having in synch with event
2957 wxPostEvent( list
->GetEventHandler(), event
);
2962 Boolean
wxMacDataBrowserListCtrlControl::CompareItems(DataBrowserItemID itemOneID
,
2963 DataBrowserItemID itemTwoID
,
2964 DataBrowserPropertyID sortProperty
)
2967 bool retval
= false;
2969 wxString otherItemText
;
2971 long otherItemOrder
;
2973 int colId
= sortProperty
- kMinColumnId
;
2975 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
2977 DataBrowserSortOrder sort
;
2978 verify_noerr(GetSortOrder(&sort
));
2984 wxMacListCtrlItem
* item
= (wxMacListCtrlItem
*)itemOneID
;
2985 wxMacListCtrlItem
* otherItem
= (wxMacListCtrlItem
*)itemTwoID
;
2987 itemOrder
= item
->GetOrder();
2988 otherItemOrder
= item
->GetOrder();
2990 wxListCtrlCompare func
= list
->GetCompareFunc();
2995 if (item
&& item
->HasColumnInfo(0))
2996 item1
= item
->GetColumnInfo(0)->GetData();
2997 if (otherItem
&& otherItem
->HasColumnInfo(0))
2998 item2
= otherItem
->GetColumnInfo(0)->GetData();
3000 if (item1
> -1 && item2
> -1)
3002 int result
= func(item1
, item2
, list
->GetCompareFuncData());
3003 if (sort
== kDataBrowserOrderIncreasing
)
3010 // we can't use the native control's sorting abilities, so just
3012 return itemOrder
< otherItemOrder
;
3017 long itemNum
= (long)itemOneID
;
3018 long otherItemNum
= (long)itemTwoID
;
3020 // virtual listctrls don't support sorting
3021 return itemNum
< otherItemNum
;
3025 // fallback for undefined cases
3026 retval
= itemOneID
< itemTwoID
;
3032 wxMacDataBrowserListCtrlControl::~wxMacDataBrowserListCtrlControl()
3036 void wxMacDataBrowserListCtrlControl::MacSetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
* item
)
3038 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
3039 wxASSERT_MSG( dataItem
, _T("could not obtain wxMacDataItem for row in MacSetColumnInfo. Is row a valid wxListCtrl row?") );
3042 wxMacListCtrlItem
* listItem
= wx_static_cast(wxMacListCtrlItem
*,dataItem
);
3043 bool hasInfo
= listItem
->HasColumnInfo( column
);
3044 listItem
->SetColumnInfo( column
, item
);
3045 listItem
->SetOrder(row
);
3046 UpdateState(dataItem
, item
);
3048 wxListCtrl
* list
= wxDynamicCast( GetPeer() , wxListCtrl
);
3050 // NB: When this call was made before a control was completely shown, it would
3051 // update the item prematurely (i.e. no text would be listed) and, on show,
3052 // only the sorted column would be refreshed, meaning only first column text labels
3053 // would be shown. Making sure not to update items until the control is visible
3054 // seems to fix this issue.
3055 if (hasInfo
&& list
->IsShown())
3056 UpdateItem( wxMacDataBrowserRootContainer
, listItem
, kMinColumnId
+ column
);
3060 // apply changes that need to happen immediately, rather than when the
3061 // databrowser control fires a callback.
3062 void wxMacDataBrowserListCtrlControl::UpdateState(wxMacDataItem
* dataItem
, wxListItem
* listItem
)
3064 bool isSelected
= IsItemSelected( dataItem
);
3065 bool isSelectedState
= (listItem
->GetState() == wxLIST_STATE_SELECTED
);
3067 // toggle the selection state if wxListInfo state and actual state don't match.
3068 if ( isSelected
!= isSelectedState
)
3070 DataBrowserSetOption options
= kDataBrowserItemsAdd
;
3071 if (!isSelectedState
)
3072 options
= kDataBrowserItemsRemove
;
3073 SetSelectedItem(dataItem
, options
);
3075 // TODO: Set column width if item width > than current column width
3078 void wxMacDataBrowserListCtrlControl::MacGetColumnInfo( unsigned int row
, unsigned int column
, wxListItem
& item
)
3080 wxMacDataItem
* dataItem
= GetItemFromLine(row
);
3081 wxASSERT_MSG( dataItem
, _T("could not obtain wxMacDataItem in MacGetColumnInfo. Is row a valid wxListCtrl row?") );
3082 // CS should this guard against dataItem = 0 ? , as item is not a pointer if (item) is not appropriate
3085 wxMacListCtrlItem
* listItem
=wx_static_cast(wxMacListCtrlItem
*,dataItem
);
3087 if (!listItem
->HasColumnInfo( column
))
3090 wxListItem
* oldItem
= listItem
->GetColumnInfo( column
);
3094 long mask
= item
.GetMask();
3096 // by default, get everything for backwards compatibility
3099 if ( mask
& wxLIST_MASK_TEXT
)
3100 item
.SetText(oldItem
->GetText());
3101 if ( mask
& wxLIST_MASK_IMAGE
)
3102 item
.SetImage(oldItem
->GetImage());
3103 if ( mask
& wxLIST_MASK_DATA
)
3104 item
.SetData(oldItem
->GetData());
3105 if ( mask
& wxLIST_MASK_STATE
)
3106 item
.SetState(oldItem
->GetState());
3107 if ( mask
& wxLIST_MASK_WIDTH
)
3108 item
.SetWidth(oldItem
->GetWidth());
3109 if ( mask
& wxLIST_MASK_FORMAT
)
3110 item
.SetAlign(oldItem
->GetAlign());
3112 item
.SetTextColour(oldItem
->GetTextColour());
3113 item
.SetBackgroundColour(oldItem
->GetBackgroundColour());
3114 item
.SetFont(oldItem
->GetFont());
3119 void wxMacDataBrowserListCtrlControl::MacInsertItem( unsigned int n
, wxListItem
* item
)
3121 wxMacDataItemBrowserControl::MacInsert(n
, item
->GetText());
3122 MacSetColumnInfo(n
, 0, item
);
3125 wxMacDataItem
* wxMacDataBrowserListCtrlControl::CreateItem()
3127 return new wxMacListCtrlItem();
3130 wxMacListCtrlItem::wxMacListCtrlItem()
3132 m_rowItems
= wxListItemList();
3135 int wxMacListCtrlItem::GetColumnImageValue( unsigned int column
)
3137 if ( HasColumnInfo(column
) )
3138 return GetColumnInfo(column
)->GetImage();
3143 void wxMacListCtrlItem::SetColumnImageValue( unsigned int column
, int imageIndex
)
3145 if ( HasColumnInfo(column
) )
3146 GetColumnInfo(column
)->SetImage(imageIndex
);
3149 wxString
wxMacListCtrlItem::GetColumnTextValue( unsigned int column
)
3154 if ( HasColumnInfo(column
) )
3155 return GetColumnInfo(column
)->GetText();
3157 return wxEmptyString
;
3160 void wxMacListCtrlItem::SetColumnTextValue( unsigned int column
, const wxString
& text
)
3162 if ( HasColumnInfo(column
) )
3163 GetColumnInfo(column
)->SetText(text
);
3165 // for compatibility with superclass APIs
3170 wxListItem
* wxMacListCtrlItem::GetColumnInfo( unsigned int column
)
3172 wxASSERT_MSG( HasColumnInfo(column
), _T("invalid column index in wxMacListCtrlItem") );
3173 return m_rowItems
[column
];
3176 bool wxMacListCtrlItem::HasColumnInfo( unsigned int column
)
3178 return !(m_rowItems
.find( column
) == m_rowItems
.end());
3181 void wxMacListCtrlItem::SetColumnInfo( unsigned int column
, wxListItem
* item
)
3184 if ( !HasColumnInfo(column
) )
3186 wxListItem
* listItem
= new wxListItem(*item
);
3187 m_rowItems
[column
] = listItem
;
3191 wxListItem
* listItem
= GetColumnInfo( column
);
3192 long mask
= item
->GetMask();
3193 if (mask
& wxLIST_MASK_TEXT
)
3194 listItem
->SetText(item
->GetText());
3195 if (mask
& wxLIST_MASK_DATA
)
3196 listItem
->SetData(item
->GetData());
3197 if (mask
& wxLIST_MASK_IMAGE
)
3198 listItem
->SetImage(item
->GetImage());
3199 if (mask
& wxLIST_MASK_STATE
)
3200 listItem
->SetState(item
->GetState());
3201 if (mask
& wxLIST_MASK_FORMAT
)
3202 listItem
->SetAlign(item
->GetAlign());
3203 if (mask
& wxLIST_MASK_WIDTH
)
3204 listItem
->SetWidth(item
->GetWidth());
3206 if ( item
->HasAttributes() )
3208 if ( listItem
->HasAttributes() )
3209 listItem
->GetAttributes()->AssignFrom(*item
->GetAttributes());
3212 listItem
->SetTextColour(item
->GetTextColour());
3213 listItem
->SetBackgroundColour(item
->GetBackgroundColour());
3214 listItem
->SetFont(item
->GetFont());
3220 #endif // wxUSE_LISTCTRL