calamares/src/modules/partition/core/DeviceModel.h

54 lines
1.3 KiB
C
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
2014-06-27 17:25:39 +02:00
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2014 Aurélien Gâteau <agateau@kde.org>
* SPDX-FileCopyrightText: 2017 2019, Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
2014-06-27 17:25:39 +02:00
*
* Calamares is Free Software: see the License-Identifier above.
2014-06-27 17:25:39 +02:00
*
*/
#ifndef DEVICEMODEL_H
#define DEVICEMODEL_H
#include <QAbstractListModel>
#include <QList>
#include <QScopedPointer>
2014-06-27 17:25:39 +02:00
class Device;
class PartitionModel;
2014-06-27 17:25:39 +02:00
2014-08-08 11:46:43 +02:00
/**
* A Qt model which exposes a list of Devices.
*/
2014-06-27 17:25:39 +02:00
class DeviceModel : public QAbstractListModel
{
2014-10-29 13:06:06 +01:00
Q_OBJECT
2014-06-27 17:25:39 +02:00
public:
2017-09-14 13:02:24 +02:00
DeviceModel( QObject* parent = nullptr );
~DeviceModel() override;
2019-04-01 14:48:25 +02:00
using DeviceList = QList< Device* >;
/**
* Init the model with the list of devices. Does *not* take ownership of the
* devices.
*/
2019-04-01 14:48:25 +02:00
void init( const DeviceList& devices );
2014-06-27 17:25:39 +02:00
2014-08-08 11:47:21 +02:00
int rowCount( const QModelIndex& parent = QModelIndex() ) const override;
QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const override;
2014-06-27 17:25:39 +02:00
Device* deviceForIndex( const QModelIndex& index ) const;
2014-06-27 17:25:39 +02:00
2015-12-17 17:58:13 +01:00
void swapDevice( Device* oldDevice, Device* newDevice );
void addDevice( Device* device );
void removeDevice( Device* device );
2014-06-27 17:25:39 +02:00
private:
2019-04-01 14:48:25 +02:00
DeviceList m_devices;
2014-06-27 17:25:39 +02:00
};
#endif /* DEVICEMODEL_H */