2013-08-13 23:09:46 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
#ifndef SHAREPLUGIN_H
|
|
|
|
#define SHAREPLUGIN_H
|
2013-08-13 23:09:46 +01:00
|
|
|
|
2013-09-10 18:01:46 +01:00
|
|
|
#include <KIO/Job>
|
2013-08-13 23:09:46 +01:00
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
#include <core/kdeconnectplugin.h>
|
2013-08-13 23:09:46 +01:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
#define PACKET_TYPE_SHARE_REQUEST QStringLiteral("kdeconnect.share.request")
|
2013-10-11 14:19:23 +01:00
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
class SharePlugin
|
2013-08-13 23:09:46 +01:00
|
|
|
: public KdeConnectPlugin
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-03-03 03:53:11 +00:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.share")
|
2013-08-13 23:09:46 +01:00
|
|
|
|
|
|
|
public:
|
2017-09-03 20:39:44 +01:00
|
|
|
explicit SharePlugin(QObject* parent, const QVariantList& args);
|
2013-08-13 23:09:46 +01:00
|
|
|
|
2014-03-03 03:53:11 +00:00
|
|
|
///Helper method, QDBus won't recognize QUrl
|
|
|
|
Q_SCRIPTABLE void shareUrl(const QString& url) { shareUrl(QUrl(url)); }
|
2018-11-03 21:16:07 +00:00
|
|
|
Q_SCRIPTABLE void shareText(const QString& text);
|
2016-12-30 15:38:12 +00:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool receivePacket(const NetworkPacket& np) override;
|
2016-12-30 15:38:12 +00:00
|
|
|
void connected() override {}
|
|
|
|
QString dbusPath() const override;
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2013-10-01 01:44:49 +01:00
|
|
|
private Q_SLOTS:
|
2014-03-03 03:53:11 +00:00
|
|
|
void finished(KJob*);
|
2013-10-01 01:44:49 +01:00
|
|
|
void openDestinationFolder();
|
|
|
|
|
2015-09-07 13:54:33 +01:00
|
|
|
Q_SIGNALS:
|
2017-08-01 22:57:50 +01:00
|
|
|
void shareReceived(const QString& url);
|
2015-09-07 13:54:33 +01:00
|
|
|
|
2013-09-10 18:01:46 +01:00
|
|
|
private:
|
2014-03-03 03:53:11 +00:00
|
|
|
void shareUrl(const QUrl& url);
|
|
|
|
|
2014-09-21 21:24:37 +01:00
|
|
|
QUrl destinationDir() const;
|
2013-08-13 23:09:46 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
#endif
|