2016-01-24 17:34:05 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-09-06 17:59:25 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QListWidgetItem>
|
2019-06-05 22:39:46 +00:00
|
|
|
#include <QSignalBlocker>
|
2016-01-24 17:34:05 +00:00
|
|
|
#include "core/settings.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_configure.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
#include "yuzu/configuration/config.h"
|
|
|
|
#include "yuzu/configuration/configure_dialog.h"
|
2019-02-16 15:19:29 +00:00
|
|
|
#include "yuzu/configuration/configure_input_player.h"
|
2018-08-07 04:43:07 +00:00
|
|
|
#include "yuzu/hotkeys.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
|
2019-02-16 15:19:29 +00:00
|
|
|
ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry)
|
2019-04-09 23:39:41 +00:00
|
|
|
: QDialog(parent), ui(new Ui::ConfigureDialog), registry(registry) {
|
2016-01-24 17:34:05 +00:00
|
|
|
ui->setupUi(this);
|
2019-02-16 15:19:29 +00:00
|
|
|
ui->hotkeysTab->Populate(registry);
|
2019-05-09 07:20:13 +00:00
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
SetConfiguration();
|
|
|
|
PopulateSelectionList();
|
|
|
|
|
2018-09-06 17:59:25 +00:00
|
|
|
connect(ui->selectorList, &QListWidget::itemSelectionChanged, this,
|
|
|
|
&ConfigureDialog::UpdateVisibleTabs);
|
2019-05-09 07:20:13 +00:00
|
|
|
|
2018-09-06 17:59:25 +00:00
|
|
|
adjustSize();
|
|
|
|
ui->selectorList->setCurrentRow(0);
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 16:58:46 +00:00
|
|
|
ConfigureDialog::~ConfigureDialog() = default;
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureDialog::SetConfiguration() {}
|
2016-01-24 17:34:05 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureDialog::ApplyConfiguration() {
|
|
|
|
ui->generalTab->ApplyConfiguration();
|
|
|
|
ui->gameListTab->ApplyConfiguration();
|
|
|
|
ui->systemTab->ApplyConfiguration();
|
|
|
|
ui->profileManagerTab->ApplyConfiguration();
|
2019-04-23 12:36:35 +00:00
|
|
|
ui->filesystemTab->applyConfiguration();
|
2019-05-26 04:39:23 +00:00
|
|
|
ui->inputTab->ApplyConfiguration();
|
|
|
|
ui->hotkeysTab->ApplyConfiguration(registry);
|
|
|
|
ui->graphicsTab->ApplyConfiguration();
|
|
|
|
ui->audioTab->ApplyConfiguration();
|
|
|
|
ui->debugTab->ApplyConfiguration();
|
|
|
|
ui->webTab->ApplyConfiguration();
|
2019-04-28 23:01:23 +00:00
|
|
|
ui->serviceTab->ApplyConfiguration();
|
2016-05-03 06:07:17 +00:00
|
|
|
Settings::Apply();
|
2018-07-10 10:02:14 +00:00
|
|
|
Settings::LogSettings();
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
2018-09-06 17:59:25 +00:00
|
|
|
|
2019-06-05 22:39:46 +00:00
|
|
|
void ConfigureDialog::changeEvent(QEvent* event) {
|
|
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
|
|
RetranslateUI();
|
|
|
|
}
|
|
|
|
|
|
|
|
QDialog::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureDialog::RetranslateUI() {
|
|
|
|
const int old_row = ui->selectorList->currentRow();
|
|
|
|
const int old_index = ui->tabWidget->currentIndex();
|
|
|
|
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
|
|
|
|
PopulateSelectionList();
|
|
|
|
ui->selectorList->setCurrentRow(old_row);
|
|
|
|
|
|
|
|
UpdateVisibleTabs();
|
|
|
|
ui->tabWidget->setCurrentIndex(old_index);
|
|
|
|
}
|
|
|
|
|
2019-08-26 17:11:27 +00:00
|
|
|
Q_DECLARE_METATYPE(QList<QWidget*>);
|
|
|
|
|
2018-09-06 17:59:25 +00:00
|
|
|
void ConfigureDialog::PopulateSelectionList() {
|
2020-01-20 04:17:53 +00:00
|
|
|
const std::array<std::pair<QString, QList<QWidget*>>, 5> items{
|
2019-08-26 17:11:27 +00:00
|
|
|
{{tr("General"), {ui->generalTab, ui->webTab, ui->debugTab, ui->gameListTab}},
|
2020-01-20 04:17:53 +00:00
|
|
|
{tr("System"), {ui->systemTab, ui->profileManagerTab, ui->serviceTab, ui->filesystemTab}},
|
2019-08-26 17:11:27 +00:00
|
|
|
{tr("Graphics"), {ui->graphicsTab}},
|
2020-01-20 04:17:53 +00:00
|
|
|
{tr("Audio"), {ui->audioTab}},
|
2019-08-26 17:11:27 +00:00
|
|
|
{tr("Controls"), {ui->inputTab, ui->hotkeysTab}}},
|
2019-06-05 22:39:46 +00:00
|
|
|
};
|
2018-09-06 17:59:25 +00:00
|
|
|
|
2019-06-05 22:39:46 +00:00
|
|
|
[[maybe_unused]] const QSignalBlocker blocker(ui->selectorList);
|
|
|
|
|
|
|
|
ui->selectorList->clear();
|
2018-09-06 17:59:25 +00:00
|
|
|
for (const auto& entry : items) {
|
|
|
|
auto* const item = new QListWidgetItem(entry.first);
|
2019-08-26 17:11:27 +00:00
|
|
|
item->setData(Qt::UserRole, QVariant::fromValue(entry.second));
|
2018-09-06 17:59:25 +00:00
|
|
|
|
|
|
|
ui->selectorList->addItem(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureDialog::UpdateVisibleTabs() {
|
|
|
|
const auto items = ui->selectorList->selectedItems();
|
2019-06-05 22:39:46 +00:00
|
|
|
if (items.isEmpty()) {
|
2018-09-06 17:59:25 +00:00
|
|
|
return;
|
2019-06-05 22:39:46 +00:00
|
|
|
}
|
2018-09-06 17:59:25 +00:00
|
|
|
|
2019-08-26 17:11:27 +00:00
|
|
|
const std::map<QWidget*, QString> widgets = {
|
|
|
|
{ui->generalTab, tr("General")},
|
|
|
|
{ui->systemTab, tr("System")},
|
|
|
|
{ui->profileManagerTab, tr("Profiles")},
|
|
|
|
{ui->inputTab, tr("Input")},
|
|
|
|
{ui->hotkeysTab, tr("Hotkeys")},
|
|
|
|
{ui->graphicsTab, tr("Graphics")},
|
|
|
|
{ui->audioTab, tr("Audio")},
|
|
|
|
{ui->debugTab, tr("Debug")},
|
|
|
|
{ui->webTab, tr("Web")},
|
|
|
|
{ui->gameListTab, tr("Game List")},
|
2019-04-23 12:36:35 +00:00
|
|
|
{ui->filesystemTab, tr("Filesystem")},
|
2019-10-02 12:35:39 +00:00
|
|
|
{ui->serviceTab, tr("Services")},
|
2019-06-05 22:39:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
[[maybe_unused]] const QSignalBlocker blocker(ui->tabWidget);
|
2018-09-06 17:59:25 +00:00
|
|
|
|
|
|
|
ui->tabWidget->clear();
|
2019-08-26 17:11:27 +00:00
|
|
|
|
|
|
|
const QList<QWidget*> tabs = qvariant_cast<QList<QWidget*>>(items[0]->data(Qt::UserRole));
|
|
|
|
|
|
|
|
for (const auto tab : tabs) {
|
|
|
|
ui->tabWidget->addTab(tab, widgets.at(tab));
|
2019-06-05 22:39:46 +00:00
|
|
|
}
|
2018-09-06 17:59:25 +00:00
|
|
|
}
|