2013-06-06 04:57:06 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-06-06 04:57:06 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
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
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
#include "device.h"
|
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"
|
2013-08-12 15:09:52 +01:00
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
struct KdeConnectPluginPrivate;
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class KDECONNECTCORE_EXPORT KdeConnectPlugin : public QObject
|
2013-06-06 04:57:06 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +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
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
const Device *device();
|
|
|
|
Device const *device() const;
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
bool sendPacket(NetworkPacket &np) const;
|
2014-06-14 19:35:00 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
KdeConnectPluginConfig *config() const;
|
2015-03-14 04:19:39 +00:00
|
|
|
|
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
|
|
|
*/
|
2023-07-31 08:25:45 +01:00
|
|
|
virtual void receivePacket(const NetworkPacket &np);
|
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.
|
|
|
|
*/
|
2023-07-22 08:41:50 +01:00
|
|
|
virtual void connected()
|
|
|
|
{
|
|
|
|
}
|
2013-08-13 04:07:32 +01:00
|
|
|
|
|
|
|
private:
|
2014-06-14 15:34:00 +01:00
|
|
|
QScopedPointer<KdeConnectPluginPrivate> d;
|
2013-06-06 04:57:06 +01:00
|
|
|
};
|
|
|
|
|
2013-07-24 17:42:33 +01:00
|
|
|
#endif
|