2018-05-15 11:40:52 +02:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2014, Aurélien Gâteau <agateau@kde.org>
|
|
|
|
* Copyright 2016, Teo Mrnjavac <teo@kde.org>
|
|
|
|
* Copyright 2018, Adriaan de Groot <groot@kde.org>
|
|
|
|
*
|
|
|
|
* Calamares is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Calamares is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-05-16 14:34:33 +02:00
|
|
|
#include "PartitionDialogHelpers.h"
|
2018-05-15 11:40:52 +02:00
|
|
|
|
|
|
|
#include "core/PartUtils.h"
|
|
|
|
|
|
|
|
#include "GlobalStorage.h"
|
|
|
|
#include "JobQueue.h"
|
2018-05-15 12:30:18 +02:00
|
|
|
#include "utils/Logger.h"
|
2018-05-15 11:40:52 +02:00
|
|
|
|
|
|
|
#include <QComboBox>
|
2018-05-16 14:41:47 +02:00
|
|
|
#include <QListWidget>
|
2018-05-15 11:40:52 +02:00
|
|
|
|
|
|
|
QStringList
|
|
|
|
standardMountPoints()
|
|
|
|
{
|
2018-05-15 14:06:45 +02:00
|
|
|
QStringList mountPoints{ "/", "/boot", "/home", "/opt", "/srv", "/usr", "/var" };
|
2018-05-15 11:40:52 +02:00
|
|
|
if ( PartUtils::isEfiSystem() )
|
|
|
|
mountPoints << Calamares::JobQueue::instance()->globalStorage()->value( "efiSystemPartition" ).toString();
|
|
|
|
mountPoints.removeDuplicates();
|
|
|
|
mountPoints.sort();
|
|
|
|
return mountPoints;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
standardMountPoints(QComboBox& combo)
|
|
|
|
{
|
|
|
|
combo.clear();
|
|
|
|
combo.addItem( combo.tr( "(no mount point)" ) );
|
|
|
|
combo.addItems( standardMountPoints() );
|
|
|
|
}
|
|
|
|
|
2018-05-15 12:13:19 +02:00
|
|
|
void
|
|
|
|
standardMountPoints(QComboBox& combo, const QString& selected)
|
|
|
|
{
|
|
|
|
standardMountPoints( combo );
|
2018-05-16 12:15:33 +02:00
|
|
|
setSelectedMountPoint( combo, selected );
|
2018-05-15 12:13:19 +02:00
|
|
|
}
|
2018-05-15 12:30:18 +02:00
|
|
|
|
|
|
|
QString
|
|
|
|
selectedMountPoint(QComboBox& combo)
|
|
|
|
{
|
|
|
|
if ( combo.currentIndex() == 0 )
|
|
|
|
return QString();
|
|
|
|
return combo.currentText();
|
|
|
|
}
|
2018-05-15 14:01:18 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
setSelectedMountPoint(QComboBox& combo, const QString& selected)
|
|
|
|
{
|
|
|
|
if ( selected.isEmpty() )
|
|
|
|
combo.setCurrentIndex( 0 ); // (no mount point)
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for ( int i = 0; i < combo.count(); ++i )
|
|
|
|
if ( selected == combo.itemText( i ) )
|
|
|
|
{
|
|
|
|
combo.setCurrentIndex( i );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
combo.addItem( selected );
|
|
|
|
combo.setCurrentIndex( combo.count() - 1);
|
|
|
|
}
|
|
|
|
}
|
2018-05-16 14:41:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
PartitionTable::Flags
|
|
|
|
flagsFromList( const QListWidget& list )
|
|
|
|
{
|
|
|
|
PartitionTable::Flags flags;
|
|
|
|
|
|
|
|
for ( int i = 0; i < list.count(); i++ )
|
|
|
|
if ( list.item( i )->checkState() == Qt::Checked )
|
|
|
|
flags |= static_cast< PartitionTable::Flag >(
|
|
|
|
list.item( i )->data( Qt::UserRole ).toInt() );
|
|
|
|
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2018-05-16 15:04:47 +02:00
|
|
|
void
|
|
|
|
setFlagList( QListWidget& list, PartitionTable::Flags available, PartitionTable::Flags checked )
|
|
|
|
{
|
|
|
|
int f = 1;
|
|
|
|
QString s;
|
|
|
|
while ( !( s = PartitionTable::flagName( static_cast< PartitionTable::Flag >( f ) ) ).isEmpty() )
|
|
|
|
{
|
|
|
|
if ( available & f )
|
|
|
|
{
|
|
|
|
QListWidgetItem* item = new QListWidgetItem( s );
|
|
|
|
list.addItem( item );
|
|
|
|
item->setFlags( Qt::ItemIsUserCheckable | Qt::ItemIsEnabled );
|
|
|
|
item->setData( Qt::UserRole, f );
|
|
|
|
item->setCheckState( ( checked & f ) ?
|
|
|
|
Qt::Checked :
|
|
|
|
Qt::Unchecked );
|
|
|
|
}
|
|
|
|
|
|
|
|
f <<= 1;
|
|
|
|
}
|
|
|
|
}
|