1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxDataView* classes
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
11 @class wxDataViewModel
13 wxDataViewModel is the base class for all data model to be displayed by a
16 All other models derive from it and must implement its pure virtual functions
17 in order to define a complete data model. In detail, you need to override
18 wxDataViewModel::IsContainer, wxDataViewModel::GetParent, wxDataViewModel::GetChildren,
19 wxDataViewModel::GetColumnCount, wxDataViewModel::GetColumnType and
20 wxDataViewModel::GetValue in order to define the data model which acts as an
21 interface between your actual data and the wxDataViewCtrl.
23 Note that wxDataViewModel does not define the position or index of any item
24 in the control because different controls might display the same data differently.
25 wxDataViewModel does provide a wxDataViewModel::Compare method which the
26 wxDataViewCtrl may use to sort the data either in conjunction with a column
27 header or without (see wxDataViewModel::HasDefaultCompare).
29 wxDataViewModel (as indeed the entire wxDataViewCtrl code) is using wxVariant
30 to store data and its type in a generic way. wxVariant can be extended to contain
31 almost any data without changes to the original class. To a certain extent,
32 you can use (the somewhat more elegant) wxAny instead of wxVariant as there
33 is code to convert between the two, but it is unclear what impact this will
36 Since you will usually allow the wxDataViewCtrl to change your data
37 through its graphical interface, you will also have to override
38 wxDataViewModel::SetValue which the wxDataViewCtrl will call when a change
39 to some data has been committed.
41 If the data represented by the model is changed by something else than its
42 associated wxDataViewCtrl, the control has to be notified about the change.
43 Depending on what happened you need to call one of the following methods:
44 - wxDataViewModel::ValueChanged,
45 - wxDataViewModel::ItemAdded,
46 - wxDataViewModel::ItemDeleted,
47 - wxDataViewModel::ItemChanged,
48 - wxDataViewModel::Cleared.
50 There are plural forms for notification of addition, change or removal of
51 several item at once. See:
52 - wxDataViewModel::ItemsAdded,
53 - wxDataViewModel::ItemsDeleted,
54 - wxDataViewModel::ItemsChanged.
56 This class maintains a list of wxDataViewModelNotifier which link this class
57 to the specific implementations on the supported platforms so that e.g. calling
58 wxDataViewModel::ValueChanged on this model will just call
59 wxDataViewModelNotifier::ValueChanged for each notifier that has been added.
60 You can also add your own notifier in order to get informed about any changes
61 to the data in the list model.
63 Currently wxWidgets provides the following models apart from the base model:
64 wxDataViewIndexListModel, wxDataViewVirtualListModel, wxDataViewTreeStore,
67 Note that wxDataViewModel is reference counted, derives from wxRefCounter
68 and cannot be deleted directly as it can be shared by several wxDataViewCtrls.
69 This implies that you need to decrease the reference count after
70 associating the model with a control like this:
73 wxDataViewCtrl *musicCtrl = new wxDataViewCtrl( this, wxID_ANY );
74 wxDataViewModel *musicModel = new MyMusicModel;
75 m_musicCtrl->AssociateModel( musicModel );
76 musicModel->DecRef(); // avoid memory leak !!
81 A potentially better way to avoid memory leaks is to use wxObjectDataPtr
84 wxObjectDataPtr<MyMusicModel> musicModel;
86 wxDataViewCtrl *musicCtrl = new wxDataViewCtrl( this, wxID_ANY );
87 musicModel = new MyMusicModel;
88 m_musicCtrl->AssociateModel( musicModel.get() );
97 class wxDataViewModel
: public wxRefCounter
106 Adds a wxDataViewModelNotifier to the model.
108 void AddNotifier(wxDataViewModelNotifier
* notifier
);
111 Change the value of the given item and update the control to reflect
114 This function simply calls SetValue() and, if it succeeded,
122 The item (row) to update.
124 The column to update.
126 @true if both SetValue() and ValueChanged() returned @true.
128 bool ChangeValue(const wxVariant
& variant
,
129 const wxDataViewItem
& item
,
133 Called to inform the model that all data has been cleared.
134 The control will reread the data from the model again.
136 virtual bool Cleared();
139 The compare function to be used by control. The default compare function
140 sorts by container and other items separately and in ascending order.
141 Override this for a different sorting behaviour.
143 @see HasDefaultCompare().
145 virtual int Compare(const wxDataViewItem
& item1
,
146 const wxDataViewItem
& item2
,
148 bool ascending
) const;
151 Override this to indicate that the item has special font attributes.
152 This only affects the wxDataViewTextRendererText renderer.
154 The base class version always simply returns @false.
156 @see wxDataViewItemAttr.
159 The item for which the attribute is requested.
161 The column of the item for which the attribute is requested.
163 The attribute to be filled in if the function returns @true.
165 @true if this item has an attribute or @false otherwise.
167 virtual bool GetAttr(const wxDataViewItem
& item
, unsigned int col
,
168 wxDataViewItemAttr
& attr
) const;
171 Override this so the control can query the child items of an item.
172 Returns the number of items.
174 virtual unsigned int GetChildren(const wxDataViewItem
& item
,
175 wxDataViewItemArray
& children
) const = 0;
178 Override this to indicate the number of columns in the model.
180 virtual unsigned int GetColumnCount() const = 0;
183 Override this to indicate what type of data is stored in the
184 column specified by @a col.
186 This should return a string indicating the type of data as reported by wxVariant.
188 virtual wxString
GetColumnType(unsigned int col
) const = 0;
191 Override this to indicate which wxDataViewItem representing the parent
192 of @a item or an invalid wxDataViewItem if the the root item is
195 virtual wxDataViewItem
GetParent(const wxDataViewItem
& item
) const = 0;
198 Override this to indicate the value of @a item.
199 A wxVariant is used to store the data.
201 virtual void GetValue(wxVariant
& variant
, const wxDataViewItem
& item
,
202 unsigned int col
) const = 0;
205 Override this method to indicate if a container item merely acts as a
206 headline (or for categorisation) or if it also acts a normal item with
207 entries for futher columns. By default returns @false.
209 virtual bool HasContainerColumns(const wxDataViewItem
& item
) const;
212 Override this to indicate that the model provides a default compare
213 function that the control should use if no wxDataViewColumn has been
214 chosen for sorting. Usually, the user clicks on a column header for
215 sorting, the data will be sorted alphanumerically.
217 If any other order (e.g. by index or order of appearance) is required,
218 then this should be used.
219 See wxDataViewIndexListModel for a model which makes use of this.
221 virtual bool HasDefaultCompare() const;
224 Return true if there is a value in the given column of this item.
226 All normal items have values in all columns but the container items
227 only show their label in the first column (@a col == 0) by default (but
228 see HasContainerColumns()). So this function always returns true for
229 the first column while for the other ones it returns true only if the
230 item is not a container or HasContainerColumns() was overridden to
235 bool HasValue(const wxDataViewItem
& item
, unsigned col
) const;
238 Override this to indicate of @a item is a container, i.e. if
239 it can have child items.
241 virtual bool IsContainer(const wxDataViewItem
& item
) const = 0;
244 Call this to inform the model that an item has been added to the data.
246 bool ItemAdded(const wxDataViewItem
& parent
,
247 const wxDataViewItem
& item
);
250 Call this to inform the model that an item has changed.
252 This will eventually emit a wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
253 event (in which the column fields will not be set) to the user.
255 bool ItemChanged(const wxDataViewItem
& item
);
258 Call this to inform the model that an item has been deleted from the data.
260 bool ItemDeleted(const wxDataViewItem
& parent
,
261 const wxDataViewItem
& item
);
264 Call this to inform the model that several items have been added to the data.
266 bool ItemsAdded(const wxDataViewItem
& parent
,
267 const wxDataViewItemArray
& items
);
270 Call this to inform the model that several items have changed.
272 This will eventually emit wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
273 events (in which the column fields will not be set) to the user.
275 bool ItemsChanged(const wxDataViewItemArray
& items
);
278 Call this to inform the model that several items have been deleted.
280 bool ItemsDeleted(const wxDataViewItem
& parent
,
281 const wxDataViewItemArray
& items
);
284 Remove the @a notifier from the list of notifiers.
286 void RemoveNotifier(wxDataViewModelNotifier
* notifier
);
289 Call this to initiate a resort after the sort function has been changed.
291 virtual void Resort();
294 This gets called in order to set a value in the data model.
296 The most common scenario is that the wxDataViewCtrl calls this method
297 after the user changed some data in the view.
299 This is the function you need to override in your derived class but if
300 you want to call it, ChangeValue() is usually more convenient as
301 otherwise you need to manually call ValueChanged() to update the
304 virtual bool SetValue(const wxVariant
& variant
,
305 const wxDataViewItem
& item
,
306 unsigned int col
) = 0;
309 Call this to inform this model that a value in the model has been changed.
310 This is also called from wxDataViewCtrl's internal editing code, e.g. when
311 editing a text field in the control.
313 This will eventually emit a wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
316 virtual bool ValueChanged(const wxDataViewItem
& item
,
322 Destructor. This should not be called directly. Use DecRef() instead.
324 virtual ~wxDataViewModel();
330 @class wxDataViewIndexListModel
332 wxDataViewIndexListModel is a specialized data model which lets you address
333 an item by its position (row) rather than its wxDataViewItem (which you can
334 obtain from this class).
335 This model also provides its own wxDataViewIndexListModel::Compare
336 method which sorts the model's data by the index.
338 This model is not a virtual model since the control stores each wxDataViewItem.
339 Use wxDataViewVirtualListModel if you need to display millions of items or
340 have other reason to use a virtual control.
345 class wxDataViewIndexListModel
: public wxDataViewModel
351 wxDataViewIndexListModel(unsigned int initial_size
= 0);
356 virtual ~wxDataViewIndexListModel();
359 Compare method that sorts the items by their index.
361 int Compare(const wxDataViewItem
& item1
,
362 const wxDataViewItem
& item2
,
363 unsigned int column
, bool ascending
);
366 Override this to indicate that the row has special font attributes.
367 This only affects the wxDataViewTextRendererText() renderer.
369 The base class version always simply returns @false.
371 @see wxDataViewItemAttr.
374 The row for which the attribute is requested.
376 The column for which the attribute is requested.
378 The attribute to be filled in if the function returns @true.
380 @true if this item has an attribute or @false otherwise.
382 virtual bool GetAttrByRow(unsigned int row
, unsigned int col
,
383 wxDataViewItemAttr
& attr
) const;
386 Returns the number of items (i.e. rows) in the list.
388 unsigned int GetCount() const;
391 Returns the wxDataViewItem at the given @e row.
393 wxDataViewItem
GetItem(unsigned int row
) const;
396 Returns the position of given @e item.
398 unsigned int GetRow(const wxDataViewItem
& item
) const;
401 Override this to allow getting values from the model.
403 virtual void GetValueByRow(wxVariant
& variant
, unsigned int row
,
404 unsigned int col
) const = 0;
407 Call this after if the data has to be read again from the model.
408 This is useful after major changes when calling the methods below
409 (possibly thousands of times) doesn't make sense.
411 void Reset(unsigned int new_size
);
414 Call this after a row has been appended to the model.
419 Call this after a row has been changed.
421 void RowChanged(unsigned int row
);
424 Call this after a row has been deleted.
426 void RowDeleted(unsigned int row
);
429 Call this after a row has been inserted at the given position.
431 void RowInserted(unsigned int before
);
434 Call this after a row has been prepended to the model.
439 Call this after a value has been changed.
441 void RowValueChanged(unsigned int row
, unsigned int col
);
444 Call this after rows have been deleted.
445 The array will internally get copied and sorted in descending order so
446 that the rows with the highest position will be deleted first.
448 void RowsDeleted(const wxArrayInt
& rows
);
451 Called in order to set a value in the model.
453 virtual bool SetValueByRow(const wxVariant
& variant
, unsigned int row
,
454 unsigned int col
) = 0;
460 @class wxDataViewVirtualListModel
462 wxDataViewVirtualListModel is a specialized data model which lets you address
463 an item by its position (row) rather than its wxDataViewItem and as such offers
464 the exact same interface as wxDataViewIndexListModel.
465 The important difference is that under platforms other than OS X, using this
466 model will result in a truly virtual control able to handle millions of items
467 as the control doesn't store any item (a feature not supported by the
468 Carbon API under OS X).
470 @see wxDataViewIndexListModel for the API.
475 class wxDataViewVirtualListModel
: public wxDataViewModel
481 wxDataViewVirtualListModel(unsigned int initial_size
= 0);
484 Returns the number of virtual items (i.e. rows) in the list.
486 unsigned int GetCount() const;
492 @class wxDataViewItemAttr
494 This class is used to indicate to a wxDataViewCtrl that a certain item
495 (see wxDataViewItem) has extra font attributes for its renderer.
496 For this, it is required to override wxDataViewModel::GetAttr.
498 Attributes are currently only supported by wxDataViewTextRendererText.
503 class wxDataViewItemAttr
509 wxDataViewItemAttr();
512 Call this to indicate that the item shall be displayed in bold text.
514 void SetBold(bool set
);
517 Call this to indicate that the item shall be displayed with that colour.
519 void SetColour(const wxColour
& colour
);
522 Call this to indicate that the item shall be displayed in italic text.
524 void SetItalic(bool set
);
530 @class wxDataViewItem
532 wxDataViewItem is a small opaque class that represents an item in a wxDataViewCtrl
533 in a persistent way, i.e. independent of the position of the item in the control
534 or changes to its contents.
536 It must hold a unique ID of type @e void* in its only field and can be converted
539 If the ID is @NULL the wxDataViewItem is invalid and wxDataViewItem::IsOk will
540 return @false which used in many places in the API of wxDataViewCtrl to
541 indicate that e.g. no item was found. An ID of @NULL is also used to indicate
542 the invisible root. Examples for this are wxDataViewModel::GetParent and
543 wxDataViewModel::GetChildren.
555 wxDataViewItem(void* id
= NULL
);
556 wxDataViewItem(const wxDataViewItem
& item
);
565 Returns @true if the ID is not @NULL.
573 @class wxDataViewCtrl
575 wxDataViewCtrl is a control to display data either in a tree like fashion or
576 in a tabular form or both.
578 If you only need to display a simple tree structure with an API more like the
579 older wxTreeCtrl class, then the specialized wxDataViewTreeCtrl can be used.
580 Likewise, if you only want to display simple table structure you can use
581 the specialized wxDataViewListCtrl class. Both wxDataViewTreeCtrl and
582 wxDataViewListCtrl can be used without defining your own wxDataViewModel.
584 A wxDataViewItem is used to represent a (visible) item in the control.
586 Unlike wxListCtrl, wxDataViewCtrl doesn't get its data from the user through
587 virtual functions or by setting it directly. Instead you need to write your own
588 wxDataViewModel and associate it with this control.
589 Then you need to add a number of wxDataViewColumn to this control to define
590 what each column shall display. Each wxDataViewColumn in turn owns 1 instance
591 of a wxDataViewRenderer to render its cells.
593 A number of standard renderers for rendering text, dates, images, toggle,
594 a progress bar etc. are provided. Additionally, the user can write custom
595 renderers deriving from wxDataViewCustomRenderer for displaying anything.
597 All data transfer from the control to the model and the user code is done
598 through wxVariant which can be extended to support more data formats as necessary.
599 Accordingly, all type information uses the strings returned from wxVariant::GetType.
603 Single selection mode. This is the default.
604 @style{wxDV_MULTIPLE}
605 Multiple selection mode.
606 @style{wxDV_ROW_LINES}
607 Use alternating colours for rows if supported by platform and theme.
608 @style{wxDV_HORIZ_RULES}
609 Display fine rules between row if supported.
610 @style{wxDV_VERT_RULES}
611 Display fine rules between columns is supported.
612 @style{wxDV_VARIABLE_LINE_HEIGHT}
613 Allow variable line heights.
614 This can be inefficient when displaying large number of items.
615 @style{wxDV_NO_HEADER}
616 Do not show column headers (which are shown by default).
619 @beginEventEmissionTable{wxDataViewEvent}
620 @event{EVT_DATAVIEW_SELECTION_CHANGED(id, func)}
621 Process a @c wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED event.
622 @event{EVT_DATAVIEW_ITEM_ACTIVATED(id, func)}
623 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED event.
624 @event{EVT_DATAVIEW_ITEM_START_EDITING(id, func)}
625 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED event. This
626 event can be vetoed in order to prevent editing on an item by item
627 basis. Still experimental.
628 @event{EVT_DATAVIEW_ITEM_EDITING_STARTED(id, func)}
629 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED event.
630 @event{EVT_DATAVIEW_ITEM_EDITING_DONE(id, func)}
631 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE event.
632 @event{EVT_DATAVIEW_ITEM_COLLAPSING(id, func)}
633 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING event.
634 @event{EVT_DATAVIEW_ITEM_COLLAPSED(id, func)}
635 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED event.
636 @event{EVT_DATAVIEW_ITEM_EXPANDING(id, func)}
637 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING event.
638 @event{EVT_DATAVIEW_ITEM_EXPANDED(id, func)}
639 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED event.
640 @event{EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, func)}
641 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED event.
642 @event{EVT_DATAVIEW_ITEM_CONTEXT_MENU(id, func)}
643 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU event.
644 @event{EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, func)}
645 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICKED event.
646 @event{EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK(id, func)}
647 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED event.
648 @event{EVT_DATAVIEW_COLUMN_SORTED(id, func)}
649 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED event.
650 @event{EVT_DATAVIEW_COLUMN_REORDERED(id, func)}
651 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_REORDERED event.
652 @event{EVT_DATAVIEW_ITEM_BEGIN_DRAG(id, func)}
653 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_BEGIN_DRAG event.
654 @event{EVT_DATAVIEW_ITEM_DROP_POSSIBLE(id, func)}
655 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE event.
656 @event{EVT_DATAVIEW_ITEM_DROP(id, func)}
657 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_DROP event.
662 @appearance{dataviewctrl.png}
664 class wxDataViewCtrl
: public wxControl
673 Constructor. Calls Create().
675 wxDataViewCtrl(wxWindow
* parent
, wxWindowID id
,
676 const wxPoint
& pos
= wxDefaultPosition
,
677 const wxSize
& size
= wxDefaultSize
,
679 const wxValidator
& validator
= wxDefaultValidator
);
684 virtual ~wxDataViewCtrl();
687 Appends a wxDataViewColumn to the control. Returns @true on success.
689 Note that there is a number of short cut methods which implicitly create
690 a wxDataViewColumn and a wxDataViewRenderer for it (see below).
692 virtual bool AppendColumn(wxDataViewColumn
* col
);
695 Prepends a wxDataViewColumn to the control. Returns @true on success.
697 Note that there is a number of short cut methods which implicitly create
698 a wxDataViewColumn and a wxDataViewRenderer for it.
700 virtual bool PrependColumn(wxDataViewColumn
* col
);
703 Inserts a wxDataViewColumn to the control. Returns @true on success.
705 virtual bool InsertColumn(unsigned int pos
, wxDataViewColumn
* col
);
709 Appends a column for rendering a bitmap. Returns the wxDataViewColumn
710 created in the function or @NULL on failure.
712 wxDataViewColumn
* AppendBitmapColumn(const wxString
& label
,
713 unsigned int model_column
,
714 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
716 wxAlignment align
= wxALIGN_CENTER
,
717 int flags
= wxDATAVIEW_COL_RESIZABLE
);
718 wxDataViewColumn
* AppendBitmapColumn(const wxBitmap
& label
,
719 unsigned int model_column
,
720 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
722 wxAlignment align
= wxALIGN_CENTER
,
723 int flags
= wxDATAVIEW_COL_RESIZABLE
);
728 Appends a column for rendering a date. Returns the wxDataViewColumn
729 created in the function or @NULL on failure.
731 @note The @a align parameter is applied to both the column header and
734 wxDataViewColumn
* AppendDateColumn(const wxString
& label
,
735 unsigned int model_column
,
736 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
738 wxAlignment align
= wxALIGN_NOT
,
739 int flags
= wxDATAVIEW_COL_RESIZABLE
);
740 wxDataViewColumn
* AppendDateColumn(const wxBitmap
& label
,
741 unsigned int model_column
,
742 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
744 wxAlignment align
= wxALIGN_NOT
,
745 int flags
= wxDATAVIEW_COL_RESIZABLE
);
750 Appends a column for rendering text with an icon. Returns the wxDataViewColumn
751 created in the function or @NULL on failure.
752 This method uses the wxDataViewIconTextRenderer class.
754 @note The @a align parameter is applied to both the column header and
757 wxDataViewColumn
* AppendIconTextColumn(const wxString
& label
,
758 unsigned int model_column
,
759 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
761 wxAlignment align
= wxALIGN_NOT
,
762 int flags
= wxDATAVIEW_COL_RESIZABLE
);
763 wxDataViewColumn
* AppendIconTextColumn(const wxBitmap
& label
,
764 unsigned int model_column
,
765 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
767 wxAlignment align
= wxALIGN_NOT
,
768 int flags
= wxDATAVIEW_COL_RESIZABLE
);
773 Appends a column for rendering a progress indicator. Returns the
774 wxDataViewColumn created in the function or @NULL on failure.
776 @note The @a align parameter is applied to both the column header and
779 wxDataViewColumn
* AppendProgressColumn(const wxString
& label
,
780 unsigned int model_column
,
781 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
783 wxAlignment align
= wxALIGN_CENTER
,
784 int flags
= wxDATAVIEW_COL_RESIZABLE
);
785 wxDataViewColumn
* AppendProgressColumn(const wxBitmap
& label
,
786 unsigned int model_column
,
787 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
789 wxAlignment align
= wxALIGN_CENTER
,
790 int flags
= wxDATAVIEW_COL_RESIZABLE
);
795 Appends a column for rendering text. Returns the wxDataViewColumn
796 created in the function or @NULL on failure.
798 @note The @a align parameter is applied to both the column header and
801 wxDataViewColumn
* AppendTextColumn(const wxString
& label
,
802 unsigned int model_column
,
803 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
805 wxAlignment align
= wxALIGN_NOT
,
806 int flags
= wxDATAVIEW_COL_RESIZABLE
);
807 wxDataViewColumn
* AppendTextColumn(const wxBitmap
& label
,
808 unsigned int model_column
,
809 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
811 wxAlignment align
= wxALIGN_NOT
,
812 int flags
= wxDATAVIEW_COL_RESIZABLE
);
817 Appends a column for rendering a toggle. Returns the wxDataViewColumn
818 created in the function or @NULL on failure.
820 @note The @a align parameter is applied to both the column header and
823 wxDataViewColumn
* AppendToggleColumn(const wxString
& label
,
824 unsigned int model_column
,
825 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
827 wxAlignment align
= wxALIGN_CENTER
,
828 int flags
= wxDATAVIEW_COL_RESIZABLE
);
829 wxDataViewColumn
* AppendToggleColumn(const wxBitmap
& label
,
830 unsigned int model_column
,
831 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
833 wxAlignment align
= wxALIGN_CENTER
,
834 int flags
= wxDATAVIEW_COL_RESIZABLE
);
838 Associates a wxDataViewModel with the control.
839 This increases the reference count of the model by 1.
841 virtual bool AssociateModel(wxDataViewModel
* model
);
846 virtual bool ClearColumns();
851 virtual void Collapse(const wxDataViewItem
& item
);
854 Create the control. Useful for two step creation.
856 bool Create(wxWindow
* parent
, wxWindowID id
,
857 const wxPoint
& pos
= wxDefaultPosition
,
858 const wxSize
& size
= wxDefaultSize
,
860 const wxValidator
& validator
= wxDefaultValidator
);
863 Deletes given column.
865 virtual bool DeleteColumn(wxDataViewColumn
* column
);
868 Enable drag operations using the given @a format.
870 virtual bool EnableDragSource( const wxDataFormat
&format
);
873 Enable drop operations using the given @a format.
875 virtual bool EnableDropTarget( const wxDataFormat
&format
);
878 Call this to ensure that the given item is visible.
880 virtual void EnsureVisible(const wxDataViewItem
& item
,
881 const wxDataViewColumn
* column
= NULL
);
886 virtual void Expand(const wxDataViewItem
& item
);
889 Expands all ancestors of the @a item. This method also
890 ensures that the item itself as well as all ancestor
891 items have been read from the model by the control.
893 virtual void ExpandAncestors( const wxDataViewItem
& item
);
896 Returns pointer to the column. @a pos refers to the position in the
897 control which may change after reordering columns by the user.
899 virtual wxDataViewColumn
* GetColumn(unsigned int pos
) const;
902 Returns the number of columns.
904 virtual unsigned int GetColumnCount() const;
907 Returns the position of the column or -1 if not found in the control.
909 virtual int GetColumnPosition(const wxDataViewColumn
* column
) const;
912 Returns column containing the expanders.
914 wxDataViewColumn
* GetExpanderColumn() const;
919 int GetIndent() const;
924 virtual wxRect
GetItemRect(const wxDataViewItem
& item
,
925 const wxDataViewColumn
* col
= NULL
) const;
928 Returns pointer to the data model associated with the control (if any).
930 wxDataViewModel
* GetModel();
933 Returns first selected item or an invalid item if none is selected.
935 virtual wxDataViewItem
GetSelection() const;
938 Fills @a sel with currently selected items and returns their number.
940 virtual int GetSelections(wxDataViewItemArray
& sel
) const;
943 Returns the wxDataViewColumn currently responsible for sorting
944 or @NULL if none has been selected.
946 virtual wxDataViewColumn
* GetSortingColumn() const;
951 virtual void HitTest(const wxPoint
& point
, wxDataViewItem
& item
,
952 wxDataViewColumn
*& col
) const;
955 Return @true if the item is expanded.
957 virtual bool IsExpanded(const wxDataViewItem
& item
) const;
960 Return @true if the item is selected.
962 virtual bool IsSelected(const wxDataViewItem
& item
) const;
965 Select the given item.
967 In single selection mode this changes the (unique) currently selected
968 item. In multi selection mode, the @a item is selected and the
969 previously selected items remain selected.
971 virtual void Select(const wxDataViewItem
& item
);
976 virtual void SelectAll();
979 Set which column shall contain the tree-like expanders.
981 void SetExpanderColumn(wxDataViewColumn
* col
);
984 Sets the indendation.
986 void SetIndent(int indent
);
989 Sets the selection to the array of wxDataViewItems.
991 virtual void SetSelections(const wxDataViewItemArray
& sel
);
994 Unselect the given item.
996 virtual void Unselect(const wxDataViewItem
& item
);
1000 This method only has effect if multiple selections are allowed.
1002 virtual void UnselectAll();
1008 @class wxDataViewModelNotifier
1010 A wxDataViewModelNotifier instance is owned by a wxDataViewModel and mirrors
1011 its notification interface.
1012 See the documentation of that class for further information.
1017 class wxDataViewModelNotifier
1023 wxDataViewModelNotifier();
1028 virtual ~wxDataViewModelNotifier();
1031 Called by owning model.
1033 virtual bool Cleared() = 0;
1036 Get owning wxDataViewModel.
1038 wxDataViewModel
* GetOwner() const;
1041 Called by owning model.
1043 virtual bool ItemAdded(const wxDataViewItem
& parent
,
1044 const wxDataViewItem
& item
) = 0;
1047 Called by owning model.
1049 virtual bool ItemChanged(const wxDataViewItem
& item
) = 0;
1052 Called by owning model.
1054 virtual bool ItemDeleted(const wxDataViewItem
& parent
,
1055 const wxDataViewItem
& item
) = 0;
1058 Called by owning model.
1060 virtual bool ItemsAdded(const wxDataViewItem
& parent
,
1061 const wxDataViewItemArray
& items
);
1064 Called by owning model.
1066 virtual bool ItemsChanged(const wxDataViewItemArray
& items
);
1069 Called by owning model.
1071 virtual bool ItemsDeleted(const wxDataViewItem
& parent
,
1072 const wxDataViewItemArray
& items
);
1075 Called by owning model.
1077 virtual void Resort() = 0;
1080 Set owner of this notifier. Used internally.
1082 void SetOwner(wxDataViewModel
* owner
);
1085 Called by owning model.
1087 virtual bool ValueChanged(const wxDataViewItem
& item
, unsigned int col
) = 0;
1092 The mode of a data-view cell; see wxDataViewRenderer for more info.
1094 enum wxDataViewCellMode
1096 wxDATAVIEW_CELL_INERT
,
1099 Indicates that the user can double click the cell and something will
1100 happen (e.g. a window for editing a date will pop up).
1102 wxDATAVIEW_CELL_ACTIVATABLE
,
1105 Indicates that the user can edit the data in-place, i.e. an control
1106 will show up after a slow click on the cell. This behaviour is best
1107 known from changing the filename in most file managers etc.
1109 wxDATAVIEW_CELL_EDITABLE
1113 The values of this enum controls how a wxDataViewRenderer should display
1114 its contents in a cell.
1116 enum wxDataViewCellRenderState
1118 wxDATAVIEW_CELL_SELECTED
= 1,
1119 wxDATAVIEW_CELL_PRELIT
= 2,
1120 wxDATAVIEW_CELL_INSENSITIVE
= 4,
1121 wxDATAVIEW_CELL_FOCUSED
= 8
1125 @class wxDataViewRenderer
1127 This class is used by wxDataViewCtrl to render the individual cells.
1128 One instance of a renderer class is owned by a wxDataViewColumn.
1129 There is a number of ready-to-use renderers provided:
1130 - wxDataViewTextRenderer,
1131 - wxDataViewIconTextRenderer,
1132 - wxDataViewToggleRenderer,
1133 - wxDataViewProgressRenderer,
1134 - wxDataViewBitmapRenderer,
1135 - wxDataViewDateRenderer,
1136 - wxDataViewSpinRenderer.
1137 - wxDataViewChoiceRenderer.
1139 Additionally, the user can write own renderers by deriving from
1140 wxDataViewCustomRenderer.
1142 The ::wxDataViewCellMode and ::wxDataViewCellRenderState flags accepted
1143 by the constructors respectively controls what actions the cell data allows
1144 and how the renderer should display its contents in a cell.
1149 class wxDataViewRenderer
: public wxObject
1155 wxDataViewRenderer(const wxString
& varianttype
,
1156 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1157 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1160 Enable or disable replacing parts of the item text with ellipsis to
1161 make it fit the column width.
1163 This method only makes sense for the renderers working with text, such
1164 as wxDataViewTextRenderer or wxDataViewIconTextRenderer.
1166 By default wxELLIPSIZE_MIDDLE is used.
1169 Ellipsization mode, use wxELLIPSIZE_NONE to disable.
1173 void EnableEllipsize(wxEllipsizeMode mode
= wxELLIPSIZE_MIDDLE
);
1176 Disable replacing parts of the item text with ellipsis.
1178 If ellipsizing is disabled, the string will be truncated if it doesn't
1181 This is the same as @code EnableEllipsize(wxELLIPSIZE_NONE) @endcode.
1185 void DisableEllipsize();
1188 Returns the alignment. See SetAlignment()
1190 virtual int GetAlignment() const;
1193 Returns the ellipsize mode used by the renderer.
1195 If the return value is wxELLIPSIZE_NONE, the text is simply truncated
1198 @see EnableEllipsize()
1200 wxEllipsizeMode
GetEllipsizeMode() const;
1203 Returns the cell mode.
1205 virtual wxDataViewCellMode
GetMode() const;
1208 Returns pointer to the owning wxDataViewColumn.
1210 wxDataViewColumn
* GetOwner() const;
1213 This methods retrieves the value from the renderer in order to
1214 transfer the value back to the data model.
1216 Returns @false on failure.
1218 virtual bool GetValue(wxVariant
& value
) const = 0;
1221 Returns a string with the type of the wxVariant supported by this renderer.
1223 wxString
GetVariantType() const;
1226 Sets the alignment of the renderer's content.
1227 The default value of @c wxDVR_DEFAULT_ALIGMENT indicates that the content
1228 should have the same alignment as the column header.
1230 The method is not implemented under OS X and the renderer always aligns
1231 its contents as the column header on that platform. The other platforms
1232 support both vertical and horizontal alignment.
1234 virtual void SetAlignment( int align
);
1236 Sets the owning wxDataViewColumn.
1237 This is usually called from within wxDataViewColumn.
1239 void SetOwner(wxDataViewColumn
* owner
);
1242 Set the value of the renderer (and thus its cell) to @a value.
1243 The internal code will then render this cell with this data.
1245 virtual bool SetValue(const wxVariant
& value
) = 0;
1248 Before data is committed to the data model, it is passed to this
1249 method where it can be checked for validity. This can also be
1250 used for checking a valid range or limiting the user input in
1251 a certain aspect (e.g. max number of characters or only alphanumeric
1252 input, ASCII only etc.). Return @false if the value is not valid.
1254 Please note that due to implementation limitations, this validation
1255 is done after the editing control already is destroyed and the
1256 editing process finished.
1258 virtual bool Validate(wxVariant
& value
);
1264 @class wxDataViewTextRenderer
1266 wxDataViewTextRenderer is used for rendering text.
1267 It supports in-place editing if desired.
1272 class wxDataViewTextRenderer
: public wxDataViewRenderer
1278 wxDataViewTextRenderer(const wxString
& varianttype
= "string",
1279 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1280 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1286 @class wxDataViewIconTextRenderer
1288 The wxDataViewIconTextRenderer class is used to display text with
1289 a small icon next to it as it is typically done in a file manager.
1291 This classes uses the wxDataViewIconText helper class to store its data.
1292 wxDataViewIconText can be converted to and from a wxVariant using the left
1298 class wxDataViewIconTextRenderer
: public wxDataViewRenderer
1304 wxDataViewIconTextRenderer(const wxString
& varianttype
= "wxDataViewIconText",
1305 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1306 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1312 @class wxDataViewProgressRenderer
1314 This class is used by wxDataViewCtrl to render progress bars.
1319 class wxDataViewProgressRenderer
: public wxDataViewRenderer
1325 wxDataViewProgressRenderer(const wxString
& label
= wxEmptyString
,
1326 const wxString
& varianttype
= "long",
1327 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1328 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1334 @class wxDataViewSpinRenderer
1336 This is a specialized renderer for rendering integer values.
1337 It supports modifying the values in-place by using a wxSpinCtrl.
1338 The renderer only support variants of type @e long.
1343 class wxDataViewSpinRenderer
: public wxDataViewCustomRenderer
1348 @a min and @a max indicate the minimum and maximum values for the wxSpinCtrl.
1350 wxDataViewSpinRenderer(int min
, int max
,
1351 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
1352 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1358 @class wxDataViewToggleRenderer
1360 This class is used by wxDataViewCtrl to render toggle controls.
1365 class wxDataViewToggleRenderer
: public wxDataViewRenderer
1371 wxDataViewToggleRenderer(const wxString
& varianttype
= "bool",
1372 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1373 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1378 @class wxDataViewChoiceRenderer
1380 This class is used by wxDataViewCtrl to render choice controls.
1381 It stores a string so that SetValue() and GetValue() operate
1382 on a variant holding a string.
1388 class wxDataViewChoiceRenderer
: public wxDataViewRenderer
1394 wxDataViewChoiceRenderer( const wxArrayString
&choices
,
1395 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
1396 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
1399 Returns the choice referred to by index.
1401 wxString
GetChoice(size_t index
) const;
1404 Returns all choices.
1406 const wxArrayString
& GetChoices() const;
1411 @class wxDataViewDateRenderer
1413 This class is used by wxDataViewCtrl to render calendar controls.
1418 class wxDataViewDateRenderer
: public wxDataViewRenderer
1424 wxDataViewDateRenderer(const wxString
& varianttype
= "datetime",
1425 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
1426 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1432 @class wxDataViewCustomRenderer
1434 You need to derive a new class from wxDataViewCustomRenderer in
1435 order to write a new renderer.
1437 You need to override at least wxDataViewRenderer::SetValue, wxDataViewRenderer::GetValue,
1438 wxDataViewCustomRenderer::GetSize and wxDataViewCustomRenderer::Render.
1440 If you want your renderer to support in-place editing then you also need to override
1441 wxDataViewCustomRenderer::HasEditorCtrl, wxDataViewCustomRenderer::CreateEditorCtrl
1442 and wxDataViewCustomRenderer::GetValueFromEditorCtrl.
1444 Note that a special event handler will be pushed onto that editor control
1445 which handles @e \<ENTER\> and focus out events in order to end the editing.
1450 class wxDataViewCustomRenderer
: public wxDataViewRenderer
1456 wxDataViewCustomRenderer(const wxString
& varianttype
= "string",
1457 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1458 int align
= -1, bool no_init
= false);
1463 virtual ~wxDataViewCustomRenderer();
1466 Override this to react to double clicks or ENTER.
1467 This method will only be called in wxDATAVIEW_CELL_ACTIVATABLE mode.
1469 virtual bool Activate( wxRect cell
,
1470 wxDataViewModel
* model
,
1471 const wxDataViewItem
& item
,
1475 Override this to create the actual editor control once editing
1478 @a parent is the parent of the editor control, @a labelRect indicates the
1479 position and size of the editor control and @a value is its initial value:
1483 return new wxSpinCtrl( parent, wxID_ANY, wxEmptyString,
1484 labelRect.GetTopLeft(), labelRect.GetSize(), 0, 0, 100, l );
1488 virtual wxControl
* CreateEditorCtrl(wxWindow
* parent
,
1490 const wxVariant
& value
);
1493 Return the attribute to be used for rendering.
1495 This function may be called from Render() implementation to use the
1496 attributes defined for the item if the renderer supports them.
1498 Notice that when Render() is called, the wxDC object passed to it is
1499 already set up to use the correct attributes (e.g. its font is set to
1500 bold or italic version if wxDataViewItemAttr::GetBold() or GetItalic()
1501 returns true) so it may not be necessary to call it explicitly if you
1502 only want to render text using the items attributes.
1506 const wxDataViewItemAttr
& GetAttr() const;
1509 Return size required to show content.
1511 virtual wxSize
GetSize() const = 0;
1514 Override this so that the renderer can get the value from the editor
1515 control (pointed to by @a editor):
1518 wxSpinCtrl *sc = (wxSpinCtrl*) editor;
1519 long l = sc->GetValue();
1525 virtual bool GetValueFromEditorCtrl(wxControl
* editor
,
1529 Override this and make it return @true in order to
1530 indicate that this renderer supports in-place editing.
1532 virtual bool HasEditorCtrl() const;
1535 Override this to react to a left click.
1536 This method will only be called in @c wxDATAVIEW_CELL_ACTIVATABLE mode.
1538 virtual bool LeftClick( wxPoint cursor
,
1540 wxDataViewModel
* model
,
1541 const wxDataViewItem
& item
,
1545 Override this to render the cell.
1546 Before this is called, wxDataViewRenderer::SetValue was called
1547 so that this instance knows what to render.
1549 virtual bool Render(wxRect cell
, wxDC
* dc
, int state
) = 0;
1552 This method should be called from within Render() whenever you need to
1554 This will ensure that the correct colour, font and vertical alignment will
1555 be chosen so the text will look the same as text drawn by native renderers.
1557 void RenderText(const wxString
& text
, int xoffset
, wxRect cell
,
1558 wxDC
* dc
, int state
);
1561 Override this to start a drag operation. Not yet supported.
1563 virtual bool StartDrag(wxPoint cursor
, wxRect cell
,
1564 wxDataViewModel
* model
,
1565 const wxDataViewItem
& item
,
1572 @class wxDataViewBitmapRenderer
1574 This class is used by wxDataViewCtrl to render bitmap controls.
1579 class wxDataViewBitmapRenderer
: public wxDataViewRenderer
1585 wxDataViewBitmapRenderer(const wxString
& varianttype
= "wxBitmap",
1586 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1587 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1592 The flags used by wxDataViewColumn.
1593 Can be combined together.
1595 enum wxDataViewColumnFlags
1597 wxDATAVIEW_COL_RESIZABLE
= 1,
1598 wxDATAVIEW_COL_SORTABLE
= 2,
1599 wxDATAVIEW_COL_REORDERABLE
= 4,
1600 wxDATAVIEW_COL_HIDDEN
= 8
1604 @class wxDataViewColumn
1606 This class represents a column in a wxDataViewCtrl.
1607 One wxDataViewColumn is bound to one column in the data model to which the
1608 wxDataViewCtrl has been associated.
1610 An instance of wxDataViewRenderer is used by this class to render its data.
1615 class wxDataViewColumn
: public wxSettableHeaderColumn
1619 Constructs a text column.
1622 The title of the column.
1624 The class which will render the contents of this column.
1626 The index of the model's column which is associated with this object.
1628 The width of the column.
1629 The @c wxDVC_DEFAULT_WIDTH value is the fixed default value.
1631 The alignment of the column title.
1633 One or more flags of the ::wxDataViewColumnFlags enumeration.
1635 wxDataViewColumn(const wxString
& title
,
1636 wxDataViewRenderer
* renderer
,
1637 unsigned int model_column
,
1638 int width
= wxDVC_DEFAULT_WIDTH
,
1639 wxAlignment align
= wxALIGN_CENTER
,
1640 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1643 Constructs a bitmap column.
1646 The bitmap of the column.
1648 The class which will render the contents of this column.
1650 The index of the model's column which is associated with this object.
1652 The width of the column.
1653 The @c wxDVC_DEFAULT_WIDTH value is the fixed default value.
1655 The alignment of the column title.
1657 One or more flags of the ::wxDataViewColumnFlags enumeration.
1659 wxDataViewColumn(const wxBitmap
& bitmap
,
1660 wxDataViewRenderer
* renderer
,
1661 unsigned int model_column
,
1662 int width
= wxDVC_DEFAULT_WIDTH
,
1663 wxAlignment align
= wxALIGN_CENTER
,
1664 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1667 Returns the index of the column of the model, which this
1668 wxDataViewColumn is displaying.
1670 unsigned int GetModelColumn() const;
1673 Returns the owning wxDataViewCtrl.
1675 wxDataViewCtrl
* GetOwner() const;
1678 Returns the renderer of this wxDataViewColumn.
1680 @see wxDataViewRenderer.
1682 wxDataViewRenderer
* GetRenderer() const;
1688 @class wxDataViewListCtrl
1690 This class is a wxDataViewCtrl which internally uses a wxDataViewListStore
1691 and forwards most of its API to that class.
1693 The purpose of this class is to offer a simple way to display and
1694 edit a small table of data without having to write your own wxDataViewModel.
1697 wxDataViewListCtrl *listctrl = new wxDataViewListCtrl( parent, wxID_ANY );
1699 listctrl->AppendToggleColumn( "Toggle" );
1700 listctrl->AppendTextColumn( "Text" );
1702 wxVector<wxVariant> data;
1703 data.push_back( wxVariant(true) );
1704 data.push_back( wxVariant("row 1") );
1705 listctrl->AppendItem( data );
1708 data.push_back( wxVariant(false) );
1709 data.push_back( wxVariant("row 3") );
1710 listctrl->AppendItem( data );
1714 See wxDataViewCtrl for the list of supported styles.
1717 @beginEventEmissionTable
1718 See wxDataViewCtrl for the list of events emitted by this class.
1724 class wxDataViewListCtrl
: public wxDataViewCtrl
1730 wxDataViewListCtrl();
1733 Constructor. Calls Create().
1735 wxDataViewListCtrl( wxWindow
*parent
, wxWindowID id
,
1736 const wxPoint
& pos
= wxDefaultPosition
,
1737 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_ROW_LINES
,
1738 const wxValidator
& validator
= wxDefaultValidator
);
1741 Destructor. Deletes the image list if any.
1743 ~wxDataViewListCtrl();
1746 Creates the control and a wxDataViewListStore as its internal model.
1748 bool Create( wxWindow
*parent
, wxWindowID id
,
1749 const wxPoint
& pos
= wxDefaultPosition
,
1750 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_ROW_LINES
,
1751 const wxValidator
& validator
= wxDefaultValidator
);
1757 wxDataViewListStore
*GetStore();
1758 const wxDataViewListStore
*GetStore() const;
1762 Returns the position of given @e item or wxNOT_FOUND if it's
1767 int ItemToRow(const wxDataViewItem
&item
) const;
1770 Returns the wxDataViewItem at the given @e row.
1774 wxDataViewItem
RowToItem(int row
) const;
1778 @name Selection handling functions
1782 Returns index of the selected row or wxNOT_FOUND.
1784 @see wxDataViewCtrl::GetSelection()
1788 int GetSelectedRow() const;
1793 @see wxDataViewCtrl::Select()
1797 void SelectRow(unsigned row
);
1800 Unselects given row.
1802 @see wxDataViewCtrl::Unselect()
1806 void UnselectRow(unsigned row
);
1809 Returns true if @a row is selected.
1811 @see wxDataViewCtrl::IsSelected()
1815 bool IsRowSelected(unsigned row
) const;
1820 @name Column management functions
1825 Appends a column to the control and additionally appends a
1826 column to the store with the type string.
1828 virtual void AppendColumn( wxDataViewColumn
*column
);
1831 Appends a column to the control and additionally appends a
1832 column to the list store with the type @a varianttype.
1834 void AppendColumn( wxDataViewColumn
*column
, const wxString
&varianttype
);
1837 Appends a text column to the control and the store.
1839 See wxDataViewColumn::wxDataViewColumn for more info about
1842 wxDataViewColumn
*AppendTextColumn( const wxString
&label
,
1843 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1844 int width
= -1, wxAlignment align
= wxALIGN_LEFT
,
1845 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1848 Appends a toggle column to the control and the store.
1850 See wxDataViewColumn::wxDataViewColumn for more info about
1853 wxDataViewColumn
*AppendToggleColumn( const wxString
&label
,
1854 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
1855 int width
= -1, wxAlignment align
= wxALIGN_LEFT
,
1856 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1859 Appends a progress column to the control and the store.
1861 See wxDataViewColumn::wxDataViewColumn for more info about
1864 wxDataViewColumn
*AppendProgressColumn( const wxString
&label
,
1865 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1866 int width
= -1, wxAlignment align
= wxALIGN_LEFT
,
1867 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1870 Appends an icon-and-text column to the control and the store.
1872 See wxDataViewColumn::wxDataViewColumn for more info about
1875 wxDataViewColumn
*AppendIconTextColumn( const wxString
&label
,
1876 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1877 int width
= -1, wxAlignment align
= wxALIGN_LEFT
,
1878 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1881 Inserts a column to the control and additionally inserts a
1882 column to the store with the type string.
1884 virtual void InsertColumn( unsigned int pos
, wxDataViewColumn
*column
);
1887 Inserts a column to the control and additionally inserts a
1888 column to the list store with the type @a varianttype.
1890 void InsertColumn( unsigned int pos
, wxDataViewColumn
*column
,
1891 const wxString
&varianttype
);
1894 Prepends a column to the control and additionally prepends a
1895 column to the store with the type string.
1897 virtual void PrependColumn( wxDataViewColumn
*column
);
1900 Prepends a column to the control and additionally prepends a
1901 column to the list store with the type @a varianttype.
1903 void PrependColumn( wxDataViewColumn
*column
, const wxString
&varianttype
);
1909 @name Item management functions
1914 Appends an item (=row) to the control and store.
1916 void AppendItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
1919 Prepends an item (=row) to the control and store.
1921 void PrependItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
1924 Inserts an item (=row) to the control and store.
1926 void InsertItem( unsigned int row
, const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
1929 Delete the row at position @a row.
1931 void DeleteItem( unsigned row
);
1934 Delete all items (= all rows).
1936 void DeleteAllItems();
1939 Sets the value in the store and update the control.
1941 void SetValue( const wxVariant
&value
, unsigned int row
, unsigned int col
);
1944 Returns the value from the store.
1946 void GetValue( wxVariant
&value
, unsigned int row
, unsigned int col
);
1949 Sets the value in the store and update the control.
1951 This method assumes that the a string is stored in respective
1954 void SetTextValue( const wxString
&value
, unsigned int row
, unsigned int col
);
1957 Returns the value from the store.
1959 This method assumes that the a string is stored in respective
1962 wxString
GetTextValue( unsigned int row
, unsigned int col
) const;
1965 Sets the value in the store and update the control.
1967 This method assumes that the a boolean value is stored in
1970 void SetToggleValue( bool value
, unsigned int row
, unsigned int col
);
1973 Returns the value from the store.
1975 This method assumes that the a boolean value is stored in
1978 bool GetToggleValue( unsigned int row
, unsigned int col
) const;
1985 @class wxDataViewTreeCtrl
1987 This class is a wxDataViewCtrl which internally uses a wxDataViewTreeStore
1988 and forwards most of its API to that class.
1989 Additionally, it uses a wxImageList to store a list of icons.
1991 The main purpose of this class is to provide a simple upgrade path for code
1995 See wxDataViewCtrl for the list of supported styles.
1998 @beginEventEmissionTable
1999 See wxDataViewCtrl for the list of events emitted by this class.
2004 @appearance{dataviewtreectrl.png}
2006 class wxDataViewTreeCtrl
: public wxDataViewCtrl
2012 wxDataViewTreeCtrl();
2019 wxDataViewTreeCtrl(wxWindow
* parent
, wxWindowID id
,
2020 const wxPoint
& pos
= wxDefaultPosition
,
2021 const wxSize
& size
= wxDefaultSize
,
2022 long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
2023 const wxValidator
& validator
= wxDefaultValidator
);
2026 Destructor. Deletes the image list if any.
2028 virtual ~wxDataViewTreeCtrl();
2031 Appends a container to the given @a parent.
2033 wxDataViewItem
AppendContainer(const wxDataViewItem
& parent
,
2034 const wxString
& text
,
2037 wxClientData
* data
= NULL
);
2040 Appends an item to the given @a parent.
2042 wxDataViewItem
AppendItem(const wxDataViewItem
& parent
,
2043 const wxString
& text
,
2045 wxClientData
* data
= NULL
);
2048 Creates the control and a wxDataViewTreeStore as its internal model.
2050 The default tree column created by this method is an editable column
2051 using wxDataViewIconTextRenderer as its renderer.
2053 bool Create(wxWindow
* parent
, wxWindowID id
,
2054 const wxPoint
& pos
= wxDefaultPosition
,
2055 const wxSize
& size
= wxDefaultSize
,
2056 long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
2057 const wxValidator
& validator
= wxDefaultValidator
);
2060 Calls the identical method from wxDataViewTreeStore.
2062 void DeleteAllItems();
2065 Calls the identical method from wxDataViewTreeStore.
2067 void DeleteChildren(const wxDataViewItem
& item
);
2070 Calls the identical method from wxDataViewTreeStore.
2072 void DeleteItem(const wxDataViewItem
& item
);
2075 Calls the identical method from wxDataViewTreeStore.
2077 int GetChildCount(const wxDataViewItem
& parent
) const;
2080 Returns the image list.
2082 wxImageList
* GetImageList();
2085 Calls the identical method from wxDataViewTreeStore.
2087 wxClientData
* GetItemData(const wxDataViewItem
& item
) const;
2090 Calls the identical method from wxDataViewTreeStore.
2092 const wxIcon
& GetItemExpandedIcon(const wxDataViewItem
& item
) const;
2095 Calls the identical method from wxDataViewTreeStore.
2097 const wxIcon
& GetItemIcon(const wxDataViewItem
& item
) const;
2100 Calls the identical method from wxDataViewTreeStore.
2102 wxString
GetItemText(const wxDataViewItem
& item
) const;
2105 Calls the identical method from wxDataViewTreeStore.
2107 wxDataViewItem
GetNthChild(const wxDataViewItem
& parent
,
2108 unsigned int pos
) const;
2114 wxDataViewTreeStore
* GetStore();
2115 const wxDataViewTreeStore
* GetStore() const;
2119 Calls the same method from wxDataViewTreeStore but uses
2120 an index position in the image list instead of a wxIcon.
2122 wxDataViewItem
InsertContainer(const wxDataViewItem
& parent
,
2123 const wxDataViewItem
& previous
,
2124 const wxString
& text
,
2127 wxClientData
* data
= NULL
);
2130 Calls the same method from wxDataViewTreeStore but uses
2131 an index position in the image list instead of a wxIcon.
2133 wxDataViewItem
InsertItem(const wxDataViewItem
& parent
,
2134 const wxDataViewItem
& previous
,
2135 const wxString
& text
,
2137 wxClientData
* data
= NULL
);
2140 Returns true if item is a container.
2142 bool IsContainer( const wxDataViewItem
& item
);
2145 Calls the same method from wxDataViewTreeStore but uses
2146 an index position in the image list instead of a wxIcon.
2148 wxDataViewItem
PrependContainer(const wxDataViewItem
& parent
,
2149 const wxString
& text
,
2152 wxClientData
* data
= NULL
);
2155 Calls the same method from wxDataViewTreeStore but uses
2156 an index position in the image list instead of a wxIcon.
2158 wxDataViewItem
PrependItem(const wxDataViewItem
& parent
,
2159 const wxString
& text
,
2161 wxClientData
* data
= NULL
);
2164 Sets the image list.
2166 void SetImageList(wxImageList
* imagelist
);
2169 Calls the identical method from wxDataViewTreeStore.
2171 void SetItemData(const wxDataViewItem
& item
, wxClientData
* data
);
2174 Calls the identical method from wxDataViewTreeStore.
2176 void SetItemExpandedIcon(const wxDataViewItem
& item
,
2177 const wxIcon
& icon
);
2180 Calls the identical method from wxDataViewTreeStore.
2182 void SetItemIcon(const wxDataViewItem
& item
, const wxIcon
& icon
);
2185 Calls the identical method from wxDataViewTreeStore.
2187 void SetItemText(const wxDataViewItem
& item
,
2188 const wxString
& text
);
2193 @class wxDataViewListStore
2195 wxDataViewListStore is a specialised wxDataViewModel for storing
2196 a simple table of data. Since it derives from wxDataViewIndexListModel
2197 its data is be accessed by row (i.e. by index) instead of only
2200 This class actually stores the values (therefore its name)
2201 and implements all virtual methods from the base classes so it can be
2202 used directly without having to derive any class from it, but it is
2203 mostly used from within wxDataViewListCtrl.
2209 class wxDataViewListStore
: public wxDataViewIndexListModel
2215 wxDataViewListStore();
2220 ~wxDataViewListStore();
2223 Prepends a data column.
2225 @a variantype indicates the type of values store in the column.
2227 This does not automatically fill in any (default) values in
2228 rows which exist in the store already.
2230 void PrependColumn( const wxString
&varianttype
);
2233 Inserts a data column before @a pos.
2235 @a variantype indicates the type of values store in the column.
2237 This does not automatically fill in any (default) values in
2238 rows which exist in the store already.
2240 void InsertColumn( unsigned int pos
, const wxString
&varianttype
);
2243 Appends a data column.
2245 @a variantype indicates the type of values store in the column.
2247 This does not automatically fill in any (default) values in
2248 rows which exist in the store already.
2250 void AppendColumn( const wxString
&varianttype
);
2253 Appends an item (=row) and fills it with @a values.
2255 The values must match the values specifies in the column
2256 in number and type. No (default) values are filled in
2259 void AppendItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
2262 Prepends an item (=row) and fills it with @a values.
2264 The values must match the values specifies in the column
2265 in number and type. No (default) values are filled in
2268 void PrependItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
2271 Inserts an item (=row) and fills it with @a values.
2273 The values must match the values specifies in the column
2274 in number and type. No (default) values are filled in
2277 void InsertItem( unsigned int row
, const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
2280 Delete the item (=row) at position @a pos.
2282 void DeleteItem( unsigned pos
);
2285 Delete all item (=all rows) in the store.
2287 void DeleteAllItems();
2290 Overriden from wxDataViewModel
2292 virtual unsigned int GetColumnCount() const;
2295 Overriden from wxDataViewModel
2297 virtual wxString
GetColumnType( unsigned int col
) const;
2300 Overriden from wxDataViewIndexListModel
2302 virtual void GetValueByRow( wxVariant
&value
,
2303 unsigned int row
, unsigned int col
) const;
2306 Overriden from wxDataViewIndexListModel
2308 virtual bool SetValueByRow( const wxVariant
&value
,
2309 unsigned int row
, unsigned int col
);
2314 @class wxDataViewTreeStore
2316 wxDataViewTreeStore is a specialised wxDataViewModel for stroing simple
2317 trees very much like wxTreeCtrl does and it offers a similar API.
2319 This class actually stores the entire tree and the values (therefore its name)
2320 and implements all virtual methods from the base class so it can be used directly
2321 without having to derive any class from it, but it is mostly used from within
2327 class wxDataViewTreeStore
: public wxDataViewModel
2331 Constructor. Creates the invisible root node internally.
2333 wxDataViewTreeStore();
2338 virtual ~wxDataViewTreeStore();
2343 wxDataViewItem
AppendContainer(const wxDataViewItem
& parent
,
2344 const wxString
& text
,
2345 const wxIcon
& icon
= wxNullIcon
,
2346 const wxIcon
& expanded
= wxNullIcon
,
2347 wxClientData
* data
= NULL
);
2352 wxDataViewItem
AppendItem(const wxDataViewItem
& parent
,
2353 const wxString
& text
,
2354 const wxIcon
& icon
= wxNullIcon
,
2355 wxClientData
* data
= NULL
);
2358 Delete all item in the model.
2360 void DeleteAllItems();
2363 Delete all children of the item, but not the item itself.
2365 void DeleteChildren(const wxDataViewItem
& item
);
2370 void DeleteItem(const wxDataViewItem
& item
);
2373 Return the number of children of item.
2375 int GetChildCount(const wxDataViewItem
& parent
) const;
2378 Returns the client data asoociated with the item.
2380 wxClientData
* GetItemData(const wxDataViewItem
& item
) const;
2383 Returns the icon to display in expanded containers.
2385 const wxIcon
& GetItemExpandedIcon(const wxDataViewItem
& item
) const;
2388 Returns the icon of the item.
2390 const wxIcon
& GetItemIcon(const wxDataViewItem
& item
) const;
2393 Returns the text of the item.
2395 wxString
GetItemText(const wxDataViewItem
& item
) const;
2398 Returns the nth child item of item.
2400 wxDataViewItem
GetNthChild(const wxDataViewItem
& parent
,
2401 unsigned int pos
) const;
2404 Inserts a container after @a previous.
2406 wxDataViewItem
InsertContainer(const wxDataViewItem
& parent
,
2407 const wxDataViewItem
& previous
,
2408 const wxString
& text
,
2409 const wxIcon
& icon
= wxNullIcon
,
2410 const wxIcon
& expanded
= wxNullIcon
,
2411 wxClientData
* data
= NULL
);
2414 Inserts an item after @a previous.
2416 wxDataViewItem
InsertItem(const wxDataViewItem
& parent
,
2417 const wxDataViewItem
& previous
,
2418 const wxString
& text
,
2419 const wxIcon
& icon
= wxNullIcon
,
2420 wxClientData
* data
= NULL
);
2423 Inserts a container before the first child item or @a parent.
2425 wxDataViewItem
PrependContainer(const wxDataViewItem
& parent
,
2426 const wxString
& text
,
2427 const wxIcon
& icon
= wxNullIcon
,
2428 const wxIcon
& expanded
= wxNullIcon
,
2429 wxClientData
* data
= NULL
);
2432 Inserts an item before the first child item or @a parent.
2434 wxDataViewItem
PrependItem(const wxDataViewItem
& parent
,
2435 const wxString
& text
,
2436 const wxIcon
& icon
= wxNullIcon
,
2437 wxClientData
* data
= NULL
);
2440 Sets the client data associated with the item.
2442 void SetItemData(const wxDataViewItem
& item
, wxClientData
* data
);
2445 Sets the expanded icon for the item.
2447 void SetItemExpandedIcon(const wxDataViewItem
& item
,
2448 const wxIcon
& icon
);
2451 Sets the icon for the item.
2453 void SetItemIcon(const wxDataViewItem
& item
, const wxIcon
& icon
);
2458 @class wxDataViewIconText
2460 wxDataViewIconText is used by wxDataViewIconTextRenderer for data transfer.
2461 This class can be converted to and from a wxVariant.
2466 class wxDataViewIconText
: public wxObject
2473 wxDataViewIconText(const wxString
& text
= wxEmptyString
,
2474 const wxIcon
& icon
= wxNullIcon
);
2475 wxDataViewIconText(const wxDataViewIconText
& other
);
2481 const wxIcon
& GetIcon() const;
2486 wxString
GetText() const;
2491 void SetIcon(const wxIcon
& icon
);
2496 void SetText(const wxString
& text
);
2502 @class wxDataViewEvent
2504 This is the event class for the wxDataViewCtrl notifications.
2506 @beginEventTable{wxDataViewEvent}
2507 @event{EVT_DATAVIEW_SELECTION_CHANGED(id, func)}
2508 Process a @c wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED event.
2509 @event{EVT_DATAVIEW_ITEM_ACTIVATED(id, func)}
2510 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED event.
2511 @event{EVT_DATAVIEW_ITEM_EDITING_STARTED(id, func)}
2512 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED event.
2513 @event{EVT_DATAVIEW_ITEM_EDITING_DONE(id, func)}
2514 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE event.
2515 @event{EVT_DATAVIEW_ITEM_COLLAPSING(id, func)}
2516 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING event.
2517 @event{EVT_DATAVIEW_ITEM_COLLAPSED(id, func)}
2518 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED event.
2519 @event{EVT_DATAVIEW_ITEM_EXPANDING(id, func)}
2520 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING event.
2521 @event{EVT_DATAVIEW_ITEM_EXPANDED(id, func)}
2522 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED event.
2523 @event{EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, func)}
2524 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED event.
2525 @event{EVT_DATAVIEW_ITEM_CONTEXT_MENU(id, func)}
2526 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU event.
2527 @event{EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, func)}
2528 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICKED event.
2529 @event{EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK(id, func)}
2530 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED event.
2531 @event{EVT_DATAVIEW_COLUMN_SORTED(id, func)}
2532 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED event.
2533 @event{EVT_DATAVIEW_COLUMN_REORDERED(id, func)}
2534 Process a @c wxEVT_COMMAND_DATAVIEW_COLUMN_REORDERED event.
2535 @event{EVT_DATAVIEW_ITEM_BEGIN_DRAG(id, func)}
2536 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_BEGIN_DRAG event.
2537 @event{EVT_DATAVIEW_ITEM_DROP_POSSIBLE(id, func)}
2538 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE event.
2539 @event{EVT_DATAVIEW_ITEM_DROP(id, func)}
2540 Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_DROP event.
2541 @event{EVT_DATAVIEW_CACHE_HINT(id, func)}
2542 Process a @c wxEVT_COMMAND_DATAVIEW_CACHE_HINT event.
2546 @category{events,dvc}
2548 class wxDataViewEvent
: public wxNotifyEvent
2552 Constructor. Typically used by wxWidgets internals only.
2554 wxDataViewEvent(wxEventType commandType
= wxEVT_NULL
,
2558 Returns the position of the column in the control or -1
2559 if no column field was set by the event emitter.
2561 int GetColumn() const;
2564 Returns a pointer to the wxDataViewColumn from which
2565 the event was emitted or @NULL.
2567 wxDataViewColumn
* GetDataViewColumn() const;
2570 Returns the wxDataViewModel associated with the event.
2572 wxDataViewModel
* GetModel() const;
2575 Returns a the position of a context menu event in screen coordinates.
2577 wxPoint
GetPosition() const;
2580 Returns a reference to a value.
2582 const wxVariant
& GetValue() const;
2585 Sets the column index associated with this event.
2587 void SetColumn(int col
);
2590 For wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only.
2592 void SetDataViewColumn(wxDataViewColumn
* col
);
2595 Sets the dataview model associated with this event.
2597 void SetModel(wxDataViewModel
* model
);
2600 Sets the value associated with this event.
2602 void SetValue(const wxVariant
& value
);
2605 Set wxDataObject for data transfer within a drag operation.
2607 void SetDataObject( wxDataObject
*obj
);
2610 Used internally. Gets associated wxDataObject for data transfer
2611 within a drag operation.
2613 wxDataObject
*GetDataObject() const;
2616 Used internally. Sets the wxDataFormat during a drop operation.
2618 void SetDataFormat( const wxDataFormat
&format
);
2621 Gets the wxDataFormat during a drop operation.
2623 wxDataFormat
GetDataFormat() const;
2626 Used internally. Sets the data size for a drop data transfer.
2628 void SetDataSize( size_t size
);
2631 Gets the data size for a drop data transfer.
2633 size_t GetDataSize() const;
2636 Used internally. Sets the data buffer for a drop data transfer.
2638 void SetDataBuffer( void* buf
);
2641 Gets the data buffer for a drop data transfer.
2643 void *GetDataBuffer() const;
2646 Return the first row that will be displayed.
2648 int GetCacheFrom() const;
2651 Return the last row that will be displayed.
2653 int GetCacheTo() const;