aboutsummaryrefslogtreecommitdiff
path: root/api/logic/settings/INISettingsObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'api/logic/settings/INISettingsObject.cpp')
-rw-r--r--api/logic/settings/INISettingsObject.cpp108
1 files changed, 54 insertions, 54 deletions
diff --git a/api/logic/settings/INISettingsObject.cpp b/api/logic/settings/INISettingsObject.cpp
index ff2cee31..43791c24 100644
--- a/api/logic/settings/INISettingsObject.cpp
+++ b/api/logic/settings/INISettingsObject.cpp
@@ -17,91 +17,91 @@
#include "Setting.h"
INISettingsObject::INISettingsObject(const QString &path, QObject *parent)
- : SettingsObject(parent)
+ : SettingsObject(parent)
{
- m_filePath = path;
- m_ini.loadFile(path);
+ m_filePath = path;
+ m_ini.loadFile(path);
}
void INISettingsObject::setFilePath(const QString &filePath)
{
- m_filePath = filePath;
+ m_filePath = filePath;
}
bool INISettingsObject::reload()
{
- return m_ini.loadFile(m_filePath) && SettingsObject::reload();
+ return m_ini.loadFile(m_filePath) && SettingsObject::reload();
}
void INISettingsObject::suspendSave()
{
- m_suspendSave = true;
+ m_suspendSave = true;
}
void INISettingsObject::resumeSave()
{
- m_suspendSave = false;
- if(m_doSave)
- {
- m_ini.saveFile(m_filePath);
- }
+ m_suspendSave = false;
+ if(m_doSave)
+ {
+ m_ini.saveFile(m_filePath);
+ }
}
void INISettingsObject::changeSetting(const Setting &setting, QVariant value)
{
- if (contains(setting.id()))
- {
- // valid value -> set the main config, remove all the sysnonyms
- if (value.isValid())
- {
- auto list = setting.configKeys();
- m_ini.set(list.takeFirst(), value);
- for(auto iter: list)
- m_ini.remove(iter);
- }
- // invalid -> remove all (just like resetSetting)
- else
- {
- for(auto iter: setting.configKeys())
- m_ini.remove(iter);
- }
- doSave();
- }
+ if (contains(setting.id()))
+ {
+ // valid value -> set the main config, remove all the sysnonyms
+ if (value.isValid())
+ {
+ auto list = setting.configKeys();
+ m_ini.set(list.takeFirst(), value);
+ for(auto iter: list)
+ m_ini.remove(iter);
+ }
+ // invalid -> remove all (just like resetSetting)
+ else
+ {
+ for(auto iter: setting.configKeys())
+ m_ini.remove(iter);
+ }
+ doSave();
+ }
}
void INISettingsObject::doSave()
{
- if(m_suspendSave)
- {
- m_doSave = true;
- }
- else
- {
- m_ini.saveFile(m_filePath);
- }
+ if(m_suspendSave)
+ {
+ m_doSave = true;
+ }
+ else
+ {
+ m_ini.saveFile(m_filePath);
+ }
}
void INISettingsObject::resetSetting(const Setting &setting)
{
- // if we have the setting, remove all the synonyms. ALL OF THEM
- if (contains(setting.id()))
- {
- for(auto iter: setting.configKeys())
- m_ini.remove(iter);
- doSave();
- }
+ // if we have the setting, remove all the synonyms. ALL OF THEM
+ if (contains(setting.id()))
+ {
+ for(auto iter: setting.configKeys())
+ m_ini.remove(iter);
+ doSave();
+ }
}
QVariant INISettingsObject::retrieveValue(const Setting &setting)
{
- // if we have the setting, return value of the first matching synonym
- if (contains(setting.id()))
- {
- for(auto iter: setting.configKeys())
- {
- if(m_ini.contains(iter))
- return m_ini[iter];
- }
- }
- return QVariant();
+ // if we have the setting, return value of the first matching synonym
+ if (contains(setting.id()))
+ {
+ for(auto iter: setting.configKeys())
+ {
+ if(m_ini.contains(iter))
+ return m_ini[iter];
+ }
+ }
+ return QVariant();
}