mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Qt: Implement graphics window and controls
This commit is contained in:
23
Source/Core/DolphinQt2/Config/Graphics/GraphicsSlider.h
Normal file
23
Source/Core/DolphinQt2/Config/Graphics/GraphicsSlider.h
Normal file
@ -0,0 +1,23 @@
|
||||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QSlider>
|
||||
|
||||
namespace Config
|
||||
{
|
||||
template <typename T>
|
||||
struct ConfigInfo;
|
||||
};
|
||||
|
||||
class GraphicsSlider : public QSlider
|
||||
{
|
||||
public:
|
||||
GraphicsSlider(int minimum, int maximum, const Config::ConfigInfo<int>& setting, int tick = 0);
|
||||
void Update(int value);
|
||||
|
||||
private:
|
||||
const Config::ConfigInfo<int>& m_setting;
|
||||
};
|
Reference in New Issue
Block a user