2016-01-24 18:34:05 +01:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-02-05 22:07:03 +01:00
|
|
|
#include <map>
|
2018-09-06 19:59:25 +02:00
|
|
|
#include <QListWidgetItem>
|
2016-12-22 05:49:36 +01:00
|
|
|
#include "citra_qt/configuration/config.h"
|
|
|
|
#include "citra_qt/configuration/configure_dialog.h"
|
2018-08-07 06:43:07 +02:00
|
|
|
#include "citra_qt/hotkeys.h"
|
2016-01-24 18:34:05 +01:00
|
|
|
#include "core/settings.h"
|
2016-09-20 17:21:23 +02:00
|
|
|
#include "ui_configure.h"
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2019-04-20 04:42:20 +02:00
|
|
|
ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry, bool enable_web_config)
|
2019-04-10 01:39:41 +02:00
|
|
|
: QDialog(parent), ui(new Ui::ConfigureDialog), registry(registry) {
|
2016-01-24 18:34:05 +01:00
|
|
|
ui->setupUi(this);
|
2018-05-22 21:30:36 +02:00
|
|
|
ui->hotkeysTab->Populate(registry);
|
2019-04-20 04:42:20 +02:00
|
|
|
ui->webTab->SetWebServiceConfigEnabled(enable_web_config);
|
2018-05-22 21:30:36 +02:00
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
PopulateSelectionList();
|
2019-05-09 09:20:13 +02:00
|
|
|
|
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
connect(ui->uiTab, &ConfigureUi::LanguageChanged, this, &ConfigureDialog::OnLanguageChanged);
|
2018-09-06 19:59:25 +02:00
|
|
|
connect(ui->selectorList, &QListWidget::itemSelectionChanged, this,
|
|
|
|
&ConfigureDialog::UpdateVisibleTabs);
|
2019-05-09 09:20:13 +02:00
|
|
|
|
2018-09-06 19:59:25 +02:00
|
|
|
adjustSize();
|
|
|
|
ui->selectorList->setCurrentRow(0);
|
2018-05-22 21:30:36 +02:00
|
|
|
|
2018-11-16 17:34:00 +01:00
|
|
|
// Set up used key list synchronisation
|
2018-05-22 21:30:36 +02:00
|
|
|
connect(ui->inputTab, &ConfigureInput::InputKeysChanged, ui->hotkeysTab,
|
|
|
|
&ConfigureHotkeys::OnInputKeysChanged);
|
|
|
|
connect(ui->hotkeysTab, &ConfigureHotkeys::HotkeysChanged, ui->inputTab,
|
|
|
|
&ConfigureInput::OnHotkeysChanged);
|
|
|
|
|
|
|
|
// Synchronise lists upon initialisation
|
|
|
|
ui->inputTab->EmitInputKeysChanged();
|
|
|
|
ui->hotkeysTab->EmitHotkeysChanged();
|
2016-01-24 18:34:05 +01:00
|
|
|
}
|
|
|
|
|
2018-08-24 17:14:09 +02:00
|
|
|
ConfigureDialog::~ConfigureDialog() = default;
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureDialog::SetConfiguration() {
|
|
|
|
ui->generalTab->SetConfiguration();
|
|
|
|
ui->systemTab->SetConfiguration();
|
|
|
|
ui->inputTab->LoadConfiguration();
|
|
|
|
ui->graphicsTab->SetConfiguration();
|
|
|
|
ui->audioTab->SetConfiguration();
|
|
|
|
ui->cameraTab->SetConfiguration();
|
|
|
|
ui->debugTab->SetConfiguration();
|
|
|
|
ui->webTab->SetConfiguration();
|
|
|
|
ui->uiTab->SetConfiguration();
|
2018-11-02 15:40:58 +01:00
|
|
|
}
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureDialog::ApplyConfiguration() {
|
|
|
|
ui->generalTab->ApplyConfiguration();
|
|
|
|
ui->systemTab->ApplyConfiguration();
|
|
|
|
ui->inputTab->ApplyConfiguration();
|
2018-12-29 14:27:06 +01:00
|
|
|
ui->inputTab->ApplyProfile();
|
2019-05-26 06:39:23 +02:00
|
|
|
ui->hotkeysTab->ApplyConfiguration(registry);
|
|
|
|
ui->graphicsTab->ApplyConfiguration();
|
|
|
|
ui->audioTab->ApplyConfiguration();
|
|
|
|
ui->cameraTab->ApplyConfiguration();
|
|
|
|
ui->debugTab->ApplyConfiguration();
|
|
|
|
ui->webTab->ApplyConfiguration();
|
|
|
|
ui->uiTab->ApplyConfiguration();
|
2016-05-03 08:07:17 +02:00
|
|
|
Settings::Apply();
|
2018-07-18 01:39:41 +02:00
|
|
|
Settings::LogSettings();
|
2016-01-24 18:34:05 +01:00
|
|
|
}
|
2017-09-23 15:13:59 +02:00
|
|
|
|
2019-08-10 09:00:56 +02:00
|
|
|
Q_DECLARE_METATYPE(QList<QWidget*>);
|
|
|
|
|
2018-09-06 19:59:25 +02:00
|
|
|
void ConfigureDialog::PopulateSelectionList() {
|
2018-11-02 15:40:58 +01:00
|
|
|
ui->selectorList->clear();
|
2018-09-06 19:59:25 +02:00
|
|
|
|
2019-08-10 09:00:56 +02:00
|
|
|
const std::array<std::pair<QString, QList<QWidget*>>, 4> items{
|
|
|
|
{{tr("General"), {ui->generalTab, ui->webTab, ui->debugTab, ui->uiTab}},
|
|
|
|
{tr("System"), {ui->systemTab, ui->audioTab, ui->cameraTab}},
|
|
|
|
{tr("Graphics"), {ui->graphicsTab}},
|
|
|
|
{tr("Controls"), {ui->inputTab, ui->hotkeysTab}}}};
|
2018-09-06 19:59:25 +02:00
|
|
|
|
|
|
|
for (const auto& entry : items) {
|
2019-02-05 22:07:03 +01:00
|
|
|
auto* const item = new QListWidgetItem(entry.first);
|
2019-08-10 09:00:56 +02:00
|
|
|
item->setData(Qt::UserRole, QVariant::fromValue(entry.second));
|
2018-09-06 19:59:25 +02:00
|
|
|
|
|
|
|
ui->selectorList->addItem(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureDialog::OnLanguageChanged(const QString& locale) {
|
|
|
|
emit LanguageChanged(locale);
|
2018-11-02 15:40:58 +01:00
|
|
|
// first apply the configuration, and then restore the display
|
2019-05-26 06:39:23 +02:00
|
|
|
ApplyConfiguration();
|
|
|
|
RetranslateUI();
|
|
|
|
SetConfiguration();
|
2018-11-02 15:40:58 +01:00
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureDialog::RetranslateUI() {
|
2018-11-02 15:40:58 +01:00
|
|
|
int old_row = ui->selectorList->currentRow();
|
|
|
|
int old_index = ui->tabWidget->currentIndex();
|
2017-09-23 15:13:59 +02:00
|
|
|
ui->retranslateUi(this);
|
2018-11-02 15:40:58 +01:00
|
|
|
PopulateSelectionList();
|
|
|
|
// restore selection after repopulating
|
|
|
|
ui->selectorList->setCurrentRow(old_row);
|
|
|
|
ui->tabWidget->setCurrentIndex(old_index);
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
ui->generalTab->RetranslateUI();
|
|
|
|
ui->systemTab->RetranslateUI();
|
|
|
|
ui->inputTab->RetranslateUI();
|
|
|
|
ui->hotkeysTab->RetranslateUI();
|
|
|
|
ui->graphicsTab->RetranslateUI();
|
|
|
|
ui->audioTab->RetranslateUI();
|
|
|
|
ui->cameraTab->RetranslateUI();
|
|
|
|
ui->debugTab->RetranslateUI();
|
|
|
|
ui->webTab->RetranslateUI();
|
|
|
|
ui->uiTab->RetranslateUI();
|
2017-09-23 15:13:59 +02:00
|
|
|
}
|
2018-09-06 19:59:25 +02:00
|
|
|
|
|
|
|
void ConfigureDialog::UpdateVisibleTabs() {
|
2019-02-05 22:07:03 +01:00
|
|
|
const auto items = ui->selectorList->selectedItems();
|
2018-09-06 19:59:25 +02:00
|
|
|
if (items.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2019-08-10 09:00:56 +02:00
|
|
|
const std::map<QWidget*, QString> widgets = {
|
|
|
|
{ui->generalTab, tr("General")}, {ui->systemTab, tr("System")},
|
|
|
|
{ui->inputTab, tr("Input")}, {ui->hotkeysTab, tr("Hotkeys")},
|
|
|
|
{ui->graphicsTab, tr("Graphics")}, {ui->audioTab, tr("Audio")},
|
|
|
|
{ui->cameraTab, tr("Camera")}, {ui->debugTab, tr("Debug")},
|
|
|
|
{ui->webTab, tr("Web")}, {ui->uiTab, tr("UI")}};
|
2018-09-06 19:59:25 +02:00
|
|
|
|
|
|
|
ui->tabWidget->clear();
|
|
|
|
|
2019-08-10 09:00:56 +02:00
|
|
|
const QList<QWidget*> tabs = qvariant_cast<QList<QWidget*>>(items[0]->data(Qt::UserRole));
|
2018-09-06 19:59:25 +02:00
|
|
|
|
2019-08-10 09:00:56 +02:00
|
|
|
for (const auto tab : tabs)
|
|
|
|
ui->tabWidget->addTab(tab, widgets.at(tab));
|
2018-09-06 19:59:25 +02:00
|
|
|
}
|