2017-02-09 03:15:43 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2019-03-27 00:31:03 +00:00
|
|
|
|
2017-02-09 03:15:43 +00:00
|
|
|
#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h"
|
2019-03-27 00:31:03 +00:00
|
|
|
#include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
|
2020-09-15 11:34:41 +00:00
|
|
|
#include "InputCommon/ControllerInterface/CoreDevice.h"
|
2017-02-09 03:15:43 +00:00
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
|
|
|
class Slider : public ControlGroup
|
|
|
|
{
|
|
|
|
public:
|
2018-07-13 15:49:05 +00:00
|
|
|
struct StateData
|
|
|
|
{
|
|
|
|
ControlState value{};
|
|
|
|
};
|
|
|
|
|
2017-12-19 10:21:27 +00:00
|
|
|
Slider(const std::string& name_, const std::string& ui_name_);
|
|
|
|
explicit Slider(const std::string& name_);
|
2017-02-09 03:15:43 +00:00
|
|
|
|
2018-07-13 15:49:05 +00:00
|
|
|
StateData GetState();
|
2019-03-27 00:31:03 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SettingValue<double> m_deadzone_setting;
|
2017-02-09 03:15:43 +00:00
|
|
|
};
|
|
|
|
} // namespace ControllerEmu
|