2013-06-06 04:57:06 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@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 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-06 04:57:06 +01:00
|
|
|
*/
|
|
|
|
|
2013-08-13 04:14:46 +01:00
|
|
|
#ifndef KDECONNECTPLUGIN_H
|
|
|
|
#define KDECONNECTPLUGIN_H
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
2013-08-13 04:07:32 +01:00
|
|
|
#include <QVariantList>
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
#include "kdeconnectcore_export.h"
|
2015-03-14 04:19:39 +00:00
|
|
|
#include "kdeconnectpluginconfig.h"
|
2018-03-04 19:48:51 +00:00
|
|
|
#include "networkpacket.h"
|
2014-06-14 15:34:00 +01:00
|
|
|
#include "device.h"
|
2013-08-12 15:09:52 +01:00
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
struct KdeConnectPluginPrivate;
|
|
|
|
|
|
|
|
class KDECONNECTCORE_EXPORT KdeConnectPlugin
|
2013-06-06 04:57:06 +01:00
|
|
|
: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-08-13 04:14:46 +01:00
|
|
|
KdeConnectPlugin(QObject* parent, const QVariantList& args);
|
2016-06-20 08:05:02 +01:00
|
|
|
~KdeConnectPlugin() override;
|
2014-06-14 13:31:31 +01:00
|
|
|
|
2014-06-14 19:35:00 +01:00
|
|
|
const Device* device();
|
2014-01-15 16:36:01 +00:00
|
|
|
Device const* device() const;
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool sendPacket(NetworkPacket& np) const;
|
2014-06-14 19:35:00 +01:00
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
KdeConnectPluginConfig* config() const;
|
|
|
|
|
2016-12-30 15:38:12 +00:00
|
|
|
virtual QString dbusPath() const;
|
|
|
|
|
2018-08-03 00:53:21 +01:00
|
|
|
QString iconName() const;
|
|
|
|
|
2013-06-06 04:57:06 +01:00
|
|
|
public Q_SLOTS:
|
2013-10-11 14:19:23 +01:00
|
|
|
/**
|
2018-03-04 19:48:51 +00:00
|
|
|
* Returns true if it has handled the packet in some way
|
|
|
|
* device.sendPacket can be used to send an answer back to the device
|
2013-10-11 14:19:23 +01:00
|
|
|
*/
|
2018-03-04 19:48:51 +00:00
|
|
|
virtual bool receivePacket(const NetworkPacket& np) = 0;
|
2013-10-11 14:19:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method will be called when a device is connected to this computer.
|
|
|
|
* The plugin could be loaded already, but there is no guarantee we will be able to reach the device until this is called.
|
|
|
|
*/
|
2013-08-22 02:21:08 +01:00
|
|
|
virtual void connected() = 0;
|
2013-08-13 04:07:32 +01:00
|
|
|
|
|
|
|
private:
|
2014-06-14 15:34:00 +01:00
|
|
|
QScopedPointer<KdeConnectPluginPrivate> d;
|
2013-09-01 21:13:03 +01:00
|
|
|
|
2013-06-06 04:57:06 +01:00
|
|
|
};
|
|
|
|
|
2013-07-24 17:42:33 +01:00
|
|
|
#endif
|