Added selection API.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41585 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1797,6 +1797,33 @@ bool wxDataViewCtrl::AppendColumn( wxDataViewColumn *col )
|
||||
return true;
|
||||
}
|
||||
|
||||
void wxDataViewCtrl::SetSelection( int row )
|
||||
{
|
||||
}
|
||||
|
||||
void wxDataViewCtrl::SetSelectionRange( unsigned int from, unsigned int to )
|
||||
{
|
||||
}
|
||||
|
||||
void wxDataViewCtrl::SetSelections( const wxArrayInt& aSelections)
|
||||
{
|
||||
}
|
||||
|
||||
bool wxDataViewCtrl::IsSelected( unsigned int row ) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
int wxDataViewCtrl::GetSelection() const
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int wxDataViewCtrl::GetSelections(wxArrayInt& aSelections) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
// !wxUSE_GENERICDATAVIEWCTRL
|
||||
|
||||
|
Reference in New Issue
Block a user