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
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Graphics/GraphicsChoice.h"
|
2017-06-15 23:42:12 +00:00
|
|
|
|
2018-08-23 11:11:52 +00:00
|
|
|
#include <QSignalBlocker>
|
|
|
|
|
2017-07-09 23:17:36 +00:00
|
|
|
#include "Common/Config/Config.h"
|
2018-05-28 01:48:04 +00:00
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Settings.h"
|
2017-06-15 23:42:12 +00:00
|
|
|
|
2020-05-02 12:39:40 +00:00
|
|
|
GraphicsChoice::GraphicsChoice(const QStringList& options, const Config::Info<int>& setting)
|
2017-06-15 23:42:12 +00:00
|
|
|
: m_setting(setting)
|
|
|
|
{
|
|
|
|
addItems(options);
|
2019-07-30 13:35:46 +00:00
|
|
|
connect(this, qOverload<int>(&QComboBox::currentIndexChanged), this, &GraphicsChoice::Update);
|
2017-06-15 23:42:12 +00:00
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
|
|
|
|
2020-09-12 22:06:17 +00:00
|
|
|
connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] {
|
2017-09-20 16:12:03 +00:00
|
|
|
QFont bf = font();
|
|
|
|
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);
|
|
|
|
setFont(bf);
|
2018-05-04 11:51:55 +00:00
|
|
|
|
2018-08-23 11:11:52 +00:00
|
|
|
const QSignalBlocker blocker(this);
|
2018-04-29 10:17:39 +00:00
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
2017-09-20 11:34:24 +00:00
|
|
|
});
|
2017-06-15 23:42:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GraphicsChoice::Update(int choice)
|
|
|
|
{
|
|
|
|
Config::SetBaseOrCurrent(m_setting, choice);
|
|
|
|
}
|