mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 09:09:12 +01:00
25 lines
685 B
C++
25 lines
685 B
C++
|
// Copyright 2018 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include "DolphinQt2/Config/Graphics/GraphicsRadio.h"
|
||
|
|
||
|
#include "Common/Config/Config.h"
|
||
|
#include "DolphinQt2/Settings.h"
|
||
|
|
||
|
GraphicsRadioInt::GraphicsRadioInt(const QString& label, const Config::ConfigInfo<int>& setting,
|
||
|
int value)
|
||
|
: QRadioButton(label), m_setting(setting), m_value(value)
|
||
|
{
|
||
|
setChecked(Config::Get(m_setting) == m_value);
|
||
|
connect(this, &QRadioButton::toggled, this, &GraphicsRadioInt::Update);
|
||
|
}
|
||
|
|
||
|
void GraphicsRadioInt::Update()
|
||
|
{
|
||
|
if (!isChecked())
|
||
|
return;
|
||
|
|
||
|
Config::SetBaseOrCurrent(m_setting, m_value);
|
||
|
}
|