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
|
|
|
|
2023-04-25 03:36:43 +00:00
|
|
|
#include "DolphinQt/Config/ConfigControls/ConfigChoice.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
|
|
|
|
2023-04-25 03:36:43 +00:00
|
|
|
ConfigChoice::ConfigChoice(const QStringList& options, const Config::Info<int>& setting)
|
2017-06-15 23:42:12 +00:00
|
|
|
: m_setting(setting)
|
|
|
|
{
|
|
|
|
addItems(options);
|
2023-11-04 21:01:39 +00:00
|
|
|
connect(this, &QComboBox::currentIndexChanged, this, &ConfigChoice::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
|
|
|
}
|
|
|
|
|
2023-04-25 03:36:43 +00:00
|
|
|
void ConfigChoice::Update(int choice)
|
2017-06-15 23:42:12 +00:00
|
|
|
{
|
|
|
|
Config::SetBaseOrCurrent(m_setting, choice);
|
|
|
|
}
|
2023-11-04 22:33:19 +00:00
|
|
|
|
|
|
|
ConfigStringChoice::ConfigStringChoice(const std::vector<std::string>& options,
|
|
|
|
const Config::Info<std::string>& setting)
|
2023-11-11 22:02:08 +00:00
|
|
|
: m_setting(setting), m_text_is_data(true)
|
2023-11-04 22:33:19 +00:00
|
|
|
{
|
|
|
|
for (const auto& op : options)
|
|
|
|
addItem(QString::fromStdString(op));
|
|
|
|
|
|
|
|
Connect();
|
|
|
|
Load();
|
|
|
|
}
|
|
|
|
|
2023-11-11 22:02:08 +00: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 22:33:19 +00: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 22:02:08 +00: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 22:33:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigStringChoice::Load()
|
|
|
|
{
|
2023-11-11 22:02:08 +00: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 22:33:19 +00:00
|
|
|
const QSignalBlocker blocker(this);
|
2023-11-11 22:02:08 +00:00
|
|
|
setCurrentIndex(index);
|
2023-11-04 22:33:19 +00:00
|
|
|
}
|