2014-06-27 17:25:39 +02:00
|
|
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2014, Aurélien Gâteau <agateau@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 PARTITIONMODEL_H
|
|
|
|
#define PARTITIONMODEL_H
|
|
|
|
|
2015-12-15 14:00:34 +01:00
|
|
|
#include "OsproberEntry.h"
|
|
|
|
|
2014-07-04 17:33:26 +02:00
|
|
|
// Qt
|
2014-07-29 10:57:10 +02:00
|
|
|
#include <QAbstractItemModel>
|
2014-06-27 17:25:39 +02:00
|
|
|
|
|
|
|
class Device;
|
|
|
|
class Partition;
|
|
|
|
class PartitionNode;
|
|
|
|
|
2014-08-08 11:46:43 +02:00
|
|
|
/**
|
|
|
|
* A Qt tree model which exposes the partitions of a device.
|
|
|
|
*
|
|
|
|
* Its depth is only more than 1 if the device has extended partitions.
|
|
|
|
*
|
|
|
|
* Note on updating:
|
|
|
|
*
|
|
|
|
* The Device class does not notify the outside world of changes on the
|
|
|
|
* Partition objects it owns. Since a Qt model must notify its views *before*
|
|
|
|
* and *after* making changes, it is important to make use of
|
|
|
|
* the PartitionModel::ResetHelper class to wrap changes.
|
|
|
|
*
|
|
|
|
* This is what PartitionCoreModule does when it create jobs.
|
|
|
|
*/
|
2014-07-29 10:57:10 +02:00
|
|
|
class PartitionModel : public QAbstractItemModel
|
2014-06-27 17:25:39 +02:00
|
|
|
{
|
2014-10-29 13:06:06 +01:00
|
|
|
Q_OBJECT
|
2014-06-27 17:25:39 +02:00
|
|
|
public:
|
2014-07-29 10:57:10 +02:00
|
|
|
/**
|
|
|
|
* This helper class must be instantiated on the stack *before* making
|
|
|
|
* changes to the device represented by this model. It will cause the model
|
|
|
|
* to emit modelAboutToBeReset() when instantiated and modelReset() when
|
|
|
|
* destructed.
|
|
|
|
*/
|
|
|
|
class ResetHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ResetHelper( PartitionModel* model );
|
|
|
|
~ResetHelper();
|
|
|
|
|
|
|
|
ResetHelper( const ResetHelper& ) = delete;
|
|
|
|
ResetHelper& operator=( const ResetHelper& ) = delete;
|
|
|
|
private:
|
|
|
|
PartitionModel* m_model;
|
|
|
|
};
|
|
|
|
|
2014-07-29 13:37:12 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
// The raw size, as a qlonglong. This is different from the DisplayRole of
|
|
|
|
// SizeColumn, which is a human-readable string.
|
2014-07-29 15:56:00 +02:00
|
|
|
SizeRole = Qt::UserRole + 1,
|
2015-12-15 14:00:34 +01:00
|
|
|
IsFreeSpaceRole,
|
2015-12-15 16:07:53 +01:00
|
|
|
IsPartitionNewRole,
|
2015-12-15 15:41:42 +01:00
|
|
|
FileSystemLabelRole,
|
2015-12-16 15:47:11 +01:00
|
|
|
FileSystemTypeRole,
|
2015-12-17 16:13:42 +01:00
|
|
|
PartitionPathRole,
|
2015-12-17 15:25:39 +01:00
|
|
|
PartitionPtrRole, // passed as void*, use sparingly
|
2015-12-15 14:00:34 +01:00
|
|
|
OsproberNameRole,
|
|
|
|
OsproberPathRole,
|
|
|
|
OsproberCanBeResizedRole,
|
2016-07-14 17:40:58 +02:00
|
|
|
OsproberRawLineRole,
|
|
|
|
OsproberHomePartitionPathRole
|
2014-07-29 13:37:12 +02:00
|
|
|
};
|
|
|
|
|
2014-07-02 17:55:53 +02:00
|
|
|
enum Column
|
|
|
|
{
|
|
|
|
NameColumn,
|
|
|
|
FileSystemColumn,
|
|
|
|
MountPointColumn,
|
|
|
|
SizeColumn,
|
2014-08-08 11:47:21 +02:00
|
|
|
ColumnCount // Must remain last
|
2014-07-02 17:55:53 +02:00
|
|
|
};
|
|
|
|
|
2014-06-27 17:25:39 +02:00
|
|
|
PartitionModel( QObject* parent = 0 );
|
2014-07-04 17:33:26 +02:00
|
|
|
/**
|
2014-07-16 16:20:58 +02:00
|
|
|
* device must remain alive for the life of PartitionModel
|
2014-07-04 17:33:26 +02:00
|
|
|
*/
|
2015-12-15 14:00:34 +01:00
|
|
|
void init( Device* device, const OsproberEntryList& osproberEntries );
|
2014-06-27 17:25:39 +02:00
|
|
|
|
2014-08-08 11:46:43 +02:00
|
|
|
// QAbstractItemModel API
|
2014-07-29 10:57:10 +02:00
|
|
|
QModelIndex index( int row, int column, const QModelIndex& parent = QModelIndex() ) const override;
|
|
|
|
QModelIndex parent( const QModelIndex& child ) const override;
|
2014-07-02 17:55:53 +02:00
|
|
|
int columnCount( const QModelIndex& parent = QModelIndex() ) const override;
|
|
|
|
int rowCount( const QModelIndex& parent = QModelIndex() ) const override;
|
|
|
|
QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const override;
|
2014-07-25 13:13:04 +02:00
|
|
|
QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const override;
|
2014-06-27 17:25:39 +02:00
|
|
|
|
2014-06-30 15:03:45 +02:00
|
|
|
Partition* partitionForIndex( const QModelIndex& index ) const;
|
|
|
|
|
2014-06-30 18:08:13 +02:00
|
|
|
Device* device() const
|
|
|
|
{
|
|
|
|
return m_device;
|
|
|
|
}
|
|
|
|
|
2015-12-24 13:37:42 +01:00
|
|
|
void update();
|
|
|
|
|
2014-06-27 17:25:39 +02:00
|
|
|
private:
|
|
|
|
Device* m_device;
|
2015-12-15 14:00:34 +01:00
|
|
|
OsproberEntryList m_osproberEntries;
|
2014-06-27 17:25:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* PARTITIONMODEL_H */
|