blob: 4100c7d716dfe4c26d60739701dbe5e22088feb2 (
plain)
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
|
/*
* Copyright (c) 2010 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include "QtSettingsProvider.h"
#include "QtSwiftUtil.h"
#include <QStringList>
namespace Swift {
QtSettingsProvider::QtSettingsProvider() {
}
QtSettingsProvider::~QtSettingsProvider() {
}
String QtSettingsProvider::getStringSetting(const String &settingPath) {
QVariant setting = settings_.value(P2QSTRING(settingPath));
return setting.isNull() ? "" : Q2PSTRING(setting.toString());
}
void QtSettingsProvider::storeString(const String &settingPath, const String &settingValue) {
settings_.setValue(P2QSTRING(settingPath), P2QSTRING(settingValue));
}
bool QtSettingsProvider::getBoolSetting(const String &settingPath, bool defaultValue) {
QVariant setting = settings_.value(P2QSTRING(settingPath));
return setting.isNull() ? defaultValue : setting.toBool();
}
void QtSettingsProvider::storeBool(const String &settingPath, bool settingValue) {
settings_.setValue(P2QSTRING(settingPath), settingValue);
}
std::vector<String> QtSettingsProvider::getAvailableProfiles() {
std::vector<String> profiles;
QVariant profilesVariant = settings_.value("profileList");
foreach(QString profileQString, profilesVariant.toStringList()) {
profiles.push_back(Q2PSTRING(profileQString));
}
return profiles;
}
void QtSettingsProvider::createProfile(const String& profile) {
QStringList stringList = settings_.value("profileList").toStringList();
stringList.append(P2QSTRING(profile));
settings_.setValue("profileList", stringList);
}
QSettings* QtSettingsProvider::getQSettings() {
return &settings_;
}
}
|