2014-01-16 14:32:35 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2014-01-16 14:32:35 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2014-01-16 14:32:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KIOKDECONNECT_H
|
|
|
|
#define KIOKDECONNECT_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <kio/slavebase.h>
|
|
|
|
|
2020-11-16 00:16:03 +00:00
|
|
|
#include "dbusinterfaces.h"
|
2014-01-16 14:32:35 +00:00
|
|
|
|
|
|
|
class KioKdeconnect : public QObject, public KIO::SlaveBase
|
|
|
|
{
|
2015-10-19 05:49:29 +01:00
|
|
|
Q_OBJECT
|
2014-01-16 14:32:35 +00:00
|
|
|
|
|
|
|
public:
|
2017-09-03 20:39:44 +01:00
|
|
|
KioKdeconnect(const QByteArray& pool, const QByteArray& app);
|
2014-01-16 14:32:35 +00:00
|
|
|
|
2017-09-03 20:39:44 +01:00
|
|
|
void get(const QUrl& url) override;
|
|
|
|
void listDir(const QUrl& url) override;
|
|
|
|
void stat(const QUrl& url) override;
|
2014-01-16 14:32:35 +00:00
|
|
|
|
|
|
|
void listAllDevices(); //List all devices exported by m_dbusInterface
|
2019-03-09 14:52:29 +00:00
|
|
|
void listDevice(const QString& device); //List m_currentDevice
|
2014-01-16 14:32:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* KDED DBus interface, used to communicate to the daemon since we need some status (like connected)
|
|
|
|
*/
|
2017-09-03 20:39:44 +01:00
|
|
|
DaemonDbusInterface* m_dbusInterface;
|
2014-01-16 14:32:35 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
#endif
|