2018-09-23 05:22:44 +02:00
|
|
|
// Copyright 2018 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <QDirIterator>
|
|
|
|
#include "citra_qt/configuration/configure_ui.h"
|
|
|
|
#include "citra_qt/ui_settings.h"
|
|
|
|
#include "ui_configure_ui.h"
|
|
|
|
|
|
|
|
ConfigureUi::ConfigureUi(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureUi) {
|
|
|
|
ui->setupUi(this);
|
|
|
|
ui->language_combobox->addItem(tr("<System>"), QString(""));
|
|
|
|
ui->language_combobox->addItem(tr("English"), QString("en"));
|
|
|
|
QDirIterator it(":/languages", QDirIterator::NoIteratorFlags);
|
|
|
|
while (it.hasNext()) {
|
|
|
|
QString locale = it.next();
|
|
|
|
locale.truncate(locale.lastIndexOf('.'));
|
|
|
|
locale.remove(0, locale.lastIndexOf('/') + 1);
|
|
|
|
QString lang = QLocale::languageToString(QLocale(locale).language());
|
|
|
|
ui->language_combobox->addItem(lang, locale);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unlike other configuration changes, interface language changes need to be reflected on the
|
|
|
|
// interface immediately. This is done by passing a signal to the main window, and then
|
|
|
|
// retranslating when passing back.
|
|
|
|
connect(ui->language_combobox,
|
|
|
|
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
2019-05-26 06:39:23 +02:00
|
|
|
&ConfigureUi::OnLanguageChanged);
|
2018-09-23 05:22:44 +02:00
|
|
|
|
|
|
|
for (const auto& theme : UISettings::themes) {
|
|
|
|
ui->theme_combobox->addItem(theme.first, theme.second);
|
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
SetConfiguration();
|
2018-09-23 05:22:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ConfigureUi::~ConfigureUi() = default;
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureUi::SetConfiguration() {
|
2018-09-23 05:22:44 +02:00
|
|
|
ui->theme_combobox->setCurrentIndex(ui->theme_combobox->findData(UISettings::values.theme));
|
|
|
|
ui->language_combobox->setCurrentIndex(
|
|
|
|
ui->language_combobox->findData(UISettings::values.language));
|
2018-10-12 16:30:08 +02:00
|
|
|
ui->icon_size_combobox->setCurrentIndex(
|
|
|
|
static_cast<int>(UISettings::values.game_list_icon_size));
|
|
|
|
ui->row_1_text_combobox->setCurrentIndex(static_cast<int>(UISettings::values.game_list_row_1));
|
|
|
|
ui->row_2_text_combobox->setCurrentIndex(static_cast<int>(UISettings::values.game_list_row_2) +
|
|
|
|
1);
|
2018-09-23 05:22:44 +02:00
|
|
|
ui->toggle_hide_no_icon->setChecked(UISettings::values.game_list_hide_no_icon);
|
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureUi::ApplyConfiguration() {
|
2018-09-23 05:22:44 +02:00
|
|
|
UISettings::values.theme =
|
|
|
|
ui->theme_combobox->itemData(ui->theme_combobox->currentIndex()).toString();
|
2018-10-12 16:30:08 +02:00
|
|
|
UISettings::values.game_list_icon_size =
|
|
|
|
static_cast<UISettings::GameListIconSize>(ui->icon_size_combobox->currentIndex());
|
|
|
|
UISettings::values.game_list_row_1 =
|
|
|
|
static_cast<UISettings::GameListText>(ui->row_1_text_combobox->currentIndex());
|
|
|
|
UISettings::values.game_list_row_2 =
|
|
|
|
static_cast<UISettings::GameListText>(ui->row_2_text_combobox->currentIndex() - 1);
|
2018-09-23 05:22:44 +02:00
|
|
|
UISettings::values.game_list_hide_no_icon = ui->toggle_hide_no_icon->isChecked();
|
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureUi::OnLanguageChanged(int index) {
|
2018-09-23 05:22:44 +02:00
|
|
|
if (index == -1)
|
|
|
|
return;
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
emit LanguageChanged(ui->language_combobox->itemData(index).toString());
|
2018-09-23 05:22:44 +02:00
|
|
|
}
|
|
|
|
|
2019-05-26 06:39:23 +02:00
|
|
|
void ConfigureUi::RetranslateUI() {
|
2018-09-23 05:22:44 +02:00
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|