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

Lines Matching defs:wxDataViewListModel

35 // wxDataViewListModel
38 IMPLEMENT_ABSTRACT_CLASS(wxDataViewListModel, wxDataViewModel)
40 wxDataViewListModel::wxDataViewListModel()
46 wxDataViewListModel::~wxDataViewListModel()
50 bool wxDataViewListModel::RowAppended()
66 bool wxDataViewListModel::RowPrepended()
82 bool wxDataViewListModel::RowInserted( unsigned int before )
98 bool wxDataViewListModel::RowDeleted( unsigned int row )
114 bool wxDataViewListModel::RowChanged( unsigned int row )
130 bool wxDataViewListModel::ValueChanged( unsigned int col, unsigned int row )
146 bool wxDataViewListModel::RowsReordered( unsigned int *new_order )
162 bool wxDataViewListModel::Cleared()
178 void wxDataViewListModel::AddViewingColumn( wxDataViewColumn *view_column, unsigned int model_column )
183 void wxDataViewListModel::RemoveViewingColumn( wxDataViewColumn *column )
200 void wxDataViewListModel::AddNotifier( wxDataViewListModelNotifier *notifier )
206 void wxDataViewListModel::RemoveNotifier( wxDataViewListModelNotifier *notifier )
253 (unsigned int row1, unsigned int row2, unsigned int col, wxDataViewListModel* model )
291 (unsigned int row1, unsigned int row2, unsigned int col, wxDataViewListModel* model )
297 static wxDataViewListModel *s_CmpModel;
309 IMPLEMENT_ABSTRACT_CLASS(wxDataViewSortedListModel, wxDataViewListModel)
311 wxDataViewSortedListModel::wxDataViewSortedListModel( wxDataViewListModel *child ) :
352 static void Dump( wxDataViewListModel *model, unsigned int col )
376 return wxDataViewListModel::RowPrepended();
379 return wxDataViewListModel::RowAppended();
381 return wxDataViewListModel::RowInserted( pos );
398 return wxDataViewListModel::RowPrepended();
401 return wxDataViewListModel::RowAppended();
403 return wxDataViewListModel::RowInserted( pos );
421 return wxDataViewListModel::RowPrepended();
424 return wxDataViewListModel::RowAppended();
426 return wxDataViewListModel::RowInserted( pos );
456 return wxDataViewListModel::RowDeleted( (unsigned int) pos);
484 return wxDataViewListModel::RowChanged( start_pos );
506 wxDataViewListModel::RowsReordered( order );
538 return wxDataViewListModel::ValueChanged( col, start_pos );
560 wxDataViewListModel::RowsReordered( order );
577 return wxDataViewListModel::Cleared();
789 bool wxDataViewCtrlBase::AssociateModel( wxDataViewListModel *model )
796 wxDataViewListModel* wxDataViewCtrlBase::GetModel()