0b99c3a637
We already have a destructor from the baseclass and don't need to clean up any resources in the affected plugins
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2020 Aditya Mehra <aix.m@outlook.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "bigscreenplugin.h"
|
|
|
|
#include <KLocalizedString>
|
|
#include <KPluginFactory>
|
|
|
|
#include <QDBusConnection>
|
|
#include <QDebug>
|
|
#include <QLoggingCategory>
|
|
|
|
#include <core/daemon.h>
|
|
#include <core/device.h>
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(BigscreenPlugin, "kdeconnect_bigscreen.json")
|
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_BIGSCREEN, "kdeconnect.plugin.bigscreen")
|
|
|
|
BigscreenPlugin::BigscreenPlugin(QObject *parent, const QVariantList &args)
|
|
: KdeConnectPlugin(parent, args)
|
|
{
|
|
}
|
|
|
|
bool BigscreenPlugin::receivePacket(const NetworkPacket &np)
|
|
{
|
|
QString message = np.get<QString>(QStringLiteral("content"));
|
|
/* Emit a signal that will be consumed by Plasma BigScreen:
|
|
* https://invent.kde.org/plasma/plasma-bigscreen/-/blob/master/containments/homescreen/package/contents/ui/indicators/KdeConnect.qml
|
|
*/
|
|
Q_EMIT messageReceived(message);
|
|
return true;
|
|
}
|
|
|
|
QString BigscreenPlugin::dbusPath() const
|
|
{
|
|
return QStringLiteral("/modules/kdeconnect/devices/") + device()->id() + QStringLiteral("/bigscreen");
|
|
}
|
|
|
|
#include "bigscreenplugin.moc"
|