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
|
|
|
|
|
|
|
|
#include <QDir>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QObject>
|
2015-03-14 04:19:39 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QVariant>
|
|
|
|
|
|
|
|
#include "kdeconnectcore_export.h"
|
2023-08-13 07:24:18 +01:00
|
|
|
#include <memory>
|
2015-03-14 04:19:39 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2023-07-20 18:24:41 +01:00
|
|
|
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY deviceIdChanged)
|
2019-10-27 17:08:51 +00:00
|
|
|
Q_PROPERTY(QString pluginName READ pluginName WRITE setPluginName NOTIFY configChanged)
|
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
public:
|
2023-08-12 12:56:19 +01:00
|
|
|
explicit KdeConnectPluginConfig(QObject *parent = nullptr);
|
|
|
|
explicit KdeConnectPluginConfig(const QString &deviceId, const QString &pluginName, QObject *parent = nullptr);
|
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
|
|
|
|
*/
|
2022-09-10 22:23:52 +01: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.
|
|
|
|
*/
|
2022-09-10 22:23:52 +01:00
|
|
|
void setList(const QString &key, const QVariantList &list);
|
2015-12-05 22:11:57 +00:00
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
/**
|
|
|
|
* Read a key-value pair from this config object
|
|
|
|
*/
|
2022-09-10 22:23:52 +01: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
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QVariantList getList(const QString &key, const QVariantList &defaultValue = {});
|
2015-12-05 22:11:57 +00:00
|
|
|
|
2019-10-27 17:08:51 +00:00
|
|
|
QString deviceId();
|
2022-09-10 22:23:52 +01:00
|
|
|
void setDeviceId(const QString &deviceId);
|
2019-10-27 17:08:51 +00:00
|
|
|
|
|
|
|
QString pluginName();
|
2022-09-10 22:23:52 +01:00
|
|
|
void setPluginName(const QString &pluginName);
|
2019-10-27 17:08:51 +00:00
|
|
|
|
2015-09-12 12:46:37 +01:00
|
|
|
private Q_SLOTS:
|
|
|
|
void slotConfigChanged();
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void configChanged();
|
2023-07-20 18:24:41 +01:00
|
|
|
void deviceIdChanged(const QString &value);
|
2015-03-14 04:19:39 +00:00
|
|
|
|
|
|
|
private:
|
2019-10-27 17:08:51 +00:00
|
|
|
void loadConfig();
|
|
|
|
|
2023-08-13 07:24:18 +01:00
|
|
|
std::unique_ptr<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
|