2016-01-24 23:04:05 +05:30
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-10-28 02:13:29 +05:30
|
|
|
#include <QMessageBox>
|
2016-12-22 10:19:36 +05:30
|
|
|
#include "citra_qt/configuration/configure_general.h"
|
2016-01-24 23:04:05 +05:30
|
|
|
#include "citra_qt/ui_settings.h"
|
2016-12-16 05:31:48 +05:30
|
|
|
#include "core/core.h"
|
2016-01-24 23:04:05 +05:30
|
|
|
#include "core/settings.h"
|
2016-09-20 20:51:23 +05:30
|
|
|
#include "ui_configure_general.h"
|
2016-01-24 23:04:05 +05:30
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
ConfigureGeneral::ConfigureGeneral(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGeneral) {
|
2016-09-19 06:31:46 +05:30
|
|
|
|
2016-01-24 23:04:05 +05:30
|
|
|
ui->setupUi(this);
|
|
|
|
this->setConfiguration();
|
2016-09-02 09:00:01 +05:30
|
|
|
|
2017-08-19 10:35:49 +05:30
|
|
|
ui->updateBox->setVisible(UISettings::values.updater_found);
|
2018-10-28 02:13:29 +05:30
|
|
|
connect(ui->button_reset_defaults, &QPushButton::clicked, this,
|
|
|
|
&ConfigureGeneral::ResetDefaults);
|
2016-01-24 23:04:05 +05:30
|
|
|
}
|
|
|
|
|
2018-08-24 20:44:09 +05:30
|
|
|
ConfigureGeneral::~ConfigureGeneral() = default;
|
2016-01-24 23:04:05 +05:30
|
|
|
|
|
|
|
void ConfigureGeneral::setConfiguration() {
|
2016-09-01 07:42:20 +05:30
|
|
|
ui->toggle_check_exit->setChecked(UISettings::values.confirm_before_closing);
|
2016-11-30 15:02:09 +05:30
|
|
|
|
2017-08-19 10:35:49 +05:30
|
|
|
ui->toggle_update_check->setChecked(UISettings::values.check_for_update_on_start);
|
|
|
|
ui->toggle_auto_update->setChecked(UISettings::values.update_on_close);
|
|
|
|
|
2016-11-30 15:02:09 +05:30
|
|
|
// The first item is "auto-select" with actual value -1, so plus one here will do the trick
|
|
|
|
ui->region_combobox->setCurrentIndex(Settings::values.region_value + 1);
|
2016-01-24 23:04:05 +05:30
|
|
|
}
|
|
|
|
|
2018-08-07 10:13:07 +05:30
|
|
|
void ConfigureGeneral::PopulateHotkeyList(const HotkeyRegistry& registry) {
|
|
|
|
ui->hotkeysDialog->Populate(registry);
|
|
|
|
}
|
|
|
|
|
2018-10-28 02:13:29 +05:30
|
|
|
void ConfigureGeneral::ResetDefaults() {
|
|
|
|
QMessageBox::StandardButton answer = QMessageBox::question(
|
|
|
|
this, tr("Citra"),
|
|
|
|
tr("Are you sure you want to <b>reset your settings</b> and close Citra?"),
|
|
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
|
|
|
|
|
|
|
|
if (answer == QMessageBox::No)
|
|
|
|
return;
|
|
|
|
|
|
|
|
FileUtil::Delete(FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + "qt-config.ini");
|
|
|
|
std::exit(0);
|
|
|
|
}
|
|
|
|
|
2016-01-24 23:04:05 +05:30
|
|
|
void ConfigureGeneral::applyConfiguration() {
|
2016-09-01 07:42:20 +05:30
|
|
|
UISettings::values.confirm_before_closing = ui->toggle_check_exit->isChecked();
|
2017-08-19 10:35:49 +05:30
|
|
|
|
|
|
|
UISettings::values.check_for_update_on_start = ui->toggle_update_check->isChecked();
|
|
|
|
UISettings::values.update_on_close = ui->toggle_auto_update->isChecked();
|
|
|
|
|
2016-11-30 15:02:09 +05:30
|
|
|
Settings::values.region_value = ui->region_combobox->currentIndex() - 1;
|
2016-01-24 23:04:05 +05:30
|
|
|
}
|
2017-09-23 18:43:59 +05:30
|
|
|
|
|
|
|
void ConfigureGeneral::retranslateUi() {
|
|
|
|
ui->retranslateUi(this);
|
2018-07-24 09:53:38 +05:30
|
|
|
ui->hotkeysDialog->retranslateUi();
|
2017-09-23 18:43:59 +05:30
|
|
|
}
|