mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-07 21:23:31 +01:00
08df9a66e0
This reduces code duplication in the different ConfigControls. This is helpful for the next commit, which will modify the now deduplicated code.
28 lines
577 B
C++
28 lines
577 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinQt/Config/ConfigControls/ConfigControl.h"
|
|
#include "DolphinQt/Config/ToolTipControls/ToolTipSlider.h"
|
|
|
|
namespace Config
|
|
{
|
|
template <typename T>
|
|
class Info;
|
|
}
|
|
|
|
class ConfigSlider final : public ConfigControl<ToolTipSlider>
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ConfigSlider(int minimum, int maximum, const Config::Info<int>& setting, int tick = 0);
|
|
void Update(int value);
|
|
|
|
protected:
|
|
void OnConfigChanged() override;
|
|
|
|
private:
|
|
const Config::Info<int>& m_setting;
|
|
};
|