2016-06-12 19:15:40 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2016 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2016-06-12 19:15:40 +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
|
2016-06-12 19:15:40 +01:00
|
|
|
*/
|
|
|
|
|
2023-07-21 19:22:59 +01:00
|
|
|
#pragma once
|
2016-06-12 19:15:40 +01:00
|
|
|
|
2019-03-11 18:14:48 +00:00
|
|
|
class QObject;
|
2016-06-12 19:15:40 +01:00
|
|
|
|
|
|
|
#include <QString>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <core/kdeconnectplugin.h>
|
2016-06-12 19:15:40 +01:00
|
|
|
|
2023-07-22 10:37:35 +01:00
|
|
|
class RemoteCommandsPlugin : public KdeConnectPlugin
|
2016-06-12 19:15:40 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.remotecommands")
|
|
|
|
Q_PROPERTY(QByteArray commands READ commands NOTIFY commandsChanged)
|
2018-06-18 20:01:29 +01:00
|
|
|
Q_PROPERTY(QString deviceId READ deviceId CONSTANT)
|
|
|
|
Q_PROPERTY(bool canAddCommand READ canAddCommand CONSTANT)
|
2016-06-12 19:15:40 +01:00
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit RemoteCommandsPlugin(QObject *parent, const QVariantList &args);
|
2016-06-12 19:15:40 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE void triggerCommand(const QString &key);
|
2018-06-18 20:01:29 +01:00
|
|
|
Q_SCRIPTABLE void editCommands();
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QByteArray commands() const
|
|
|
|
{
|
|
|
|
return m_commands;
|
|
|
|
}
|
|
|
|
QString deviceId() const
|
|
|
|
{
|
|
|
|
return device()->id();
|
|
|
|
}
|
|
|
|
bool canAddCommand() const
|
|
|
|
{
|
|
|
|
return m_canAddCommand;
|
|
|
|
}
|
|
|
|
|
2023-07-31 08:25:45 +01:00
|
|
|
void receivePacket(const NetworkPacket &np) override;
|
2016-12-30 15:38:12 +00:00
|
|
|
void connected() override;
|
|
|
|
QString dbusPath() const override;
|
|
|
|
|
2016-06-12 19:15:40 +01:00
|
|
|
Q_SIGNALS:
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE void commandsChanged(const QByteArray &commands);
|
2016-06-12 19:15:40 +01:00
|
|
|
|
|
|
|
private:
|
2022-09-10 22:23:52 +01:00
|
|
|
void setCommands(const QByteArray &commands);
|
2016-06-12 19:15:40 +01:00
|
|
|
|
|
|
|
QByteArray m_commands;
|
2018-06-18 20:01:29 +01:00
|
|
|
bool m_canAddCommand;
|
2016-06-12 19:15:40 +01:00
|
|
|
};
|