38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
|
// Copyright 2017 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include "DolphinQt2/Config/Mapping/MappingNumeric.h"
|
||
|
|
||
|
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
|
||
|
#include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
|
||
|
|
||
|
MappingNumeric::MappingNumeric(MappingWidget* widget, ControllerEmu::NumericSetting* setting)
|
||
|
: m_parent(widget), m_setting(setting), m_range(setting->m_high - setting->m_low)
|
||
|
{
|
||
|
setValue(setting->GetValue() * m_range);
|
||
|
setRange(setting->m_low, setting->m_high);
|
||
|
Connect();
|
||
|
}
|
||
|
|
||
|
void MappingNumeric::Connect()
|
||
|
{
|
||
|
connect(this, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this,
|
||
|
[this](int value) {
|
||
|
m_setting->SetValue(static_cast<double>(value) / m_range);
|
||
|
Update();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
void MappingNumeric::Clear()
|
||
|
{
|
||
|
setValue((m_setting->m_low + m_setting->m_high) / 2);
|
||
|
Update();
|
||
|
}
|
||
|
|
||
|
void MappingNumeric::Update()
|
||
|
{
|
||
|
setValue(m_setting->GetValue() * m_range);
|
||
|
m_parent->SaveSettings();
|
||
|
}
|