2021-03-29 01:51:34 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 CutefishOS Team.
|
|
|
|
*
|
|
|
|
* Author: revenmartin <revenmartin@gmail.com>
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-03-16 00:02:20 -07:00
|
|
|
#ifndef PLACESMODEL_H
|
|
|
|
#define PLACESMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
2021-03-30 18:22:32 -07:00
|
|
|
#include <Solid/Predicate>
|
2021-03-16 00:02:20 -07:00
|
|
|
#include "placesitem.h"
|
|
|
|
|
|
|
|
class PlacesModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum DataRole {
|
|
|
|
NameRole = Qt::UserRole + 1,
|
|
|
|
IconNameRole,
|
|
|
|
IconPathRole,
|
|
|
|
UrlRole,
|
2021-03-29 18:48:59 -07:00
|
|
|
PathRole,
|
|
|
|
IsDeviceRole,
|
2021-08-17 14:52:05 -07:00
|
|
|
setupNeededRole,
|
|
|
|
CategoryRole
|
2021-03-16 00:02:20 -07:00
|
|
|
};
|
|
|
|
Q_ENUMS(DataRole);
|
|
|
|
|
|
|
|
explicit PlacesModel(QObject *parent = nullptr);
|
|
|
|
~PlacesModel() override;
|
|
|
|
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
|
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
|
|
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
QModelIndex parent(const QModelIndex &child) const override;
|
|
|
|
|
|
|
|
Q_INVOKABLE QVariantMap get(const int &index) const;
|
2021-03-29 18:48:59 -07:00
|
|
|
Q_INVOKABLE void requestSetup(const int &index);
|
|
|
|
Q_INVOKABLE void requestEject(const int &index);
|
|
|
|
|
2021-04-14 20:01:48 -07:00
|
|
|
signals:
|
|
|
|
void deviceSetupDone(const QString &filePath);
|
|
|
|
|
2021-03-29 18:48:59 -07:00
|
|
|
private slots:
|
|
|
|
void onDeviceAdded(const QString &udi);
|
|
|
|
void onDeviceRemoved(const QString &udi);
|
2021-03-16 00:02:20 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
QList<PlacesItem *> m_items;
|
2021-03-30 18:22:32 -07:00
|
|
|
Solid::Predicate m_predicate;
|
2021-03-16 00:02:20 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|