• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:to

4 wxDataViewModel is the base class for all data model to be
9 plan is to move all functionality of wxDataViewListModel
10 and a to-be-written wxDataViewTreeModel into wxDataViewModel
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},
45 \helpref{GetValue}{wxdataviewlistmodelgetvalue} in order to
48 usually also allow the wxDataViewCtrl to change your data
49 through its graphical interface, you will also have to override
51 wxDataViewCtrl will call when a change to some data has been
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
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.
76 which link this class to the specific implementations on the
82 informing the native controls to redraw themselves and for informing
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.
118 Adds {\it notifier} to the internal list of notifers.
140 Override this to indicate what type of data is stored in the
148 Override this to indicate, how many columns the list
155 Override this to indicate, how many rows the list
162 Override this to indicate the value of a given value
164 is used to store the data.
186 Call this if a row has been appended to the list model.
224 need to override this method in order to update the data in
243 to be fixed.
260 which this model is supposed to present in a sorted way.
278 Tell the model to resort its data.