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,
|
2015-06-11 15:47:53 +01:00
|
|
|
IconNameRole,
|
|
|
|
DeviceRole
|
2013-08-15 21:22:11 +01:00
|
|
|
};
|
2015-06-11 15:47:53 +01:00
|
|
|
Q_ENUMS(ModelRoles);
|
2015-06-22 03:42:16 +01:00
|
|
|
enum StatusFilterFlag {
|
|
|
|
NoFilter = 0x00,
|
|
|
|
Paired = 0x01,
|
|
|
|
Reachable = 0x02
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
2015-06-22 03:42:16 +01:00
|
|
|
Q_DECLARE_FLAGS(StatusFilterFlags, StatusFilterFlag)
|
|
|
|
Q_FLAGS(StatusFilterFlags)
|
|
|
|
Q_ENUMS(StatusFilterFlag)
|
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
|
|
|
|
2015-04-15 12:00:23 +01:00
|
|
|
Q_SCRIPTABLE DeviceDbusInterface* getDevice(int row) 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);
|
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);
|
2015-03-14 01:30:35 +00:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
DaemonDbusInterface* m_dbusInterface;
|
2015-06-22 03:42:16 +01:00
|
|
|
QList<DeviceDbusInterface*> m_deviceList;
|
|
|
|
QMap<QString, int> m_deviceIndexById;
|
|
|
|
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
|