forked from MycroftAI/mycroft-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobalsettings.h
63 lines (54 loc) · 2.4 KB
/
globalsettings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Copyright 2018 by Aditya Mehra <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef GLOBALSETTINGS_H
#define GLOBALSETTINGS_H
#include <QSettings>
#include <QCoreApplication>
#include <QDebug>
#define SettingPropertyKey(type, name, setOption, signalName, settingKey, defaultValue) \
inline type name() const { return m_settings.value(settingKey, defaultValue).value<type>(); } \
inline void setOption (const type &value) { m_settings.setValue(settingKey, value); emit signalName(); qDebug() << "emitted"; }
class QSettings;
class GlobalSettings : public QObject
{
Q_OBJECT
Q_PROPERTY(QString webSocketAddress READ webSocketAddress WRITE setWebSocketAddress NOTIFY webSocketChanged)
Q_PROPERTY(bool autoConnect READ autoConnect WRITE setAutoConnect NOTIFY autoConnectChanged)
Q_PROPERTY(bool usesRemoteTTS READ usesRemoteTTS WRITE setUsesRemoteTTS NOTIFY usesRemoteTTSChanged)
Q_PROPERTY(bool displayRemoteConfig READ displayRemoteConfig WRITE setDisplayRemoteConfig NOTIFY displayRemoteConfigChanged)
public:
explicit GlobalSettings(QObject *parent=0);
#ifndef Q_OS_ANDROID
SettingPropertyKey(QString, webSocketAddress, setWebSocketAddress, webSocketChanged, QStringLiteral("webSocketAddress"), QStringLiteral("ws://0.0.0.0"))
#else
SettingPropertyKey(QString, webSocketAddress, setWebSocketAddress, webSocketChanged, QStringLiteral("webSocketAddress"), QStringLiteral("ws://104.248.21.254"))
#endif
bool autoConnect() const;
void setAutoConnect(bool autoconnect);
bool usesRemoteTTS() const;
void setUsesRemoteTTS(bool usesRemoteTTS);
bool displayRemoteConfig() const;
void setDisplayRemoteConfig(bool displayRemoteConfig);
Q_SIGNALS:
void webSocketChanged();
void autoConnectChanged();
void usesRemoteTTSChanged();
void displayRemoteConfigChanged();
private:
QSettings m_settings;
};
#endif // GLOBALSETTINGS_H