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
|
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
public:
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
void set(const QString& key, const QVariant& value);
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
QVariant get(const QString& key, const QVariant& defaultValue);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience method that will convert the QVariant to whatever type for you
|
|
|
|
*/
|
2015-09-11 11:34:52 +01:00
|
|
|
template<typename T> T get(const QString& key, const T& defaultValue = {}) {
|
2015-03-14 04:19:39 +00:00
|
|
|
return get(key, QVariant(defaultValue)).template value<T>(); //Important note: Awesome template syntax is awesome
|
|
|
|
}
|
|
|
|
|
2015-12-05 22:11:57 +00:00
|
|
|
QVariantList getList(const QString& key, const QVariantList& defaultValue = {});
|
|
|
|
|
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:
|
|
|
|
QScopedPointer<KdeConnectPluginConfigPrivate> d;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|