2017-06-15 17:42:12 -06:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-15 17:42:12 -06:00
|
|
|
|
2023-04-24 21:36:43 -06:00
|
|
|
#include "DolphinQt/Config/ConfigControls/ConfigChoice.h"
|
2017-06-15 17:42:12 -06:00
|
|
|
|
2018-08-23 05:11:52 -06:00
|
|
|
#include <QSignalBlocker>
|
|
|
|
|
2017-07-09 17:17:36 -06:00
|
|
|
#include "Common/Config/Config.h"
|
2018-05-27 19:48:04 -06:00
|
|
|
|
2018-07-06 16:40:15 -06:00
|
|
|
#include "DolphinQt/Settings.h"
|
2017-06-15 17:42:12 -06:00
|
|
|
|
2023-04-24 21:36:43 -06:00
|
|
|
ConfigChoice::ConfigChoice(const QStringList& options, const Config::Info<int>& setting)
|
2017-06-15 17:42:12 -06:00
|
|
|
: m_setting(setting)
|
|
|
|
{
|
|
|
|
addItems(options);
|
2023-04-24 21:36:43 -06:00
|
|
|
connect(this, qOverload<int>(&QComboBox::currentIndexChanged), this, &ConfigChoice::Update);
|
2017-06-15 17:42:12 -06:00
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
|
|
|
|
2020-09-12 16:06:17 -06:00
|
|
|
connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] {
|
2017-09-20 10:12:03 -06:00
|
|
|
QFont bf = font();
|
|
|
|
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);
|
|
|
|
setFont(bf);
|
2018-05-04 05:51:55 -06:00
|
|
|
|
2018-08-23 05:11:52 -06:00
|
|
|
const QSignalBlocker blocker(this);
|
2018-04-29 04:17:39 -06:00
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
2017-09-20 05:34:24 -06:00
|
|
|
});
|
2017-06-15 17:42:12 -06:00
|
|
|
}
|
|
|
|
|
2023-04-24 21:36:43 -06:00
|
|
|
void ConfigChoice::Update(int choice)
|
2017-06-15 17:42:12 -06:00
|
|
|
{
|
|
|
|
Config::SetBaseOrCurrent(m_setting, choice);
|
|
|
|
}
|