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"
|
|
|
|
#include "ui_configure_gamelist.h"
|
|
|
|
#include "yuzu/configuration/configure_gamelist.h"
|
2018-09-12 05:09:25 +00:00
|
|
|
#include "yuzu/ui_settings.h"
|
2018-07-28 16:32:16 +00:00
|
|
|
|
2018-09-12 05:11:25 +00:00
|
|
|
namespace {
|
|
|
|
constexpr std::array<std::pair<u32, const char*>, 5> default_icon_sizes{{
|
|
|
|
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)")),
|
|
|
|
}};
|
|
|
|
|
|
|
|
constexpr std::array<const char*, 4> row_text_names{{
|
|
|
|
QT_TR_NOOP("Filename"),
|
|
|
|
QT_TR_NOOP("Filetype"),
|
|
|
|
QT_TR_NOOP("Title ID"),
|
|
|
|
QT_TR_NOOP("Title Name"),
|
|
|
|
}};
|
|
|
|
} // Anonymous namespace
|
|
|
|
|
2018-07-28 16:32:16 +00:00
|
|
|
ConfigureGameList::ConfigureGameList(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGameList) {
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2018-09-12 05:06:50 +00:00
|
|
|
InitializeIconSizeComboBox();
|
|
|
|
InitializeRowComboBoxes();
|
|
|
|
|
|
|
|
this->setConfiguration();
|
2018-11-04 00:38:39 +00:00
|
|
|
|
|
|
|
// Force game list reload if any of the relevant settings are changed.
|
|
|
|
connect(ui->show_unknown, &QCheckBox::stateChanged, this,
|
|
|
|
&ConfigureGameList::RequestGameListUpdate);
|
|
|
|
connect(ui->icon_size_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
|
|
|
&ConfigureGameList::RequestGameListUpdate);
|
|
|
|
connect(ui->row_1_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
|
|
|
&ConfigureGameList::RequestGameListUpdate);
|
|
|
|
connect(ui->row_2_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
|
|
|
&ConfigureGameList::RequestGameListUpdate);
|
2018-09-12 05:06:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ConfigureGameList::~ConfigureGameList() = default;
|
|
|
|
|
|
|
|
void ConfigureGameList::applyConfiguration() {
|
|
|
|
UISettings::values.show_unknown = ui->show_unknown->isChecked();
|
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();
|
|
|
|
}
|
|
|
|
|
2018-11-04 00:38:39 +00:00
|
|
|
void ConfigureGameList::RequestGameListUpdate() {
|
|
|
|
UISettings::values.is_game_list_reload_pending.exchange(true);
|
|
|
|
}
|
|
|
|
|
2018-09-12 05:06:50 +00:00
|
|
|
void ConfigureGameList::setConfiguration() {
|
|
|
|
ui->show_unknown->setChecked(UISettings::values.show_unknown);
|
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));
|
|
|
|
ui->row_1_text_combobox->setCurrentIndex(
|
|
|
|
ui->row_1_text_combobox->findData(UISettings::values.row_1_text_id));
|
|
|
|
ui->row_2_text_combobox->setCurrentIndex(
|
|
|
|
ui->row_2_text_combobox->findData(UISettings::values.row_2_text_id));
|
|
|
|
}
|
|
|
|
|
2018-09-12 05:11:25 +00:00
|
|
|
void ConfigureGameList::changeEvent(QEvent* event) {
|
|
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
|
|
RetranslateUI();
|
|
|
|
return;
|
|
|
|
}
|
2018-07-28 16:32:16 +00:00
|
|
|
|
2018-09-12 05:11:25 +00:00
|
|
|
QWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureGameList::RetranslateUI() {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureGameList::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
|
|
|
|
2018-09-12 05:06:50 +00:00
|
|
|
void ConfigureGameList::InitializeRowComboBoxes() {
|
2018-09-15 13:21:06 +00:00
|
|
|
for (std::size_t i = 0; i < row_text_names.size(); ++i) {
|
2019-05-19 15:16:21 +00:00
|
|
|
const QString row_text_name = QString::fromUtf8(row_text_names[i]);
|
|
|
|
|
|
|
|
ui->row_1_text_combobox->addItem(row_text_name, QVariant::fromValue(i));
|
|
|
|
ui->row_2_text_combobox->addItem(row_text_name, QVariant::fromValue(i));
|
2018-07-28 16:32:16 +00:00
|
|
|
}
|
|
|
|
}
|