2020-05-05 12:53:41 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
* SPDX-FileCopyrightText: 2020 Aditya Mehra <aix.m@outlook.com>
|
2020-05-05 12:53:41 +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
|
2020-05-05 12:53:41 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BIGSCREENPLUGIN_H
|
|
|
|
#define BIGSCREENPLUGIN_H
|
|
|
|
|
|
|
|
#include <core/kdeconnectplugin.h>
|
|
|
|
|
|
|
|
#define PACKET_TYPE_BIGSCREEN_STT QStringLiteral("kdeconnect.bigscreen.stt")
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class Q_DECL_EXPORT BigscreenPlugin : public KdeConnectPlugin
|
2020-05-05 12:53:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.bigscreen")
|
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit BigscreenPlugin(QObject *parent, const QVariantList &args);
|
2020-05-05 12:53:41 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
bool receivePacket(const NetworkPacket &np) override;
|
2020-05-05 12:53:41 +01:00
|
|
|
QString dbusPath() const override;
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE void messageReceived(const QString &message);
|
2020-05-05 12:53:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|