2017-06-15 23:42:12 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-15 23:42:12 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-17 05:05:43 +00:00
|
|
|
#include "DolphinQt/Config/ToolTipControls/ToolTipComboBox.h"
|
2017-06-15 23:42:12 +00:00
|
|
|
|
2018-05-11 20:38:44 +00:00
|
|
|
#include "Common/Config/Config.h"
|
2017-06-15 23:42:12 +00:00
|
|
|
|
2020-10-17 05:05:43 +00:00
|
|
|
class GraphicsChoice : public ToolTipComboBox
|
2017-06-15 23:42:12 +00:00
|
|
|
{
|
2018-05-13 20:16:20 +00:00
|
|
|
Q_OBJECT
|
2017-06-15 23:42:12 +00:00
|
|
|
public:
|
2020-05-02 12:39:40 +00:00
|
|
|
GraphicsChoice(const QStringList& options, const Config::Info<int>& setting);
|
2017-06-15 23:42:12 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Update(int choice);
|
|
|
|
|
2020-05-02 12:39:40 +00:00
|
|
|
Config::Info<int> m_setting;
|
2017-06-15 23:42:12 +00:00
|
|
|
};
|