2017-06-16 01:42:12 +02:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-16 01:42:12 +02:00
|
|
|
|
2023-04-24 20:36:43 -07:00
|
|
|
#include "DolphinQt/Config/ConfigControls/ConfigChoice.h"
|
2017-06-16 01:42:12 +02:00
|
|
|
|
2018-08-23 07:11:52 -04:00
|
|
|
#include <QSignalBlocker>
|
|
|
|
|
2017-07-09 16:17:36 -07:00
|
|
|
#include "Common/Config/Config.h"
|
2018-05-28 03:48:04 +02:00
|
|
|
|
2018-07-07 00:40:15 +02:00
|
|
|
#include "DolphinQt/Settings.h"
|
2017-06-16 01:42:12 +02:00
|
|
|
|
2023-04-24 20:36:43 -07:00
|
|
|
ConfigChoice::ConfigChoice(const QStringList& options, const Config::Info<int>& setting)
|
2017-06-16 01:42:12 +02:00
|
|
|
: m_setting(setting)
|
|
|
|
{
|
|
|
|
addItems(options);
|
2023-11-04 14:01:39 -07:00
|
|
|
connect(this, &QComboBox::currentIndexChanged, this, &ConfigChoice::Update);
|
2017-06-16 01:42:12 +02:00
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
|
|
|
|
2020-09-12 17:06:17 -05:00
|
|
|
connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] {
|
2017-09-20 09:12:03 -07:00
|
|
|
QFont bf = font();
|
|
|
|
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);
|
|
|
|
setFont(bf);
|
2018-05-04 13:51:55 +02:00
|
|
|
|
2018-08-23 07:11:52 -04:00
|
|
|
const QSignalBlocker blocker(this);
|
2018-04-29 12:17:39 +02:00
|
|
|
setCurrentIndex(Config::Get(m_setting));
|
2017-09-20 13:34:24 +02:00
|
|
|
});
|
2017-06-16 01:42:12 +02:00
|
|
|
}
|
|
|
|
|
2023-04-24 20:36:43 -07:00
|
|
|
void ConfigChoice::Update(int choice)
|
2017-06-16 01:42:12 +02:00
|
|
|
{
|
|
|
|
Config::SetBaseOrCurrent(m_setting, choice);
|
|
|
|
}
|
2023-11-04 15:33:19 -07:00
|
|
|
|
|
|
|
ConfigStringChoice::ConfigStringChoice(const std::vector<std::string>& options,
|
|
|
|
const Config::Info<std::string>& setting)
|
2023-11-11 14:02:08 -08:00
|
|
|
: m_setting(setting), m_text_is_data(true)
|
2023-11-04 15:33:19 -07:00
|
|
|
{
|
|
|
|
for (const auto& op : options)
|
|
|
|
addItem(QString::fromStdString(op));
|
|
|
|
|
|
|
|
Connect();
|
|
|
|
Load();
|
|
|
|
}
|
|
|
|
|
2023-11-11 14:02:08 -08:00
|
|
|
ConfigStringChoice::ConfigStringChoice(const std::vector<std::pair<QString, QString>>& options,
|
|
|
|
const Config::Info<std::string>& setting)
|
|
|
|
: m_setting(setting), m_text_is_data(false)
|
|
|
|
{
|
|
|
|
for (const auto& [option_text, option_data] : options)
|
|
|
|
addItem(option_text, option_data);
|
|
|
|
|
|
|
|
Connect();
|
|
|
|
Load();
|
|
|
|
}
|
|
|
|
|
2023-11-04 15:33:19 -07:00
|
|
|
void ConfigStringChoice::Connect()
|
|
|
|
{
|
|
|
|
const auto on_config_changed = [this]() {
|
|
|
|
QFont bf = font();
|
|
|
|
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);
|
|
|
|
setFont(bf);
|
|
|
|
|
|
|
|
Load();
|
|
|
|
};
|
|
|
|
|
|
|
|
connect(&Settings::Instance(), &Settings::ConfigChanged, this, on_config_changed);
|
|
|
|
connect(this, &QComboBox::currentIndexChanged, this, &ConfigStringChoice::Update);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigStringChoice::Update(int index)
|
|
|
|
{
|
2023-11-11 14:02:08 -08:00
|
|
|
if (m_text_is_data)
|
|
|
|
{
|
|
|
|
Config::SetBaseOrCurrent(m_setting, itemText(index).toStdString());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Config::SetBaseOrCurrent(m_setting, itemData(index).toString().toStdString());
|
|
|
|
}
|
2023-11-04 15:33:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigStringChoice::Load()
|
|
|
|
{
|
2023-11-11 14:02:08 -08:00
|
|
|
const QString setting_value = QString::fromStdString(Config::Get(m_setting));
|
|
|
|
|
|
|
|
const int index = m_text_is_data ? findText(setting_value) : findData(setting_value);
|
2023-11-04 15:33:19 -07:00
|
|
|
const QSignalBlocker blocker(this);
|
2023-11-11 14:02:08 -08:00
|
|
|
setCurrentIndex(index);
|
2023-11-04 15:33:19 -07:00
|
|
|
}
|