2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-01-14 23:42:38 +00:00
|
|
|
*
|
|
|
|
* 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
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-01-14 23:42:38 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-07-01 00:48:09 +01:00
|
|
|
#include "Setting.h"
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "settings/SettingsObject.h"
|
2013-01-14 23:42:38 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
Setting::Setting(QStringList synonyms, QVariant defVal) : QObject(), m_synonyms(synonyms), m_defVal(defVal) {}
|
2013-01-28 21:35:09 +00:00
|
|
|
|
2013-02-25 19:24:46 +00:00
|
|
|
QVariant Setting::get() const
|
2013-01-14 23:42:38 +00:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
SettingsObject* sbase = m_storage;
|
|
|
|
if (!sbase) {
|
2013-02-25 19:24:46 +00:00
|
|
|
return defValue();
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2013-03-24 14:36:00 +00:00
|
|
|
QVariant test = sbase->retrieveValue(*this);
|
2013-11-04 01:53:05 +00:00
|
|
|
if (!test.isValid())
|
2013-03-24 14:36:00 +00:00
|
|
|
return defValue();
|
|
|
|
return test;
|
|
|
|
}
|
2013-01-14 23:42:38 +00:00
|
|
|
}
|
2013-01-28 21:35:09 +00:00
|
|
|
|
2013-02-25 19:24:46 +00:00
|
|
|
QVariant Setting::defValue() const
|
2013-01-28 21:35:09 +00:00
|
|
|
{
|
2013-02-25 19:24:46 +00:00
|
|
|
return m_defVal;
|
2013-01-28 21:35:09 +00:00
|
|
|
}
|
|
|
|
|
2013-02-25 19:24:46 +00:00
|
|
|
void Setting::set(QVariant value)
|
2013-01-28 21:35:09 +00:00
|
|
|
{
|
2014-07-01 00:48:09 +01:00
|
|
|
emit SettingChanged(*this, value);
|
2013-01-28 21:35:09 +00:00
|
|
|
}
|
2013-07-15 23:30:32 +01:00
|
|
|
|
|
|
|
void Setting::reset()
|
|
|
|
{
|
|
|
|
emit settingReset(*this);
|
|
|
|
}
|