2016-01-24 09:34:05 -08:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-12-15 16:01:48 -08:00
|
|
|
#include "core/core.h"
|
2016-01-24 09:34:05 -08:00
|
|
|
#include "core/settings.h"
|
2016-09-20 08:21:23 -07:00
|
|
|
#include "ui_configure_general.h"
|
2018-01-11 19:33:56 -08:00
|
|
|
#include "yuzu/configuration/configure_general.h"
|
2019-07-29 13:06:33 -07:00
|
|
|
#include "yuzu/uisettings.h"
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
ConfigureGeneral::ConfigureGeneral(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGeneral) {
|
2016-09-18 18:01:46 -07:00
|
|
|
|
2016-01-24 09:34:05 -08:00
|
|
|
ui->setupUi(this);
|
2017-06-23 17:41:48 -07:00
|
|
|
|
2018-10-04 03:33:17 -07:00
|
|
|
for (const auto& theme : UISettings::themes) {
|
2019-05-19 08:18:13 -07:00
|
|
|
ui->theme_combobox->addItem(QString::fromUtf8(theme.first),
|
|
|
|
QString::fromUtf8(theme.second));
|
2018-03-30 02:50:10 -07:00
|
|
|
}
|
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
SetConfiguration();
|
2016-01-24 09:34:05 -08:00
|
|
|
}
|
|
|
|
|
2018-08-06 09:58:46 -07:00
|
|
|
ConfigureGeneral::~ConfigureGeneral() = default;
|
2016-01-24 09:34:05 -08:00
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
void ConfigureGeneral::SetConfiguration() {
|
2016-08-31 19:12:20 -07:00
|
|
|
ui->toggle_check_exit->setChecked(UISettings::values.confirm_before_closing);
|
2018-12-25 07:42:02 -08:00
|
|
|
ui->toggle_user_on_boot->setChecked(UISettings::values.select_user_on_boot);
|
2018-03-30 02:50:10 -07:00
|
|
|
ui->theme_combobox->setCurrentIndex(ui->theme_combobox->findData(UISettings::values.theme));
|
2016-01-24 09:34:05 -08:00
|
|
|
}
|
|
|
|
|
2019-05-25 21:39:23 -07:00
|
|
|
void ConfigureGeneral::ApplyConfiguration() {
|
2018-11-07 01:12:27 -08:00
|
|
|
UISettings::values.confirm_before_closing = ui->toggle_check_exit->isChecked();
|
2018-12-25 07:42:02 -08:00
|
|
|
UISettings::values.select_user_on_boot = ui->toggle_user_on_boot->isChecked();
|
2018-11-07 01:12:27 -08:00
|
|
|
UISettings::values.theme =
|
|
|
|
ui->theme_combobox->itemData(ui->theme_combobox->currentIndex()).toString();
|
2016-01-24 09:34:05 -08:00
|
|
|
}
|
2019-06-05 15:39:46 -07:00
|
|
|
|
|
|
|
void ConfigureGeneral::changeEvent(QEvent* event) {
|
|
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
|
|
RetranslateUI();
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureGeneral::RetranslateUI() {
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|