]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/dataviewmodel.tex
fix (reversed) operator!() description (bug 1817138)
[wxWidgets.git] / docs / latex / wx / dataviewmodel.tex
... / ...
CommitLineData
1
2\section{\class{wxDataViewModel}}\label{wxdataviewmodel}
3
4wxDataViewModel is the base class for all data model to be
5displayed by a \helpref{wxDataViewCtrl}{wxdataviewctrl}.
6All other models derive from it and must implement its
7pure virtual functions in order to define a complete
8data model. In detail, you need to override
9\helpref{IsContainer}{wxdataviewmodeliscontainer},
10\helpref{GetParent}{wxdataviewmodelgetparent},
11\helpref{GetChildren}{wxdataviewmodelgetchildren},
12\helpref{GetColumnCount}{wxdataviewmodelgetcolumncount},
13\helpref{GetColumnType}{wxdataviewmodelgetcolumntype} and
14\helpref{GetValue}{wxdataviewmodelgetvalue} in order to
15define the data model which acts as an interface between
16your actual data and the wxDataViewCtrl. Since you will
17usually also allow the wxDataViewCtrl to change your data
18through its graphical interface, you will also have to override
19\helpref{SetValue}{wxdataviewmodelsetvalue} which the
20wxDataViewCtrl will call when a change to some data has been
21commited.
22
23wxDataViewModel (as indeed the entire wxDataViewCtrl
24code) is using \helpref{wxVariant}{wxvariant} to store data and
25its type in a generic way. wxVariant can be extended to contain
26almost any data without changes to the original class.
27
28The data that is presented through this data model is expected
29to change at run-time. You need to inform the data model when
30a change happened. Depending on what happened you need to call
31one of the following methods:
32\helpref{ValueChanged}{wxdataviewmodelvaluechanged},
33\helpref{ItemAdded}{wxdataviewmodelitemadded},
34\helpref{ItemDeleted}{wxdataviewmodelitemdeleted},
35\helpref{ItemChanged}{wxdataviewmodelitemchanged},
36\helpref{Cleared}{wxdataviewmodelcleared}. There are
37plural forms for notification of addition, change
38or removal of several item at once. See
39\helpref{ItemsAdded}{wxdataviewmodelitemsadded},
40\helpref{ItemsDeleted}{wxdataviewmodelitemsdeleted},
41\helpref{ItemsChanged}{wxdataviewmodelitemschanged}.
42
43Note that wxDataViewModel does not define the position or
44index of any item in the control because different controls
45might display the same data differently. wxDataViewModel does
46provide a \helpref{Compare}{wxdataviewmodelcompare} method
47which the wxDataViewCtrl may use to sort the data either
48in conjunction with a column header or without (see
49\helpref{HasDefaultCompare}{wxdataviewmodelhasdefaultcompare}).
50
51This class maintains a list of
52\helpref{wxDataViewModelNotifier}{wxdataviewmodelnotifier}
53which link this class to the specific implementations on the
54supported platforms so that e.g. calling
55\helpref{ValueChanged}{wxdataviewmodelvaluechanged}
56on this model will just call
57\helpref{wxDataViewModelNotifier::ValueChanged}{wxdataviewmodelnotifiervaluechanged}
58for each notifier that has been added. You can also add
59your own notifier in order to get informed about any changes
60to the data in the list model.
61
62Currently wxWidgets provides the following models apart
63from the base model:
64\helpref{wxDataViewIndexListModel}{wxdataviewindexlistmodel},
65\helpref{wxDataViewTreeStore}{wxdataviewtreestore}.
66
67Note that wxDataViewModel is reference counted, derives from
68\helpref{wxObjectRefData}{wxobjectrefdata} and cannot be deleted
69directly as it can be shared by several wxDataViewCtrls. This
70implies that you need to decrease the reference count after
71associating the model with a control like this:
72
73{\small%
74\begin{verbatim}
75 wxDataViewCtrl *musicCtrl = new wxDataViewCtrl( this, ID_MUSIC_CTRL );
76 wxDataViewModel *musicModel = new MyMusicModel;
77 m_musicCtrl->AssociateModel( musicModel );
78 musicModel->DecRef(); // avoid memory leak !!
79 // add columns now
80\end{verbatim}
81}%
82
83\wxheading{Derived from}
84
85\helpref{wxObjectRefData}{wxobjectrefdata}
86
87\wxheading{Include files}
88
89<wx/dataview.h>
90
91\wxheading{Library}
92
93\helpref{wxAdv}{librarieslist}
94
95
96
97\latexignore{\rtfignore{\wxheading{Members}}}
98
99\membersection{wxDataViewModel::wxDataViewModel}\label{wxdataviewmodelwxdataviewmodel}
100
101\func{}{wxDataViewModel}{\void}
102
103Constructor.
104
105\membersection{wxDataViewModel::\destruct{wxDataViewModel}}\label{wxdataviewmodeldtor}
106
107\func{}{\destruct{wxDataViewModel}}{\void}
108
109Destructor. This should not be called directly. Use DecRef() instead.
110
111
112\membersection{wxDataViewModel::AddNotifier}\label{wxdataviewmodeladdnotifier}
113
114\func{void}{AddNotifier}{\param{wxDataViewModelNotifier* }{notifier}}
115
116Adds a \helpref{wxDataViewModelNotifier}{wxdataviewmodelnotifier}
117to the model.
118
119\membersection{wxDataViewModel::Cleared}\label{wxdataviewmodelcleared}
120
121\func{virtual bool}{Cleared}{\void}
122
123Called to inform the model that all data has been deleted.
124
125\membersection{wxDataViewModel::Compare}\label{wxdataviewmodelcompare}
126
127\func{virtual int}{Compare}{\param{const wxDataViewItem\& }{item1}, \param{const wxDataViewItem\& }{item2}, \param{unsigned int }{column}, \param{bool }{ascending}}
128
129The compare function to be used by control. The default compare function
130sorts by container and other items separately and in ascending order.
131Override this for a different sorting behaviour.
132
133See also \helpref{HasDefaultCompare}{wxdataviewmodelhasdefaultcompare}.
134
135\membersection{wxDataViewModel::GetColumnCount}\label{wxdataviewmodelgetcolumncount}
136
137\constfunc{virtual unsigned int}{GetColumnCount}{\void}
138
139Override this to indicate the number of columns in the model.
140
141\membersection{wxDataViewModel::GetColumnType}\label{wxdataviewmodelgetcolumntype}
142
143\constfunc{virtual wxString}{GetColumnType}{\param{unsigned int }{col}}
144
145Override this to indicate what type of data is stored in the
146column specified by {\it col}. This should return a string
147indicating the type of data as reported by \helpref{wxVariant}{wxvariant}.
148
149\membersection{wxDataViewModel::GetChildren}\label{wxdataviewmodelgetchildren}
150
151\constfunc{virtual unsigned int}{GetChildren}{\param{const wxDataViewItem\& }{item}, \param{wxDataViewItemArray\& }{children} }
152
153Override this so the control can query the child items of
154an item. Returns the number of items.
155
156\membersection{wxDataViewModel::GetParent}\label{wxdataviewmodelgetparent}
157
158\constfunc{virtual wxDataViewItem}{GetParent}{\param{const wxDataViewItem\& }{item}}
159
160Override this to indicate which wxDataViewItem representing the parent
161of {\it item} or an invalid wxDataViewItem if the the root item is
162the parent item.
163
164\membersection{wxDataViewModel::GetValue}\label{wxdataviewmodelgetvalue}
165
166\constfunc{virtual void}{GetValue}{\param{wxVariant\& }{variant}, \param{const wxDataViewItem\& }{item}, \param{unsigned int }{col}}
167
168Override this to indicate the value of {\it item}
169A \helpref{wxVariant}{wxvariant} is used to store the data.
170
171
172\membersection{wxDataViewModel::HasContainerColumns}\label{wxdataviewmodelhascontainercolumns}
173
174\constfunc{virtual bool}{HasContainerColumns}{\param{const wxDataViewItem\& }{item}}
175
176Override this method to indicate if a container item merely
177acts as a headline (or for categorisation) or if it also
178acts a normal item with entries for futher columns. By
179default returns {\it false}.
180
181\membersection{wxDataViewModel::HasDefaultCompare}\label{wxdataviewmodelhasdefaultcompare}
182
183\constfunc{virtual bool}{HasDefaultCompare}{\void}
184
185Override this to indicate that the model provides a default compare
186function that the control should use if no wxDataViewColumn has been
187chosen for sorting. Usually, the user clicks on a column header for
188sorting, the data will be sorted alphanumerically. If any other
189order (e.g. by index or order of appearance) is required, then this
190should be used. See also \helpref{wxDataViewIndexListModel}{wxdataviewindexlistmodel}
191for a model which makes use of this.
192
193\membersection{wxDataViewModel::IsContainer}\label{wxdataviewmodeliscontainer}
194
195\constfunc{virtual bool}{IsContainer}{\param{const wxDataViewItem\& }{item}}
196
197Override this to indicate of {\it item} is a container, i.e. if
198it can have child items.
199
200\membersection{wxDataViewModel::ItemAdded}\label{wxdataviewmodelitemadded}
201
202\func{virtual bool}{ItemAdded}{\param{const wxDataViewItem\& }{parent}, \param{const wxDataViewItem\& }{item}}
203
204Call this to inform the model that an item has been added
205to the data.
206
207\membersection{wxDataViewModel::ItemChanged}\label{wxdataviewmodelitemchanged}
208
209\func{virtual bool}{ItemChanged}{\param{const wxDataViewItem\& }{item}}
210
211Call this to inform the model that an item has changed.
212
213This will eventually emit a wxEVT\_DATAVIEW\_ITEM\_VALUE\_CHANGED
214event (in which the column fields will not be set) to the user.
215
216\membersection{wxDataViewModel::ItemsAdded}\label{wxdataviewmodelitemsadded}
217
218\func{virtual bool}{ItemsAdded}{\param{const wxDataViewItem\& }{parent}, \param{const wxDataViewItemArray\& }{items}}
219
220Call this to inform the model that several items have been added
221to the data.
222
223\membersection{wxDataViewModel::ItemsChanged}\label{wxdataviewmodelitemschanged}
224
225\func{virtual bool}{ItemsChanged}{\param{const wxDataViewItemArray\& }{items}}
226
227Call this to inform the model that several items have changed.
228
229This will eventually emit wxEVT\_DATAVIEW\_ITEM\_VALUE\_CHANGED
230events (in which the column fields will not be set) to the user.
231
232\membersection{wxDataViewModel::ItemsDeleted}\label{wxdataviewmodelitemsdeleted}
233
234\func{virtual bool}{ItemsDeleted}{\param{const wxDataViewItem\& }{parent}, \param{const wxDataViewItemArray\& }{items}}
235
236Call this to inform the model that several items have been deleted.
237
238\membersection{wxDataViewModel::RemoveNotifier}\label{wxdataviewmodelremovenotifier}
239
240\func{void}{RemoveNotifier}{\param{wxDataViewModelNotifier* }{notifier}}
241
242Remove the {\it notifier} from the list of notifiers.
243
244\membersection{wxDataViewModel::Resort}\label{wxdataviewmodelresort}
245
246\func{virtual void}{Resort}{\void}
247
248Call this to initiate a resort after the sort function has
249been changed.
250
251\membersection{wxDataViewModel::SetValue}\label{wxdataviewmodelsetvalue}
252
253\func{virtual bool}{SetValue}{\param{const wxVariant\& }{variant}, \param{const wxDataViewItem\& }{item}, \param{unsigned int }{col}}
254
255This gets called in order to set a value in the data model.
256The most common scenario is that the wxDataViewCtrl calls
257this method after the user changed some data in the view.
258Afterwards \helpref{ValueChanged}{wxdataviewmodelvaluechanged}
259has to be called!
260
261\membersection{wxDataViewModel::ValueChanged}\label{wxdataviewmodelvaluechanged}
262
263\func{virtual bool}{ValueChanged}{\param{const wxDataViewItem\& }{item}, \param{unsigned int }{col}}
264
265Call this to inform this model that a value in the model has
266been changed. This is also called from wxDataViewCtrl's
267internal editing code, e.g. when editing a text field
268in the control.
269
270This will eventually emit a wxEVT\_DATAVIEW\_ITEM\_VALUE\_CHANGED
271event to the user.
272