2 \section{\class{wxDataViewModel
}}\label{wxdataviewmodel
}
4 wxDataViewModel is the base class for all data model to be
5 displayed by a
\helpref{wxDataViewCtrl
}{wxdataviewctrl
}.
6 Currently, this class has no functionality at all and the
7 only existing implementation of it is the
8 \helpref{wxDataViewListModel
}{wxdataviewlistmodel
}. The
9 plan is to move all functionality of wxDataViewListModel
10 and a to-be-written wxDataViewTreeModel into wxDataViewModel
11 and make wxDataViewListModel and wxDataViewTreeModel subsets
12 of the abstract wxDataViewModel.
14 \wxheading{Derived from
}
16 \helpref{wxObject
}{wxobject
}
18 \wxheading{Include files
}
22 \membersection{wxDataViewModel::wxDataViewModel
}\label{wxdataviewmodelwxdataviewmodel
}
24 \func{}{wxDataViewModel
}{\void}
28 \membersection{wxDataViewModel::
\destruct{wxDataViewModel
}}\label{wxdataviewmodeldtor
}
30 \func{}{\destruct{wxDataViewModel
}}{\void}
34 \section{\class{wxDataViewListModel
}}\label{wxdataviewlistmodel
}
36 wxDataViewListModel is currently the only existing variant
37 of a
\helpref{wxDataViewModel
}{wxdataviewmodel
}. It allows
38 to define a table like data model to be displayed by a
39 \helpref{wxDataViewCtrl
}{wxdataviewctrl
}. You need to derive
40 from this class to define your own data model.
42 You need to override
\helpref{GetNumberOfRows
}{wxdataviewlistmodelgetnumberofrows
},
43 \helpref{GetNumberOfCols
}{wxdataviewlistmodelgetnumberofcols
},
44 \helpref{GetColType
}{wxdataviewlistmodelgetcoltype
} and
45 \helpref{GetValue
}{wxdataviewlistmodelgetvalue
} in order to
46 define the data model (which acts as an interface between
47 your actual data and the wxDataViewCtrl). Since you will
48 usually also allow the wxDataViewCtrl to change your data
49 through its graphical interface, you will also have to override
50 \helpref{SetValue
}{wxdataviewlistmodelsetvalue
} which the
51 wxDataViewCtrl will call when a change to some data has been
54 The data that is presented through this data model is expected
55 to change at run-time. You need to inform the data model that
56 a change happens. Depending on what happened you need to call
57 one of the following methods:
58 \helpref{ValueChanged
}{wxdataviewlistmodelvaluechanged
},
59 \helpref{RowChanged
}{wxdataviewlistmodelrowchanged
},
60 \helpref{RowAppended
}{wxdataviewlistmodelrowappended
},
61 \helpref{RowPrepended
}{wxdataviewlistmodelrowprepended
},
62 \helpref{RowInserted
}{wxdataviewlistmodelrowinserted
},
63 \helpref{RowDeleted
}{wxdataviewlistmodelrowdeleted
},
64 \helpref{RowsReordered
}{wxdataviewlistmodelrowsreordered
} or
65 \helpref{RowsCleared
}{wxdataviewlistmodelcleared
}.
69 wxDataViewModel and this class (as indeed the entire wxDataViewCtrl
70 code) is using
\helpref{wxVariant
}{wxvariant
} to store data and
71 its type in a generic way. wxVariant can be extended to contain
72 almost any data without changes to the original class.
74 This class maintains a list of
75 \helpref{wxDataListViewListModelNotifier
}{wxdataviewlistmodelnotifier
}
76 which link this class to the specific implementations on the
77 supported platforms so that e.g. calling
78 \helpref{ValueChanged
}{wxdataviewlistmodelvaluechanged
}
79 on this model will just call
80 \helpref{wxDataListViewListModelNotifier::ValueChanged
}{wxdataviewlistmodelnotifiervaluechanged
}
81 for each notifier that has been added. This is used both for
82 informing the native controls to redraw themselves and for informing
83 e.g. the
\helpref{wxDataViewSortedListModel
}{wxdataviewsortedlistmodel
}
84 to resort itself. You can also add your own notifier in order
85 to get informed about any changes to the data in the list model.
87 Additionally, this class maintains a list of all
88 \helpref{wxDataViewColumns
}{wxdataviewcolumn
} which
89 display a certain column of this list model. This is
90 mostly used internally.
92 \wxheading{Derived from
}
94 \helpref{wxDataViewModel
}{wxdataviewmodel
}\\
95 \helpref{wxObject
}{wxobject
}
97 \wxheading{Include files
}
102 \membersection{wxDataViewListModel::wxDataViewListModel
}\label{wxdataviewlistmodelwxdataviewlistmodel
}
104 \func{}{wxDataViewListModel
}{\void}
108 \membersection{wxDataViewListModel::
\destruct{wxDataViewListModel
}}\label{wxdataviewlistmodeldtor
}
110 \func{}{\destruct{wxDataViewListModel
}}{\void}
114 \membersection{wxDataViewListModel::AddNotifier
}\label{wxdataviewlistmodeladdnotifier
}
116 \func{void
}{AddNotifier
}{\param{wxDataViewListModelNotifier*
}{notifier
}}
118 Adds
{\it notifier
} to the internal list of notifers.
120 See also
\helpref{RemoveNotifier
}{wxdataviewlistmodelremovenotifier
}.
122 \membersection{wxDataViewListModel::AddViewingColumn
}\label{wxdataviewlistmodeladdviewingcolumn
}
124 \func{void
}{AddViewingColumn
}{\param{wxDataViewColumn*
}{view
\_column},
\param{unsigned int
}{model
\_column}}
126 Used internally. Used for maintaining a list of
127 \helpref{wxDataViewColumn
}{wxdataviewcolumn
} that
128 display a certain column of this model.
130 \membersection{wxDataViewListModel::Cleared
}\label{wxdataviewlistmodelcleared
}
132 \func{bool
}{virtual Cleared
}{\void}
134 Call this if all data in your model has been cleared.
136 \membersection{wxDataViewListModel::GetColType
}\label{wxdataviewlistmodelgetcoltype
}
138 \func{virtual wxString
}{GetColType
}{\param{unsigned int
}{col
}}
140 Override this to indicate what type of data is stored in the
141 column specified by
{\it col
}. This should return a string
142 indicating the type of data as reported by
\helpref{wxVariant
}{wxvariant
}.
144 \membersection{wxDataViewListModel::GetNumberOfCols
}\label{wxdataviewlistmodelgetnumberofcols
}
146 \func{virtual unsigned int
}{GetNumberOfCols
}{\void}
148 Override this to indicate, how many columns the list
151 \membersection{wxDataViewListModel::GetNumberOfRows
}\label{wxdataviewlistmodelgetnumberofrows
}
153 \func{virtual unsigned int
}{GetNumberOfRows
}{\void}
155 Override this to indicate, how many rows the list
158 \membersection{wxDataViewListModel::GetValue
}\label{wxdataviewlistmodelgetvalue
}
160 \func{virtual void
}{GetValue
}{\param{wxVariant\&
}{variant
},
\param{unsigned int
}{col
},
\param{unsigned int
}{row
}}
162 Override this to indicate the value of a given value
163 in the list model. A
\helpref{wxVariant
}{wxvariant
}
164 is used to store the data.
166 \membersection{wxDataViewListModel::RemoveNotifier
}\label{wxdataviewlistmodelremovenotifier
}
168 \func{void
}{RemoveNotifier
}{\param{wxDataViewListModelNotifier*
}{notifier
}}
170 Removes the notifier from the list of notifiers.
172 See also
\helpref{AddNotifier
}{wxdataviewlistmodeladdnotifier
}.
174 \membersection{wxDataViewListModel::RemoveViewingColumn
}\label{wxdataviewlistmodelremoveviewingcolumn
}
176 \func{void
}{RemoveViewingColumn
}{\param{wxDataViewColumn*
}{column
}}
178 Used internally. Used for maintaining a list of
179 \helpref{wxDataViewColumn
}{wxdataviewcolumn
} that
180 display a certain column of this model.
182 \membersection{wxDataViewListModel::RowAppended
}\label{wxdataviewlistmodelrowappended
}
184 \func{virtual bool
}{RowAppended
}{\void}
186 Call this if a row has been appended to the list model.
188 \membersection{wxDataViewListModel::RowChanged
}\label{wxdataviewlistmodelrowchanged
}
190 \func{virtual bool
}{RowChanged
}{\param{unsigned int
}{row
}}
192 Call this if the values of this row have been changed.
194 \membersection{wxDataViewListModel::RowDeleted
}\label{wxdataviewlistmodelrowdeleted
}
196 \func{virtual bool
}{RowDeleted
}{\param{unsigned int
}{row
}}
198 Call this if this row has been deleted.
200 \membersection{wxDataViewListModel::RowInserted
}\label{wxdataviewlistmodelrowinserted
}
202 \func{virtual bool
}{RowInserted
}{\param{unsigned int
}{before
}}
204 Call this if a row has been inserted.
206 \membersection{wxDataViewListModel::RowPrepended
}\label{wxdataviewlistmodelrowprepended
}
208 \func{virtual bool
}{RowPrepended
}{\void}
210 Call this if a row has been prepended.
212 \membersection{wxDataViewListModel::RowsReordered
}\label{wxdataviewlistmodelrowsreordered
}
214 \func{virtual bool
}{RowsReordered
}{\param{unsigned int*
}{new
\_order}}
216 Call this if the rows have been reorderd.
218 \membersection{wxDataViewListModel::SetValue
}\label{wxdataviewlistmodelsetvalue
}
220 \func{virtual bool
}{SetValue
}{\param{wxVariant\&
}{variant
},
\param{unsigned int
}{col
},
\param{unsigned int
}{row
}}
222 This method gets called by e.g. the wxDataViewCtrl class if a
223 value has been changed through its graphical interface. You
224 need to override this method in order to update the data in
225 the underlying data structur. Afterwards,
226 \helpref{ValueChanged
}{wxdataviewlistmodelvaluechanged
} is called.
229 \membersection{wxDataViewListModel::ValueChanged
}\label{wxdataviewlistmodelvaluechanged
}
231 \func{virtual bool
}{ValueChanged
}{\param{unsigned int
}{col
},
\param{unsigned int
}{row
}}
233 Call this if a value in the model has been changed.
236 \section{\class{wxDataViewSortedListModel
}}\label{wxdataviewsortedlistmodel
}
238 This class is used for sorting data. It does not contain any
239 data itself. Rather, it provides a sorted interface for
242 Currently, the sorting algorithm isn't thread safe. This needs
245 \wxheading{Derived from
}
247 \helpref{wxDataViewListModel
}{wxdataviewlistmodel
}\\
248 \helpref{wxDataViewModel
}{wxdataviewmodel
}\\
249 \helpref{wxObject
}{wxobject
}
251 \wxheading{Include files
}
255 \membersection{wxDataViewSortedListModel::wxDataViewSortedListModel
}\label{wxdataviewsortedlistmodelwxdataviewsortedlistmodel
}
257 \func{}{wxDataViewSortedListModel
}{\param{wxDataViewListModel*
}{child
}}
259 Constructor.
{\it child
} is the child data model the data of
260 which this model is supposed to present in a sorted way.
262 \membersection{wxDataViewSortedListModel::
\destruct{wxDataViewSortedListModel
}}\label{wxdataviewsortedlistmodeldtor
}
264 \func{}{\destruct{wxDataViewSortedListModel
}}{\void}
268 \membersection{wxDataViewSortedListModel::GetAscending
}\label{wxdataviewsortedlistmodelgetascending
}
270 \func{bool
}{GetAscending
}{\void}
272 Returns true if the data is sorted in ascending order.
274 \membersection{wxDataViewSortedListModel::Resort
}\label{wxdataviewsortedlistmodelresort
}
276 \func{void
}{Resort
}{\void}
278 Tell the model to resort its data.
280 \membersection{wxDataViewSortedListModel::SetAscending
}\label{wxdataviewsortedlistmodelsetascending
}
282 \func{void
}{SetAscending
}{\param{bool
}{ascending
}}
284 Set the sort order of the data.