Added wxDataViewBitmapCell

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41473 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-09-26 22:17:00 +00:00
parent 2f62094615
commit cbc9145c04
3 changed files with 82 additions and 10 deletions

View File

@@ -58,6 +58,23 @@ protected:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextCell)
};
// ---------------------------------------------------------
// wxDataViewBitmapCell
// ---------------------------------------------------------
class wxDataViewBitmapCell: public wxDataViewCell
{
public:
wxDataViewBitmapCell( const wxString &varianttype = wxT("wxBitmap"),
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
bool SetValue( const wxVariant &value );
bool GetValue( wxVariant &value );
protected:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapCell)
};
// ---------------------------------------------------------
// wxDataViewToggleCell
// ---------------------------------------------------------