virtual bool ValueChanged( const wxDataViewItem &item, unsigned int col ) = 0;
virtual bool Cleared() = 0;
- // this is needed for the virtual list model under GTK+
- virtual bool BeforeReset( size_t WXUNUSED(old_size), size_t WXUNUSED(new_size) ) { return true; }
+ // some platforms, such as GTK+, may need a two step procedure for ::Reset()
+ virtual bool BeforeReset() { return true; }
virtual bool AfterReset() { return Cleared(); }
virtual void Resort() = 0;
bool ValueChanged( const wxDataViewItem &item, unsigned int col );
bool Cleared();
- // this is needed for the virtual list model under GTK+
- bool BeforeReset( size_t old_size, size_t new_size );
+ // some platforms, such as GTK+, may need a two step procedure for ::Reset()
+ bool BeforeReset();
bool AfterReset();
// helper methods provided by list models only
virtual unsigned GetRow( const wxDataViewItem &item ) const = 0;
+ // returns the number of rows
+ virtual unsigned int GetCount() const = 0;
// implement some base class pure virtual directly
virtual wxDataViewItem
return GetAttrByRow( GetRow(item), col, attr );
}
+
virtual bool IsListModel() const { return true; }
};