2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2018-06-26 05:38:52 +02:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2018 Caio Jordão Carvalho <caiojcarvalho@gmail.com>
|
|
|
|
* SPDX-FileCopyrightText: 2019 Adriaan de Groot <groot@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2018-06-26 05:38:52 +02:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2018-06-26 05:38:52 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ResizeVolumeGroupDialog.h"
|
|
|
|
|
|
|
|
#include "gui/ListPhysicalVolumeWidgetItem.h"
|
|
|
|
|
|
|
|
#include <kpmcore/core/lvmdevice.h>
|
|
|
|
#include <kpmcore/util/capacity.h>
|
|
|
|
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QListWidgetItem>
|
|
|
|
#include <QSpinBox>
|
|
|
|
|
2020-08-22 01:19:58 +02:00
|
|
|
ResizeVolumeGroupDialog::ResizeVolumeGroupDialog( LvmDevice* device,
|
2019-04-01 13:50:59 +02:00
|
|
|
const PartitionVector& availablePVs,
|
|
|
|
PartitionVector& selectedPVs,
|
2018-06-26 05:38:52 +02:00
|
|
|
QWidget* parent )
|
|
|
|
: VolumeGroupBaseDialog( device->name(), device->physicalVolumes(), parent )
|
|
|
|
, m_selectedPVs( selectedPVs )
|
|
|
|
{
|
2019-02-22 13:03:38 +01:00
|
|
|
setWindowTitle( tr( "Resize Volume Group" ) );
|
2018-06-26 05:38:52 +02:00
|
|
|
|
|
|
|
for ( int i = 0; i < pvList()->count(); i++ )
|
2020-08-22 01:19:58 +02:00
|
|
|
{
|
|
|
|
pvList()->item( i )->setCheckState( Qt::Checked );
|
|
|
|
}
|
2018-06-26 05:38:52 +02:00
|
|
|
|
|
|
|
for ( const Partition* p : availablePVs )
|
2020-08-22 01:19:58 +02:00
|
|
|
{
|
2018-06-26 05:38:52 +02:00
|
|
|
pvList()->addItem( new ListPhysicalVolumeWidgetItem( p, false ) );
|
2020-08-22 01:19:58 +02:00
|
|
|
}
|
2018-06-26 05:38:52 +02:00
|
|
|
|
2020-08-22 01:19:58 +02:00
|
|
|
peSize()->setValue(
|
|
|
|
static_cast< int >( device->peSize() / Capacity::unitFactor( Capacity::Unit::Byte, Capacity::Unit::MiB ) ) );
|
2018-06-26 05:38:52 +02:00
|
|
|
|
|
|
|
vgName()->setEnabled( false );
|
|
|
|
peSize()->setEnabled( false );
|
|
|
|
vgType()->setEnabled( false );
|
|
|
|
|
|
|
|
setUsedSizeValue( device->allocatedPE() * device->peSize() );
|
|
|
|
setLVQuantity( device->partitionTable()->children().count() );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ResizeVolumeGroupDialog::accept()
|
|
|
|
{
|
|
|
|
m_selectedPVs << checkedItems();
|
|
|
|
|
|
|
|
QDialog::accept();
|
|
|
|
}
|