|
|
|
@ -34,6 +34,7 @@
@@ -34,6 +34,7 @@
|
|
|
|
|
#include <QString> |
|
|
|
|
|
|
|
|
|
#include "settingsstorage.h" |
|
|
|
|
#include "utils/string.h" |
|
|
|
|
|
|
|
|
|
template <typename T> |
|
|
|
|
class CachedSettingValue |
|
|
|
@ -94,20 +95,13 @@ private:
@@ -94,20 +95,13 @@ private:
|
|
|
|
|
template <typename U, typename std::enable_if<std::is_enum<U>::value, int>::type = 0> |
|
|
|
|
U loadValue(const U &defaultValue) |
|
|
|
|
{ |
|
|
|
|
static_assert(std::is_same<int, typename std::underlying_type<U>::type>::value, |
|
|
|
|
"Enumeration underlying type has to be int"); |
|
|
|
|
|
|
|
|
|
bool ok = false; |
|
|
|
|
const U res = static_cast<U>(QMetaEnum::fromType<U>().keyToValue( |
|
|
|
|
SettingsStorage::instance()->loadValue(m_keyName).toString().toLatin1().constData(), &ok)); |
|
|
|
|
return ok ? res : defaultValue; |
|
|
|
|
return Utils::String::parse(SettingsStorage::instance()->loadValue(m_keyName).toString(), defaultValue); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template <typename U, typename std::enable_if<std::is_enum<U>::value, int>::type = 0> |
|
|
|
|
void storeValue(const U &value) |
|
|
|
|
{ |
|
|
|
|
SettingsStorage::instance()->storeValue(m_keyName, |
|
|
|
|
QString::fromLatin1(QMetaEnum::fromType<U>().valueToKey(static_cast<int>(value)))); |
|
|
|
|
SettingsStorage::instance()->storeValue(m_keyName, Utils::String::serialize(value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const QString m_keyName; |
|
|
|
|