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>
|
|
|
|
|
2022-04-19 22:51:21 +01:00
|
|
|
#include <KIO/WorkerBase>
|
2014-01-16 14:32:35 +00:00
|
|
|
|
2020-11-16 00:16:03 +00:00
|
|
|
#include "dbusinterfaces.h"
|
2014-01-16 14:32:35 +00:00
|
|
|
|
2022-04-19 22:51:21 +01:00
|
|
|
class KioKdeconnect : public QObject, public KIO::WorkerBase
|
2014-01-16 14:32:35 +00:00
|
|
|
{
|
2015-10-19 05:49:29 +01:00
|
|
|
Q_OBJECT
|
2014-01-16 14:32:35 +00:00
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
KioKdeconnect(const QByteArray &pool, const QByteArray &app);
|
2014-01-16 14:32:35 +00:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
KIO::WorkerResult get(const QUrl &url) override;
|
|
|
|
KIO::WorkerResult listDir(const QUrl &url) override;
|
|
|
|
KIO::WorkerResult stat(const QUrl &url) override;
|
2014-01-16 14:32:35 +00:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
KIO::WorkerResult listAllDevices(); // List all devices exported by m_dbusInterface
|
|
|
|
KIO::WorkerResult 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)
|
|
|
|
*/
|
2022-09-10 22:23:52 +01:00
|
|
|
DaemonDbusInterface *m_dbusInterface;
|
2014-01-16 14:32:35 +00:00
|
|
|
};
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
#endif
|