kdeconnect-kde/plugins/sftp/sftpplugin-win.h

34 lines
921 B
C
Raw Normal View History

2019-08-22 03:21:32 +01:00
/**
* SPDX-FileCopyrightText: 2019 Piyush Aggarwal <piyushaggarwal002@gmail.com>
2019-08-22 03:21:32 +01:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2019-08-22 03:21:32 +01:00
*/
#pragma once
2019-08-22 03:21:32 +01:00
#include <core/device.h>
#include <core/kdeconnectplugin.h>
2019-08-22 03:21:32 +01:00
#define PACKET_TYPE_SFTP_REQUEST QStringLiteral("kdeconnect.sftp.request")
class SftpPlugin : public KdeConnectPlugin
2019-08-22 03:21:32 +01:00
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.sftp")
public:
explicit SftpPlugin(QObject *parent, const QVariantList &args);
2019-08-22 03:21:32 +01:00
bool receivePacket(const NetworkPacket &np) override;
QString dbusPath() const override
{
return QStringLiteral("/modules/kdeconnect/devices/") + deviceId + QStringLiteral("/sftp");
}
2019-08-22 03:21:32 +01:00
public Q_SLOTS:
Q_SCRIPTABLE bool startBrowsing();
private:
QString deviceId; // Storing it to avoid accessing device() from the destructor which could cause a crash
2019-08-22 03:21:32 +01:00
};