2020-07-11 21:03:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
** ScStw Libraries
|
|
|
|
** Copyright (C) 2020 Itsblue development
|
|
|
|
**
|
|
|
|
** 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 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** 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
|
|
|
|
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-07-10 15:20:13 +02:00
|
|
|
#ifndef SCSTWREMOTESETTINGS_H
|
|
|
|
#define SCSTWREMOTESETTINGS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "scstwsettings.h"
|
|
|
|
#include "scstwclient.h"
|
|
|
|
#include <QMetaEnum>
|
|
|
|
|
|
|
|
class ScStwRemoteSettings : public ScStwSettings
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-10-09 15:18:56 +02:00
|
|
|
Q_PROPERTY(ScStwClient* scStwClient READ getScStwClient WRITE setScStwClient NOTIFY scStwClientChanged)
|
|
|
|
|
2020-07-10 15:20:13 +02:00
|
|
|
public:
|
2020-10-09 15:18:56 +02:00
|
|
|
ScStwRemoteSettings(QObject * parent = nullptr);
|
2020-07-10 15:20:13 +02:00
|
|
|
ScStwRemoteSettings(ScStwClient * scStwClient, QObject * parent = nullptr);
|
|
|
|
|
|
|
|
enum SettingsMode {
|
|
|
|
LOCAL,
|
|
|
|
REMOTE
|
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QVariant readSetting(QString key, int keyInt, int keyLevel);
|
|
|
|
bool writeSetting(QString key, QVariant value, int keyInt,int keyLevel = -1);
|
2020-07-11 20:30:04 +02:00
|
|
|
bool setDefaultSetting(QString key, QVariant defaultVariant, int keyInt,int keyLevel = -1);
|
2020-07-10 15:20:13 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
ScStwClient * scStwClient;
|
|
|
|
|
2020-10-09 15:18:56 +02:00
|
|
|
public slots:
|
|
|
|
ScStwClient *getScStwClient();
|
|
|
|
void setScStwClient(ScStwClient *client);
|
|
|
|
|
2020-07-10 15:20:13 +02:00
|
|
|
private slots:
|
|
|
|
void handleClientStateChange();
|
|
|
|
void handleBaseStationSignal(ScStw::SignalKey key, QVariant data);
|
2020-10-03 13:06:14 +02:00
|
|
|
SettingsMode getMode();
|
2020-10-09 15:18:56 +02:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void scStwClientChanged();
|
2020-07-10 15:20:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCSTWREMOTESETTINGS_H
|