2018-07-28 16:32:16 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-09-12 05:09:25 +00:00
|
|
|
#include <array>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-07-28 16:32:16 +00:00
|
|
|
#include "core/settings.h"
|
2020-01-23 23:15:51 +00:00
|
|
|
#include "ui_configure_ui.h"
|
|
|
|
#include "yuzu/configuration/configure_ui.h"
|
2019-07-29 20:06:33 +00:00
|
|
|
#include "yuzu/uisettings.h"
|
2018-07-28 16:32:16 +00:00
|
|
|
|
2018-09-12 05:11:25 +00:00
|
|
|
namespace {
|
2019-05-26 04:39:23 +00:00
|
|
|
constexpr std::array default_icon_sizes{
|
2018-09-12 05:11:25 +00:00
|
|
|
std::make_pair(0, QT_TR_NOOP("None")),
|
|
|
|
std::make_pair(32, QT_TR_NOOP("Small (32x32)")),
|
|
|
|
std::make_pair(64, QT_TR_NOOP("Standard (64x64)")),
|
|
|
|
std::make_pair(128, QT_TR_NOOP("Large (128x128)")),
|
|
|
|
std::make_pair(256, QT_TR_NOOP("Full Size (256x256)")),
|
2019-05-26 04:39:23 +00:00
|
|
|
};
|
2018-09-12 05:11:25 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
constexpr std::array row_text_names{
|
2020-01-19 20:56:49 +00:00
|
|
|
QT_TR_NOOP("Filename"), QT_TR_NOOP("Filetype"), QT_TR_NOOP("Title ID"),
|
|
|
|
QT_TR_NOOP("Title Name"), QT_TR_NOOP("None"),
|
2019-05-26 04:39:23 +00:00
|
|
|
};
|
2018-09-12 05:11:25 +00:00
|
|
|
} // Anonymous namespace
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
ConfigureUi::ConfigureUi(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureUi) {
|
2018-07-28 16:32:16 +00:00
|
|
|
ui->setupUi(this);
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
for (const auto& theme : UISettings::themes) {
|
|
|
|
ui->theme_combobox->addItem(QString::fromUtf8(theme.first),
|
|
|
|
QString::fromUtf8(theme.second));
|
|
|
|
}
|
|
|
|
|
2018-09-12 05:06:50 +00:00
|
|
|
InitializeIconSizeComboBox();
|
|
|
|
InitializeRowComboBoxes();
|
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
SetConfiguration();
|
2018-11-04 00:38:39 +00:00
|
|
|
|
|
|
|
// Force game list reload if any of the relevant settings are changed.
|
|
|
|
connect(ui->icon_size_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
2020-01-23 23:15:51 +00:00
|
|
|
&ConfigureUi::RequestGameListUpdate);
|
2018-11-04 00:38:39 +00:00
|
|
|
connect(ui->row_1_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
2020-01-23 23:15:51 +00:00
|
|
|
&ConfigureUi::RequestGameListUpdate);
|
2018-11-04 00:38:39 +00:00
|
|
|
connect(ui->row_2_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
2020-01-23 23:15:51 +00:00
|
|
|
&ConfigureUi::RequestGameListUpdate);
|
2020-01-19 20:56:49 +00:00
|
|
|
|
|
|
|
// Update text ComboBoxes after user interaction.
|
|
|
|
connect(ui->row_1_text_combobox, QOverload<int>::of(&QComboBox::activated),
|
2020-01-23 23:15:51 +00:00
|
|
|
[=]() { ConfigureUi::UpdateSecondRowComboBox(); });
|
2020-01-19 20:56:49 +00:00
|
|
|
connect(ui->row_2_text_combobox, QOverload<int>::of(&QComboBox::activated),
|
2020-01-23 23:15:51 +00:00
|
|
|
[=]() { ConfigureUi::UpdateFirstRowComboBox(); });
|
2018-09-12 05:06:50 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
ConfigureUi::~ConfigureUi() = default;
|
2018-09-12 05:06:50 +00:00
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::ApplyConfiguration() {
|
|
|
|
UISettings::values.theme =
|
|
|
|
ui->theme_combobox->itemData(ui->theme_combobox->currentIndex()).toString();
|
2018-11-02 00:27:12 +00:00
|
|
|
UISettings::values.show_add_ons = ui->show_add_ons->isChecked();
|
2018-09-12 05:06:50 +00:00
|
|
|
UISettings::values.icon_size = ui->icon_size_combobox->currentData().toUInt();
|
|
|
|
UISettings::values.row_1_text_id = ui->row_1_text_combobox->currentData().toUInt();
|
|
|
|
UISettings::values.row_2_text_id = ui->row_2_text_combobox->currentData().toUInt();
|
|
|
|
Settings::Apply();
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::RequestGameListUpdate() {
|
2018-11-04 00:38:39 +00:00
|
|
|
UISettings::values.is_game_list_reload_pending.exchange(true);
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::SetConfiguration() {
|
|
|
|
ui->theme_combobox->setCurrentIndex(ui->theme_combobox->findData(UISettings::values.theme));
|
2018-11-02 00:27:12 +00:00
|
|
|
ui->show_add_ons->setChecked(UISettings::values.show_add_ons);
|
2018-09-12 05:06:50 +00:00
|
|
|
ui->icon_size_combobox->setCurrentIndex(
|
|
|
|
ui->icon_size_combobox->findData(UISettings::values.icon_size));
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::changeEvent(QEvent* event) {
|
2018-09-12 05:11:25 +00:00
|
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
|
|
RetranslateUI();
|
|
|
|
}
|
2018-07-28 16:32:16 +00:00
|
|
|
|
2018-09-12 05:11:25 +00:00
|
|
|
QWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::RetranslateUI() {
|
2018-09-12 05:11:25 +00:00
|
|
|
ui->retranslateUi(this);
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->icon_size_combobox->count(); i++) {
|
|
|
|
ui->icon_size_combobox->setItemText(i, tr(default_icon_sizes[i].second));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->row_1_text_combobox->count(); i++) {
|
|
|
|
const QString name = tr(row_text_names[i]);
|
|
|
|
|
|
|
|
ui->row_1_text_combobox->setItemText(i, name);
|
|
|
|
ui->row_2_text_combobox->setItemText(i, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::InitializeIconSizeComboBox() {
|
2018-07-28 16:32:16 +00:00
|
|
|
for (const auto& size : default_icon_sizes) {
|
2019-05-19 15:16:21 +00:00
|
|
|
ui->icon_size_combobox->addItem(QString::fromUtf8(size.second), size.first);
|
2018-07-28 16:32:16 +00:00
|
|
|
}
|
2018-09-12 05:06:50 +00:00
|
|
|
}
|
2018-07-28 16:32:16 +00:00
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::InitializeRowComboBoxes() {
|
2020-01-19 20:56:49 +00:00
|
|
|
UpdateFirstRowComboBox(true);
|
|
|
|
UpdateSecondRowComboBox(true);
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::UpdateFirstRowComboBox(bool init) {
|
2020-01-19 20:56:49 +00:00
|
|
|
const int currentIndex =
|
|
|
|
init ? UISettings::values.row_1_text_id
|
|
|
|
: ui->row_1_text_combobox->findData(ui->row_1_text_combobox->currentData());
|
2019-05-19 15:16:21 +00:00
|
|
|
|
2020-01-19 20:56:49 +00:00
|
|
|
ui->row_1_text_combobox->clear();
|
|
|
|
|
|
|
|
for (std::size_t i = 0; i < row_text_names.size(); i++) {
|
|
|
|
const QString row_text_name = QString::fromUtf8(row_text_names[i]);
|
2019-05-19 15:16:21 +00:00
|
|
|
ui->row_1_text_combobox->addItem(row_text_name, QVariant::fromValue(i));
|
2020-01-19 20:56:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ui->row_1_text_combobox->setCurrentIndex(ui->row_1_text_combobox->findData(currentIndex));
|
|
|
|
|
|
|
|
ui->row_1_text_combobox->removeItem(4); // None
|
|
|
|
ui->row_1_text_combobox->removeItem(
|
|
|
|
ui->row_1_text_combobox->findData(ui->row_2_text_combobox->currentData()));
|
|
|
|
}
|
|
|
|
|
2020-01-23 23:15:51 +00:00
|
|
|
void ConfigureUi::UpdateSecondRowComboBox(bool init) {
|
2020-01-19 20:56:49 +00:00
|
|
|
const int currentIndex =
|
|
|
|
init ? UISettings::values.row_2_text_id
|
|
|
|
: ui->row_2_text_combobox->findData(ui->row_2_text_combobox->currentData());
|
|
|
|
|
|
|
|
ui->row_2_text_combobox->clear();
|
|
|
|
|
|
|
|
for (std::size_t i = 0; i < row_text_names.size(); ++i) {
|
|
|
|
const QString row_text_name = QString::fromUtf8(row_text_names[i]);
|
2019-05-19 15:16:21 +00:00
|
|
|
ui->row_2_text_combobox->addItem(row_text_name, QVariant::fromValue(i));
|
2018-07-28 16:32:16 +00:00
|
|
|
}
|
2020-01-19 20:56:49 +00:00
|
|
|
|
|
|
|
ui->row_2_text_combobox->setCurrentIndex(ui->row_2_text_combobox->findData(currentIndex));
|
|
|
|
|
|
|
|
ui->row_2_text_combobox->removeItem(
|
|
|
|
ui->row_2_text_combobox->findData(ui->row_1_text_combobox->currentData()));
|
2018-07-28 16:32:16 +00:00
|
|
|
}
|