public:
wxDataViewCtrl() : wxScrollHelperNative(this)
{
- //No sorting column at start, I think
- m_sortingColumn = NULL;
Init();
}
const wxValidator& validator = wxDefaultValidator )
: wxScrollHelperNative(this)
{
- m_sortingColumn = NULL;
Create(parent, id, pos, size, style, validator );
}
const wxValidator& validator = wxDefaultValidator );
virtual bool AssociateModel( wxDataViewModel *model );
+
virtual bool AppendColumn( wxDataViewColumn *col );
virtual bool PrependColumn( wxDataViewColumn *col );
+ virtual bool InsertColumn( unsigned int pos, wxDataViewColumn *col );
virtual void DoSetExpanderColumn();
virtual void DoSetIndent();
virtual void Expand( const wxDataViewItem & item );
virtual void Collapse( const wxDataViewItem & item );
+
+ virtual void SetFocus();
protected:
virtual int GetSelections( wxArrayInt & sel ) const;
private:
void OnSize( wxSizeEvent &event );
+ virtual wxSize GetSizeAvailableForScrollTarget(const wxSize& size);
// we need to return a special WM_GETDLGCODE value to process just the
// arrows but let the other navigation characters through