|
|
|
@ -462,16 +462,8 @@ ChoicePage::doAlongsideSetupSplitter( const QModelIndex& current,
|
|
|
|
|
|
|
|
|
|
setNextEnabled( m_beforePartitionBarsView->selectionModel()->currentIndex().isValid() );
|
|
|
|
|
|
|
|
|
|
QList< Partition* > efiSystemPartitions = m_core->efiSystemPartitions();
|
|
|
|
|
if ( m_isEfi && m_efiLabel && efiSystemPartitions.count() <= 1 ) //should never happen
|
|
|
|
|
{
|
|
|
|
|
m_efiLabel->show();
|
|
|
|
|
}
|
|
|
|
|
else if ( m_isEfi && m_efiLabel && efiSystemPartitions.count() > 1 )
|
|
|
|
|
{
|
|
|
|
|
m_efiLabel->show();
|
|
|
|
|
m_efiComboBox->show();
|
|
|
|
|
}
|
|
|
|
|
if ( m_isEfi )
|
|
|
|
|
setupEfiSystemPartitionSelector();
|
|
|
|
|
|
|
|
|
|
cDebug() << "Partition selected for Alongside.";
|
|
|
|
|
}
|
|
|
|
@ -592,16 +584,8 @@ ChoicePage::doReplaceSelectedPartition( const QModelIndex& current,
|
|
|
|
|
} ),
|
|
|
|
|
[=]
|
|
|
|
|
{
|
|
|
|
|
QList< Partition* > efiSystemPartitions = m_core->efiSystemPartitions();
|
|
|
|
|
if ( m_isEfi && m_efiLabel && efiSystemPartitions.count() <= 1 ) //should never happen
|
|
|
|
|
{
|
|
|
|
|
m_efiLabel->show();
|
|
|
|
|
}
|
|
|
|
|
else if ( m_isEfi && m_efiLabel && efiSystemPartitions.count() > 1 )
|
|
|
|
|
{
|
|
|
|
|
m_efiLabel->show();
|
|
|
|
|
m_efiComboBox->show();
|
|
|
|
|
}
|
|
|
|
|
if ( m_isEfi )
|
|
|
|
|
setupEfiSystemPartitionSelector();
|
|
|
|
|
|
|
|
|
|
setNextEnabled( !m_beforePartitionBarsView->selectionModel()->selectedRows().isEmpty() );
|
|
|
|
|
if ( !m_bootloaderComboBox.isNull() &&
|
|
|
|
@ -841,9 +825,31 @@ ChoicePage::updateActionChoicePreview( ChoicePage::Choice choice )
|
|
|
|
|
m_efiComboBox = new QComboBox( m_previewAfterFrame );
|
|
|
|
|
efiLayout->addWidget( m_efiComboBox );
|
|
|
|
|
m_efiLabel->setBuddy( m_efiComboBox );
|
|
|
|
|
m_efiLabel->hide();
|
|
|
|
|
m_efiComboBox->hide();
|
|
|
|
|
efiLayout->addStretch();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Also handle selection behavior on beforeFrame.
|
|
|
|
|
QAbstractItemView::SelectionMode previewSelectionMode;
|
|
|
|
|
switch ( m_choice )
|
|
|
|
|
{
|
|
|
|
|
case Replace:
|
|
|
|
|
case Alongside:
|
|
|
|
|
previewSelectionMode = QAbstractItemView::SingleSelection;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
previewSelectionMode = QAbstractItemView::NoSelection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_beforePartitionBarsView->setSelectionMode( previewSelectionMode );
|
|
|
|
|
m_beforePartitionLabelsView->setSelectionMode( previewSelectionMode );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ChoicePage::setupEfiSystemPartitionSelector()
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT( m_isEfi );
|
|
|
|
|
|
|
|
|
|
// Only the already existing ones:
|
|
|
|
|
QList< Partition* > efiSystemPartitions = m_core->efiSystemPartitions();
|
|
|
|
@ -882,22 +888,6 @@ ChoicePage::updateActionChoicePreview( ChoicePage::Choice choice )
|
|
|
|
|
m_efiComboBox->setCurrentIndex( i );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Also handle selection behavior on beforeFrame.
|
|
|
|
|
QAbstractItemView::SelectionMode previewSelectionMode;
|
|
|
|
|
switch ( m_choice )
|
|
|
|
|
{
|
|
|
|
|
case Replace:
|
|
|
|
|
case Alongside:
|
|
|
|
|
previewSelectionMode = QAbstractItemView::SingleSelection;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
previewSelectionMode = QAbstractItemView::NoSelection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_beforePartitionBarsView->setSelectionMode( previewSelectionMode );
|
|
|
|
|
m_beforePartitionLabelsView->setSelectionMode( previewSelectionMode );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|