Add a SelectionFilter lambda for Alongside.

main
Teo Mrnjavac 9 years ago
parent ddf4878ec7
commit 65230c7954

@ -24,6 +24,7 @@
#include "core/DeviceModel.h" #include "core/DeviceModel.h"
#include "core/PartitionModel.h" #include "core/PartitionModel.h"
#include "core/OsproberEntry.h" #include "core/OsproberEntry.h"
#include "core/PartUtils.h"
#include "ReplaceWidget.h" #include "ReplaceWidget.h"
#include "PrettyRadioButton.h" #include "PrettyRadioButton.h"
@ -676,9 +677,17 @@ ChoicePage::updateDeviceStatePreview()
switch ( m_choice ) switch ( m_choice )
{ {
case Replace: case Replace:
m_beforePartitionBarsView->setSelectionMode( QAbstractItemView::SingleSelection );
m_beforePartitionLabelsView->setSelectionMode( QAbstractItemView::SingleSelection );
break;
case Alongside: case Alongside:
m_beforePartitionBarsView->setSelectionMode( QAbstractItemView::SingleSelection ); m_beforePartitionBarsView->setSelectionMode( QAbstractItemView::SingleSelection );
m_beforePartitionLabelsView->setSelectionMode( QAbstractItemView::SingleSelection ); m_beforePartitionLabelsView->setSelectionMode( QAbstractItemView::SingleSelection );
m_beforePartitionBarsView->setSelectionFilter( [ this ]( const QModelIndex& index )
{
return PartUtils::canBeResized( m_core,
index.data( PartitionModel::PartitionPathRole ).toString() );
});
break; break;
default: default:
m_beforePartitionBarsView->setSelectionMode( QAbstractItemView::NoSelection ); m_beforePartitionBarsView->setSelectionMode( QAbstractItemView::NoSelection );

Loading…
Cancel
Save