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 <KNotification>
|
|
|
|
#include <KIO/Job>
|
2013-08-13 23:09:46 +01:00
|
|
|
|
|
|
|
#include "../kdeconnectplugin.h"
|
|
|
|
|
2013-10-11 14:19:23 +01:00
|
|
|
#define PACKAGE_TYPE_SHARE QLatin1String("kdeconnect.share")
|
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
class SharePlugin
|
2013-08-13 23:09:46 +01:00
|
|
|
: public KdeConnectPlugin
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-11-23 00:39:10 +00:00
|
|
|
explicit SharePlugin(QObject *parent, const QVariantList &args);
|
2013-08-13 23:09:46 +01:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
virtual bool receivePackage(const NetworkPackage& np);
|
2013-08-22 02:21:08 +01:00
|
|
|
virtual void connected() { }
|
2013-09-10 18:01:46 +01:00
|
|
|
void finished(KJob*);
|
|
|
|
|
2013-10-01 01:44:49 +01:00
|
|
|
private Q_SLOTS:
|
|
|
|
void openDestinationFolder();
|
|
|
|
|
2013-09-10 18:01:46 +01:00
|
|
|
private:
|
2013-11-23 00:39:10 +00:00
|
|
|
QString destinationDir();
|
2013-08-13 23:09:46 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
#endif
|