2019-07-17 18:15:25 +00:00
|
|
|
// Copyright 2019 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2019-07-17 18:15:25 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-17 05:05:43 +00:00
|
|
|
#include "DolphinQt/Config/ToolTipControls/ToolTipSpinBox.h"
|
2019-07-17 18:15:25 +00:00
|
|
|
|
|
|
|
namespace Config
|
|
|
|
{
|
|
|
|
template <typename T>
|
2020-09-20 11:58:17 +00:00
|
|
|
class Info;
|
2019-07-17 18:15:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-17 05:05:43 +00:00
|
|
|
class GraphicsInteger : public ToolTipSpinBox
|
2019-07-17 18:15:25 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-05-02 12:39:40 +00:00
|
|
|
GraphicsInteger(int minimum, int maximum, const Config::Info<int>& setting, int step = 1);
|
2019-07-17 18:15:25 +00:00
|
|
|
void Update(int value);
|
|
|
|
|
|
|
|
private:
|
2020-05-02 12:39:40 +00:00
|
|
|
const Config::Info<int>& m_setting;
|
2019-07-17 18:15:25 +00:00
|
|
|
};
|