2017-02-26 20:00:24 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
|
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
2019-03-27 00:31:03 +00:00
|
|
|
NumericSettingBase::NumericSettingBase(const NumericSettingDetails& details) : m_details(details)
|
2017-02-26 20:00:24 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-03-27 00:31:03 +00:00
|
|
|
const char* NumericSettingBase::GetUIName() const
|
2017-02-26 20:00:24 +00:00
|
|
|
{
|
2019-03-27 00:31:03 +00:00
|
|
|
return m_details.ui_name;
|
2017-02-26 20:00:24 +00:00
|
|
|
}
|
2019-03-27 00:31:03 +00:00
|
|
|
|
|
|
|
const char* NumericSettingBase::GetUISuffix() const
|
|
|
|
{
|
|
|
|
return m_details.ui_suffix;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* NumericSettingBase::GetUIDescription() const
|
|
|
|
{
|
|
|
|
return m_details.ui_description;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
SettingType NumericSetting<double>::GetType() const
|
|
|
|
{
|
|
|
|
return SettingType::Double;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
SettingType NumericSetting<bool>::GetType() const
|
2017-02-26 20:00:24 +00:00
|
|
|
{
|
2019-03-27 00:31:03 +00:00
|
|
|
return SettingType::Bool;
|
2017-02-26 20:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ControllerEmu
|