dd8e53dc22
Contributions from: Adriaan de Groot <groot@kde.org> Gabriel Craciunescu <crazy@frugalware.org> AlmAck <gluca86@gmail.com> Andrius Štikonas <andrius@stikonas.eu> Caio Carvalho <caiojcarvalho@gmail.com> Raul Rodrigo Segura <raurodse@gmail.com>
87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
/* === 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/>.
|
|
*/
|
|
|
|
#ifndef CREATEPARTITIONDIALOG_H
|
|
#define CREATEPARTITIONDIALOG_H
|
|
|
|
// KPMcore
|
|
#include <kpmcore/core/partitionrole.h>
|
|
#include <kpmcore/core/partitiontable.h>
|
|
|
|
#include <QDialog>
|
|
#include <QScopedPointer>
|
|
|
|
|
|
class Device;
|
|
class Partition;
|
|
class PartitionNode;
|
|
class PartitionSizeController;
|
|
class Ui_CreatePartitionDialog;
|
|
|
|
/**
|
|
* The dialog which is shown to create a new partition or to edit a
|
|
* to-be-created partition.
|
|
*/
|
|
class CreatePartitionDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
/**
|
|
* @brief Dialog for editing a new partition.
|
|
*
|
|
* For the (unlikely) case that a newly created partition is being re-edited,
|
|
* pass a pointer to that @p partition, otherwise pass nullptr.
|
|
*/
|
|
CreatePartitionDialog( Device* device, PartitionNode* parentPartition, Partition* partition, const QStringList& usedMountPoints, QWidget* parentWidget = nullptr );
|
|
~CreatePartitionDialog();
|
|
|
|
/**
|
|
* Must be called when user wants to create a partition in
|
|
* freeSpacePartition.
|
|
*/
|
|
void initFromFreeSpace( Partition* freeSpacePartition );
|
|
|
|
/**
|
|
* Must be called when user wants to edit a to-be-created partition.
|
|
*/
|
|
void initFromPartitionToCreate( Partition* partition );
|
|
Partition* createPartition();
|
|
|
|
PartitionTable::Flags newFlags() const;
|
|
|
|
private Q_SLOTS:
|
|
void updateMountPointUi();
|
|
void checkMountPointSelection();
|
|
|
|
private:
|
|
QScopedPointer< Ui_CreatePartitionDialog > m_ui;
|
|
PartitionSizeController* m_partitionSizeController;
|
|
Device* m_device;
|
|
PartitionNode* m_parent;
|
|
PartitionRole m_role = PartitionRole( PartitionRole::None );
|
|
QStringList m_usedMountPoints;
|
|
|
|
void initGptPartitionTypeUi();
|
|
void initMbrPartitionTypeUi();
|
|
void initPartResizerWidget( Partition* );
|
|
};
|
|
|
|
#endif /* CREATEPARTITIONDIALOG_H */
|