mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-16 11:09:16 +01:00
8b54ac225b
Allows code in Common to take advantage of the layered config logic.
26 lines
671 B
C++
26 lines
671 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "DolphinQt2/Config/Graphics/GraphicsSlider.h"
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
GraphicsSlider::GraphicsSlider(int minimum, int maximum, const Config::ConfigInfo<int>& setting,
|
|
int tick)
|
|
: QSlider(Qt::Horizontal), m_setting(setting)
|
|
{
|
|
setMinimum(minimum);
|
|
setMaximum(maximum);
|
|
setTickInterval(tick);
|
|
|
|
setValue(Config::Get(setting));
|
|
|
|
connect(this, &GraphicsSlider::valueChanged, this, &GraphicsSlider::Update);
|
|
}
|
|
|
|
void GraphicsSlider::Update(int value)
|
|
{
|
|
Config::SetBaseOrCurrent(m_setting, value);
|
|
}
|