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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEVICESMODEL_H
|
|
|
|
#define DEVICESMODEL_H
|
|
|
|
|
2013-07-02 14:22:05 +01:00
|
|
|
#include <QAbstractListModel>
|
2013-06-27 01:13:16 +01:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QList>
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
#include "interfaces/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,
|
2014-06-27 15:16:45 +01:00
|
|
|
IconNameRole
|
2013-08-15 21:22:11 +01:00
|
|
|
};
|
2014-06-27 15:09:01 +01:00
|
|
|
enum StatusFlag {
|
2014-04-12 21:37:33 +01:00
|
|
|
StatusUnknown = 0x00,
|
|
|
|
StatusPaired = 0x01,
|
|
|
|
StatusReachable = 0x02
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
2014-06-27 15:09:01 +01:00
|
|
|
Q_DECLARE_FLAGS(StatusFlags, StatusFlag)
|
2014-07-01 00:19:14 +01:00
|
|
|
Q_FLAGS(StatusFlags)
|
|
|
|
Q_ENUMS(StatusFlag)
|
2013-06-27 01:13:16 +01:00
|
|
|
|
|
|
|
DevicesModel(QObject *parent = 0);
|
|
|
|
virtual ~DevicesModel();
|
|
|
|
|
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
|
|
|
|
2014-06-14 12:31:02 +01:00
|
|
|
virtual QVariant data(const QModelIndex& index, int role) const;
|
|
|
|
virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2014-06-14 12:31:02 +01:00
|
|
|
DeviceDbusInterface* getDevice(const QModelIndex& index) const;
|
2014-09-23 18:27:47 +01:00
|
|
|
virtual QHash<int, QByteArray> roleNames() const;
|
2013-07-02 00:50:32 +01:00
|
|
|
|
2013-07-04 00:09:49 +01:00
|
|
|
public Q_SLOTS:
|
2013-07-03 02:52:44 +01:00
|
|
|
void deviceStatusChanged(const QString& id);
|
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);
|
|
|
|
void refreshDeviceList();
|
2015-03-14 01:30:35 +00:00
|
|
|
void receivedDeviceList(QDBusPendingCallWatcher* watcher);
|
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-14 02:40:01 +00:00
|
|
|
int rowForDeviceId(const QString& id) const;
|
2015-03-14 01:30:35 +00:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
DaemonDbusInterface* m_dbusInterface;
|
2015-03-14 02:25:14 +00:00
|
|
|
QVector<DeviceDbusInterface*> m_deviceList;
|
2013-08-22 02:21:08 +01:00
|
|
|
StatusFlags m_displayFilter;
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
|
|
|
|
2014-07-01 00:19:14 +01:00
|
|
|
//Q_DECLARE_OPERATORS_FOR_FLAGS(DevicesModel::StatusFlags)
|
|
|
|
|
2013-06-27 01:13:16 +01:00
|
|
|
#endif // DEVICESMODEL_H
|