123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- #include "SettingsSection.h"
- #include "QsLog.h"
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- SettingsSection::SettingsSection(const QString& sectionID, quint8 platforms, int _orderIndex, QObject* parent)
- : QObject(parent), m_sectionID(sectionID), m_orderIndex(_orderIndex), m_platform(platforms), m_hidden(false), m_storage(false)
- {
- m_values.clear();
- }
- /////////////////////////////////////////////////////////////////////////////////////////
- void SettingsSection::registerSetting(SettingsValue* value)
- {
- if (m_values.contains(value->key()))
- {
- QLOG_WARN() << QString("Trying to register %1.%2 multiple times").arg(m_sectionID).arg(value->key());
- return;
- }
- value->setParent(this);
- m_values[value->key()] = value;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- void SettingsSection::setValues(const QVariant& values)
- {
- QVariantMap map = values.toMap();
- QVariantMap updatedValues;
- // values not included in the map are "removed"
- for(const QString& key : m_values.keys())
- {
- if (!map.contains(key))
- resetValueNoNotify(key, updatedValues);
- }
- for(const QString& key : map.keys())
- {
- if (key.isEmpty())
- continue;
- bool haveKey = m_values.contains(key);
- if (haveKey && m_values[key]->value() == map[key])
- continue;
- if (haveKey)
- {
- m_values[key]->setValue(map[key]);
- }
- else
- {
- m_values[key] = new SettingsValue(key, QVariant(), PLATFORM_ANY, this);
- m_values[key]->setValue(map[key]);
- }
- updatedValues.insert(key, map[key]);
- }
- if (updatedValues.size() > 0)
- {
- emit valuesUpdated(updatedValues);
- emit SettingsComponent::Get().sectionValueUpdate(m_sectionID, updatedValues);
- }
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- QVariant SettingsSection::defaultValue(const QString& key)
- {
- if (m_values.contains(key))
- return m_values[key]->defaultValue();
- QLOG_WARN() << "Looking for defaultValue:" << key << "in section:" << m_sectionID << "but it can't be found";
- return QVariant();
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- QVariant SettingsSection::value(const QString& key)
- {
- if (m_values.contains(key))
- return m_values[key]->value();
- QLOG_WARN() << "Looking for value:" << key << "in section:" << m_sectionID << "but it can't be found";
- return QVariant();
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- void SettingsSection::updatePossibleValues(const QString &key, const QVariantList &possibleValues)
- {
- if (m_values.contains(key))
- m_values[key]->setPossibleValues(possibleValues);
- emit SettingsComponent::Get().groupUpdate(m_sectionID, descriptions());
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- QVariantList SettingsSection::possibleValues(const QString& key)
- {
- if (m_values.contains(key))
- return m_values[key]->possibleValues();
- return QVariantList();
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- bool SettingsSection::setValue(const QString& key, const QVariant& value)
- {
- if (key == "index")
- return false;
- QVariantMap values;
- // populate with default values (setValues() resets missing values)
- for(const QString& entry : m_values.keys())
- values[entry] = m_values[entry]->value();
- values[key] = value;
- setValues(values);
- return true;
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- void SettingsSection::resetValueNoNotify(const QString& key, QVariantMap& updatedValues)
- {
- if (!m_values.contains(key))
- return;
- SettingsValue* val = m_values[key];
- if (val->hasDescription())
- {
- if (val->value() == val->defaultValue())
- return;
- val->setValue(val->defaultValue());
- updatedValues[key] = val->value();
- }
- else
- {
- m_values[key]->deleteLater();
- m_values.remove(key);
- }
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- void SettingsSection::resetValue(const QString &key)
- {
- QVariantMap updatedValues;
- resetValueNoNotify(key, updatedValues);
- if (updatedValues.size() > 0)
- emit valuesUpdated(updatedValues);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- void SettingsSection::resetValues()
- {
- QVariantMap updatedValues;
- for (auto key : m_values.keys())
- resetValueNoNotify(key, updatedValues);
- if (updatedValues.size() > 0)
- emit valuesUpdated(updatedValues);
- }
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- const QVariantMap SettingsSection::allValues() const
- {
- QVariantMap values;
- for(SettingsValue* val : m_values.values())
- values[val->key()] = val->value();
- return values;
- }
- /////////////////////////////////////////////////////////////////////////////////////////
- struct ValueSortOrder
- {
- inline bool operator()(SettingsValue* a, SettingsValue* b)
- {
- return a->indexOrder() < b->indexOrder();
- }
- };
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- const QVariantMap SettingsSection::descriptions() const
- {
- QVariantMap map;
- map.insert("key", m_sectionID);
- QList<SettingsValue*> list = m_values.values();
- std::sort(list.begin(), list.end(), ValueSortOrder());
- QVariantList settings;
- for(SettingsValue* value : list)
- {
- if (!value->isHidden())
- settings.push_back(value->descriptions());
- }
- map.insert("settings", settings);
- return map;
- }
- /////////////////////////////////////////////////////////////////////////////////////////
- bool SettingsSection::isHidden() const
- {
- bool correctPlatform = ((m_platform & Utils::CurrentPlatform()) == Utils::CurrentPlatform());
- return (m_hidden || !correctPlatform);
- }
|