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

68 lines
2.0 KiB
C
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
*
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 Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#ifndef PARTITION_GUI_PARTITIONDIALOGHELPERS
#define PARTITION_GUI_PARTITIONDIALOGHELPERS
#include <kpmcore/core/partitiontable.h>
#include <QStringList>
class QComboBox;
class QListWidget;
/**
* Returns a list of standard mount points (e.g. /, /usr, ...).
* This also includes the EFI mount point if that is necessary
* on the target system.
*/
QStringList standardMountPoints();
/**
* Clears the combobox and fills it with "(no mount point)"
* and the elements of standardMountPoints(), above.
*/
void standardMountPoints( QComboBox& );
/**
* As above, but also sets the displayed mount point to @p selected,
* unless it is empty, in which case "(no mount point)" is chosen.
*/
void standardMountPoints( QComboBox&, const QString& selected );
/**
* Get the mount point selected in the combo box (which should
* have been set up with standardMountPoints(), above); this
* will map the topmost item (i.e. "(no mount point)") back
* to blank, to allow easy detection of no-mount-selected.
*/
QString selectedMountPoint( QComboBox& combo );
2020-08-22 01:19:58 +02:00
static inline QString
selectedMountPoint( QComboBox* combo )
{
return selectedMountPoint( *combo );
}
void setSelectedMountPoint( QComboBox& combo, const QString& selected );
2020-08-22 01:19:58 +02:00
static inline void
setSelectedMountPoint( QComboBox* combo, const QString& selected )
{
setSelectedMountPoint( *combo, selected );
}
/**
* Get the flags that have been checked in the list widget.
*/
PartitionTable::Flags flagsFromList( const QListWidget& list );
void setFlagList( QListWidget& list, PartitionTable::Flags available, PartitionTable::Flags checked );
#endif