/** * Copyright 2013 Albert Vaca * * 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 . */ #ifndef DEVICE_H #define DEVICE_H #include #include #include #include #include #include #include #include "networkpackage.h" class DeviceLink; class KdeConnectPlugin; class Device : public QObject { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device") Q_PROPERTY(QString id READ id) Q_PROPERTY(QString name READ name) enum PairStatus { NotPaired, PairRequested, Paired, }; public: //Read device from KConfig, we already know it but we need to wait for a incoming devicelink to communicate Device(const QString& id); //Device known via an incoming connection sent to us via a devicelink, we know everything but we don't trust it yet Device(const NetworkPackage& np, DeviceLink* dl); virtual ~Device(); QString id() const { return m_deviceId; } QString name() const { return m_deviceName; } QString dbusPath() const { return "/modules/kdeconnect/devices/"+id(); } //Add and remove links void addLink(DeviceLink*); void removeLink(DeviceLink*); Q_SCRIPTABLE bool isPaired() const { return m_pairStatus==Device::Paired; } Q_SCRIPTABLE bool pairRequested() const { return m_pairStatus==Device::PairRequested; } Q_SCRIPTABLE QStringList availableLinks() const; Q_SCRIPTABLE bool isReachable() const { return !m_deviceLinks.empty(); } Q_SCRIPTABLE QStringList loadedPlugins() const; Q_SCRIPTABLE bool hasPlugin(const QString& name) const; //Send and receive Q_SIGNALS: void receivedPackage(const NetworkPackage& np) const; public Q_SLOTS: virtual bool sendPackage(NetworkPackage& np); //Dbus operations public Q_SLOTS: Q_SCRIPTABLE void requestPair(); Q_SCRIPTABLE void unpair(); Q_SCRIPTABLE void reloadPlugins(); //From kconf Q_SCRIPTABLE void sendPing(); void acceptPairing(); void rejectPairing(); private Q_SLOTS: void privateReceivedPackage(const NetworkPackage& np); void linkDestroyed(QObject* o = 0); void pairingTimeout(); Q_SIGNALS: Q_SCRIPTABLE void reachableStatusChanged(); Q_SCRIPTABLE void pluginsChanged(); Q_SCRIPTABLE void pairingSuccesful(); Q_SCRIPTABLE void pairingFailed(const QString& error); private: QString m_deviceId; QString m_deviceName; QCA::PublicKey m_publicKey; PairStatus m_pairStatus; QList m_deviceLinks; QMap m_plugins; QTimer pairingTimer; }; Q_DECLARE_METATYPE(Device*) #endif // DEVICE_H