1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxDataViewIconText
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxDataViewIconText
12 wxDataViewIconText is used by
13 wxDataViewIconTextRenderer
14 for data transfer. This class can be converted to a from
20 class wxDataViewIconText
: public wxObject
27 wxDataViewIconText(const wxString
& text
= wxEmptyString
,
28 const wxIcon
& icon
= wxNullIcon
);
29 wxDataViewIconText(const wxDataViewIconText
& other
);
35 const wxIcon
& GetIcon() const;
40 wxString
GetText() const;
45 void SetIcon(const wxIcon
& icon
);
50 void SetText(const wxString
& text
);
56 @class wxDataViewEvent
58 wxDataViewEvent - the event class for the wxDataViewCtrl notifications
63 class wxDataViewEvent
: public wxNotifyEvent
70 wxDataViewEvent(wxEventType commandType
= wxEVT_NULL
,
72 wxDataViewEvent(const wxDataViewEvent
& event
);
76 Used to clone the event.
78 wxEvent
* Clone() const;
81 Returns the position of the column in the control or -1
82 if no column field was set by the event emitter.
84 int GetColumn() const;
87 Returns a pointer to the wxDataViewColumn from which
88 the event was emitted or @NULL.
90 wxDataViewColumn
* GetDataViewColumn() const;
93 Returns the wxDataViewModel associated with the event.
95 wxDataViewModel
* GetModel() const;
98 Returns a the position of a context menu event in screen coordinates.
100 wxPoint
GetPosition() const;
103 Returns a reference to a value.
105 const wxVariant
& GetValue() const;
110 void SetColumn(int col
);
113 For wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only.
115 void SetDataViewColumn(wxDataViewColumn
* col
);
120 void SetModel(wxDataViewModel
* model
);
125 void SetValue(const wxVariant
& value
);
131 @class wxDataViewModel
133 wxDataViewModel is the base class for all data model to be
134 displayed by a wxDataViewCtrl.
135 All other models derive from it and must implement its
136 pure virtual functions in order to define a complete
137 data model. In detail, you need to override
138 wxDataViewModel::IsContainer,
139 wxDataViewModel::GetParent,
140 wxDataViewModel::GetChildren,
141 wxDataViewModel::GetColumnCount,
142 wxDataViewModel::GetColumnType and
143 wxDataViewModel::GetValue in order to
144 define the data model which acts as an interface between
145 your actual data and the wxDataViewCtrl. Since you will
146 usually also allow the wxDataViewCtrl to change your data
147 through its graphical interface, you will also have to override
148 wxDataViewModel::SetValue which the
149 wxDataViewCtrl will call when a change to some data has been
152 wxDataViewModel (as indeed the entire wxDataViewCtrl
153 code) is using wxVariant to store data and
154 its type in a generic way. wxVariant can be extended to contain
155 almost any data without changes to the original class.
157 The data that is presented through this data model is expected
158 to change at run-time. You need to inform the data model when
159 a change happened. Depending on what happened you need to call
160 one of the following methods:
161 wxDataViewModel::ValueChanged,
162 wxDataViewModel::ItemAdded,
163 wxDataViewModel::ItemDeleted,
164 wxDataViewModel::ItemChanged,
165 wxDataViewModel::Cleared. There are
166 plural forms for notification of addition, change
167 or removal of several item at once. See
168 wxDataViewModel::ItemsAdded,
169 wxDataViewModel::ItemsDeleted,
170 wxDataViewModel::ItemsChanged.
172 Note that wxDataViewModel does not define the position or
173 index of any item in the control because different controls
174 might display the same data differently. wxDataViewModel does
175 provide a wxDataViewModel::Compare method
176 which the wxDataViewCtrl may use to sort the data either
177 in conjunction with a column header or without (see
178 wxDataViewModel::HasDefaultCompare).
180 This class maintains a list of
181 wxDataViewModelNotifier
182 which link this class to the specific implementations on the
183 supported platforms so that e.g. calling
184 wxDataViewModel::ValueChanged
185 on this model will just call
186 wxDataViewModelNotifier::ValueChanged
187 for each notifier that has been added. You can also add
188 your own notifier in order to get informed about any changes
189 to the data in the list model.
191 Currently wxWidgets provides the following models apart
193 wxDataViewIndexListModel,
194 wxDataViewVirtualListModel,
197 Note that wxDataViewModel is reference counted, derives from
198 wxObjectRefData and cannot be deleted
199 directly as it can be shared by several wxDataViewCtrls. This
200 implies that you need to decrease the reference count after
201 associating the model with a control like this:
204 wxDataViewCtrl *musicCtrl = new wxDataViewCtrl( this, ID_MUSIC_CTRL );
205 wxDataViewModel *musicModel = new MyMusicModel;
206 m_musicCtrl-AssociateModel( musicModel );
207 musicModel-DecRef(); // avoid memory leak !!
215 class wxDataViewModel
: public wxObjectRefData
224 Destructor. This should not be called directly. Use DecRef() instead.
226 virtual ~wxDataViewModel();
229 Adds a wxDataViewModelNotifier
232 void AddNotifier(wxDataViewModelNotifier
* notifier
);
235 Called to inform the model that all data has been cleared. The
236 control will reread the data from the model again.
238 virtual bool Cleared();
241 The compare function to be used by control. The default compare function
242 sorts by container and other items separately and in ascending order.
243 Override this for a different sorting behaviour.
244 See also HasDefaultCompare().
246 virtual int Compare(const wxDataViewItem
& item1
,
247 const wxDataViewItem
& item2
,
252 Oberride this to indicate that the item has special font attributes.
253 This only affects the
254 wxDataViewTextRendererText() renderer.
255 See also wxDataViewItemAttr.
257 bool GetAttr(const wxDataViewItem
& item
, unsigned int col
,
258 wxDataViewItemAttr
& attr
);
261 Override this so the control can query the child items of
262 an item. Returns the number of items.
264 virtual unsigned int GetChildren(const wxDataViewItem
& item
,
265 wxDataViewItemArray
& children
) const;
268 Override this to indicate the number of columns in the model.
270 virtual unsigned int GetColumnCount() const = 0;
273 Override this to indicate what type of data is stored in the
274 column specified by @e col. This should return a string
275 indicating the type of data as reported by wxVariant.
277 virtual wxString
GetColumnType(unsigned int col
) const = 0;
280 Override this to indicate which wxDataViewItem representing the parent
281 of @a item or an invalid wxDataViewItem if the the root item is
284 virtual wxDataViewItem
GetParent(const wxDataViewItem
& item
) const = 0;
287 Override this to indicate the value of @e item
288 A wxVariant is used to store the data.
290 virtual void GetValue(wxVariant
& variant
, const wxDataViewItem
& item
,
291 unsigned int col
) const = 0;
294 Override this method to indicate if a container item merely
295 acts as a headline (or for categorisation) or if it also
296 acts a normal item with entries for futher columns. By
297 default returns @e @false.
299 virtual bool HasContainerColumns(const wxDataViewItem
& item
) const;
302 Override this to indicate that the model provides a default compare
303 function that the control should use if no wxDataViewColumn has been
304 chosen for sorting. Usually, the user clicks on a column header for
305 sorting, the data will be sorted alphanumerically. If any other
306 order (e.g. by index or order of appearance) is required, then this
307 should be used. See also wxDataViewIndexListModel
308 for a model which makes use of this.
310 virtual bool HasDefaultCompare() const;
313 Override this to indicate of @a item is a container, i.e. if
314 it can have child items.
316 virtual bool IsContainer(const wxDataViewItem
& item
) const = 0;
319 Call this to inform the model that an item has been added
322 virtual bool ItemAdded(const wxDataViewItem
& parent
,
323 const wxDataViewItem
& item
);
326 Call this to inform the model that an item has changed.
327 This will eventually emit a wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
328 event (in which the column fields will not be set) to the user.
330 virtual bool ItemChanged(const wxDataViewItem
& item
);
333 Call this to inform the model that an item has been deleted from the data.
335 virtual bool ItemDeleted(const wxDataViewItem
& parent
,
336 const wxDataViewItem
& item
);
339 Call this to inform the model that several items have been added
342 virtual bool ItemsAdded(const wxDataViewItem
& parent
,
343 const wxDataViewItemArray
& items
);
346 Call this to inform the model that several items have changed.
347 This will eventually emit wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
348 events (in which the column fields will not be set) to the user.
350 virtual bool ItemsChanged(const wxDataViewItemArray
& items
);
353 Call this to inform the model that several items have been deleted.
355 virtual bool ItemsDeleted(const wxDataViewItem
& parent
,
356 const wxDataViewItemArray
& items
);
359 Remove the @a notifier from the list of notifiers.
361 void RemoveNotifier(wxDataViewModelNotifier
* notifier
);
364 Call this to initiate a resort after the sort function has
367 virtual void Resort();
370 This gets called in order to set a value in the data model.
371 The most common scenario is that the wxDataViewCtrl calls
372 this method after the user changed some data in the view.
373 Afterwards ValueChanged()
376 virtual bool SetValue(const wxVariant
& variant
, const wxDataViewItem
& item
,
377 unsigned int col
) = 0;
380 Call this to inform this model that a value in the model has
381 been changed. This is also called from wxDataViewCtrl's
382 internal editing code, e.g. when editing a text field
384 This will eventually emit a wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
387 virtual bool ValueChanged(const wxDataViewItem
& item
,
394 @class wxDataViewIndexListModel
396 wxDataViewIndexListModel is a specialized data model which lets
397 you address an item by its position (row) rather than its
398 wxDataViewItem (which you can obtain from this class).
399 This model also provides its own wxDataViewIndexListModel::Compare
400 method which sorts the model's data by the index.
402 This model is not a virtual model since the control stores
403 each wxDataViewItem. Use wxDataViewVirtualListModel if you
404 need to display millions of items or have other reason to
405 use a virtual control.
410 class wxDataViewIndexListModel
: public wxDataViewModel
416 wxDataViewIndexListModel(unsigned int initial_size
= 0);
421 virtual ~wxDataViewIndexListModel();
424 Compare method that sorts the items by their index.
426 int Compare(const wxDataViewItem
& item1
,
427 const wxDataViewItem
& item2
,
428 unsigned int column
, bool ascending
);
431 Oberride this to indicate that the row has special font attributes.
432 This only affects the
433 wxDataViewTextRendererText() renderer.
434 See also wxDataViewItemAttr.
436 bool GetAttr(unsigned int row
, unsigned int col
,
437 wxDataViewItemAttr
& attr
);
440 Returns the wxDataViewItem at the given @e row.
442 wxDataViewItem
GetItem(unsigned int row
) const;
445 Returns the position of given @e item.
447 unsigned int GetRow(const wxDataViewItem
& item
) const;
450 Override this to allow getting values from the model.
452 void GetValue(wxVariant
& variant
, unsigned int row
,
453 unsigned int col
) const;
456 Call this after if the data has to be read again from
457 the model. This is useful after major changes when
458 calling the methods below (possibly thousands of times)
461 void Reset(unsigned int new_size
);
464 Call this after a row has been appended to the model.
469 Call this after a row has been changed.
471 void RowChanged(unsigned int row
);
474 Call this after a row has been deleted.
476 void RowDeleted(unsigned int row
);
479 Call this after a row has been inserted at the given position.
481 void RowInserted(unsigned int before
);
484 Call this after a row has been prepended to the model.
489 Call this after a value has been changed.
491 void RowValueChanged(unsigned int row
, unsigned int col
);
494 Call this after rows have been deleted. The array will internally
495 get copied and sorted in descending order so that the rows with
496 the highest position will be deleted first.
498 void RowsDeleted(const wxArrayInt
& rows
);
501 Called in order to set a value in the model.
503 bool SetValue(const wxVariant
& variant
, unsigned int row
,
510 @class wxDataViewVirtualListModel
512 wxDataViewVirtualListModel is a specialized data model which lets
513 you address an item by its position (row) rather than its
514 wxDataViewItem and as such offers the exact same interface as
515 wxDataViewIndexListModel. The important difference is that under
516 platforms other than OS X, using this model will result in a
517 truely virtual control able to handle millions of items as the
518 control doesn't store any item (a feature not supported by the
519 Carbon API under OS X).
521 @see wxDataViewIndexListModel for the API.
526 class wxDataViewVirtualListModel
: public wxDataViewModel
532 wxDataViewVirtualListModel(unsigned int initial_size
= 0);
538 @class wxDataViewItemAttr
540 This class is used to indicate to a wxDataViewCtrl
541 that a certain Item() has extra font attributes
542 for its renderer. For this, it is required to override
543 wxDataViewModel::GetAttr.
545 Attributes are currently only supported by
546 wxDataViewTextRendererText().
551 class wxDataViewItemAttr
557 wxDataViewItemAttr();
560 Call this to indicate that the item shall be displayed in bold text.
562 void SetBold(bool set
);
565 Call this to indicate that the item shall be displayed with
568 void SetColour(const wxColour
& colour
);
571 Call this to indicate that the item shall be displayed in italic text.
573 void SetItalic(bool set
);
579 @class wxDataViewItem
581 wxDataViewItem is a small opaque class that represents an
582 item in a wxDataViewCtrl in a
583 persistent way, i.e. indepent of the position of the
584 item in the control or changes to its contents. It must
585 hold a unique ID of type @e void* in its only field
586 and can be converted to a from it.
588 If the ID is @e @NULL the wxDataViewItem is invalid and
589 wxDataViewItem::IsOk will return @e @false
590 which used in many places in the API of wxDataViewCtrl
591 to indicate that e.g. no item was found. An ID of @NULL
592 is also used to indicate the invisible root. Examples
594 wxDataViewModel::GetParent and
595 wxDataViewModel::GetChildren.
607 wxDataViewItem(void* id
= NULL
);
608 wxDataViewItem(const wxDataViewItem
& item
);
617 Returns @true if the ID is not @e @NULL.
625 @class wxDataViewCtrl
627 wxDataViewCtrl is a control to display data either
628 in a tree like fashion or in a tabular form or both.
629 If you only need to display a simple tree structure
630 with an API more like the older wxTreeCtrl class,
631 then the specialized wxDataViewTreeCtrl
634 A wxDataViewItem is used
635 to represent a (visible) item in the control.
637 Unlike wxListCtrl wxDataViewCtrl doesn't
638 get its data from the user through virtual functions or by
639 setting it directly. Instead you need to write your own
640 wxDataViewModel and associate
641 it with this control. Then you need to add a number of
642 wxDataViewColumn to this control to
643 define what each column shall display. Each wxDataViewColumn
644 in turn owns 1 instance of a
645 wxDataViewRenderer to render its
646 cells. A number of standard renderers for rendering text, dates,
647 images, toggle, a progress bar etc. are provided. Additionally,
648 the user can write custom renderes deriving from
649 wxDataViewCustomRenderer
650 for displaying anything.
652 All data transfer from the control to the model and the user
653 code is done through wxVariant which can
654 be extended to support more data formats as necessary.
655 Accordingly, all type information uses the strings returned
656 from wxVariant::GetType.
660 Single selection mode. This is the default.
661 @style{wxDV_MULTIPLE}
662 Multiple selection mode.
663 @style{wxDV_ROW_LINES}
664 Use alternating colours for rows if supported by platform and theme.
665 @style{wxDV_HORIZ_RULES}
666 Display fine rules between row if supported.
667 @style{wxDV_VERT_RULES}
668 Display fine rules between columns is supported.
669 @style{wxDV_VARIABLE_LINE_HEIGHT}
670 Allow variable line heights. This can be inefficient when displaying large number of items.
673 @beginEventTable{wxDataViewEvent}
674 @event{EVT_DATAVIEW_SELECTION_CHANGED(id, func)}
675 Process a wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED event.
676 @event{EVT_DATAVIEW_ITEM_ACTIVATED(id, func)}
677 Process a wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED event.
678 @event{EVT_DATAVIEW_ITEM_EDITING_STARTED(id, func)}
679 Process a wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED event.
680 @event{EVT_DATAVIEW_ITEM_EDITING_DONE(id, func)}
681 Process a wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE event.
682 @event{EVT_DATAVIEW_ITEM_COLLAPSING(id, func)}
683 Process a wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING event.
684 @event{EVT_DATAVIEW_ITEM_COLLAPSED(id, func)}
685 Process a wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED event.
686 @event{EVT_DATAVIEW_ITEM_EXPANDING(id, func)}
687 Process a wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING event.
688 @event{EVT_DATAVIEW_ITEM_EXPANDED(id, func)}
689 Process a wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED event.
690 @event{EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, func)}
691 Process a wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED event.
692 @event{EVT_DATAVIEW_ITEM_CONTEXT_MENU(id, func)}
693 Process a wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU event.
694 @event{EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, func)}
695 Process a wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICKED event.
696 @event{EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK(id, func)}
697 Process a wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED event.
698 @event{EVT_DATAVIEW_COLUMN_SORTED(id, func)}
699 Process a wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED event.
700 @event{EVT_DATAVIEW_COLUMN_REORDERED(id, func)}
701 Process a wxEVT_COMMAND_DATAVIEW_COLUMN_REORDERED event.
706 <!-- @appearance{dataviewctrl.png} -->
708 class wxDataViewCtrl
: public wxControl
717 Constructor. Calls Create().
719 wxDataViewCtrl(wxWindow
* parent
, wxWindowID id
,
720 const wxPoint
& pos
= wxDefaultPosition
,
721 const wxSize
& size
= wxDefaultSize
,
723 const wxValidator
& validator
= wxDefaultValidator
);
728 virtual ~wxDataViewCtrl();
731 Appends a wxDataViewColumn to the control. Returns @true on success.
732 Note that there is a number of short cut methods which implicitly create
733 a wxDataViewColumn and a wxDataViewRenderer for it (see below).
735 virtual bool AppendColumn(wxDataViewColumn
* col
);
738 Prepends a wxDataViewColumn to the control. Returns @true on success.
739 Note that there is a number of short cut methods which implicitly create
740 a wxDataViewColumn and a wxDataViewRenderer for it.
742 virtual bool PrependColumn(wxDataViewColumn
* col
);
745 Inserts a wxDataViewColumn to the control. Returns @true on success.
747 virtual bool InsertColumn(unsigned int pos
, wxDataViewColumn
* col
);
751 Appends a column for rendering a bitmap. Returns the wxDataViewColumn
752 created in the function or @NULL on failure.
754 wxDataViewColumn
* AppendBitmapColumn(const wxString
& label
,
755 unsigned int model_column
,
756 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
758 wxAlignment align
= wxALIGN_CENTER
,
759 int flags
= wxDATAVIEW_COL_RESIZABLE
);
760 wxDataViewColumn
* AppendBitmapColumn(const wxBitmap
& label
,
761 unsigned int model_column
,
762 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
764 wxAlignment align
= wxALIGN_CENTER
,
765 int flags
= wxDATAVIEW_COL_RESIZABLE
);
770 Appends a column for rendering a date. Returns the wxDataViewColumn
771 created in the function or @NULL on failure.
773 NB: The @e align parameter is applied to both the column header and
776 wxDataViewColumn
* AppendDateColumn(const wxString
& label
,
777 unsigned int model_column
,
778 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
780 wxAlignment align
= wxALIGN_CENTER
,
781 int flags
= wxDATAVIEW_COL_RESIZABLE
);
782 wxDataViewColumn
* AppendDateColumn(const wxBitmap
& label
,
783 unsigned int model_column
,
784 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
786 wxAlignment align
= wxALIGN_CENTER
,
787 int flags
= wxDATAVIEW_COL_RESIZABLE
);
792 Appends a column for rendering text with an icon. Returns the wxDataViewColumn
793 created in the function or @NULL on failure. This method uses the
794 wxDataViewIconTextRenderer class.
796 NB: The @e align parameter is applied to both the column header and
799 wxDataViewColumn
* AppendIconTextColumn(const wxString
& label
,
800 unsigned int model_column
,
801 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
803 wxAlignment align
= wxALIGN_LEFT
,
804 int flags
= wxDATAVIEW_COL_RESIZABLE
);
805 wxDataViewColumn
* AppendIconTextColumn(const wxBitmap
& label
,
806 unsigned int model_column
,
807 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
809 wxAlignment align
= wxALIGN_LEFT
,
810 int flags
= wxDATAVIEW_COL_RESIZABLE
);
815 Appends a column for rendering a progress indicator. Returns the
816 wxDataViewColumn created in the function or @NULL on failure.
818 NB: The @e align parameter is applied to both the column header and
821 wxDataViewColumn
* AppendProgressColumn(const wxString
& label
,
822 unsigned int model_column
,
823 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
825 wxAlignment align
= wxALIGN_CENTER
,
826 int flags
= wxDATAVIEW_COL_RESIZABLE
);
827 wxDataViewColumn
* AppendProgressColumn(const wxBitmap
& label
,
828 unsigned int model_column
,
829 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
831 wxAlignment align
= wxALIGN_CENTER
,
832 int flags
= wxDATAVIEW_COL_RESIZABLE
);
837 Appends a column for rendering text. Returns the wxDataViewColumn
838 created in the function or @NULL on failure.
840 NB: The @e align parameter is applied to both the column header and
843 wxDataViewColumn
* AppendTextColumn(const wxString
& label
,
844 unsigned int model_column
,
845 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
847 wxAlignment align
= wxALIGN_LEFT
,
848 int flags
= wxDATAVIEW_COL_RESIZABLE
);
849 wxDataViewColumn
* AppendTextColumn(const wxBitmap
& label
,
850 unsigned int model_column
,
851 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
853 wxAlignment align
= wxALIGN_LEFT
,
854 int flags
= wxDATAVIEW_COL_RESIZABLE
);
859 Appends a column for rendering a toggle. Returns the wxDataViewColumn
860 created in the function or @NULL on failure.
862 NB: The @e align parameter is applied to both the column header and
865 wxDataViewColumn
* AppendToggleColumn(const wxString
& label
,
866 unsigned int model_column
,
867 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
869 wxAlignment align
= wxALIGN_CENTER
,
870 int flags
= wxDATAVIEW_COL_RESIZABLE
);
871 wxDataViewColumn
* AppendToggleColumn(const wxBitmap
& label
,
872 unsigned int model_column
,
873 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
875 wxAlignment align
= wxALIGN_CENTER
,
876 int flags
= wxDATAVIEW_COL_RESIZABLE
);
880 Associates a wxDataViewModel with the control. This increases the reference
881 count of the model by 1.
883 virtual bool AssociateModel(wxDataViewModel
* model
);
888 virtual bool ClearColumns();
893 void ClearSelection();
898 virtual void Collapse(const wxDataViewItem
& item
);
901 Create the control. Useful for two step creation.
903 bool Create(wxWindow
* parent
, wxWindowID id
,
904 const wxPoint
& pos
= wxDefaultPosition
,
905 const wxSize
& size
= wxDefaultSize
,
907 const wxValidator
& validator
= wxDefaultValidator
);
910 Deletes given column.
912 virtual bool DeleteColumn(const wxDataViewColumn
* column
);
915 Call this to ensure that the given item is visible.
917 void EnsureVisible(const wxDataViewItem
& item
,
918 const wxDataViewColumn
* column
= NULL
);
923 virtual void Expand(const wxDataViewItem
& item
);
926 Returns pointer to the column. @a pos refers to the
927 position in the control which may change after reordering
930 virtual wxDataViewColumn
* GetColumn(unsigned int pos
) const;
933 Returns the number of columns.
935 virtual unsigned int GetColumnCount() const;
938 Returns the position of the column or -1 if not found in the control.
940 virtual int GetColumnPosition(const wxDataViewColumn
* column
) const;
943 Returns column containing the expanders.
945 wxDataViewColumn
* GetExpanderColumn() const;
950 int GetIndent() const;
955 wxRect
GetItemRect(const wxDataViewItem
& item
,
956 const wxDataViewColumn
* col
= NULL
) const;
959 Returns pointer to the data model associated with the
962 wxDataViewModel
* GetModel();
965 Returns first selected item or an invalid item if none is selected.
967 virtual wxDataViewItem
GetSelection() const;
970 Fills @a sel with currently selected items and returns
973 virtual int GetSelections(wxDataViewItemArray
& sel
) const;
976 Returns the wxDataViewColumn currently responsible for sorting
977 or @NULL if none has been selected.
979 virtual wxDataViewColumn
* GetSortingColumn() const;
984 void HitTest(const wxPoint
& point
, wxDataViewItem
& item
,
985 wxDataViewColumn
*& col
) const;
988 Return @true if the item is selected.
990 virtual bool IsSelected(const wxDataViewItem
& item
) const;
993 Select the given item.
995 virtual void Select(const wxDataViewItem
& item
);
1000 virtual void SelectAll();
1003 Set which column shall contain the tree-like expanders.
1005 void SetExpanderColumn(wxDataViewColumn
* col
);
1008 Sets the indendation.
1010 void SetIndent(int indent
);
1013 Sets the selection to the array of wxDataViewItems.
1015 virtual void SetSelections(const wxDataViewItemArray
& sel
);
1018 Unselect the given item.
1020 virtual void Unselect(const wxDataViewItem
& item
);
1023 Unselect all item. This method only has effect if multiple
1024 selections are allowed.
1026 virtual void UnselectAll();
1032 @class wxDataViewModelNotifier
1034 A wxDataViewModelNotifier instance is owned by a
1036 and mirrors its notification interface. See
1037 the documentation of that class for further
1043 class wxDataViewModelNotifier
1049 wxDataViewModelNotifier();
1054 virtual ~wxDataViewModelNotifier();
1057 Called by owning model.
1059 virtual bool Cleared() = 0;
1062 Get owning wxDataViewModel.
1064 wxDataViewModel
* GetOwner() const;
1067 Called by owning model.
1069 bool ItemAdded(const wxDataViewItem
& parent
,
1070 const wxDataViewItem
& item
);
1073 Called by owning model.
1075 virtual bool ItemChanged(const wxDataViewItem
& item
) = 0;
1078 Called by owning model.
1080 bool ItemDeleted(const wxDataViewItem
& parent
,
1081 const wxDataViewItem
& item
);
1084 Called by owning model.
1086 bool ItemsAdded(const wxDataViewItem
& parent
,
1087 const wxDataViewItemArray
& items
);
1090 Called by owning model.
1092 virtual bool ItemsChanged(const wxDataViewItemArray
& items
);
1095 Called by owning model.
1097 bool ItemsDeleted(const wxDataViewItem
& parent
,
1098 const wxDataViewItemArray
& items
);
1101 Called by owning model.
1103 virtual void Resort() = 0;
1106 Set owner of this notifier. Used internally.
1108 void SetOwner(wxDataViewModel
* owner
);
1111 Called by owning model.
1113 virtual bool ValueChanged(const wxDataViewItem
& item
, unsigned int col
) = 0;
1119 @class wxDataViewRenderer
1121 This class is used by wxDataViewCtrl to render the individual cells.
1122 One instance of a renderer class is owned by a wxDataViewColumn. There
1123 is a number of ready-to-use renderers provided:
1124 wxDataViewTextRenderer,
1125 wxDataViewTextRendererAttr,
1126 wxDataViewIconTextRenderer,
1127 wxDataViewToggleRenderer,
1128 wxDataViewProgressRenderer,
1129 wxDataViewBitmapRenderer,
1130 wxDataViewDateRenderer.
1131 wxDataViewSpinRenderer.
1133 Additionally, the user can write own renderers by deriving from
1134 wxDataViewCustomRenderer.
1136 The @e wxDataViewCellMode flag controls, what actions
1137 the cell data allows. @e wxDATAVIEW_CELL_ACTIVATABLE
1138 indicates that the user can double click the cell and
1139 something will happen (e.g. a window for editing a date
1140 will pop up). @e wxDATAVIEW_CELL_EDITABLE indicates
1141 that the user can edit the data in-place, i.e. an control
1142 will show up after a slow click on the cell. This behaviour
1143 is best known from changing the filename in most file
1148 enum wxDataViewCellMode
1150 wxDATAVIEW_CELL_INERT,
1151 wxDATAVIEW_CELL_ACTIVATABLE,
1152 wxDATAVIEW_CELL_EDITABLE
1156 The @e wxDataViewCellRenderState flag controls how the
1157 the renderer should display its contents in a cell:
1160 enum wxDataViewCellRenderState
1162 wxDATAVIEW_CELL_SELECTED = 1,
1163 wxDATAVIEW_CELL_PRELIT = 2,
1164 wxDATAVIEW_CELL_INSENSITIVE = 4,
1165 wxDATAVIEW_CELL_FOCUSED = 8
1173 class wxDataViewRenderer
: public wxObject
1179 wxDataViewRenderer(const wxString
& varianttype
,
1180 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1181 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1184 Returns the alignment. See SetAlignment()
1186 virtual int GetAlignment() const;
1189 Returns the cell mode.
1191 virtual wxDataViewCellMode
GetMode() const;
1194 Returns pointer to the owning wxDataViewColumn.
1196 wxDataViewColumn
* GetOwner() const;
1199 This methods retrieves the value from the renderer in order to
1200 transfer the value back to the data model. Returns @e @false
1203 virtual bool GetValue(wxVariant
& value
) const = 0;
1206 Returns a string with the type of the wxVariant
1207 supported by this renderer.
1209 wxString
GetVariantType() const;
1212 Sets the alignment of the renderer's content. The default value
1213 of wxDVR_DEFAULT_ALIGMENT indicates that the content should
1214 have the same alignment as the column header. The method is
1215 not implemented under OS X and the renderer always aligns its
1216 contents as the column header on that platform. The other platforms
1217 support both vertical and horizontal alignment.
1219 virtual void SetAlignment( int align
);
1221 Sets the owning wxDataViewColumn. This
1222 is usually called from within wxDataViewColumn.
1224 void SetOwner(wxDataViewColumn
* owner
);
1227 Set the value of the renderer (and thus its cell) to @e value.
1228 The internal code will then render this cell with this data.
1230 virtual bool SetValue(const wxVariant
& value
) = 0;
1233 Before data is committed to the data model, it is passed to this
1234 method where it can be checked for validity. This can also be
1235 used for checking a valid range or limiting the user input in
1236 a certain aspect (e.g. max number of characters or only alphanumeric
1237 input, ASCII only etc.). Return @e @false if the value is
1239 Please note that due to implementation limitations, this validation
1240 is done after the editing control already is destroyed and the
1241 editing process finished.
1243 virtual bool Validate(wxVariant
& value
);
1249 @class wxDataViewTextRenderer
1251 wxDataViewTextRenderer is used for rendering text. It supports
1252 in-place editing if desired.
1257 class wxDataViewTextRenderer
: public wxDataViewRenderer
1263 wxDataViewTextRenderer(const wxString
& varianttype
= "string",
1264 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1265 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1271 @class wxDataViewIconTextRenderer
1273 The wxDataViewIconTextRenderer class is used to display text with
1274 a small icon next to it as it is typically done in a file manager.
1275 This classes uses the wxDataViewIconText
1276 helper class to store its data. wxDataViewIonText can be converted
1277 to a from a wxVariant using the left shift
1283 class wxDataViewIconTextRenderer
: public wxDataViewRenderer
1289 wxDataViewIconTextRenderer(const wxString
& varianttype
= "wxDataViewIconText",
1290 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1291 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1297 @class wxDataViewProgressRenderer
1299 wxDataViewProgressRenderer
1304 class wxDataViewProgressRenderer
: public wxDataViewRenderer
1310 wxDataViewProgressRenderer(const wxString
& label
= wxEmptyString
,
1311 const wxString
& varianttype
= "long",
1312 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1313 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1319 @class wxDataViewSpinRenderer
1321 This is a specialized renderer for rendering integer values. It
1322 supports modifying the values in-place by using a wxSpinCtrl.
1323 The renderer only support variants of type @e long.
1328 class wxDataViewSpinRenderer
: public wxDataViewCustomRenderer
1332 Constructor. @a min and @a max indicate the minimum und
1333 maximum values of for the wxSpinCtrl.
1335 wxDataViewSpinRenderer(int min
, int max
,
1336 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
1337 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1343 @class wxDataViewToggleRenderer
1345 wxDataViewToggleRenderer
1350 class wxDataViewToggleRenderer
: public wxDataViewRenderer
1356 wxDataViewToggleRenderer(const wxString
& varianttype
= "bool",
1357 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
);
1363 @class wxDataViewDateRenderer
1365 wxDataViewDateRenderer
1370 class wxDataViewDateRenderer
: public wxDataViewRenderer
1376 wxDataViewDateRenderer(const wxString
& varianttype
= "datetime",
1377 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
);
1383 @class wxDataViewTextRendererAttr
1385 The same as wxDataViewTextRenderer but with
1386 support for font attributes. Font attributes are currently only supported
1389 See also wxDataViewModel::GetAttr and
1395 class wxDataViewTextRendererAttr
: public wxDataViewTextRenderer
1401 wxDataViewTextRendererAttr(const wxString
& varianttype
= "string",
1402 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1403 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1409 @class wxDataViewCustomRenderer
1411 You need to derive a new class from wxDataViewCustomRenderer in
1412 order to write a new renderer. You need to override at least
1413 wxDataViewRenderer::SetValue,
1414 wxDataViewRenderer::GetValue,
1415 wxDataViewCustomRenderer::GetSize
1416 and wxDataViewCustomRenderer::Render.
1418 If you want your renderer to support in-place editing then you
1419 also need to override
1420 wxDataViewCustomRenderer::HasEditorCtrl,
1421 wxDataViewCustomRenderer::CreateEditorCtrl
1422 and wxDataViewCustomRenderer::GetValueFromEditorCtrl.
1423 Note that a special event handler will be pushed onto that
1424 editor control which handles ENTER and focus out events
1425 in order to end the editing.
1430 class wxDataViewCustomRenderer
: public wxDataViewRenderer
1436 wxDataViewCustomRenderer(const wxString
& varianttype
= "string",
1437 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1438 int align
= -1, bool no_init
= false);
1443 virtual ~wxDataViewCustomRenderer();
1446 Override this to react to double clicks or ENTER. This method will
1447 only be called in wxDATAVIEW_CELL_ACTIVATABLE mode.
1449 virtual bool Activate( wxRect cell
,
1450 wxDataViewModel
* model
,
1451 const wxDataViewItem
& item
,
1455 Override this to create the actual editor control once editing
1456 is about to start. @a parent is the parent of the editor
1457 control, @a labelRect indicates the position and
1458 size of the editor control and @a value is its initial value:
1460 virtual wxControl
* CreateEditorCtrl(wxWindow
* parent
,
1462 const wxVariant
& value
);
1465 Create DC on request. Internal.
1467 virtual wxDC
* GetDC();
1470 Return size required to show content.
1472 virtual wxSize
GetSize() const = 0;
1475 Overrride this so that the renderer can get the value
1476 from the editor control (pointed to by @e editor):
1478 virtual bool GetValueFromEditorCtrl(wxControl
* editor
,
1482 Override this and make it return @e @true in order to
1483 indicate that this renderer supports in-place editing.
1485 virtual bool HasEditorCtrl();
1488 Overrride this to react to a left click. This method will
1489 only be called in wxDATAVIEW_CELL_ACTIVATABLE mode.
1491 virtual bool LeftClick( wxPoint cursor
,
1493 wxDataViewModel
* model
,
1494 const wxDataViewItem
& item
,
1498 Override this to render the cell. Before this is called,
1499 wxDataViewRenderer::SetValue was called
1500 so that this instance knows what to render.
1502 virtual bool Render(wxRect cell
, wxDC
* dc
, int state
) = 0;
1505 This method should be called from within Render()
1506 whenever you need to render simple text. This will ensure that the
1507 correct colour, font and vertical alignment will be chosen so the
1508 text will look the same as text drawn by native renderers.
1510 bool RenderText(const wxString
& text
, int xoffset
, wxRect cell
,
1511 wxDC
* dc
, int state
);
1514 Overrride this to start a drag operation. Not yet
1517 virtual bool StartDrag(wxPoint cursor
, wxRect cell
,
1518 wxDataViewModel
* model
,
1519 const wxDataViewItem
& item
,
1526 @class wxDataViewBitmapRenderer
1528 wxDataViewBitmapRenderer
1533 class wxDataViewBitmapRenderer
: public wxDataViewRenderer
1539 wxDataViewBitmapRenderer(const wxString
& varianttype
= "wxBitmap",
1540 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1541 int align
= wxDVR_DEFAULT_ALIGNMENT
,
1547 @class wxDataViewColumn
1549 This class represents a column in a wxDataViewCtrl.
1550 One wxDataViewColumn is bound to one column in the data model,
1551 to which the wxDataViewCtrl has been associated.
1553 An instance of wxDataViewRenderer is used by
1554 this class to render its data.
1559 class wxDataViewColumn
: public wxObject
1566 wxDataViewColumn(const wxString
& title
,
1567 wxDataViewRenderer
* renderer
,
1568 unsigned int model_column
,
1569 int width
= wxDVC_DEFAULT_WIDTH
,
1570 wxAlignment align
= wxALIGN_CENTRE
,
1571 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1572 wxDataViewColumn(const wxBitmap
& bitmap
,
1573 wxDataViewRenderer
* renderer
,
1574 unsigned int model_column
,
1575 int width
= wxDVC_DEFAULT_WIDTH
,
1576 wxAlignment align
= wxALIGN_CENTRE
,
1577 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1583 virtual ~wxDataViewColumn();
1586 Returns the bitmap in the header of the column, if any.
1588 const wxBitmap
& GetBitmap() const;
1591 Returns the index of the column of the model, which this
1592 wxDataViewColumn is displaying.
1594 unsigned int GetModelColumn() const;
1597 Returns the owning wxDataViewCtrl.
1599 wxDataViewCtrl
* GetOwner() const;
1602 Returns the renderer of this wxDataViewColumn.
1603 See also wxDataViewRenderer.
1605 wxDataViewRenderer
* GetRenderer() const;
1608 Returns @true if the column is reorderable.
1610 bool GetReorderable();
1613 Returns @true if the column is sortable.
1619 Returns the width of the column.
1621 virtual int GetWidth() const;
1624 Returns @true, if the sort order is ascending.
1625 See also SetSortOrder()
1627 virtual bool IsSortOrderAscending() const;
1630 Set the alignment of the column header.
1632 virtual void SetAlignment(wxAlignment align
);
1635 Set the bitmap of the column header.
1637 virtual void SetBitmap(const wxBitmap
& bitmap
);
1640 Indicate wether the column can be reordered by the
1641 user using the mouse. This is typically implemented
1642 visually by dragging the header button around.
1644 virtual void SetReorderable(bool reorderable
);
1647 Indicate the sort order if the implementation of the
1648 wxDataViewCtrl supports it, most commonly by showing
1651 virtual void SetSortOrder(bool ascending
);
1654 Indicate that the column is sortable. This does
1655 not show any sorting indicate yet, but it does
1656 make the column header clickable. Call
1658 afterwards to actually make the sort indicator appear.
1659 If @a sortable is @false, the column header is
1660 no longer clickable and the sort indicator (little
1661 arrow) will disappear.
1663 virtual void SetSortable(bool sortable
);
1666 Set the title of the column header to @e title.
1668 virtual void SetTitle(const wxString
& title
);
1674 @class wxDataViewTreeCtrl
1676 This class is a wxDataViewCtrl which internally
1677 uses a wxDataViewTreeStore and forwards
1678 most of its API to that class. Additionally, it uses a wxImageList
1679 to store a list of icons. The main purpose of this class is to look
1680 like a wxTreeCtrl to make a transition from it
1681 to the wxDataViewCtrl class simpler.
1685 <!-- @appearance{dataviewtreectrl.png} -->
1687 class wxDataViewTreeCtrl
: public wxDataViewCtrl
1692 Constructor. Calls Create().
1694 wxDataViewTreeCtrl();
1695 wxDataViewTreeCtrl(wxWindow
* parent
, wxWindowID id
,
1696 const wxPoint
& pos
= wxDefaultPosition
,
1697 const wxSize
& size
= wxDefaultSize
,
1698 long style
= wxDV_NO_HEADER
,
1699 const wxValidator
& validator
= wxDefaultValidator
);
1703 Destructor. Deletes the image list if any.
1705 virtual ~wxDataViewTreeCtrl();
1710 wxDataViewItem
AppendContainer(const wxDataViewItem
& parent
,
1711 const wxString
& text
,
1714 wxClientData
* data
= NULL
);
1719 wxDataViewItem
AppendItem(const wxDataViewItem
& parent
,
1720 const wxString
& text
,
1722 wxClientData
* data
= NULL
);
1725 Creates the control and a wxDataViewTreeStore as
1728 bool Create(wxWindow
* parent
, wxWindowID id
,
1729 const wxPoint
& pos
= wxDefaultPosition
,
1730 const wxSize
& size
= wxDefaultSize
,
1731 long style
= wxDV_NO_HEADER
,
1732 const wxValidator
& validator
= wxDefaultValidator
);
1735 Calls the identical method from wxDataViewTreeStore.
1737 void DeleteAllItems();
1740 Calls the identical method from wxDataViewTreeStore.
1742 void DeleteChildren(const wxDataViewItem
& item
);
1745 Calls the identical method from wxDataViewTreeStore.
1747 void DeleteItem(const wxDataViewItem
& item
);
1750 Calls the identical method from wxDataViewTreeStore.
1752 int GetChildCount(const wxDataViewItem
& parent
) const;
1755 Returns the image list.
1757 wxImageList
* GetImageList();
1760 Calls the identical method from wxDataViewTreeStore.
1762 wxClientData
* GetItemData(const wxDataViewItem
& item
) const;
1765 Calls the identical method from wxDataViewTreeStore.
1767 const wxIcon
& GetItemExpandedIcon(const wxDataViewItem
& item
) const;
1770 Calls the identical method from wxDataViewTreeStore.
1772 const wxIcon
& GetItemIcon(const wxDataViewItem
& item
) const;
1775 Calls the identical method from wxDataViewTreeStore.
1777 wxString
GetItemText(const wxDataViewItem
& item
) const;
1780 Calls the identical method from wxDataViewTreeStore.
1782 wxDataViewItem
GetNthChild(const wxDataViewItem
& parent
,
1783 unsigned int pos
) const;
1789 wxDataViewTreeStore
* GetStore() const;
1790 const wxDataViewTreeStore
* GetStore() const;
1794 Calls the same method from wxDataViewTreeStore but uess
1795 and index position in the image list instead of a wxIcon.
1797 wxDataViewItem
InsertContainer(const wxDataViewItem
& parent
,
1798 const wxDataViewItem
& previous
,
1799 const wxString
& text
,
1802 wxClientData
* data
= NULL
);
1805 Calls the same method from wxDataViewTreeStore but uess
1806 and index position in the image list instead of a wxIcon.
1808 wxDataViewItem
InsertItem(const wxDataViewItem
& parent
,
1809 const wxDataViewItem
& previous
,
1810 const wxString
& text
,
1812 wxClientData
* data
= NULL
);
1815 Calls the same method from wxDataViewTreeStore but uess
1816 and index position in the image list instead of a wxIcon.
1818 wxDataViewItem
PrependContainer(const wxDataViewItem
& parent
,
1819 const wxString
& text
,
1822 wxClientData
* data
= NULL
);
1825 Calls the same method from wxDataViewTreeStore but uess
1826 and index position in the image list instead of a wxIcon.
1828 wxDataViewItem
PrependItem(const wxDataViewItem
& parent
,
1829 const wxString
& text
,
1831 wxClientData
* data
= NULL
);
1834 Sets the image list.
1836 void SetImageList(wxImageList
* imagelist
);
1839 Calls the identical method from wxDataViewTreeStore.
1841 void SetItemData(const wxDataViewItem
& item
, wxClientData
* data
);
1844 Calls the identical method from wxDataViewTreeStore.
1846 void SetItemExpandedIcon(const wxDataViewItem
& item
,
1847 const wxIcon
& icon
);
1850 Calls the identical method from wxDataViewTreeStore.
1852 void SetItemIcon(const wxDataViewItem
& item
, const wxIcon
& icon
);
1855 Calls the identical method from wxDataViewTreeStore.
1857 void SetItemText(const wxDataViewItem
& item
,
1858 const wxString
& text
);
1864 @class wxDataViewTreeStore
1866 wxDataViewTreeStore is a specialised wxDataViewModel
1867 for displaying simple trees very much like wxTreeCtrl
1868 does and it offers a similar API. This class actually stores the entire
1869 tree (therefore its name) and implements all virtual methods from the base
1870 class so it can be used directly without having to derive any class from it.
1871 This comes at the price of much reduced flexibility.
1876 class wxDataViewTreeStore
: public wxDataViewModel
1880 Constructor. Creates the invisible root node internally.
1882 wxDataViewTreeStore();
1887 virtual ~wxDataViewTreeStore();
1892 wxDataViewItem
AppendContainer(const wxDataViewItem
& parent
,
1893 const wxString
& text
,
1894 const wxIcon
& icon
= wxNullIcon
,
1895 const wxIcon
& expanded
= wxNullIcon
,
1896 wxClientData
* data
= NULL
);
1901 wxDataViewItem
AppendItem(const wxDataViewItem
& parent
,
1902 const wxString
& text
,
1903 const wxIcon
& icon
= wxNullIcon
,
1904 wxClientData
* data
= NULL
);
1907 Delete all item in the model.
1909 void DeleteAllItems();
1912 Delete all children of the item, but not the item itself.
1914 void DeleteChildren(const wxDataViewItem
& item
);
1919 void DeleteItem(const wxDataViewItem
& item
);
1922 Return the number of children of item.
1924 int GetChildCount(const wxDataViewItem
& parent
) const;
1927 Returns the client data asoociated with the item.
1929 wxClientData
* GetItemData(const wxDataViewItem
& item
) const;
1932 Returns the icon to display in expanded containers.
1934 const wxIcon
& GetItemExpandedIcon(const wxDataViewItem
& item
) const;
1937 Returns the icon of the item.
1939 const wxIcon
& GetItemIcon(const wxDataViewItem
& item
) const;
1942 Returns the text of the item.
1944 wxString
GetItemText(const wxDataViewItem
& item
) const;
1947 Returns the nth child item of item.
1949 wxDataViewItem
GetNthChild(const wxDataViewItem
& parent
,
1950 unsigned int pos
) const;
1953 Inserts a container after @e previous.
1955 wxDataViewItem
InsertContainer(const wxDataViewItem
& parent
,
1956 const wxDataViewItem
& previous
,
1957 const wxString
& text
,
1958 const wxIcon
& icon
= wxNullIcon
,
1959 const wxIcon
& expanded
= wxNullIcon
,
1960 wxClientData
* data
= NULL
);
1963 Inserts an item after @e previous.
1965 wxDataViewItem
InsertItem(const wxDataViewItem
& parent
,
1966 const wxDataViewItem
& previous
,
1967 const wxString
& text
,
1968 const wxIcon
& icon
= wxNullIcon
,
1969 wxClientData
* data
= NULL
);
1972 Inserts a container before the first child item or @e parent.
1974 wxDataViewItem
PrependContainer(const wxDataViewItem
& parent
,
1975 const wxString
& text
,
1976 const wxIcon
& icon
= wxNullIcon
,
1977 const wxIcon
& expanded
= wxNullIcon
,
1978 wxClientData
* data
= NULL
);
1981 Inserts an item before the first child item or @e parent.
1983 wxDataViewItem
PrependItem(const wxDataViewItem
& parent
,
1984 const wxString
& text
,
1985 const wxIcon
& icon
= wxNullIcon
,
1986 wxClientData
* data
= NULL
);
1989 Sets the client data associated with the item.
1991 void SetItemData(const wxDataViewItem
& item
, wxClientData
* data
);
1994 Sets the expanded icon for the item.
1996 void SetItemExpandedIcon(const wxDataViewItem
& item
,
1997 const wxIcon
& icon
);
2000 Sets the icon for the item.
2002 void SetItemIcon(const wxDataViewItem
& item
, const wxIcon
& icon
);