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 );
}
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