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 DEVICEMODEL_H
|
|
|
|
#define DEVICEMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
2014-06-27 18:42:15 +02:00
|
|
|
#include <QScopedPointer>
|
2014-06-27 17:25:39 +02:00
|
|
|
#include <QList>
|
|
|
|
|
|
|
|
class Device;
|
2014-06-27 18:42:15 +02:00
|
|
|
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
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DeviceModel( QObject* parent = 0 );
|
2014-06-27 18:42:15 +02:00
|
|
|
~DeviceModel();
|
|
|
|
|
|
|
|
/**
|
2014-06-30 13:37:46 +02:00
|
|
|
* Init the model with the list of devices. Does *not* take ownership of the
|
|
|
|
* devices.
|
2014-06-27 18:42:15 +02:00
|
|
|
*/
|
2014-06-27 17:25:39 +02:00
|
|
|
void init( const QList< Device* >& devices );
|
|
|
|
|
|
|
|
int rowCount( const QModelIndex& parent = QModelIndex() ) const Q_DECL_OVERRIDE;
|
|
|
|
QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const Q_DECL_OVERRIDE;
|
|
|
|
|
2014-06-30 14:12:23 +02:00
|
|
|
Device* deviceForIndex( const QModelIndex& index ) const;
|
2014-06-27 17:25:39 +02:00
|
|
|
|
|
|
|
private:
|
2014-06-30 14:12:23 +02:00
|
|
|
QList< Device* > m_devices;
|
2014-06-27 17:25:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* DEVICEMODEL_H */
|