calamares/src/modules/partition/gui/PartitionDialogHelpers.cpp

125 lines
3.4 KiB
C++
Raw Normal View History

/* === This file is part of Calamares - <https://github.com/calamares> ===
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2014 Aurélien Gâteau <agateau@kde.org>
* SPDX-FileCopyrightText: 2016 Teo Mrnjavac <teo@kde.org>
* SPDX-FileCopyrightText: 2018-2019 Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* 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/>.
*/
#include "PartitionDialogHelpers.h"
#include "core/PartUtils.h"
#include "GlobalStorage.h"
#include "JobQueue.h"
#include "utils/Logger.h"
#include <QComboBox>
#include <QListWidget>
QStringList
standardMountPoints()
{
2020-08-22 01:19:58 +02:00
QStringList mountPoints { "/", "/boot", "/home", "/opt", "/srv", "/usr", "/var" };
if ( PartUtils::isEfiSystem() )
2020-08-22 01:19:58 +02:00
{
mountPoints << Calamares::JobQueue::instance()->globalStorage()->value( "efiSystemPartition" ).toString();
2020-08-22 01:19:58 +02:00
}
mountPoints.removeDuplicates();
mountPoints.sort();
return mountPoints;
}
void
2020-08-22 01:19:58 +02:00
standardMountPoints( QComboBox& combo )
{
combo.clear();
combo.addItem( QObject::tr( "(no mount point)" ) );
combo.addItems( standardMountPoints() );
}
void
2020-08-22 01:19:58 +02:00
standardMountPoints( QComboBox& combo, const QString& selected )
{
standardMountPoints( combo );
setSelectedMountPoint( combo, selected );
}
QString
2020-08-22 01:19:58 +02:00
selectedMountPoint( QComboBox& combo )
{
if ( combo.currentIndex() == 0 )
2020-08-22 01:19:58 +02:00
{
return QString();
2020-08-22 01:19:58 +02:00
}
return combo.currentText();
}
void
2020-08-22 01:19:58 +02:00
setSelectedMountPoint( QComboBox& combo, const QString& selected )
{
if ( selected.isEmpty() )
2020-08-22 01:19:58 +02:00
{
combo.setCurrentIndex( 0 ); // (no mount point)
2020-08-22 01:19:58 +02:00
}
else
{
for ( int i = 0; i < combo.count(); ++i )
if ( selected == combo.itemText( i ) )
{
combo.setCurrentIndex( i );
return;
}
combo.addItem( selected );
2020-08-22 01:19:58 +02:00
combo.setCurrentIndex( combo.count() - 1 );
}
}
PartitionTable::Flags
flagsFromList( const QListWidget& list )
{
PartitionTable::Flags flags;
for ( int i = 0; i < list.count(); i++ )
if ( list.item( i )->checkState() == Qt::Checked )
2020-08-22 01:19:58 +02:00
{
flags |= static_cast< PartitionTable::Flag >( list.item( i )->data( Qt::UserRole ).toInt() );
}
return flags;
}
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 );
2020-08-22 01:19:58 +02:00
item->setCheckState( ( checked & f ) ? Qt::Checked : Qt::Unchecked );
}
f <<= 1;
}
}