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