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.
|
|
|
|
|
2018-10-27 22:43:29 +02:00
|
|
|
#include <QMessageBox>
|
2016-12-21 23:49:36 -05:00
|
|
|
#include "citra_qt/configuration/configure_general.h"
|
2019-08-14 22:38:54 -06:00
|
|
|
#include "citra_qt/uisettings.h"
|
2016-12-15 19:01:48 -05:00
|
|
|
#include "core/core.h"
|
2016-01-24 18:34:05 +01:00
|
|
|
#include "core/settings.h"
|
2016-09-21 00:21:23 +09:00
|
|
|
#include "ui_configure_general.h"
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2016-09-18 09:38:01 +09:00
|
|
|
ConfigureGeneral::ConfigureGeneral(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGeneral) {
|
2016-09-18 18:01:46 -07:00
|
|
|
|
2016-01-24 18:34:05 +01:00
|
|
|
ui->setupUi(this);
|
2019-05-26 00:39:23 -04:00
|
|
|
SetConfiguration();
|
2016-09-01 23:30:01 -04:00
|
|
|
|
2019-08-10 05:13:17 -04:00
|
|
|
connect(ui->toggle_frame_limit, &QCheckBox::toggled, ui->frame_limit, &QSpinBox::setEnabled);
|
|
|
|
|
2017-08-18 23:05:49 -06:00
|
|
|
ui->updateBox->setVisible(UISettings::values.updater_found);
|
2018-10-27 22:43:29 +02:00
|
|
|
connect(ui->button_reset_defaults, &QPushButton::clicked, this,
|
|
|
|
&ConfigureGeneral::ResetDefaults);
|
2016-01-24 18:34:05 +01:00
|
|
|
}
|
|
|
|
|
2018-08-24 17:14:09 +02:00
|
|
|
ConfigureGeneral::~ConfigureGeneral() = default;
|
2016-01-24 18:34:05 +01:00
|
|
|
|
2019-05-26 00:39:23 -04:00
|
|
|
void ConfigureGeneral::SetConfiguration() {
|
2016-08-31 22:12:20 -04:00
|
|
|
ui->toggle_check_exit->setChecked(UISettings::values.confirm_before_closing);
|
2019-09-14 18:14:23 -03:00
|
|
|
ui->toggle_background_pause->setChecked(UISettings::values.pause_when_in_background);
|
2016-11-30 11:32:09 +02:00
|
|
|
|
2017-08-18 23:05:49 -06:00
|
|
|
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 11:32:09 +02:00
|
|
|
// 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);
|
2019-08-10 05:13:17 -04:00
|
|
|
|
|
|
|
ui->toggle_frame_limit->setChecked(Settings::values.use_frame_limit);
|
|
|
|
ui->frame_limit->setEnabled(ui->toggle_frame_limit->isChecked());
|
|
|
|
ui->frame_limit->setValue(Settings::values.frame_limit);
|
2016-01-24 18:34:05 +01:00
|
|
|
}
|
|
|
|
|
2018-10-27 22:43:29 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-05-26 00:39:23 -04:00
|
|
|
void ConfigureGeneral::ApplyConfiguration() {
|
2016-08-31 22:12:20 -04:00
|
|
|
UISettings::values.confirm_before_closing = ui->toggle_check_exit->isChecked();
|
2019-09-14 18:14:23 -03:00
|
|
|
UISettings::values.pause_when_in_background = ui->toggle_background_pause->isChecked();
|
2017-08-18 23:05:49 -06:00
|
|
|
|
|
|
|
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 11:32:09 +02:00
|
|
|
Settings::values.region_value = ui->region_combobox->currentIndex() - 1;
|
2019-08-10 05:13:17 -04:00
|
|
|
|
|
|
|
Settings::values.use_frame_limit = ui->toggle_frame_limit->isChecked();
|
|
|
|
Settings::values.frame_limit = ui->frame_limit->value();
|
2016-01-24 18:34:05 +01:00
|
|
|
}
|
2017-09-23 16:13:59 +03:00
|
|
|
|
2019-05-26 00:39:23 -04:00
|
|
|
void ConfigureGeneral::RetranslateUI() {
|
2017-09-23 16:13:59 +03:00
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|