-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQtGuiSettings.cpp
50 lines (43 loc) · 1.18 KB
/
QtGuiSettings.cpp
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
#include "QtGuiSettings.h"
#include "QtGui.h"
#include <QtDebug>
#include "DBApi.h"
QtGuiSettings *settings;
QtGuiSettings::QtGuiSettings(QObject *parent) : QSettings(parent) {
// dummy
}
QVariant QtGuiSettings::getValue(const QString &group, const QString &key, const QVariant &defaultValue) {
beginGroup(group);
QVariant result;
if (contains(key)) {
result = value(key, defaultValue);
}
else {
// save default value keys
QSettings::setValue(key, defaultValue);
result = defaultValue;
}
endGroup();
return result;
}
QVariant QtGuiSettings::getValue(const QString &group, const QString &key) {
beginGroup(group);
QVariant result = value(key);
endGroup();
return result;
}
void QtGuiSettings::setValue(const QString &group, const QString &key, const QVariant &value) {
beginGroup(group);
QSettings::setValue(key, value);
endGroup();
}
void QtGuiSettings::removeValue(const QString &group, const QString &key) {
beginGroup(group);
QSettings::remove(key);
endGroup();
}
void QtGuiSettings::removeGroup(const QString &group) {
if (group.length() >= 2) {
QSettings::remove(group);
}
}