2017-11-06 11:42:13 +01:00
|
|
|
|
2017-12-20 14:39:09 +01:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
2017-01-23 13:42:40 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2017, Kyle Robbertze <kyle@aims.ac.za>
|
2017-09-19 11:11:46 +02:00
|
|
|
* Copyright 2017, Adriaan de Groot <groot@kde.org>
|
2017-01-23 13:42:40 +01:00
|
|
|
*
|
|
|
|
* 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 PACKAGEMODEL_H
|
|
|
|
#define PACKAGEMODEL_H
|
|
|
|
|
|
|
|
#include "PackageTreeItem.h"
|
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
|
2019-04-17 11:43:21 +02:00
|
|
|
namespace YAML
|
|
|
|
{
|
2020-02-18 11:02:53 +01:00
|
|
|
class Node;
|
2019-04-17 11:43:21 +02:00
|
|
|
}
|
2017-01-23 13:42:40 +01:00
|
|
|
|
|
|
|
class PackageModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2017-01-23 14:04:07 +01:00
|
|
|
public:
|
2017-11-06 11:42:13 +01:00
|
|
|
using PackageItemDataList = QList< PackageTreeItem::ItemData >;
|
|
|
|
|
2017-09-13 18:35:56 +02:00
|
|
|
explicit PackageModel( const YAML::Node& data, QObject* parent = nullptr );
|
2017-09-13 20:07:09 +02:00
|
|
|
~PackageModel() override;
|
2017-01-23 13:42:40 +01:00
|
|
|
|
2017-01-25 09:34:18 +01:00
|
|
|
QVariant data( const QModelIndex& index, int role ) const override;
|
2020-02-18 11:02:53 +01:00
|
|
|
bool setData( const QModelIndex& index, const QVariant& value, int role = Qt::EditRole ) override;
|
2017-01-25 09:34:18 +01:00
|
|
|
Qt::ItemFlags flags( const QModelIndex& index ) const override;
|
2020-02-19 12:51:01 +01:00
|
|
|
|
2020-02-18 11:02:53 +01:00
|
|
|
QModelIndex index( int row, int column, const QModelIndex& parent = QModelIndex() ) const override;
|
2017-01-25 09:34:18 +01:00
|
|
|
QModelIndex parent( const QModelIndex& index ) const override;
|
2020-02-19 12:51:01 +01:00
|
|
|
|
|
|
|
QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const override;
|
2017-01-25 09:34:18 +01:00
|
|
|
int rowCount( const QModelIndex& parent = QModelIndex() ) const override;
|
|
|
|
int columnCount( const QModelIndex& parent = QModelIndex() ) const override;
|
2020-02-19 12:51:01 +01:00
|
|
|
|
2017-11-06 11:42:13 +01:00
|
|
|
PackageItemDataList getPackages() const;
|
2020-02-18 11:02:53 +01:00
|
|
|
QList< PackageTreeItem* > getItemPackages( PackageTreeItem* item ) const;
|
2017-01-23 13:42:40 +01:00
|
|
|
|
2017-01-23 14:04:07 +01:00
|
|
|
private:
|
|
|
|
void setupModelData( const YAML::Node& data, PackageTreeItem* parent );
|
2017-01-23 13:42:40 +01:00
|
|
|
|
2017-01-23 14:04:07 +01:00
|
|
|
PackageTreeItem* m_rootItem;
|
2020-02-18 11:02:53 +01:00
|
|
|
QList< PackageTreeItem* > m_hiddenItems;
|
2017-01-23 13:42:40 +01:00
|
|
|
};
|
|
|
|
|
2020-02-18 11:02:53 +01:00
|
|
|
#endif // PACKAGEMODEL_H
|