// Created: 06/01/06
// RCS-ID: $Id$
// Copyright: (c) Robert Roebling
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
class MyListModel: public wxDataViewVirtualListModel
{
public:
+ enum
+ {
+ Col_EditableText,
+ Col_IconText,
+ Col_TextWithAttr,
+ Col_Custom,
+ Col_Max
+ };
+
MyListModel();
// helper methods to change the model
virtual unsigned int GetColumnCount() const
{
- return 3;
+ return Col_Max;
}
virtual wxString GetColumnType( unsigned int col ) const
{
- if (col == 1)
+ if (col == Col_IconText)
return wxT("wxDataViewIconText");
return wxT("string");
}
- virtual unsigned int GetRowCount()
- {
- return m_textColValues.GetCount();
- }
-
virtual void GetValueByRow( wxVariant &variant,
unsigned int row, unsigned int col ) const;
virtual bool GetAttrByRow( unsigned int row, unsigned int col,
wxArrayString m_textColValues;
wxArrayString m_iconColValues;
wxIcon m_icon[2];
- int m_virtualItems;
};