Add notifier class.

Only use listmodel for now, treemodel later.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-02-21 20:52:05 +00:00
parent 111f83c49e
commit 6e2e590f2a
4 changed files with 93 additions and 10 deletions

View File

@@ -111,11 +111,11 @@ public:
virtual bool AppendStringColumn( const wxString &label ) = 0;
virtual bool AssociateModel( wxDataViewModel *model );
wxDataViewModel* GetModel();
virtual bool AssociateModel( wxDataViewListModel *model );
wxDataViewListModel* GetModel();
private:
wxDataViewModel *m_model;
wxDataViewListModel *m_model;
protected:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCtrlBase)