27 lines
447 B
C
Raw Normal View History

2017-05-20 17:53:17 +02:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QSpinBox>
#include <QString>
class MappingWidget;
namespace ControllerEmu
{
class NumericSetting;
2017-07-30 15:56:12 -04:00
}
2017-05-20 17:53:17 +02:00
class MappingNumeric : public QSpinBox
{
public:
MappingNumeric(MappingWidget* widget, ControllerEmu::NumericSetting* ref);
private:
2019-03-14 20:27:49 -05:00
void ConfigChanged();
2017-05-20 17:53:17 +02:00
2019-03-14 20:27:49 -05:00
ControllerEmu::NumericSetting& m_setting;
2017-05-20 17:53:17 +02:00
};