|
|
|
@ -2,6 +2,8 @@
|
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#include <QHash>
|
|
|
|
|
#include <QListWidgetItem>
|
|
|
|
|
#include "core/settings.h"
|
|
|
|
|
#include "ui_configure.h"
|
|
|
|
|
#include "yuzu/configuration/config.h"
|
|
|
|
@ -13,6 +15,13 @@ ConfigureDialog::ConfigureDialog(QWidget* parent, const HotkeyRegistry& registry
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
ui->generalTab->PopulateHotkeyList(registry);
|
|
|
|
|
this->setConfiguration();
|
|
|
|
|
this->PopulateSelectionList();
|
|
|
|
|
connect(ui->selectorList, &QListWidget::itemSelectionChanged, this,
|
|
|
|
|
&ConfigureDialog::UpdateVisibleTabs);
|
|
|
|
|
|
|
|
|
|
adjustSize();
|
|
|
|
|
|
|
|
|
|
ui->selectorList->setCurrentRow(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ConfigureDialog::~ConfigureDialog() = default;
|
|
|
|
@ -30,3 +39,37 @@ void ConfigureDialog::applyConfiguration() {
|
|
|
|
|
ui->webTab->applyConfiguration();
|
|
|
|
|
Settings::Apply();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConfigureDialog::PopulateSelectionList() {
|
|
|
|
|
const std::array<std::pair<QString, QStringList>, 4> items{
|
|
|
|
|
{{tr("General"), {tr("General"), tr("Web"), tr("Debug"), tr("Game List")}},
|
|
|
|
|
{tr("System"), {tr("System"), tr("Audio")}},
|
|
|
|
|
{tr("Graphics"), {tr("Graphics")}},
|
|
|
|
|
{tr("Controls"), {tr("Input")}}}};
|
|
|
|
|
|
|
|
|
|
for (const auto& entry : items) {
|
|
|
|
|
auto* const item = new QListWidgetItem(entry.first);
|
|
|
|
|
item->setData(Qt::UserRole, entry.second);
|
|
|
|
|
|
|
|
|
|
ui->selectorList->addItem(item);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConfigureDialog::UpdateVisibleTabs() {
|
|
|
|
|
const auto items = ui->selectorList->selectedItems();
|
|
|
|
|
if (items.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
const std::map<QString, QWidget*> widgets = {
|
|
|
|
|
{tr("General"), ui->generalTab}, {tr("System"), ui->systemTab},
|
|
|
|
|
{tr("Input"), ui->inputTab}, {tr("Graphics"), ui->graphicsTab},
|
|
|
|
|
{tr("Audio"), ui->audioTab}, {tr("Debug"), ui->debugTab},
|
|
|
|
|
{tr("Web"), ui->webTab}, {tr("Game List"), ui->gameListTab}};
|
|
|
|
|
|
|
|
|
|
ui->tabWidget->clear();
|
|
|
|
|
|
|
|
|
|
const QStringList tabs = items[0]->data(Qt::UserRole).toStringList();
|
|
|
|
|
|
|
|
|
|
for (const auto& tab : tabs)
|
|
|
|
|
ui->tabWidget->addTab(widgets.find(tab)->second, tab);
|
|
|
|
|
}
|
|
|
|
|