Added generic MVC hookup code.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37749 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-02-27 13:09:41 +00:00
parent 7ea3a0de1e
commit b5d777c78e
3 changed files with 72 additions and 3 deletions

View File

@@ -736,6 +736,7 @@ public:
virtual bool RowChanged( size_t row );
virtual bool ValueChanged( size_t col, size_t row );
virtual bool Cleared();
virtual bool ValueChanged( wxDataViewColumn *view_column, size_t model_column, size_t row );
GtkWxListStore *m_gtk_store;
wxDataViewListModel *m_wx_model;
@@ -814,6 +815,11 @@ bool wxGtkDataViewListModelNotifier::Cleared()
return false;
}
bool wxGtkDataViewListModelNotifier::ValueChanged( wxDataViewColumn *view_column, size_t model_column, size_t row )
{
return false;
}
// ---------------------------------------------------------
// wxDataViewCell
// ---------------------------------------------------------