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
|
|
|
*/
|
|
|
|
|
2023-07-21 19:22:59 +01:00
|
|
|
#pragma once
|
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
|
|
|
|
2023-07-22 10:37:35 +01:00
|
|
|
class RemoteControlPlugin : public KdeConnectPlugin
|
2015-07-22 02:19:29 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.remotecontrol")
|
|
|
|
|
|
|
|
public:
|
2023-07-28 09:36:48 +01:00
|
|
|
using KdeConnectPlugin::KdeConnectPlugin;
|
2015-07-22 02:19:29 +01:00
|
|
|
|
2016-12-30 15:38:12 +00:00
|
|
|
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);
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE void sendCommand(const QVariantMap &body);
|
2015-07-22 02:19:29 +01:00
|
|
|
};
|