calamares/src/modules/partition/gui/PartitionPage.h
Adriaan de Groot 51b47862cd [partition] Mark destructors override
This reduces compiler warnings related to virtual-overriding
functions: all the destructors are virtual.
2020-10-23 22:23:10 +02:00

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() override;
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