1cd9b93a22
- point to main Calamares site in the 'part of' headers instead of to github (this is the "this file is part of Calamares" opening line for most files). - remove boilerplate from all source files, CMake modules and completions, this is the 3-paragraph summary of the GPL-3.0-or-later, which has a meaning entirely covered by the SPDX tag.
89 lines
2.5 KiB
C++
89 lines
2.5 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014 Aurélien Gâteau <agateau@kde.org>
|
|
* SPDX-FileCopyrightText: 2018-2019 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-FileCopyrightText: 2019 Collabora Ltd
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#ifndef PARTITIONPAGE_H
|
|
#define PARTITIONPAGE_H
|
|
|
|
#include <QMutex>
|
|
#include <QScopedPointer>
|
|
#include <QWidget>
|
|
|
|
class PartitionCoreModule;
|
|
class Ui_PartitionPage;
|
|
|
|
class Device;
|
|
class DeviceModel;
|
|
class Partition;
|
|
|
|
/**
|
|
* The user interface for the module.
|
|
*
|
|
* Shows the information exposed by PartitionCoreModule and asks it to schedule
|
|
* jobs according to user actions.
|
|
*/
|
|
class PartitionPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PartitionPage( PartitionCoreModule* core, QWidget* parent = nullptr );
|
|
~PartitionPage();
|
|
|
|
void onRevertClicked();
|
|
|
|
int selectedDeviceIndex();
|
|
void selectDeviceByIndex( int index );
|
|
|
|
private slots:
|
|
/// @brief Update everything when the base device changes
|
|
void updateFromCurrentDevice();
|
|
/// @brief Update when the selected device for boot loader changes
|
|
void updateBootLoaderInstallPath();
|
|
/// @brief Explicitly selected boot loader path
|
|
void updateSelectedBootLoaderIndex();
|
|
/// @brief After boot loader model changes, try to preserve previously set value
|
|
void restoreSelectedBootLoader();
|
|
|
|
private:
|
|
QScopedPointer< Ui_PartitionPage > m_ui;
|
|
PartitionCoreModule* m_core;
|
|
void updateButtons();
|
|
void onNewPartitionTableClicked();
|
|
void onNewVolumeGroupClicked();
|
|
void onResizeVolumeGroupClicked();
|
|
void onDeactivateVolumeGroupClicked();
|
|
void onRemoveVolumeGroupClicked();
|
|
void onCreateClicked();
|
|
void onEditClicked();
|
|
void onDeleteClicked();
|
|
void onPartitionViewActivated();
|
|
void onPartitionModelReset();
|
|
|
|
void updatePartitionToCreate( Device*, Partition* );
|
|
void editExistingPartition( Device*, Partition* );
|
|
void updateBootLoaderIndex();
|
|
|
|
/**
|
|
* @brief Check if a new partition can be created (as primary) on the device.
|
|
*
|
|
* Returns true if a new partition can be created on the device. Provides
|
|
* a warning popup and returns false if it cannot.
|
|
*/
|
|
bool checkCanCreate( Device* );
|
|
|
|
QStringList getCurrentUsedMountpoints();
|
|
|
|
QMutex m_revertMutex;
|
|
int m_lastSelectedBootLoaderIndex;
|
|
bool m_isEfi;
|
|
};
|
|
|
|
#endif // PARTITIONPAGE_H
|