2015-07-22 02:19:29 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2015-07-22 02:19:29 +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
|
2015-07-22 02:19:29 +01:00
|
|
|
*/
|
|
|
|
|
2015-08-07 14:02:06 +01:00
|
|
|
#ifndef REMOTECONTROLPLUGIN_H
|
|
|
|
#define REMOTECONTROLPLUGIN_H
|
2015-07-22 02:19:29 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <core/kdeconnectplugin.h>
|
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
#define PACKET_TYPE_MOUSEPAD_REQUEST QStringLiteral("kdeconnect.mousepad.request")
|
2015-07-22 02:19:29 +01:00
|
|
|
|
|
|
|
class Q_DECL_EXPORT RemoteControlPlugin
|
|
|
|
: public KdeConnectPlugin
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.remotecontrol")
|
|
|
|
|
|
|
|
public:
|
2017-09-03 20:39:44 +01:00
|
|
|
explicit RemoteControlPlugin(QObject* parent, const QVariantList &args);
|
2015-07-22 02:19:29 +01:00
|
|
|
~RemoteControlPlugin() override;
|
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool receivePacket(const NetworkPacket& /*np*/) override { return false; }
|
2016-12-30 15:38:12 +00:00
|
|
|
void connected() override {}
|
|
|
|
QString dbusPath() const override;
|
2015-07-22 02:19:29 +01:00
|
|
|
|
2016-12-30 15:38:12 +00:00
|
|
|
Q_SCRIPTABLE void moveCursor(const QPoint &p);
|
2021-07-13 16:41:34 +01:00
|
|
|
Q_SCRIPTABLE void sendCommand(const QJsonObject& body);
|
2015-07-22 02:19:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|