1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/treelist.cpp
3 // Purpose: Generic wxTreeListCtrl implementation.
4 // Author: Vadim Zeitlin
6 // RCS-ID: $Id: wxhead.cpp,v 1.11 2010-04-22 12:44:51 zeitlin Exp $
7 // Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
26 #if wxUSE_TREELISTCTRL
32 #include "wx/treelist.h"
34 #include "wx/dataview.h"
35 #include "wx/renderer.h"
36 #include "wx/scopedarray.h"
37 #include "wx/scopedptr.h"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 const char wxTreeListCtrlNameStr
[] = "wxTreeListCtrl";
45 const wxTreeListItem
wxTLI_FIRST(reinterpret_cast<wxTreeListModelNode
*>(-1));
46 const wxTreeListItem
wxTLI_LAST(reinterpret_cast<wxTreeListModelNode
*>(-2));
48 // ----------------------------------------------------------------------------
49 // wxTreeListModelNode: a node in the internal tree representation.
50 // ----------------------------------------------------------------------------
52 class wxTreeListModelNode
55 wxTreeListModelNode(wxTreeListModelNode
* parent
,
56 const wxString
& text
= wxString(),
57 int imageClosed
= wxWithImages::NO_IMAGE
,
58 int imageOpened
= wxWithImages::NO_IMAGE
,
59 wxClientData
* data
= NULL
)
66 m_imageClosed
= imageClosed
;
67 m_imageOpened
= imageOpened
;
69 m_checkedState
= wxCHK_UNCHECKED
;
73 m_columnsTexts
= NULL
;
76 // Destroying the node also (recursively) destroys its children.
77 ~wxTreeListModelNode()
79 for ( wxTreeListModelNode
* node
= m_child
; node
; )
81 wxTreeListModelNode
* child
= node
;
88 delete [] m_columnsTexts
;
92 // Public fields for the first column text and other simple attributes:
93 // there is no need to have accessors/mutators for those as there is no
94 // encapsulation anyhow, all of those are exposed in our public API.
100 wxCheckBoxState m_checkedState
;
103 // Accessors for the fields that are not directly exposed.
105 // Client data is owned by us so delete the old value when setting the new
107 wxClientData
* GetClientData() const { return m_data
; }
108 void SetClientData(wxClientData
* data
) { delete m_data
; m_data
= data
; }
110 // Setting or getting the non-first column text. Getting is simple but you
111 // need to call HasColumnsTexts() first as the column data is only
112 // allocated on demand. And when setting the text we require to be given
113 // the total number of columns as we allocate the entire array at once,
114 // this is more efficient than using dynamically-expandable wxVector that
115 // we know won't be needed as the number of columns is usually fixed. But
116 // if it does change, our OnInsertColumn() must be called.
118 // Notice the presence of -1 everywhere in these methods: this is because
119 // the text for the first column is always stored in m_text and so we don't
120 // store it in m_columnsTexts.
122 bool HasColumnsTexts() const { return m_columnsTexts
!= NULL
; }
123 const wxString
& GetColumnText(unsigned col
) const
125 return m_columnsTexts
[col
- 1];
128 void SetColumnText(const wxString
& text
, unsigned col
, unsigned numColumns
)
130 if ( !m_columnsTexts
)
131 m_columnsTexts
= new wxString
[numColumns
- 1];
133 m_columnsTexts
[col
- 1] = text
;
136 void OnInsertColumn(unsigned col
, unsigned numColumns
)
138 wxASSERT_MSG( col
, "Shouldn't be called for the first column" );
140 // Nothing to do if we don't have any text.
141 if ( !m_columnsTexts
)
144 wxScopedArray
<wxString
> oldTexts(m_columnsTexts
);
145 m_columnsTexts
= new wxString
[numColumns
- 1];
147 // In the loop below n is the index in the new column texts array and m
148 // is the index in the old one.
149 for ( unsigned n
= 1, m
= 1; n
< numColumns
- 1; n
++, m
++ )
153 // Leave the new array text initially empty and just adjust the
154 // index (to compensate for "m++" done by the loop anyhow).
157 else // Not the newly inserted column.
159 // Copy the old text value.
160 m_columnsTexts
[n
- 1] = oldTexts
[m
- 1];
165 void OnDeleteColumn(unsigned col
, unsigned numColumns
)
167 wxASSERT_MSG( col
, "Shouldn't be called for the first column" );
169 if ( !m_columnsTexts
)
172 wxScopedArray
<wxString
> oldTexts(m_columnsTexts
);
173 m_columnsTexts
= new wxString
[numColumns
- 2];
174 for ( unsigned n
= 1, m
= 1; n
< numColumns
- 1; n
++, m
++ )
180 else // Not the deleted column.
182 m_columnsTexts
[n
- 1] = oldTexts
[m
- 1];
187 void OnClearColumns()
189 if ( m_columnsTexts
)
191 delete [] m_columnsTexts
;
192 m_columnsTexts
= NULL
;
197 // Functions for modifying the tree.
199 // Insert the given item as the first child of this one. The parent pointer
200 // must have been already set correctly at creation and we take ownership
201 // of the pointer and will delete it later.
202 void InsertChild(wxTreeListModelNode
* child
)
204 wxASSERT( child
->m_parent
== this );
206 // Our previous first child becomes the next sibling of the new child.
207 child
->m_next
= m_child
;
211 // Insert the given item as our next sibling. As above, the item must have
212 // the correct parent pointer and we take ownership of it.
213 void InsertNext(wxTreeListModelNode
* next
)
215 wxASSERT( next
->m_parent
== m_parent
);
217 next
->m_next
= m_next
;
221 // Remove the first child of this item from the tree and delete it.
224 wxTreeListModelNode
* const oldChild
= m_child
;
225 m_child
= m_child
->m_next
;
229 // Remove the next sibling of this item from the tree and deletes it.
232 wxTreeListModelNode
* const oldNext
= m_next
;
233 m_next
= m_next
->m_next
;
238 // Functions for tree traversal. All of them can return NULL.
240 // Only returns NULL when called on the root item.
241 wxTreeListModelNode
* GetParent() const { return m_parent
; }
243 // Returns the first child of this item.
244 wxTreeListModelNode
* GetChild() const { return m_child
; }
246 // Returns the next sibling of this item.
247 wxTreeListModelNode
* GetNext() const { return m_next
; }
249 // Unlike the previous two functions, this one is not a simple accessor
250 // (hence it's not called "GetSomething") but computes the next node after
251 // this one in tree order.
252 wxTreeListModelNode
* NextInTree() const
260 // Recurse upwards until we find the next sibling.
261 for ( wxTreeListModelNode
* node
= m_parent
; node
; node
= node
->m_parent
)
272 // The (never changing after creation) parent of this node and the possibly
273 // NULL pointers to its first child and next sibling.
274 wxTreeListModelNode
* const m_parent
;
275 wxTreeListModelNode
* m_child
;
276 wxTreeListModelNode
* m_next
;
278 // Client data pointer owned by the control. May be NULL.
279 wxClientData
* m_data
;
281 // Array of column values for all the columns except the first one. May be
282 // NULL if no values had been set for them.
283 wxString
* m_columnsTexts
;
286 // ----------------------------------------------------------------------------
287 // wxTreeListModel: wxDataViewModel implementation used by wxTreeListCtrl.
288 // ----------------------------------------------------------------------------
290 class wxTreeListModel
: public wxDataViewModel
293 typedef wxTreeListModelNode Node
;
295 // Unlike a general wxDataViewModel, this model can only be used with a
296 // single control at once. The main reason for this is that we need to
297 // support different icons for opened and closed items and the item state
298 // is associated with the control, not the model, so our GetValue() is also
299 // bound to it (otherwise, what would it return for an item expanded in one
300 // associated control and collapsed in another one?).
301 wxTreeListModel(wxTreeListCtrl
* treelist
);
302 virtual ~wxTreeListModel();
305 // Helpers for converting between wxDataViewItem and wxTreeListItem. These
306 // methods simply cast the pointer to/from wxDataViewItem except for the
307 // root node that we handle specially unless explicitly disabled.
309 // The advantage of using them is that they're greppable and stand out
310 // better, hopefully making the code more clear.
311 Node
* FromNonRootDVI(wxDataViewItem dvi
) const
313 return static_cast<Node
*>(dvi
.GetID());
316 Node
* FromDVI(wxDataViewItem dvi
) const
321 return FromNonRootDVI(dvi
);
324 wxDataViewItem
ToNonRootDVI(Node
* node
) const
326 return wxDataViewItem(node
);
329 wxDataViewItem
ToDVI(Node
* node
) const
331 // Our root item must be represented as NULL at wxDVC level to map to
332 // its own invisible root.
333 if ( !node
->GetParent() )
334 return wxDataViewItem();
336 return ToNonRootDVI(node
);
340 // Methods called by wxTreeListCtrl.
341 void InsertColumn(unsigned col
);
342 void DeleteColumn(unsigned col
);
345 Node
* InsertItem(Node
* parent
,
347 const wxString
& text
,
351 void DeleteItem(Node
* item
);
352 void DeleteAllItems();
354 Node
* GetRootItem() const { return m_root
; }
356 const wxString
& GetItemText(Node
* item
, unsigned col
) const;
357 void SetItemText(Node
* item
, unsigned col
, const wxString
& text
);
358 void SetItemImage(Node
* item
, int closed
, int opened
);
359 wxClientData
* GetItemData(Node
* item
) const;
360 void SetItemData(Node
* item
, wxClientData
* data
);
362 void CheckItem(Node
* item
, wxCheckBoxState checkedState
);
363 void ToggleItem(wxDataViewItem item
);
366 // Implement the base class pure virtual methods.
367 virtual unsigned GetColumnCount() const;
368 virtual wxString
GetColumnType(unsigned col
) const;
369 virtual void GetValue(wxVariant
& variant
,
370 const wxDataViewItem
& item
,
372 virtual bool SetValue(const wxVariant
& variant
,
373 const wxDataViewItem
& item
,
375 virtual wxDataViewItem
GetParent(const wxDataViewItem
& item
) const;
376 virtual bool IsContainer(const wxDataViewItem
& item
) const;
377 virtual bool HasContainerColumns(const wxDataViewItem
& item
) const;
378 virtual unsigned GetChildren(const wxDataViewItem
& item
,
379 wxDataViewItemArray
& children
) const;
380 virtual bool IsListModel() const { return m_isFlat
; }
381 virtual int Compare(const wxDataViewItem
& item1
,
382 const wxDataViewItem
& item2
,
384 bool ascending
) const;
387 // The control we're associated with.
388 wxTreeListCtrl
* const m_treelist
;
390 // The unique invisible root element.
393 // Number of columns we maintain.
394 unsigned m_numColumns
;
396 // Set to false as soon as we have more than one level, i.e. as soon as any
397 // items with non-root item as parent are added (and currently never reset
402 // ============================================================================
403 // wxDataViewCheckIconText[Renderer]: special renderer for our first column.
404 // ============================================================================
406 // Currently this class is private but it could be extracted and made part of
407 // public API later as could be used directly with wxDataViewCtrl as well.
411 const char* CHECK_ICON_TEXT_TYPE
= "wxDataViewCheckIconText";
413 // The value used by wxDataViewCheckIconTextRenderer
414 class wxDataViewCheckIconText
: public wxDataViewIconText
417 wxDataViewCheckIconText(const wxString
& text
= wxString(),
418 const wxIcon
& icon
= wxNullIcon
,
419 wxCheckBoxState checkedState
= wxCHK_UNDETERMINED
)
420 : wxDataViewIconText(text
, icon
),
421 m_checkedState(checkedState
)
425 wxDataViewCheckIconText(const wxDataViewCheckIconText
& other
)
426 : wxDataViewIconText(other
),
427 m_checkedState(other
.m_checkedState
)
431 bool IsSameAs(const wxDataViewCheckIconText
& other
) const
433 return wxDataViewIconText::IsSameAs(other
) &&
434 m_checkedState
== other
.m_checkedState
;
437 // There is no encapsulation anyhow, so just expose this field directly.
438 wxCheckBoxState m_checkedState
;
442 wxDECLARE_DYNAMIC_CLASS(wxDataViewCheckIconText
);
445 wxIMPLEMENT_DYNAMIC_CLASS(wxDataViewCheckIconText
, wxDataViewIconText
);
447 DECLARE_VARIANT_OBJECT(wxDataViewCheckIconText
)
448 IMPLEMENT_VARIANT_OBJECT(wxDataViewCheckIconText
)
451 class wxDataViewCheckIconTextRenderer
: public wxDataViewCustomRenderer
454 wxDataViewCheckIconTextRenderer()
455 : wxDataViewCustomRenderer(CHECK_ICON_TEXT_TYPE
,
456 wxDATAVIEW_CELL_ACTIVATABLE
)
460 virtual bool SetValue(const wxVariant
& value
)
466 virtual bool GetValue(wxVariant
& WXUNUSED(value
)) const
471 wxSize
GetSize() const
473 wxSize size
= GetCheckSize();
474 size
.x
+= MARGIN_CHECK_ICON
;
476 if ( m_value
.GetIcon().IsOk() )
478 const wxSize sizeIcon
= m_value
.GetIcon().GetSize();
479 if ( sizeIcon
.y
> size
.y
)
482 size
.x
+= sizeIcon
.x
+ MARGIN_ICON_TEXT
;
485 wxString text
= m_value
.GetText();
489 const wxSize sizeText
= GetTextExtent(text
);
490 if ( sizeText
.y
> size
.y
)
493 size
.x
+= sizeText
.x
;
498 virtual bool Render(wxRect cell
, wxDC
* dc
, int state
)
500 // Draw the checkbox first.
502 switch ( m_value
.m_checkedState
)
504 case wxCHK_UNCHECKED
:
508 renderFlags
|= wxCONTROL_CHECKED
;
511 case wxCHK_UNDETERMINED
:
512 renderFlags
|= wxCONTROL_UNDETERMINED
;
516 if ( state
& wxDATAVIEW_CELL_PRELIT
)
517 renderFlags
|= wxCONTROL_CURRENT
;
519 const wxSize sizeCheck
= GetCheckSize();
521 wxRect
rectCheck(cell
.GetPosition(), sizeCheck
);
522 rectCheck
= rectCheck
.CentreIn(cell
, wxVERTICAL
);
524 wxRendererNative::Get().DrawCheckBox
526 GetView(), *dc
, rectCheck
, renderFlags
529 // Then the icon, if any.
530 int xoffset
= sizeCheck
.x
+ MARGIN_CHECK_ICON
;
532 const wxIcon
& icon
= m_value
.GetIcon();
535 const wxSize sizeIcon
= icon
.GetSize();
536 wxRect
rectIcon(cell
.GetPosition(), sizeIcon
);
537 rectIcon
.x
+= xoffset
;
538 rectIcon
= rectIcon
.CentreIn(cell
, wxVERTICAL
);
540 dc
->DrawIcon(icon
, rectIcon
.GetPosition());
542 xoffset
+= sizeIcon
.x
+ MARGIN_ICON_TEXT
;
546 RenderText(m_value
.GetText(), xoffset
, cell
, dc
, state
);
551 // Event handlers toggling the items checkbox if it was clicked.
552 virtual bool ActivateCell(const wxRect
& WXUNUSED(cell
),
553 wxDataViewModel
*model
,
554 const wxDataViewItem
& item
,
555 unsigned int WXUNUSED(col
),
556 const wxMouseEvent
*mouseEvent
)
560 if ( !wxRect(GetCheckSize()).Contains(mouseEvent
->GetPosition()) )
564 static_cast<wxTreeListModel
*>(model
)->ToggleItem(item
);
569 wxSize
GetCheckSize() const
571 return wxRendererNative::Get().GetCheckBoxSize(GetView());
575 // Just some arbitrary constants defining margins, in pixels.
578 MARGIN_CHECK_ICON
= 3,
582 wxDataViewCheckIconText m_value
;
585 } // anonymous namespace
587 // ============================================================================
588 // wxTreeListModel implementation
589 // ============================================================================
591 wxTreeListModel::wxTreeListModel(wxTreeListCtrl
* treelist
)
592 : m_treelist(treelist
),
593 m_root(new Node(NULL
))
599 wxTreeListModel::~wxTreeListModel()
604 void wxTreeListModel::InsertColumn(unsigned col
)
608 // There is no need to update anything when inserting the first column.
609 if ( m_numColumns
== 1 )
612 // Update all the items as they may have texts for the old columns.
613 for ( Node
* node
= m_root
->GetChild(); node
; node
= node
->NextInTree() )
615 node
->OnInsertColumn(col
, m_numColumns
);
619 void wxTreeListModel::DeleteColumn(unsigned col
)
621 wxCHECK_RET( col
< m_numColumns
, "Invalid column index" );
623 // Update all the items to remove the text for the non first columns.
626 for ( Node
* node
= m_root
->GetChild(); node
; node
= node
->NextInTree() )
628 node
->OnDeleteColumn(col
, m_numColumns
);
635 void wxTreeListModel::ClearColumns()
639 for ( Node
* node
= m_root
->GetChild(); node
; node
= node
->NextInTree() )
641 node
->OnClearColumns();
646 wxTreeListModel::InsertItem(Node
* parent
,
648 const wxString
& text
,
653 wxCHECK_MSG( parent
, NULL
,
654 "Must have a valid parent (maybe GetRootItem()?)" );
656 wxCHECK_MSG( previous
, NULL
,
657 "Must have a valid previous item (maybe wxTLI_FIRST/LAST?)" );
659 if ( m_isFlat
&& parent
!= m_root
)
661 // Not flat any more, this is a second level child.
666 newItem(new Node(parent
, text
, imageClosed
, imageOpened
, data
));
668 // FIXME-VC6: This compiler refuses to compare "Node* previous" with
669 // wxTLI_XXX without some help.
670 const wxTreeListItem
previousItem(previous
);
672 // If we have no children at all, then inserting as last child is the same
673 // as inserting as the first one so check for it here too.
674 if ( previousItem
== wxTLI_FIRST
||
675 (previousItem
== wxTLI_LAST
&& !parent
->GetChild()) )
677 parent
->InsertChild(newItem
.get());
679 else // Not the first item, find the previous one.
681 if ( previousItem
== wxTLI_LAST
)
683 previous
= parent
->GetChild();
685 // Find the last child.
688 Node
* const next
= previous
->GetNext();
695 else // We already have the previous item.
697 // Just check it's under the correct parent.
698 wxCHECK_MSG( previous
->GetParent() == parent
, NULL
,
699 "Previous item is not under the right parent" );
702 previous
->InsertNext(newItem
.get());
705 ItemAdded(ToDVI(parent
), ToDVI(newItem
.get()));
707 // The item was successfully inserted in the tree and so will be deleted by
708 // it, we can detach it now.
709 return newItem
.release();
712 void wxTreeListModel::DeleteItem(Node
* item
)
714 wxCHECK_RET( item
, "Invalid item" );
716 wxCHECK_RET( item
!= m_root
, "Can't delete the root item" );
718 Node
* const parent
= item
->GetParent();
720 ItemDeleted(ToDVI(parent
), ToDVI(item
));
722 Node
* previous
= parent
->GetChild();
723 if ( previous
== item
)
725 parent
->DeleteChild();
727 else // Not the first child of its parent.
729 // Find the sibling just before it.
732 Node
* const next
= previous
->GetNext();
736 wxCHECK_RET( next
, "Item not a child of its parent?" );
741 previous
->DeleteNext();
745 void wxTreeListModel::DeleteAllItems()
747 while ( m_root
->GetChild() )
749 m_root
->DeleteChild();
755 const wxString
& wxTreeListModel::GetItemText(Node
* item
, unsigned col
) const
757 // Returning root item text here is bogus, it just happens to be an always
758 // empty string we can return reference to.
759 wxCHECK_MSG( item
, m_root
->m_text
, "Invalid item" );
761 // Notice that asking for the text of a column of an item that doesn't have
762 // any column texts is not an error so we simply return an empty string in
764 return col
== 0 ? item
->m_text
765 : item
->HasColumnsTexts() ? item
->GetColumnText(col
)
769 void wxTreeListModel::SetItemText(Node
* item
, unsigned col
, const wxString
& text
)
771 wxCHECK_RET( item
, "Invalid item" );
776 item
->SetColumnText(text
, col
, m_numColumns
);
778 ValueChanged(ToDVI(item
), col
);
781 void wxTreeListModel::SetItemImage(Node
* item
, int closed
, int opened
)
783 wxCHECK_RET( item
, "Invalid item" );
785 item
->m_imageClosed
= closed
;
786 item
->m_imageOpened
= opened
;
788 ValueChanged(ToDVI(item
), 0);
791 wxClientData
* wxTreeListModel::GetItemData(Node
* item
) const
793 wxCHECK_MSG( item
, NULL
, "Invalid item" );
795 return item
->GetClientData();
798 void wxTreeListModel::SetItemData(Node
* item
, wxClientData
* data
)
800 wxCHECK_RET( item
, "Invalid item" );
802 item
->SetClientData(data
);
805 void wxTreeListModel::CheckItem(Node
* item
, wxCheckBoxState checkedState
)
807 wxCHECK_RET( item
, "Invalid item" );
809 item
->m_checkedState
= checkedState
;
811 ItemChanged(ToDVI(item
));
814 void wxTreeListModel::ToggleItem(wxDataViewItem dvi
)
816 Node
* const item
= FromDVI(dvi
);
818 wxCHECK_RET( item
, "Invalid item" );
820 const wxCheckBoxState stateOld
= item
->m_checkedState
;
822 // If the 3rd state is user-settable then the cycle is
823 // unchecked->checked->undetermined.
827 item
->m_checkedState
= m_treelist
->HasFlag(wxTL_USER_3STATE
)
832 case wxCHK_UNDETERMINED
:
833 // Whether 3rd state is user-settable or not, the next state is
835 item
->m_checkedState
= wxCHK_UNCHECKED
;
838 case wxCHK_UNCHECKED
:
839 item
->m_checkedState
= wxCHK_CHECKED
;
843 ItemChanged(ToDVI(item
));
845 m_treelist
->OnItemToggled(item
, stateOld
);
848 unsigned wxTreeListModel::GetColumnCount() const
853 wxString
wxTreeListModel::GetColumnType(unsigned col
) const
857 return m_treelist
->HasFlag(wxTL_CHECKBOX
)
858 ? wxS("wxDataViewCheckIconText")
859 : wxS("wxDataViewIconText");
861 else // All the other columns contain just text.
863 return wxS("string");
868 wxTreeListModel::GetValue(wxVariant
& variant
,
869 const wxDataViewItem
& item
,
872 Node
* const node
= FromDVI(item
);
876 // Determine the correct image to use depending on the item state.
877 int image
= wxWithImages::NO_IMAGE
;
878 if ( m_treelist
->IsExpanded(node
) )
879 image
= node
->m_imageOpened
;
881 if ( image
== wxWithImages::NO_IMAGE
)
882 image
= node
->m_imageClosed
;
884 wxIcon icon
= m_treelist
->GetImage(image
);
886 if ( m_treelist
->HasFlag(wxTL_CHECKBOX
) )
887 variant
<< wxDataViewCheckIconText(node
->m_text
, icon
,
888 node
->m_checkedState
);
890 variant
<< wxDataViewIconText(node
->m_text
, icon
);
894 // Notice that we must still assign wxString to wxVariant to ensure
895 // that it at least has the correct type.
897 if ( node
->HasColumnsTexts() )
898 text
= node
->GetColumnText(col
);
905 wxTreeListModel::SetValue(const wxVariant
& WXUNUSED(variant
),
906 const wxDataViewItem
& WXUNUSED(item
),
907 unsigned WXUNUSED(col
))
909 // We are not editable currently.
913 wxDataViewItem
wxTreeListModel::GetParent(const wxDataViewItem
& item
) const
915 Node
* const node
= FromDVI(item
);
917 return ToDVI(node
->GetParent());
920 bool wxTreeListModel::IsContainer(const wxDataViewItem
& item
) const
922 // FIXME: In the generic (and native OS X) versions we implement this
923 // method normally, i.e. only items with children are containers.
924 // But for the native GTK version we must pretend that all items are
925 // containers because otherwise adding children to them later would
926 // fail because wxGTK code calls IsContainer() too early (when
927 // adding the item itself) and we can't know whether we're container
928 // or not by then. Luckily, always returning true doesn't have any
929 // serious drawbacks for us.
935 Node
* const node
= FromDVI(item
);
937 return node
->GetChild() != NULL
;
942 wxTreeListModel::HasContainerColumns(const wxDataViewItem
& WXUNUSED(item
)) const
948 wxTreeListModel::GetChildren(const wxDataViewItem
& item
,
949 wxDataViewItemArray
& children
) const
951 Node
* const node
= FromDVI(item
);
953 unsigned numChildren
= 0;
954 for ( Node
* child
= node
->GetChild(); child
; child
= child
->GetNext() )
956 children
.push_back(ToDVI(child
));
964 wxTreeListModel::Compare(const wxDataViewItem
& item1
,
965 const wxDataViewItem
& item2
,
967 bool ascending
) const
969 // Compare using default alphabetical order if no custom comparator.
970 wxTreeListItemComparator
* const comp
= m_treelist
->m_comparator
;
972 return wxDataViewModel::Compare(item1
, item2
, col
, ascending
);
974 // Forward comparison to the comparator:
975 int result
= comp
->Compare(m_treelist
, col
, FromDVI(item1
), FromDVI(item2
));
977 // And adjust by the sort order if necessary.
984 // ============================================================================
985 // wxTreeListCtrl implementation
986 // ============================================================================
988 BEGIN_EVENT_TABLE(wxTreeListCtrl
, wxWindow
)
989 EVT_DATAVIEW_SELECTION_CHANGED(wxID_ANY
, wxTreeListCtrl::OnSelectionChanged
)
990 EVT_DATAVIEW_ITEM_EXPANDING(wxID_ANY
, wxTreeListCtrl::OnItemExpanding
)
991 EVT_DATAVIEW_ITEM_EXPANDED(wxID_ANY
, wxTreeListCtrl::OnItemExpanded
)
992 EVT_DATAVIEW_ITEM_ACTIVATED(wxID_ANY
, wxTreeListCtrl::OnItemActivated
)
993 EVT_DATAVIEW_ITEM_CONTEXT_MENU(wxID_ANY
, wxTreeListCtrl::OnItemContextMenu
)
994 EVT_DATAVIEW_COLUMN_SORTED(wxID_ANY
, wxTreeListCtrl::OnColumnSorted
)
996 EVT_SIZE(wxTreeListCtrl::OnSize
)
999 // ----------------------------------------------------------------------------
1001 // ----------------------------------------------------------------------------
1003 void wxTreeListCtrl::Init()
1007 m_comparator
= NULL
;
1010 bool wxTreeListCtrl::Create(wxWindow
* parent
,
1015 const wxString
& name
)
1017 if ( style
& wxTL_USER_3STATE
)
1018 style
|= wxTL_3STATE
;
1020 if ( style
& wxTL_3STATE
)
1021 style
|= wxTL_CHECKBOX
;
1023 // Create the window itself and wxDataViewCtrl used by it.
1024 if ( !wxWindow::Create(parent
, id
,
1031 m_view
= new wxDataViewCtrl
;
1032 if ( !m_view
->Create(this, wxID_ANY
,
1033 wxPoint(0, 0), GetClientSize(),
1034 HasFlag(wxTL_MULTIPLE
) ? wxDV_MULTIPLE
1044 // Set up the model for wxDataViewCtrl.
1045 m_model
= new wxTreeListModel(this);
1046 m_view
->AssociateModel(m_model
);
1051 wxTreeListCtrl::~wxTreeListCtrl()
1057 wxWindowList
wxTreeListCtrl::GetCompositeWindowParts() const
1060 parts
.push_back(m_view
);
1064 // ----------------------------------------------------------------------------
1066 // ----------------------------------------------------------------------------
1069 wxTreeListCtrl::DoInsertColumn(const wxString
& title
,
1075 wxCHECK_MSG( m_view
, wxNOT_FOUND
, "Must Create() first" );
1077 const unsigned oldNumColumns
= m_view
->GetColumnCount();
1079 if ( pos
== wxNOT_FOUND
)
1080 pos
= oldNumColumns
;
1082 wxDataViewRenderer
* renderer
;
1085 // Inserting the first column which is special as it uses a different
1088 // Also, currently it can be done only once.
1089 wxCHECK_MSG( !oldNumColumns
, wxNOT_FOUND
,
1090 "Inserting column at position 0 currently not supported" );
1092 if ( HasFlag(wxTL_CHECKBOX
) )
1094 // Use our custom renderer to show the checkbox.
1095 renderer
= new wxDataViewCheckIconTextRenderer
;
1097 else // We still need a special renderer to show the icons.
1099 renderer
= new wxDataViewIconTextRenderer
;
1102 else // Not the first column.
1104 // All the other ones use a simple text renderer.
1105 renderer
= new wxDataViewTextRenderer
;
1109 column
= new wxDataViewColumn(title
, renderer
, pos
, width
, align
, flags
);
1111 m_model
->InsertColumn(pos
);
1113 m_view
->InsertColumn(pos
, column
);
1118 unsigned wxTreeListCtrl::GetColumnCount() const
1120 return m_view
? m_view
->GetColumnCount() : 0u;
1123 bool wxTreeListCtrl::DeleteColumn(unsigned col
)
1125 wxCHECK_MSG( col
< GetColumnCount(), false, "Invalid column index" );
1127 if ( !m_view
->DeleteColumn(m_view
->GetColumn(col
)) )
1130 m_model
->DeleteColumn(col
);
1135 void wxTreeListCtrl::ClearColumns()
1137 // Don't assert here, clearing columns of the control before it's created
1138 // can be considered valid (just useless).
1142 m_view
->ClearColumns();
1144 m_model
->ClearColumns();
1147 void wxTreeListCtrl::SetColumnWidth(unsigned col
, int width
)
1149 wxCHECK_RET( col
< GetColumnCount(), "Invalid column index" );
1151 wxDataViewColumn
* const column
= m_view
->GetColumn(col
);
1152 wxCHECK_RET( column
, "No such column?" );
1154 column
->SetWidth(width
);
1157 int wxTreeListCtrl::GetColumnWidth(unsigned col
) const
1159 wxCHECK_MSG( col
< GetColumnCount(), -1, "Invalid column index" );
1161 wxDataViewColumn
* column
= m_view
->GetColumn(col
);
1162 wxCHECK_MSG( column
, -1, "No such column?" );
1164 return column
->GetWidth();
1167 int wxTreeListCtrl::WidthFor(const wxString
& text
) const
1169 return GetTextExtent(text
).x
;
1172 // ----------------------------------------------------------------------------
1174 // ----------------------------------------------------------------------------
1177 wxTreeListCtrl::DoInsertItem(wxTreeListItem parent
,
1178 wxTreeListItem previous
,
1179 const wxString
& text
,
1184 wxCHECK_MSG( m_model
, wxTreeListItem(), "Must create first" );
1186 return wxTreeListItem(m_model
->InsertItem(parent
, previous
, text
,
1187 imageClosed
, imageOpened
, data
));
1190 void wxTreeListCtrl::DeleteItem(wxTreeListItem item
)
1192 wxCHECK_RET( m_model
, "Must create first" );
1194 m_model
->DeleteItem(item
);
1197 void wxTreeListCtrl::DeleteAllItems()
1200 m_model
->DeleteAllItems();
1203 // ----------------------------------------------------------------------------
1205 // ----------------------------------------------------------------------------
1207 // The simple accessors in this section are implemented directly using
1208 // wxTreeListModelNode methods, without passing by the model. This is just a
1209 // shortcut and avoids us the trouble of defining more trivial methods in
1212 wxTreeListItem
wxTreeListCtrl::GetRootItem() const
1214 wxCHECK_MSG( m_model
, wxTreeListItem(), "Must create first" );
1216 return m_model
->GetRootItem();
1219 wxTreeListItem
wxTreeListCtrl::GetItemParent(wxTreeListItem item
) const
1221 wxCHECK_MSG( item
.IsOk(), wxTreeListItem(), "Invalid item" );
1223 return item
->GetParent();
1226 wxTreeListItem
wxTreeListCtrl::GetFirstChild(wxTreeListItem item
) const
1228 wxCHECK_MSG( item
.IsOk(), wxTreeListItem(), "Invalid item" );
1230 return item
->GetChild();
1234 wxTreeListCtrl::GetNextSibling(wxTreeListItem item
) const
1236 wxCHECK_MSG( item
.IsOk(), wxTreeListItem(), "Invalid item" );
1238 return item
->GetNext();
1241 wxTreeListItem
wxTreeListCtrl::GetNextItem(wxTreeListItem item
) const
1243 wxCHECK_MSG( item
.IsOk(), wxTreeListItem(), "Invalid item" );
1245 return item
->NextInTree();
1248 // ----------------------------------------------------------------------------
1250 // ----------------------------------------------------------------------------
1253 wxTreeListCtrl::GetItemText(wxTreeListItem item
, unsigned col
) const
1255 // We can't use wxCHECK_MSG() here because we don't have any empty string
1256 // reference to return so we use a static variable that exists just for the
1257 // purpose of this check -- and so we put it in its own scope so that it's
1258 // never even created during normal program execution.
1259 if ( !m_model
|| col
>= m_model
->GetColumnCount() )
1261 static wxString s_empty
;
1265 wxFAIL_MSG( "Must create first" );
1267 else if ( col
>= m_model
->GetColumnCount() )
1269 wxFAIL_MSG( "Invalid column index" );
1275 return m_model
->GetItemText(item
, col
);
1279 wxTreeListCtrl::SetItemText(wxTreeListItem item
,
1281 const wxString
& text
)
1283 wxCHECK_RET( m_model
, "Must create first" );
1284 wxCHECK_RET( col
< m_model
->GetColumnCount(), "Invalid column index" );
1286 m_model
->SetItemText(item
, col
, text
);
1289 void wxTreeListCtrl::SetItemImage(wxTreeListItem item
, int closed
, int opened
)
1291 wxCHECK_RET( m_model
, "Must create first" );
1293 if ( closed
!= NO_IMAGE
|| opened
!= NO_IMAGE
)
1295 wxImageList
* const imageList
= GetImageList();
1296 wxCHECK_RET( imageList
, "Can't set images without image list" );
1298 const int imageCount
= imageList
->GetImageCount();
1300 wxCHECK_RET( closed
< imageCount
, "Invalid image index" );
1301 wxCHECK_RET( opened
< imageCount
, "Invalid opened image index" );
1304 m_model
->SetItemImage(item
, closed
, opened
);
1307 wxClientData
* wxTreeListCtrl::GetItemData(wxTreeListItem item
) const
1309 wxCHECK_MSG( m_model
, NULL
, "Must create first" );
1311 return m_model
->GetItemData(item
);
1314 void wxTreeListCtrl::SetItemData(wxTreeListItem item
, wxClientData
* data
)
1316 wxCHECK_RET( m_model
, "Must create first" );
1318 m_model
->SetItemData(item
, data
);
1321 // ----------------------------------------------------------------------------
1322 // Expanding and collapsing
1323 // ----------------------------------------------------------------------------
1325 void wxTreeListCtrl::Expand(wxTreeListItem item
)
1327 wxCHECK_RET( m_view
, "Must create first" );
1329 m_view
->Expand(m_model
->ToDVI(item
));
1332 void wxTreeListCtrl::Collapse(wxTreeListItem item
)
1334 wxCHECK_RET( m_view
, "Must create first" );
1336 m_view
->Collapse(m_model
->ToDVI(item
));
1339 bool wxTreeListCtrl::IsExpanded(wxTreeListItem item
) const
1341 wxCHECK_MSG( m_view
, false, "Must create first" );
1343 return m_view
->IsExpanded(m_model
->ToDVI(item
));
1346 // ----------------------------------------------------------------------------
1348 // ----------------------------------------------------------------------------
1350 wxTreeListItem
wxTreeListCtrl::GetSelection() const
1352 wxCHECK_MSG( m_view
, wxTreeListItem(), "Must create first" );
1354 wxCHECK_MSG( !HasFlag(wxTL_MULTIPLE
), wxTreeListItem(),
1355 "Must use GetSelections() with multi-selection controls!" );
1357 const wxDataViewItem dvi
= m_view
->GetSelection();
1359 return m_model
->FromNonRootDVI(dvi
);
1362 unsigned wxTreeListCtrl::GetSelections(wxTreeListItems
& selections
) const
1364 wxCHECK_MSG( m_view
, 0, "Must create first" );
1366 wxDataViewItemArray selectionsDV
;
1367 const unsigned numSelected
= m_view
->GetSelections(selectionsDV
);
1368 selections
.resize(numSelected
);
1369 for ( unsigned n
= 0; n
< numSelected
; n
++ )
1370 selections
[n
] = m_model
->FromNonRootDVI(selectionsDV
[n
]);
1375 void wxTreeListCtrl::Select(wxTreeListItem item
)
1377 wxCHECK_RET( m_view
, "Must create first" );
1379 m_view
->Select(m_model
->ToNonRootDVI(item
));
1382 void wxTreeListCtrl::Unselect(wxTreeListItem item
)
1384 wxCHECK_RET( m_view
, "Must create first" );
1386 m_view
->Unselect(m_model
->ToNonRootDVI(item
));
1389 bool wxTreeListCtrl::IsSelected(wxTreeListItem item
) const
1391 wxCHECK_MSG( m_view
, false, "Must create first" );
1393 return m_view
->IsSelected(m_model
->ToNonRootDVI(item
));
1396 void wxTreeListCtrl::SelectAll()
1398 wxCHECK_RET( m_view
, "Must create first" );
1400 m_view
->SelectAll();
1403 void wxTreeListCtrl::UnselectAll()
1405 wxCHECK_RET( m_view
, "Must create first" );
1407 m_view
->UnselectAll();
1410 // ----------------------------------------------------------------------------
1411 // Checkbox handling
1412 // ----------------------------------------------------------------------------
1414 void wxTreeListCtrl::CheckItem(wxTreeListItem item
, wxCheckBoxState state
)
1416 wxCHECK_RET( m_model
, "Must create first" );
1418 m_model
->CheckItem(item
, state
);
1422 wxTreeListCtrl::CheckItemRecursively(wxTreeListItem item
, wxCheckBoxState state
)
1424 wxCHECK_RET( m_model
, "Must create first" );
1426 m_model
->CheckItem(item
, state
);
1428 for ( wxTreeListItem child
= GetFirstChild(item
);
1430 child
= GetNextSibling(child
) )
1432 CheckItemRecursively(child
, state
);
1436 void wxTreeListCtrl::UpdateItemParentStateRecursively(wxTreeListItem item
)
1438 wxCHECK_RET( item
.IsOk(), "Invalid item" );
1440 wxASSERT_MSG( HasFlag(wxTL_3STATE
), "Can only be used with wxTL_3STATE" );
1444 wxTreeListItem parent
= GetItemParent(item
);
1445 if ( parent
== GetRootItem() )
1447 // There is no checked state associated with the root item.
1451 // Set parent state to the state of this item if all the other children
1452 // have the same state too. Otherwise make it indeterminate.
1453 const wxCheckBoxState stateItem
= GetCheckedState(item
);
1454 CheckItem(parent
, AreAllChildrenInState(parent
, stateItem
)
1456 : wxCHK_UNDETERMINED
);
1458 // And do the same thing with the parent's parent too.
1463 wxCheckBoxState
wxTreeListCtrl::GetCheckedState(wxTreeListItem item
) const
1465 wxCHECK_MSG( item
.IsOk(), wxCHK_UNDETERMINED
, "Invalid item" );
1467 return item
->m_checkedState
;
1471 wxTreeListCtrl::AreAllChildrenInState(wxTreeListItem item
,
1472 wxCheckBoxState state
) const
1474 wxCHECK_MSG( item
.IsOk(), false, "Invalid item" );
1476 for ( wxTreeListItem child
= GetFirstChild(item
);
1478 child
= GetNextSibling(child
) )
1480 if ( GetCheckedState(child
) != state
)
1487 // ----------------------------------------------------------------------------
1489 // ----------------------------------------------------------------------------
1491 void wxTreeListCtrl::SetSortColumn(unsigned col
, bool ascendingOrder
)
1493 wxCHECK_RET( col
< m_view
->GetColumnCount(), "Invalid column index" );
1495 m_view
->GetColumn(col
)->SetSortOrder(ascendingOrder
);
1498 bool wxTreeListCtrl::GetSortColumn(unsigned* col
, bool* ascendingOrder
)
1500 const unsigned numColumns
= m_view
->GetColumnCount();
1501 for ( unsigned n
= 0; n
< numColumns
; n
++ )
1503 wxDataViewColumn
* const column
= m_view
->GetColumn(n
);
1504 if ( column
->IsSortKey() )
1509 if ( ascendingOrder
)
1510 *ascendingOrder
= column
->IsSortOrderAscending();
1519 void wxTreeListCtrl::SetItemComparator(wxTreeListItemComparator
* comparator
)
1521 m_comparator
= comparator
;
1524 // ----------------------------------------------------------------------------
1526 // ----------------------------------------------------------------------------
1528 void wxTreeListCtrl::SendItemEvent(wxEventType evt
, wxDataViewEvent
& eventDV
)
1530 wxTreeListEvent
eventTL(evt
, this, m_model
->FromDVI(eventDV
.GetItem()));
1532 if ( !ProcessWindowEvent(eventTL
) )
1538 if ( !eventTL
.IsAllowed() )
1544 void wxTreeListCtrl::SendColumnEvent(wxEventType evt
, wxDataViewEvent
& eventDV
)
1546 wxTreeListEvent
eventTL(evt
, this, wxTreeListItem());
1547 eventTL
.SetColumn(eventDV
.GetColumn());
1549 if ( !ProcessWindowEvent(eventTL
) )
1555 if ( !eventTL
.IsAllowed() )
1562 wxTreeListCtrl::OnItemToggled(wxTreeListItem item
, wxCheckBoxState stateOld
)
1564 wxTreeListEvent
event(wxEVT_COMMAND_TREELIST_ITEM_CHECKED
, this, item
);
1565 event
.SetOldCheckedState(stateOld
);
1567 ProcessWindowEvent(event
);
1570 void wxTreeListCtrl::OnSelectionChanged(wxDataViewEvent
& event
)
1572 SendItemEvent(wxEVT_COMMAND_TREELIST_SELECTION_CHANGED
, event
);
1575 void wxTreeListCtrl::OnItemExpanding(wxDataViewEvent
& event
)
1577 SendItemEvent(wxEVT_COMMAND_TREELIST_ITEM_EXPANDING
, event
);
1580 void wxTreeListCtrl::OnItemExpanded(wxDataViewEvent
& event
)
1582 SendItemEvent(wxEVT_COMMAND_TREELIST_ITEM_EXPANDED
, event
);
1585 void wxTreeListCtrl::OnItemActivated(wxDataViewEvent
& event
)
1587 SendItemEvent(wxEVT_COMMAND_TREELIST_ITEM_ACTIVATED
, event
);
1590 void wxTreeListCtrl::OnItemContextMenu(wxDataViewEvent
& event
)
1592 SendItemEvent(wxEVT_COMMAND_TREELIST_ITEM_CONTEXT_MENU
, event
);
1595 void wxTreeListCtrl::OnColumnSorted(wxDataViewEvent
& event
)
1597 SendColumnEvent(wxEVT_COMMAND_TREELIST_COLUMN_SORTED
, event
);
1600 // ----------------------------------------------------------------------------
1602 // ----------------------------------------------------------------------------
1604 void wxTreeListCtrl::OnSize(wxSizeEvent
& event
)
1610 // Resize the real control to cover our entire client area.
1611 const wxRect rect
= GetClientRect();
1612 m_view
->SetSize(rect
);
1614 #ifdef wxHAS_GENERIC_DATAVIEWCTRL
1615 // The generic implementation doesn't refresh itself immediately which
1616 // is annoying during "live resizing", so do it forcefully here to
1617 // ensure that the items are re-laid out and the focus rectangle is
1618 // redrawn correctly (instead of leaving traces) while our size is
1620 wxWindow
* const view
= GetView();
1623 #endif // wxHAS_GENERIC_DATAVIEWCTRL
1625 // Resize the first column to take the remaining available space.
1626 const unsigned numColumns
= GetColumnCount();
1630 // There is a bug in generic wxDataViewCtrl: if the column width sums
1631 // up to the total size, horizontal scrollbar (unnecessarily) appears,
1632 // so subtract a bit to ensure this doesn't happen.
1633 int remainingWidth
= rect
.width
- 5;
1634 for ( unsigned n
= 1; n
< GetColumnCount(); n
++ )
1636 remainingWidth
-= GetColumnWidth(n
);
1637 if ( remainingWidth
<= 0 )
1639 // There is not enough space, as we're not going to give the
1640 // first column negative width anyhow, just don't do anything.
1645 SetColumnWidth(0, remainingWidth
);
1649 wxWindow
* wxTreeListCtrl::GetView() const
1651 #ifdef wxHAS_GENERIC_DATAVIEWCTRL
1652 return m_view
->GetMainWindow();
1658 // ============================================================================
1659 // wxTreeListEvent implementation
1660 // ============================================================================
1662 wxIMPLEMENT_DYNAMIC_CLASS(wxTreeListEvent
, wxNotifyEvent
)
1664 #define wxDEFINE_TREELIST_EVENT(name) \
1665 wxDEFINE_EVENT(wxEVT_COMMAND_TREELIST_##name, wxTreeListEvent)
1667 wxDEFINE_TREELIST_EVENT(SELECTION_CHANGED
);
1668 wxDEFINE_TREELIST_EVENT(ITEM_EXPANDING
);
1669 wxDEFINE_TREELIST_EVENT(ITEM_EXPANDED
);
1670 wxDEFINE_TREELIST_EVENT(ITEM_CHECKED
);
1671 wxDEFINE_TREELIST_EVENT(ITEM_ACTIVATED
);
1672 wxDEFINE_TREELIST_EVENT(ITEM_CONTEXT_MENU
);
1673 wxDEFINE_TREELIST_EVENT(COLUMN_SORTED
);
1675 #undef wxDEFINE_TREELIST_EVENT
1677 #endif // wxUSE_TREELISTCTRL