2015-03-14 04:19:39 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2015 Albert Vaca <albertvaka@gmail.com>
|
2015-03-14 04:19:39 +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
|
2015-03-14 04:19:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KDECONNECTPLUGINCONFIG_H
|
|
|
|
#define KDECONNECTPLUGINCONFIG_H
|
|
|
|
|
2015-09-12 12:46:37 +01:00
|
|
|
#include <QObject>
|
2015-03-14 04:19:39 +00:00
|
|
|
#include <QDir>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QVariant>
|
|
|
|
|
|
|
|
#include "kdeconnectcore_export.h"
|
|
|
|
|
|
|
|
struct KdeConnectPluginConfigPrivate;
|
|
|
|
|
2015-09-12 12:46:37 +01:00
|
|
|
class KDECONNECTCORE_EXPORT KdeConnectPluginConfig : public QObject
|
2015-03-14 04:19:39 +00:00
|
|
|
{
|
2015-09-12 12:46:37 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2019-10-27 17:08:51 +00:00
|
|
|
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY configChanged)
|
|
|
|
Q_PROPERTY(QString pluginName READ pluginName WRITE setPluginName NOTIFY configChanged)
|
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
public:
|
2019-10-27 17:08:51 +00:00
|
|
|
KdeConnectPluginConfig();
|
2015-03-14 04:19:39 +00:00
|
|
|
KdeConnectPluginConfig(const QString& deviceId, const QString& pluginName);
|
2016-06-20 08:05:02 +01:00
|
|
|
~KdeConnectPluginConfig() override;
|
2015-03-14 04:19:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a key-value pair in this config object
|
|
|
|
*/
|
2019-10-27 17:08:51 +00:00
|
|
|
Q_SCRIPTABLE void set(const QString& key, const QVariant& value);
|
2015-03-14 04:19:39 +00:00
|
|
|
|
2015-12-05 22:11:57 +00:00
|
|
|
/**
|
|
|
|
* Store a list of values in this config object under the array name
|
|
|
|
* specified in key.
|
|
|
|
*/
|
|
|
|
void setList(const QString& key, const QVariantList& list);
|
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
/**
|
|
|
|
* Read a key-value pair from this config object
|
|
|
|
*/
|
2019-10-27 17:08:51 +00:00
|
|
|
Q_SCRIPTABLE QString getString(const QString& key, const QString& defaultValue);
|
|
|
|
Q_SCRIPTABLE bool getBool(const QString& key, const bool defaultValue);
|
|
|
|
Q_SCRIPTABLE int getInt(const QString& key, const int defaultValue);
|
|
|
|
Q_SCRIPTABLE QByteArray getByteArray(const QString& key, const QByteArray defaultValue);
|
2015-03-14 04:19:39 +00:00
|
|
|
|
2015-12-05 22:11:57 +00:00
|
|
|
QVariantList getList(const QString& key, const QVariantList& defaultValue = {});
|
|
|
|
|
2019-10-27 17:08:51 +00:00
|
|
|
QString deviceId();
|
|
|
|
void setDeviceId(const QString& deviceId);
|
|
|
|
|
|
|
|
QString pluginName();
|
|
|
|
void setPluginName(const QString& pluginName);
|
|
|
|
|
2015-09-12 12:46:37 +01:00
|
|
|
private Q_SLOTS:
|
|
|
|
void slotConfigChanged();
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void configChanged();
|
2015-03-14 04:19:39 +00:00
|
|
|
|
|
|
|
private:
|
2019-10-27 17:08:51 +00:00
|
|
|
void loadConfig();
|
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
QScopedPointer<KdeConnectPluginConfigPrivate> d;
|
2019-10-27 17:08:51 +00:00
|
|
|
QString m_deviceId;
|
|
|
|
QString m_pluginName;
|
2015-03-14 04:19:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|