Make generic wxDataViewCtrl draw its contents.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38295 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-03-23 11:02:20 +00:00
parent 4bc6f7a06c
commit 90675b9582
2 changed files with 68 additions and 5 deletions

View File

@@ -91,6 +91,9 @@ public:
bool Render( wxRect cell, wxDC *dc, int state );
wxSize GetSize();
private:
wxString m_text;
protected:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextCell)
};
@@ -111,6 +114,9 @@ public:
bool Render( wxRect cell, wxDC *dc, int state );
wxSize GetSize();
private:
bool m_toggle;
protected:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleCell)
};