kdeconnect-kde/plugins/remotecontrol/remotecontrolplugin.cpp

42 lines
1 KiB
C++
Raw Permalink Normal View History

/**
* SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "remotecontrolplugin.h"
#include <KLocalizedString>
#include <KPluginFactory>
#include <QDBusConnection>
#include <QDebug>
#include <QPoint>
#include "plugin_remotecontrol_debug.h"
#include <core/device.h>
2019-06-12 21:16:54 +01:00
K_PLUGIN_CLASS_WITH_JSON(RemoteControlPlugin, "kdeconnect_remotecontrol.json")
void RemoteControlPlugin::moveCursor(const QPoint &p)
{
NetworkPacket np(PACKET_TYPE_MOUSEPAD_REQUEST, {{QStringLiteral("dx"), p.x()}, {QStringLiteral("dy"), p.y()}});
sendPacket(np);
}
void RemoteControlPlugin::sendCommand(const QVariantMap &body)
{
if (body.isEmpty())
return;
NetworkPacket np(PACKET_TYPE_MOUSEPAD_REQUEST, body);
sendPacket(np);
}
QString RemoteControlPlugin::dbusPath() const
{
return QLatin1String("/modules/kdeconnect/devices/%1/remotecontrol").arg(device()->id());
}
#include "moc_remotecontrolplugin.cpp"
#include "remotecontrolplugin.moc"