1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxDataViewIconText
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxDataViewIconText
13 wxDataViewIconText is used by
14 wxDataViewIconTextRenderer
15 for data transfer. This class can be converted to a from
21 class wxDataViewIconText
: public wxObject
28 wxDataViewIconText(const wxString
& text
= wxEmptyString
,
29 const wxIcon
& icon
= wxNullIcon
);
30 wxDataViewIconText(const wxDataViewIconText
& other
);
36 const wxIcon
GetIcon() const;
41 wxString
GetText() const;
46 void SetIcon(const wxIcon
& icon
);
51 void SetText(const wxString
& text
);
57 @class wxDataViewEvent
60 wxDataViewEvent - the event class for the wxDataViewCtrl notifications
65 class wxDataViewEvent
: public wxNotifyEvent
72 wxDataViewEvent(wxEventType commandType
= wxEVT_NULL
,
74 wxDataViewEvent(const wxDataViewEvent
& event
);
78 Used to clone the event.
80 wxEvent
* Clone() const;
83 Returns the position of the column in the control or -1
84 if no column field was set by the event emitter.
86 int GetColumn() const;
89 Returns a pointer to the wxDataViewColumn from which
90 the event was emitted or @NULL.
92 wxDataViewColumn
* GetDataViewColumn();
95 Returns the wxDataViewModel associated with the event.
97 wxDataViewModel
* GetModel() const;
100 Returns a the position of a context menu event in screen coordinates.
102 wxPoint
GetPosition() const;
105 Returns a reference to a value.
107 const wxVariant
GetValue() const;
112 void SetColumn(int col
);
115 For wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only.
117 void SetDataViewColumn(wxDataViewColumn
* col
);
122 void SetModel(wxDataViewModel
* model
);
127 void SetValue(const wxVariant
& value
);
133 @class wxDataViewIconTextRenderer
134 @wxheader{dataview.h}
136 The wxDataViewIconTextRenderer class is used to display text with
137 a small icon next to it as it is typically done in a file manager.
138 This classes uses the wxDataViewIconText
139 helper class to store its data. wxDataViewIonText can be converted
140 to a from a wxVariant using the left shift
146 class wxDataViewIconTextRenderer
: public wxDataViewRenderer
152 wxDataViewIconTextRenderer(const wxString
& varianttype
= "wxDataViewIconText",
153 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
);
159 @class wxDataViewIndexListModel
160 @wxheader{dataview.h}
162 wxDataViewIndexListModel is a specialized data model which lets
163 you address an item by its position (row) rather than its
164 wxDataViewItem (which you can obtain from this class).
165 This model also provides its own
166 wxDataViewIndexListModel::Compare method
167 which sorts the model's data by the index.
169 This model is special in the it is implemented differently under OS X
170 and other platforms. Under OS X a wxDataViewItem is always persistent
171 and this is also the case for this class. Under other platforms, the
172 meaning of a wxDataViewItem is changed to reflect a row number for
173 wxDataViewIndexListModel. The consequence of this is that
174 wxDataViewIndexListModel can be used as a virtual model with an
175 almost infinate number of items on platforms other than OS X.
180 class wxDataViewIndexListModel
: public wxDataViewModel
186 wxDataViewIndexListModel(unsigned int initial_size
= 0);
191 ~wxDataViewIndexListModel();
194 Compare method that sorts the items by their index.
196 int Compare(const wxDataViewItem
& item1
,
197 const wxDataViewItem
& item2
,
198 unsigned int column
, bool ascending
);
201 Oberride this to indicate that the row has special font attributes.
202 This only affects the
203 wxDataViewTextRendererText() renderer.
204 See also wxDataViewItemAttr.
206 bool GetAttr(unsigned int row
, unsigned int col
,
207 wxDataViewItemAttr
& attr
);
210 Returns the wxDataViewItem at the given @e row.
212 wxDataViewItem
GetItem(unsigned int row
) const;
215 Returns the position of given @e item.
217 unsigned int GetRow(const wxDataViewItem
& item
) const;
220 Override this to allow getting values from the model.
222 void GetValue(wxVariant
& variant
, unsigned int row
,
223 unsigned int col
) const;
226 Call this after if the data has to be read again from
227 the model. This is useful after major changes when
228 calling the methods below (possibly thousands of times)
231 void Reset(unsigned int new_size
);
234 Call this after a row has been appended to the model.
239 Call this after a row has been changed.
241 void RowChanged(unsigned int row
);
244 Call this after a row has been deleted.
246 void RowDeleted(unsigned int row
);
249 Call this after a row has been inserted at the given position.
251 void RowInserted(unsigned int before
);
254 Call this after a row has been prepended to the model.
259 Call this after a value has been changed.
261 void RowValueChanged(unsigned int row
, unsigned int col
);
264 Call this after rows have been deleted. The array will internally
265 get copied and sorted in descending order so that the rows with
266 the highest position will be deleted first.
268 void RowsDeleted(const wxArrayInt
& rows
);
271 Called in order to set a value in the model.
273 bool SetValue(const wxVariant
& variant
, unsigned int row
,
280 @class wxDataViewModel
281 @wxheader{dataview.h}
283 wxDataViewModel is the base class for all data model to be
284 displayed by a wxDataViewCtrl.
285 All other models derive from it and must implement its
286 pure virtual functions in order to define a complete
287 data model. In detail, you need to override
288 wxDataViewModel::IsContainer,
289 wxDataViewModel::GetParent,
290 wxDataViewModel::GetChildren,
291 wxDataViewModel::GetColumnCount,
292 wxDataViewModel::GetColumnType and
293 wxDataViewModel::GetValue in order to
294 define the data model which acts as an interface between
295 your actual data and the wxDataViewCtrl. Since you will
296 usually also allow the wxDataViewCtrl to change your data
297 through its graphical interface, you will also have to override
298 wxDataViewModel::SetValue which the
299 wxDataViewCtrl will call when a change to some data has been
302 wxDataViewModel (as indeed the entire wxDataViewCtrl
303 code) is using wxVariant to store data and
304 its type in a generic way. wxVariant can be extended to contain
305 almost any data without changes to the original class.
307 The data that is presented through this data model is expected
308 to change at run-time. You need to inform the data model when
309 a change happened. Depending on what happened you need to call
310 one of the following methods:
311 wxDataViewModel::ValueChanged,
312 wxDataViewModel::ItemAdded,
313 wxDataViewModel::ItemDeleted,
314 wxDataViewModel::ItemChanged,
315 wxDataViewModel::Cleared. There are
316 plural forms for notification of addition, change
317 or removal of several item at once. See
318 wxDataViewModel::ItemsAdded,
319 wxDataViewModel::ItemsDeleted,
320 wxDataViewModel::ItemsChanged.
322 Note that wxDataViewModel does not define the position or
323 index of any item in the control because different controls
324 might display the same data differently. wxDataViewModel does
325 provide a wxDataViewModel::Compare method
326 which the wxDataViewCtrl may use to sort the data either
327 in conjunction with a column header or without (see
328 wxDataViewModel::HasDefaultCompare).
330 This class maintains a list of
331 wxDataViewModelNotifier
332 which link this class to the specific implementations on the
333 supported platforms so that e.g. calling
334 wxDataViewModel::ValueChanged
335 on this model will just call
336 wxDataViewModelNotifier::ValueChanged
337 for each notifier that has been added. You can also add
338 your own notifier in order to get informed about any changes
339 to the data in the list model.
341 Currently wxWidgets provides the following models apart
343 wxDataViewIndexListModel,
346 Note that wxDataViewModel is reference counted, derives from
347 wxObjectRefData and cannot be deleted
348 directly as it can be shared by several wxDataViewCtrls. This
349 implies that you need to decrease the reference count after
350 associating the model with a control like this:
353 wxDataViewCtrl *musicCtrl = new wxDataViewCtrl( this, ID_MUSIC_CTRL );
354 wxDataViewModel *musicModel = new MyMusicModel;
355 m_musicCtrl-AssociateModel( musicModel );
356 musicModel-DecRef(); // avoid memory leak !!
364 class wxDataViewModel
: public wxObjectRefData
373 Destructor. This should not be called directly. Use DecRef() instead.
378 Adds a wxDataViewModelNotifier
381 void AddNotifier(wxDataViewModelNotifier
* notifier
);
384 Called to inform the model that all data has been cleared. The
385 control will reread the data from the model again.
387 virtual bool Cleared();
390 The compare function to be used by control. The default compare function
391 sorts by container and other items separately and in ascending order.
392 Override this for a different sorting behaviour.
393 See also HasDefaultCompare().
395 virtual int Compare(const wxDataViewItem
& item1
,
396 const wxDataViewItem
& item2
,
401 Oberride this to indicate that the item has special font attributes.
402 This only affects the
403 wxDataViewTextRendererText() renderer.
404 See also wxDataViewItemAttr.
406 bool GetAttr(const wxDataViewItem
& item
, unsigned int col
,
407 wxDataViewItemAttr
& attr
);
410 Override this so the control can query the child items of
411 an item. Returns the number of items.
413 virtual unsigned int GetChildren(const wxDataViewItem
& item
,
414 wxDataViewItemArray
& children
) const;
417 Override this to indicate the number of columns in the model.
419 virtual unsigned int GetColumnCount() const;
422 Override this to indicate what type of data is stored in the
423 column specified by @e col. This should return a string
424 indicating the type of data as reported by wxVariant.
426 virtual wxString
GetColumnType(unsigned int col
) const;
429 Override this to indicate which wxDataViewItem representing the parent
430 of @a item or an invalid wxDataViewItem if the the root item is
433 virtual wxDataViewItem
GetParent(const wxDataViewItem
& item
) const;
436 Override this to indicate the value of @e item
437 A wxVariant is used to store the data.
439 virtual void GetValue(wxVariant
& variant
,
440 const wxDataViewItem
& item
,
441 unsigned int col
) const;
444 Override this method to indicate if a container item merely
445 acts as a headline (or for categorisation) or if it also
446 acts a normal item with entries for futher columns. By
447 default returns @e @false.
449 virtual bool HasContainerColumns(const wxDataViewItem
& item
) const;
452 Override this to indicate that the model provides a default compare
453 function that the control should use if no wxDataViewColumn has been
454 chosen for sorting. Usually, the user clicks on a column header for
455 sorting, the data will be sorted alphanumerically. If any other
456 order (e.g. by index or order of appearance) is required, then this
457 should be used. See also wxDataViewIndexListModel
458 for a model which makes use of this.
460 virtual bool HasDefaultCompare() const;
463 Override this to indicate of @a item is a container, i.e. if
464 it can have child items.
466 virtual bool IsContainer(const wxDataViewItem
& item
) const;
469 Call this to inform the model that an item has been added
472 virtual bool ItemAdded(const wxDataViewItem
& parent
,
473 const wxDataViewItem
& item
);
476 Call this to inform the model that an item has changed.
477 This will eventually emit a wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
478 event (in which the column fields will not be set) to the user.
480 virtual bool ItemChanged(const wxDataViewItem
& item
);
483 Call this to inform the model that an item has been deleted from the data.
485 virtual bool ItemDeleted(const wxDataViewItem
& parent
,
486 const wxDataViewItem
& item
);
489 Call this to inform the model that several items have been added
492 virtual bool ItemsAdded(const wxDataViewItem
& parent
,
493 const wxDataViewItemArray
& items
);
496 Call this to inform the model that several items have changed.
497 This will eventually emit wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
498 events (in which the column fields will not be set) to the user.
500 virtual bool ItemsChanged(const wxDataViewItemArray
& items
);
503 Call this to inform the model that several items have been deleted.
505 virtual bool ItemsDeleted(const wxDataViewItem
& parent
,
506 const wxDataViewItemArray
& items
);
509 Remove the @a notifier from the list of notifiers.
511 void RemoveNotifier(wxDataViewModelNotifier
* notifier
);
514 Call this to initiate a resort after the sort function has
517 virtual void Resort();
520 This gets called in order to set a value in the data model.
521 The most common scenario is that the wxDataViewCtrl calls
522 this method after the user changed some data in the view.
523 Afterwards ValueChanged()
526 virtual bool SetValue(const wxVariant
& variant
,
527 const wxDataViewItem
& item
,
531 Call this to inform this model that a value in the model has
532 been changed. This is also called from wxDataViewCtrl's
533 internal editing code, e.g. when editing a text field
535 This will eventually emit a wxEVT_DATAVIEW_ITEM_VALUE_CHANGED
538 virtual bool ValueChanged(const wxDataViewItem
& item
,
545 @class wxDataViewCustomRenderer
546 @wxheader{dataview.h}
548 You need to derive a new class from wxDataViewCustomRenderer in
549 order to write a new renderer. You need to override at least
550 wxDataViewRenderer::SetValue,
551 wxDataViewRenderer::GetValue,
552 wxDataViewCustomRenderer::GetSize
553 and wxDataViewCustomRenderer::Render.
555 If you want your renderer to support in-place editing then you
556 also need to override
557 wxDataViewCustomRenderer::HasEditorCtrl,
558 wxDataViewCustomRenderer::CreateEditorCtrl
559 and wxDataViewCustomRenderer::GetValueFromEditorCtrl.
560 Note that a special event handler will be pushed onto that
561 editor control which handles ENTER and focus out events
562 in order to end the editing.
567 class wxDataViewCustomRenderer
: public wxDataViewRenderer
573 wxDataViewCustomRenderer(const wxString
& varianttype
= "string",
574 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
575 bool no_init
= false);
580 ~wxDataViewCustomRenderer();
583 Override this to react to double clicks or ENTER.
585 virtual bool Activate( wxRect cell
,
586 wxDataViewModel
* model
,
587 const wxDataViewItem
& item
,
591 Override this to create the actual editor control once editing
592 is about to start. @a parent is the parent of the editor
593 control, @a labelRect indicates the position and
594 size of the editor control and @a value is its initial value:
596 virtual wxControl
* CreateEditorCtrl(wxWindow
* parent
,
598 const wxVariant
& value
);
601 Create DC on request. Internal.
603 virtual wxDC
* GetDC();
606 Return size required to show content.
608 virtual wxSize
GetSize();
611 Overrride this so that the renderer can get the value
612 from the editor control (pointed to by @e editor):
614 virtual bool GetValueFromEditorCtrl(wxControl
* editor
,
618 Override this and make it return @e @true in order to
619 indicate that this renderer supports in-place editing.
621 virtual bool HasEditorCtrl();
624 Overrride this to react to a left click.
626 virtual bool LeftClick( wxPoint cursor
,
628 wxDataViewModel
* model
,
629 const wxDataViewItem
& item
,
633 Override this to render the cell. Before this is called,
634 wxDataViewRenderer::SetValue was called
635 so that this instance knows what to render.
637 virtual bool Render(wxRect cell
, wxDC
* dc
, int state
);
640 This method should be called from within Render()
641 whenever you need to render simple text. This will ensure that the
642 correct colour, font and vertical alignment will be chosen so the
643 text will look the same as text drawn by native renderers.
645 bool RenderText(const wxString
& text
, int xoffset
, wxRect cell
,
646 wxDC
* dc
, int state
);
649 Overrride this to react to a right click.
651 virtual bool RightClick(wxPoint cursor
,
653 wxDataViewModel
* model
,
654 const wxDataViewItem
& item
,
658 Overrride this to start a drag operation.
660 virtual bool StartDrag(wxPoint cursor
, wxRect cell
,
661 wxDataViewModel
* model
,
662 const wxDataViewItem
& item
,
669 @class wxDataViewBitmapRenderer
670 @wxheader{dataview.h}
672 wxDataViewBitmapRenderer
677 class wxDataViewBitmapRenderer
: public wxDataViewRenderer
683 wxDataViewBitmapRenderer(const wxString
& varianttype
= "wxBitmap",
684 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
);
690 @class wxDataViewItemAttr
691 @wxheader{dataview.h}
693 This class is used to indicate to a wxDataViewCtrl
694 that a certain Item() has extra font attributes
695 for its renderer. For this, it is required to override
696 wxDataViewModel::GetAttr.
698 Attributes are currently only supported by
699 wxDataViewTextRendererText().
704 class wxDataViewItemAttr
710 wxDataViewItemAttr();
713 Call this to indicate that the item shall be displayed in bold text.
715 void SetBold(bool set
);
718 Call this to indicate that the item shall be displayed with
721 void SetColour(const wxColour
& colour
);
724 Call this to indicate that the item shall be displayed in italic text.
726 void SetItalic(bool set
);
732 @class wxDataViewItem
733 @wxheader{dataview.h}
735 wxDataViewItem is a small opaque class that represents an
736 item in a wxDataViewCtrl in a
737 persistent way, i.e. indepent of the position of the
738 item in the control or changes to its contents. It must
739 hold a unique ID of type @e void* in its only field
740 and can be converted to a from it.
742 If the ID is @e @NULL the wxDataViewItem is invalid and
743 wxDataViewItem::IsOk will return @e @false
744 which used in many places in the API of wxDataViewCtrl
745 to indicate that e.g. no item was found. An ID of @NULL
746 is also used to indicate the invisible root. Examples
748 wxDataViewModel::GetParent and
749 wxDataViewModel::GetChildren.
761 wxDataViewItem(void* id
= NULL
);
762 wxDataViewItem(const wxDataViewItem
& item
);
771 Returns @true if the ID is not @e @NULL.
779 @class wxDataViewCtrl
780 @wxheader{dataview.h}
782 wxDataViewCtrl is a control to display data either
783 in a tree like fashion or in a tabular form or both.
784 If you only need to display a simple tree structure
785 with an API more like the older wxTreeCtrl class,
786 then the specialized wxDataViewTreeCtrl
789 A wxDataViewItem is used
790 to represent a (visible) item in the control.
792 Unlike wxListCtrl wxDataViewCtrl doesn't
793 get its data from the user through virtual functions or by
794 setting it directly. Instead you need to write your own
795 wxDataViewModel and associate
796 it with this control. Then you need to add a number of
797 wxDataViewColumn to this control to
798 define what each column shall display. Each wxDataViewColumn
799 in turn owns 1 instance of a
800 wxDataViewRenderer to render its
801 cells. A number of standard renderers for rendering text, dates,
802 images, toggle, a progress bar etc. are provided. Additionally,
803 the user can write custom renderes deriving from
804 wxDataViewCustomRenderer
805 for displaying anything.
807 All data transfer from the control to the model and the user
808 code is done through wxVariant which can
809 be extended to support more data formats as necessary.
810 Accordingly, all type information uses the strings returned
811 from wxVariant::GetType.
815 Single selection mode. This is the default.
816 @style{wxDV_MULTIPLE}:
817 Multiple selection mode.
818 @style{wxDV_ROW_LINES}:
819 Use alternating colours for rows if supported by platform and theme.
820 @style{wxDV_HORIZ_RULES}:
821 Display fine rules between row if supported.
822 @style{wxDV_VERT_RULES}:
823 Display fine rules between columns is supported.
828 @appearance{dataviewctrl.png}
830 class wxDataViewCtrl
: public wxControl
835 Constructor. Calls Create().
838 wxDataViewCtrl(wxWindow
* parent
, wxWindowID id
,
839 const wxPoint
& pos
= wxDefaultPosition
,
840 const wxSize
& size
= wxDefaultSize
,
842 const wxValidator
& validator
= wxDefaultValidator
);
852 Appends a column for rendering a bitmap. Returns the wxDataViewColumn
853 created in the function or @NULL on failure.
855 wxDataViewColumn
* AppendBitmapColumn(const wxString
& label
,
856 unsigned int model_column
,
857 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
859 wxAlignment align
= wxALIGN_CENTER
,
860 int flags
= wxDATAVIEW_COL_RESIZABLE
);
861 wxDataViewColumn
* AppendBitmapColumn(const wxBitmap
& label
,
862 unsigned int model_column
,
863 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
865 wxAlignment align
= wxALIGN_CENTER
,
866 int flags
= wxDATAVIEW_COL_RESIZABLE
);
870 Add a wxDataViewColumn to the control. Returns
872 Note that there is a number of short cut methods which implicitly create
873 a wxDataViewColumn and a
874 wxDataViewRenderer for it (see below).
876 virtual bool AppendColumn(wxDataViewColumn
* col
);
880 Appends a column for rendering a date. Returns the wxDataViewColumn
881 created in the function or @NULL on failure.
883 wxDataViewColumn
* AppendDateColumn(const wxString
& label
,
884 unsigned int model_column
,
885 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
887 wxAlignment align
= wxALIGN_CENTER
,
888 int flags
= wxDATAVIEW_COL_RESIZABLE
);
889 wxDataViewColumn
* AppendDateColumn(const wxBitmap
& label
,
890 unsigned int model_column
,
891 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
893 wxAlignment align
= wxALIGN_CENTER
,
894 int flags
= wxDATAVIEW_COL_RESIZABLE
);
899 Appends a column for rendering text with an icon. Returns the wxDataViewColumn
900 created in the function or @NULL on failure. This uses the
901 wxDataViewIconTextRenderer.
903 wxDataViewColumn
* AppendIconTextColumn(const wxString
& label
,
904 unsigned int model_column
,
905 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
907 wxAlignment align
= wxALIGN_LEFT
,
908 int flags
= wxDATAVIEW_COL_RESIZABLE
);
909 wxDataViewColumn
* AppendIconTextColumn(const wxBitmap
& label
,
910 unsigned int model_column
,
911 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
913 wxAlignment align
= wxALIGN_LEFT
,
914 int flags
= wxDATAVIEW_COL_RESIZABLE
);
919 Appends a column for rendering a progress indicator. Returns the
921 created in the function or @NULL on failure.
923 wxDataViewColumn
* AppendProgressColumn(const wxString
& label
,
924 unsigned int model_column
,
925 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
927 wxAlignment align
= wxALIGN_CENTER
,
928 int flags
= wxDATAVIEW_COL_RESIZABLE
);
929 wxDataViewColumn
* AppendProgressColumn(const wxBitmap
& label
,
930 unsigned int model_column
,
931 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
933 wxAlignment align
= wxALIGN_CENTER
,
934 int flags
= wxDATAVIEW_COL_RESIZABLE
);
939 Appends a column for rendering text. Returns the wxDataViewColumn
940 created in the function or @NULL on failure.
942 wxDataViewColumn
* AppendTextColumn(const wxString
& label
,
943 unsigned int model_column
,
944 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
946 wxAlignment align
= wxALIGN_LEFT
,
947 int flags
= wxDATAVIEW_COL_RESIZABLE
);
948 wxDataViewColumn
* AppendTextColumn(const wxBitmap
& label
,
949 unsigned int model_column
,
950 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
952 wxAlignment align
= wxALIGN_LEFT
,
953 int flags
= wxDATAVIEW_COL_RESIZABLE
);
958 Appends a column for rendering a toggle. Returns the wxDataViewColumn
959 created in the function or @NULL on failure.
961 wxDataViewColumn
* AppendToggleColumn(const wxString
& label
,
962 unsigned int model_column
,
963 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
965 wxAlignment align
= wxALIGN_CENTER
,
966 int flags
= wxDATAVIEW_COL_RESIZABLE
);
967 wxDataViewColumn
* AppendToggleColumn(const wxBitmap
& label
,
968 unsigned int model_column
,
969 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
971 wxAlignment align
= wxALIGN_CENTER
,
972 int flags
= wxDATAVIEW_COL_RESIZABLE
);
976 Associates a wxDataViewModel with the
977 control. This increases the reference count of the model by 1.
979 virtual bool AssociateModel(wxDataViewModel
* model
);
984 virtual bool ClearColumns();
989 void ClearSelection();
994 void Collapse(const wxDataViewItem
& item
);
997 Create the control. Useful for two step creation.
999 bool Create(wxWindow
* parent
, wxWindowID id
,
1000 const wxPoint
& pos
= wxDefaultPosition
,
1001 const wxSize
& size
= wxDefaultSize
,
1003 const wxValidator
& validator
= wxDefaultValidator
);
1006 Deletes given column.
1008 virtual bool DeleteColumn(const wxDataViewColumn
* column
);
1011 Call this to ensure that the given item is visible.
1013 void EnsureVisible(const wxDataViewItem
& item
,
1014 const wxDataViewColumn
* column
= NULL
);
1019 void Expand(const wxDataViewItem
& item
);
1022 Returns pointer to the column. @a pos refers to the
1023 position in the control which may change after reordering
1024 columns by the user.
1026 virtual wxDataViewColumn
* GetColumn(unsigned int pos
) const;
1029 Returns the number of columns.
1031 virtual unsigned int GetColumnCount() const;
1034 Returns the position of the column or -1 if not found in the control.
1036 virtual int GetColumnPosition(const wxDataViewColumn
* column
) const;
1039 Returns column containing the expanders.
1041 wxDataViewColumn
* GetExpanderColumn() const;
1044 Returns indentation.
1046 int GetIndent() const;
1051 wxRect
GetItemRect(const wxDataViewItem
& item
,
1052 const wxDataViewColumn
* col
= NULL
) const;
1055 Returns pointer to the data model associated with the
1058 virtual wxDataViewModel
* GetModel() const;
1061 Returns first selected item or an invalid item if none is selected.
1063 wxDataViewItem
GetSelection() const;
1066 Fills @a sel with currently selected items and returns
1069 int GetSelections(wxDataViewItemArray
& sel
) const;
1072 Returns the wxDataViewColumn currently responsible for sorting
1073 or @NULL if none has been selected.
1075 virtual wxDataViewColumn
* GetSortingColumn() const;
1080 void HitTest(const wxPoint
& point
, wxDataViewItem
& item
,
1081 wxDataViewColumn
*& col
) const;
1084 Return @true if the item is selected.
1086 bool IsSelected(const wxDataViewItem
& item
) const;
1089 Select the given item.
1091 void Select(const wxDataViewItem
& item
);
1099 Set which column shall contain the tree-like expanders.
1101 void SetExpanderColumn(wxDataViewColumn
* col
);
1104 Sets the indendation.
1106 void SetIndent(int indent
);
1109 Sets the selection to the array of wxDataViewItems.
1111 void SetSelections(const wxDataViewItemArray
& sel
);
1114 Unselect the given item.
1116 void Unselect(const wxDataViewItem
& item
);
1119 Unselect all item. This method only has effect if multiple
1120 selections are allowed.
1128 @class wxDataViewModelNotifier
1129 @wxheader{dataview.h}
1131 A wxDataViewModelNotifier instance is owned by a
1133 and mirrors its notification interface. See
1134 the documentation of that class for further
1140 class wxDataViewModelNotifier
1146 wxDataViewModelNotifier();
1151 ~wxDataViewModelNotifier();
1154 Called by owning model.
1159 Get owning wxDataViewModel.
1161 wxDataViewModel
* GetOwner();
1164 Called by owning model.
1166 bool ItemAdded(const wxDataViewItem
& parent
,
1167 const wxDataViewItem
& item
);
1170 Called by owning model.
1172 bool ItemChanged(const wxDataViewItem
& item
);
1175 Called by owning model.
1177 bool ItemDeleted(const wxDataViewItem
& parent
,
1178 const wxDataViewItem
& item
);
1181 Called by owning model.
1183 bool ItemsAdded(const wxDataViewItem
& parent
,
1184 const wxDataViewItemArray
& items
);
1187 Called by owning model.
1189 bool ItemsChanged(const wxDataViewItemArray
& items
);
1192 Called by owning model.
1194 bool ItemsDeleted(const wxDataViewItem
& parent
,
1195 const wxDataViewItemArray
& items
);
1198 Called by owning model.
1203 Set owner of this notifier. Used internally.
1205 void SetOwner(wxDataViewModel
* owner
);
1208 Called by owning model.
1210 bool ValueChanged(const wxDataViewItem
& item
, unsigned int col
);
1216 @class wxDataViewRenderer
1217 @wxheader{dataview.h}
1219 This class is used by wxDataViewCtrl to
1220 render the individual cells. One instance of a renderer class is
1221 owned by wxDataViewColumn. There is
1222 a number of ready-to-use renderers provided:
1223 wxDataViewTextRenderer,
1224 wxDataViewTextRendererAttr,
1225 wxDataViewIconTextRenderer,
1226 wxDataViewToggleRenderer,
1227 wxDataViewProgressRenderer,
1228 wxDataViewBitmapRenderer,
1229 wxDataViewDateRenderer.
1230 wxDataViewSpinRenderer.
1232 Additionally, the user can write own renderers by deriving from
1233 wxDataViewCustomRenderer.
1235 The @e wxDataViewCellMode flag controls, what actions
1236 the cell data allows. @e wxDATAVIEW_CELL_ACTIVATABLE
1237 indicates that the user can double click the cell and
1238 something will happen (e.g. a window for editing a date
1239 will pop up). @e wxDATAVIEW_CELL_EDITABLE indicates
1240 that the user can edit the data in-place, i.e. an control
1241 will show up after a slow click on the cell. This behaviour
1242 is best known from changing the filename in most file
1247 enum wxDataViewCellMode
1249 wxDATAVIEW_CELL_INERT,
1250 wxDATAVIEW_CELL_ACTIVATABLE,
1251 wxDATAVIEW_CELL_EDITABLE
1255 The @e wxDataViewCellRenderState flag controls how the
1256 the renderer should display its contents in a cell:
1259 enum wxDataViewCellRenderState
1261 wxDATAVIEW_CELL_SELECTED = 1,
1262 wxDATAVIEW_CELL_PRELIT = 2,
1263 wxDATAVIEW_CELL_INSENSITIVE = 4,
1264 wxDATAVIEW_CELL_FOCUSED = 8
1272 class wxDataViewRenderer
: public wxObject
1278 wxDataViewRenderer(const wxString
& varianttype
,
1279 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1280 int alignment
= wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
);
1283 Returns the cell mode.
1285 virtual wxDataViewCellMode
GetMode();
1288 Returns pointer to the owning wxDataViewColumn.
1290 virtual wxDataViewColumn
* GetOwner();
1293 This methods retrieves the value from the renderer in order to
1294 transfer the value back to the data model. Returns @e @false
1297 virtual bool GetValue(wxVariant
& value
);
1300 Returns a string with the type of the wxVariant
1301 supported by this renderer.
1303 virtual wxString
GetVariantType();
1306 Sets the owning wxDataViewColumn. This
1307 is usually called from within wxDataViewColumn.
1309 virtual void SetOwner(wxDataViewColumn
* owner
);
1312 Set the value of the renderer (and thus its cell) to @e value.
1313 The internal code will then render this cell with this data.
1315 virtual bool SetValue(const wxVariant
& value
);
1318 Before data is committed to the data model, it is passed to this
1319 method where it can be checked for validity. This can also be
1320 used for checking a valid range or limiting the user input in
1321 a certain aspect (e.g. max number of characters or only alphanumeric
1322 input, ASCII only etc.). Return @e @false if the value is
1324 Please note that due to implementation limitations, this validation
1325 is done after the editing control already is destroyed and the
1326 editing process finished.
1328 virtual bool Validate(wxVariant
& value
);
1334 @class wxDataViewTextRenderer
1335 @wxheader{dataview.h}
1337 wxDataViewTextRenderer is used for rendering text. It supports
1338 in-place editing if desired.
1343 class wxDataViewTextRenderer
: public wxDataViewRenderer
1349 wxDataViewTextRenderer(const wxString
& varianttype
= "string",
1350 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
);
1356 @class wxDataViewProgressRenderer
1357 @wxheader{dataview.h}
1359 wxDataViewProgressRenderer
1364 class wxDataViewProgressRenderer
: public wxDataViewRenderer
1370 wxDataViewProgressRenderer(const wxString
& label
= wxEmptyString
,
1371 const wxString
& varianttype
= "long",
1372 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
);
1378 @class wxDataViewSpinRenderer
1379 @wxheader{dataview.h}
1381 This is a specialized renderer for rendering integer values. It
1382 supports modifying the values in-place by using a wxSpinCtrl.
1383 The renderer only support variants of type @e long.
1388 class wxDataViewSpinRenderer
: public wxDataViewCustomRenderer
1392 Constructor. @a min and @a max indicate the minimum und
1393 maximum values of for the wxSpinCtrl.
1395 wxDataViewSpinRenderer(int min
, int max
,
1396 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
1397 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
1403 @class wxDataViewToggleRenderer
1404 @wxheader{dataview.h}
1406 wxDataViewToggleRenderer
1411 class wxDataViewToggleRenderer
: public wxDataViewRenderer
1417 wxDataViewToggleRenderer(const wxString
& varianttype
= "bool",
1418 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
);
1424 @class wxDataViewTreeCtrl
1425 @wxheader{dataview.h}
1427 This class is a wxDataViewCtrl which internally
1428 uses a wxDataViewTreeStore and forwards
1429 most of its API to that class. Additionally, it uses a wxImageList
1430 to store a list of icons. The main purpose of this class is to look
1431 like a wxTreeCtrl to make a transition from it
1432 to the wxDataViewCtrl class simpler.
1436 @appearance{dataviewtreectrl.png}
1438 class wxDataViewTreeCtrl
: public wxDataViewCtrl
1443 Constructor. Calls Create().
1445 wxDataViewTreeCtrl();
1446 wxDataViewTreeCtrl(wxWindow
* parent
, wxWindowID id
,
1447 const wxPoint
& pos
= wxDefaultPosition
,
1448 const wxSize
& size
= wxDefaultSize
,
1449 long style
= wxDV_NO_HEADER
,
1450 const wxValidator
& validator
= wxDefaultValidator
);
1454 Destructor. Deletes the image list if any.
1456 ~wxDataViewTreeCtrl();
1461 wxDataViewItem
AppendContainer(const wxDataViewItem
& parent
,
1462 const wxString
& text
,
1465 wxClientData
* data
= NULL
);
1470 wxDataViewItem
AppendItem(const wxDataViewItem
& parent
,
1471 const wxString
& text
,
1473 wxClientData
* data
= NULL
);
1476 Creates the control and a wxDataViewTreeStore as
1479 bool Create(wxWindow
* parent
, wxWindowID id
,
1480 const wxPoint
& pos
= wxDefaultPosition
,
1481 const wxSize
& size
= wxDefaultSize
,
1482 long style
= wxDV_NO_HEADER
,
1483 const wxValidator
& validator
= wxDefaultValidator
);
1486 Calls the identical method from wxDataViewTreeStore.
1488 void DeleteAllItems();
1491 Calls the identical method from wxDataViewTreeStore.
1493 void DeleteChildren(const wxDataViewItem
& item
);
1496 Calls the identical method from wxDataViewTreeStore.
1498 void DeleteItem(const wxDataViewItem
& item
);
1501 Calls the identical method from wxDataViewTreeStore.
1503 int GetChildCount(const wxDataViewItem
& parent
) const;
1506 Returns the image list.
1508 wxImageList
* GetImageList();
1511 Calls the identical method from wxDataViewTreeStore.
1513 wxClientData
* GetItemData(const wxDataViewItem
& item
) const;
1516 Calls the identical method from wxDataViewTreeStore.
1518 const wxIcon
GetItemExpandedIcon(const wxDataViewItem
& item
) const;
1521 Calls the identical method from wxDataViewTreeStore.
1523 const wxIcon
GetItemIcon(const wxDataViewItem
& item
) const;
1526 Calls the identical method from wxDataViewTreeStore.
1528 wxString
GetItemText(const wxDataViewItem
& item
) const;
1531 Calls the identical method from wxDataViewTreeStore.
1533 wxDataViewItem
GetNthChild(const wxDataViewItem
& parent
,
1534 unsigned int pos
) const;
1540 wxDataViewTreeStore
* GetStore() const;
1541 const wxDataViewTreeStore
* GetStore() const;
1545 Calls the same method from wxDataViewTreeStore but uess
1546 and index position in the image list instead of a wxIcon.
1548 wxDataViewItem
InsertContainer(const wxDataViewItem
& parent
,
1549 const wxDataViewItem
& previous
,
1550 const wxString
& text
,
1553 wxClientData
* data
= NULL
);
1556 Calls the same method from wxDataViewTreeStore but uess
1557 and index position in the image list instead of a wxIcon.
1559 wxDataViewItem
InsertItem(const wxDataViewItem
& parent
,
1560 const wxDataViewItem
& previous
,
1561 const wxString
& text
,
1563 wxClientData
* data
= NULL
);
1566 Calls the same method from wxDataViewTreeStore but uess
1567 and index position in the image list instead of a wxIcon.
1569 wxDataViewItem
PrependContainer(const wxDataViewItem
& parent
,
1570 const wxString
& text
,
1573 wxClientData
* data
= NULL
);
1576 Calls the same method from wxDataViewTreeStore but uess
1577 and index position in the image list instead of a wxIcon.
1579 wxDataViewItem
PrependItem(const wxDataViewItem
& parent
,
1580 const wxString
& text
,
1582 wxClientData
* data
= NULL
);
1585 Sets the image list.
1587 void SetImageList(wxImageList
* imagelist
);
1590 Calls the identical method from wxDataViewTreeStore.
1592 void SetItemData(const wxDataViewItem
& item
, wxClientData
* data
);
1595 Calls the identical method from wxDataViewTreeStore.
1597 void SetItemExpandedIcon(const wxDataViewItem
& item
,
1598 const wxIcon
& icon
);
1601 Calls the identical method from wxDataViewTreeStore.
1603 void SetItemIcon(const wxDataViewItem
& item
, const wxIcon
& icon
);
1606 Calls the identical method from wxDataViewTreeStore.
1608 void SetItemText(const wxDataViewItem
& item
,
1609 const wxString
& text
);
1615 @class wxDataViewTreeStore
1616 @wxheader{dataview.h}
1618 wxDataViewTreeStore is a specialised wxDataViewModel
1619 for displaying simple trees very much like wxTreeCtrl
1620 does and it offers a similar API. This class actually stores the entire
1621 tree (therefore its name) and implements all virtual methods from the base
1622 class so it can be used directly without having to derive any class from it.
1623 This comes at the price of much reduced flexibility.
1628 class wxDataViewTreeStore
: public wxDataViewModel
1632 Constructor. Creates the invisible root node internally.
1634 wxDataViewTreeStore();
1639 ~wxDataViewTreeStore();
1644 wxDataViewItem
AppendContainer(const wxDataViewItem
& parent
,
1645 const wxString
& text
,
1646 const wxIcon
& icon
= wxNullIcon
,
1647 const wxIcon
& expanded
= wxNullIcon
,
1648 wxClientData
* data
= NULL
);
1653 wxDataViewItem
AppendItem(const wxDataViewItem
& parent
,
1654 const wxString
& text
,
1655 const wxIcon
& icon
= wxNullIcon
,
1656 wxClientData
* data
= NULL
);
1659 Delete all item in the model.
1661 void DeleteAllItems();
1664 Delete all children of the item, but not the item itself.
1666 void DeleteChildren(const wxDataViewItem
& item
);
1671 void DeleteItem(const wxDataViewItem
& item
);
1674 Return the number of children of item.
1676 int GetChildCount(const wxDataViewItem
& parent
) const;
1679 Returns the client data asoociated with the item.
1681 wxClientData
* GetItemData(const wxDataViewItem
& item
) const;
1684 Returns the icon to display in expanded containers.
1686 const wxIcon
GetItemExpandedIcon(const wxDataViewItem
& item
) const;
1689 Returns the icon of the item.
1691 const wxIcon
GetItemIcon(const wxDataViewItem
& item
) const;
1694 Returns the text of the item.
1696 wxString
GetItemText(const wxDataViewItem
& item
) const;
1699 Returns the nth child item of item.
1701 wxDataViewItem
GetNthChild(const wxDataViewItem
& parent
,
1702 unsigned int pos
) const;
1705 Inserts a container after @e previous.
1707 wxDataViewItem
InsertContainer(const wxDataViewItem
& parent
,
1708 const wxDataViewItem
& previous
,
1709 const wxString
& text
,
1710 const wxIcon
& icon
= wxNullIcon
,
1711 const wxIcon
& expanded
= wxNullIcon
,
1712 wxClientData
* data
= NULL
);
1715 Inserts an item after @e previous.
1717 wxDataViewItem
InsertItem(const wxDataViewItem
& parent
,
1718 const wxDataViewItem
& previous
,
1719 const wxString
& text
,
1720 const wxIcon
& icon
= wxNullIcon
,
1721 wxClientData
* data
= NULL
);
1724 Inserts a container before the first child item or @e parent.
1726 wxDataViewItem
PrependContainer(const wxDataViewItem
& parent
,
1727 const wxString
& text
,
1728 const wxIcon
& icon
= wxNullIcon
,
1729 const wxIcon
& expanded
= wxNullIcon
,
1730 wxClientData
* data
= NULL
);
1733 Inserts an item before the first child item or @e parent.
1735 wxDataViewItem
PrependItem(const wxDataViewItem
& parent
,
1736 const wxString
& text
,
1737 const wxIcon
& icon
= wxNullIcon
,
1738 wxClientData
* data
= NULL
);
1741 Sets the client data associated with the item.
1743 void SetItemData(const wxDataViewItem
& item
, wxClientData
* data
);
1746 Sets the expanded icon for the item.
1748 void SetItemExpandedIcon(const wxDataViewItem
& item
,
1749 const wxIcon
& icon
);
1752 Sets the icon for the item.
1754 void SetItemIcon(const wxDataViewItem
& item
, const wxIcon
& icon
);
1760 @class wxDataViewDateRenderer
1761 @wxheader{dataview.h}
1763 wxDataViewDateRenderer
1768 class wxDataViewDateRenderer
: public wxDataViewRenderer
1774 wxDataViewDateRenderer(const wxString
& varianttype
= "datetime",
1775 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
);
1781 @class wxDataViewTextRendererAttr
1782 @wxheader{dataview.h}
1784 The same as wxDataViewTextRenderer but with
1785 support for font attributes. Font attributes are currently only supported
1788 See also wxDataViewModel::GetAttr and
1794 class wxDataViewTextRendererAttr
: public wxDataViewTextRenderer
1800 wxDataViewTextRendererAttr(const wxString
& varianttype
= "string",
1801 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1802 int align
= wxDVR_DEFAULT_ALIGNMENT
);
1808 @class wxDataViewColumn
1809 @wxheader{dataview.h}
1811 This class represents a column in a wxDataViewCtrl.
1812 One wxDataViewColumn is bound to one column in the data model,
1813 to which the wxDataViewCtrl has been associated.
1815 An instance of wxDataViewRenderer is used by
1816 this class to render its data.
1821 class wxDataViewColumn
: public wxObject
1828 wxDataViewColumn(const wxString
& title
,
1829 wxDataViewRenderer
* renderer
,
1830 unsigned int model_column
,
1831 int width
= wxDVC_DEFAULT_WIDTH
,
1832 wxAlignment align
= wxALIGN_CENTRE
,
1833 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1834 wxDataViewColumn(const wxBitmap
& bitmap
,
1835 wxDataViewRenderer
* renderer
,
1836 unsigned int model_column
,
1837 int width
= wxDVC_DEFAULT_WIDTH
,
1838 wxAlignment align
= wxALIGN_CENTRE
,
1839 int flags
= wxDATAVIEW_COL_RESIZABLE
);
1845 ~wxDataViewColumn();
1848 Returns the bitmap in the header of the column, if any.
1850 const wxBitmap
GetBitmap();
1853 Returns the index of the column of the model, which this
1854 wxDataViewColumn is displaying.
1856 unsigned int GetModelColumn();
1859 Returns the owning wxDataViewCtrl.
1861 wxDataViewCtrl
* GetOwner();
1864 Returns the renderer of this wxDataViewColumn.
1865 See also wxDataViewRenderer.
1867 wxDataViewRenderer
* GetRenderer();
1870 Returns @true if the column is reorderable.
1872 bool GetReorderable();
1875 Returns @true if the column is sortable.
1881 Returns the width of the column.
1886 Returns @true, if the sort order is ascending.
1887 See also SetSortOrder()
1889 bool IsSortOrderAscending();
1892 Set the alignment of the column header.
1894 void SetAlignment(wxAlignment align
);
1897 Set the bitmap of the column header.
1899 void SetBitmap(const wxBitmap
& bitmap
);
1902 Indicate wether the column can be reordered by the
1903 user using the mouse. This is typically implemented
1904 visually by dragging the header button around.
1906 void SetReorderable(bool reorderable
);
1909 Indicate the sort order if the implementation of the
1910 wxDataViewCtrl supports it, most commonly by showing
1913 void SetSortOrder(bool ascending
);
1916 Indicate that the column is sortable. This does
1917 not show any sorting indicate yet, but it does
1918 make the column header clickable. Call
1920 afterwards to actually make the sort indicator appear.
1921 If @a sortable is @false, the column header is
1922 no longer clickable and the sort indicator (little
1923 arrow) will disappear.
1925 void SetSortable(bool sortable
);
1928 Set the title of the column header to @e title.
1930 void SetTitle(const wxString
& title
);