2015-12-05 23:08:02 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
*
|
|
|
|
* 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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2015-12-05 23:08:02 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TESTDAEMON_H
|
|
|
|
#define TESTDAEMON_H
|
|
|
|
|
|
|
|
#include <core/daemon.h>
|
|
|
|
#include <core/backends/pairinghandler.h>
|
|
|
|
|
|
|
|
class TestDaemon : public Daemon
|
|
|
|
{
|
|
|
|
public:
|
2019-05-05 14:45:50 +01:00
|
|
|
TestDaemon(QObject* parent = nullptr)
|
2015-12-05 23:08:02 +00:00
|
|
|
: Daemon(parent, true)
|
2019-05-05 14:45:50 +01:00
|
|
|
, m_nam(nullptr)
|
2015-12-05 23:08:02 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-12 23:09:04 +00:00
|
|
|
void addDevice(Device* device) {
|
|
|
|
Daemon::addDevice(device);
|
|
|
|
}
|
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
void reportError(const QString & title, const QString & description) override
|
2015-12-05 23:08:02 +00:00
|
|
|
{
|
|
|
|
qWarning() << "error:" << title << description;
|
|
|
|
}
|
|
|
|
|
2017-01-24 23:22:22 +00:00
|
|
|
void askPairingConfirmation(Device * d) override {
|
2015-12-05 23:08:02 +00:00
|
|
|
d->acceptPairing();
|
|
|
|
}
|
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
QNetworkAccessManager* networkAccessManager() override
|
2015-12-05 23:08:02 +00:00
|
|
|
{
|
|
|
|
if (!m_nam) {
|
|
|
|
m_nam = new KIO::AccessManager(this);
|
|
|
|
}
|
|
|
|
return m_nam;
|
|
|
|
}
|
|
|
|
|
2019-02-12 23:09:04 +00:00
|
|
|
Q_SCRIPTABLE virtual void sendSimpleNotification(const QString &eventId, const QString &title, const QString &text, const QString &iconName) override
|
2018-03-18 11:42:15 +00:00
|
|
|
{
|
|
|
|
qDebug() << eventId << title << text << iconName;
|
|
|
|
}
|
|
|
|
|
2015-12-05 23:08:02 +00:00
|
|
|
private:
|
|
|
|
QNetworkAccessManager* m_nam;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|