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