2017-06-15 23:42:12 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-17 05:05:43 +00:00
|
|
|
#include "DolphinQt/Config/ToolTipControls/ToolTipSlider.h"
|
2017-06-15 23:42:12 +00:00
|
|
|
|
|
|
|
namespace Config
|
|
|
|
{
|
|
|
|
template <typename T>
|
2020-05-02 12:39:40 +00:00
|
|
|
struct Info;
|
2017-07-30 19:56:12 +00:00
|
|
|
}
|
2017-06-15 23:42:12 +00:00
|
|
|
|
2020-10-17 05:05:43 +00:00
|
|
|
class GraphicsSlider : public ToolTipSlider
|
2017-06-15 23:42:12 +00:00
|
|
|
{
|
2018-05-13 20:16:20 +00:00
|
|
|
Q_OBJECT
|
2017-06-15 23:42:12 +00:00
|
|
|
public:
|
2020-05-02 12:39:40 +00:00
|
|
|
GraphicsSlider(int minimum, int maximum, const Config::Info<int>& setting, int tick = 0);
|
2017-06-15 23:42:12 +00:00
|
|
|
void Update(int value);
|
|
|
|
|
|
|
|
private:
|
2020-05-02 12:39:40 +00:00
|
|
|
const Config::Info<int>& m_setting;
|
2017-06-15 23:42:12 +00:00
|
|
|
};
|