mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Move DolphinQt2 to DolphinQt
This commit is contained in:
22
Source/Core/DolphinQt/Config/Graphics/GraphicsRadio.h
Normal file
22
Source/Core/DolphinQt/Config/Graphics/GraphicsRadio.h
Normal file
@ -0,0 +1,22 @@
|
||||
// Copyright 2018 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QRadioButton>
|
||||
|
||||
#include "Common/Config/Config.h"
|
||||
|
||||
class GraphicsRadioInt : public QRadioButton
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
GraphicsRadioInt(const QString& label, const Config::ConfigInfo<int>& setting, int value);
|
||||
|
||||
private:
|
||||
void Update();
|
||||
|
||||
Config::ConfigInfo<int> m_setting;
|
||||
int m_value;
|
||||
};
|
Reference in New Issue
Block a user