2013-08-16 05:23:54 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-06-27 01:13:16 +01:00
|
|
|
*
|
|
|
|
* 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 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* 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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2013-06-27 01:13:16 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEVICESMODEL_H
|
|
|
|
#define DEVICESMODEL_H
|
|
|
|
|
2013-07-02 14:22:05 +01:00
|
|
|
#include <QAbstractListModel>
|
2019-03-24 16:10:18 +00:00
|
|
|
#include <QPixmap>
|
2013-06-27 01:13:16 +01:00
|
|
|
#include <QList>
|
|
|
|
|
2019-04-30 18:03:24 +01:00
|
|
|
#include "kdeconnectinterfaces_export.h"
|
2013-08-21 17:25:44 +01:00
|
|
|
|
2015-03-14 01:30:35 +00:00
|
|
|
class QDBusPendingCallWatcher;
|
2014-06-14 14:22:40 +01:00
|
|
|
class DaemonDbusInterface;
|
|
|
|
class DeviceDbusInterface;
|
|
|
|
|
|
|
|
class KDECONNECTINTERFACES_EXPORT DevicesModel
|
2013-07-24 17:42:33 +01:00
|
|
|
: public QAbstractListModel
|
2013-06-27 01:13:16 +01:00
|
|
|
{
|
2013-07-03 02:52:44 +01:00
|
|
|
Q_OBJECT
|
2014-07-01 00:19:14 +01:00
|
|
|
Q_PROPERTY(int displayFilter READ displayFilter WRITE setDisplayFilter)
|
2013-08-22 02:21:08 +01:00
|
|
|
Q_PROPERTY(int count READ rowCount NOTIFY rowsChanged)
|
|
|
|
|
2013-06-27 01:13:16 +01:00
|
|
|
public:
|
|
|
|
enum ModelRoles {
|
2015-01-21 06:22:14 +00:00
|
|
|
NameModelRole = Qt::DisplayRole,
|
|
|
|
IconModelRole = Qt::DecorationRole,
|
2013-08-15 23:25:13 +01:00
|
|
|
StatusModelRole = Qt::InitialSortOrderRole,
|
2015-01-21 06:22:14 +00:00
|
|
|
IdModelRole = Qt::UserRole,
|
2015-06-11 15:47:53 +01:00
|
|
|
IconNameRole,
|
|
|
|
DeviceRole
|
2013-08-15 21:22:11 +01:00
|
|
|
};
|
2016-06-08 17:39:31 +01:00
|
|
|
Q_ENUM(ModelRoles);
|
2016-04-01 14:01:42 +01:00
|
|
|
|
|
|
|
// A device is always paired or reachable or both
|
|
|
|
// You can combine the Paired and Reachable flags
|
2015-06-22 03:42:16 +01:00
|
|
|
enum StatusFilterFlag {
|
|
|
|
NoFilter = 0x00,
|
2016-04-01 14:01:42 +01:00
|
|
|
Paired = 0x01, // show device only if it's paired
|
|
|
|
Reachable = 0x02 // show device only if it's reachable
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
2015-06-22 03:42:16 +01:00
|
|
|
Q_DECLARE_FLAGS(StatusFilterFlags, StatusFilterFlag)
|
|
|
|
Q_FLAGS(StatusFilterFlags)
|
2016-06-08 17:39:31 +01:00
|
|
|
Q_ENUM(StatusFilterFlag)
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2017-09-03 20:39:44 +01:00
|
|
|
explicit DevicesModel(QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~DevicesModel() override;
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
void setDisplayFilter(int flags);
|
2014-07-01 00:19:14 +01:00
|
|
|
int displayFilter() const;
|
2013-08-22 02:21:08 +01:00
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
QVariant data(const QModelIndex& index, int role) const override;
|
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2015-04-15 12:00:23 +01:00
|
|
|
Q_SCRIPTABLE DeviceDbusInterface* getDevice(int row) const;
|
2016-06-20 08:05:02 +01:00
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
2019-07-20 15:02:38 +01:00
|
|
|
Q_SCRIPTABLE int rowForDevice(const QString& id) const;
|
2013-07-02 00:50:32 +01:00
|
|
|
|
2013-07-04 00:09:49 +01:00
|
|
|
private Q_SLOTS:
|
2013-07-03 02:52:44 +01:00
|
|
|
void deviceAdded(const QString& id);
|
2013-08-13 22:23:32 +01:00
|
|
|
void deviceRemoved(const QString& id);
|
2015-07-14 17:41:47 +01:00
|
|
|
void deviceUpdated(const QString& id, bool isVisible);
|
2013-08-13 22:23:32 +01:00
|
|
|
void refreshDeviceList();
|
2015-03-14 01:30:35 +00:00
|
|
|
void receivedDeviceList(QDBusPendingCallWatcher* watcher);
|
2015-03-14 03:28:54 +00:00
|
|
|
void nameChanged(const QString& newName);
|
2013-07-02 00:50:32 +01:00
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
Q_SIGNALS:
|
|
|
|
void rowsChanged();
|
|
|
|
|
2013-06-27 01:13:16 +01:00
|
|
|
private:
|
2015-03-14 01:30:35 +00:00
|
|
|
void clearDevices();
|
2015-03-16 01:31:59 +00:00
|
|
|
void appendDevice(DeviceDbusInterface* dev);
|
2017-09-03 20:39:44 +01:00
|
|
|
bool passesFilter(DeviceDbusInterface* dev) const;
|
2015-03-14 01:30:35 +00:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
DaemonDbusInterface* m_dbusInterface;
|
2015-06-24 19:57:02 +01:00
|
|
|
QVector<DeviceDbusInterface*> m_deviceList;
|
2015-06-22 03:42:16 +01:00
|
|
|
StatusFilterFlag m_displayFilter;
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
|
|
|
|
2015-06-22 03:42:16 +01:00
|
|
|
//Q_DECLARE_OPERATORS_FOR_FLAGS(DevicesModel::StatusFilterFlag)
|
2014-07-01 00:19:14 +01:00
|
|
|
|
2013-06-27 01:13:16 +01:00
|
|
|
#endif // DEVICESMODEL_H
|