2016-01-24 17:34:05 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-24 20:54:04 +00:00
|
|
|
#include "citra_qt/configure_debug.h"
|
|
|
|
#include "core/settings.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_configure_debug.h"
|
2016-01-24 20:54:04 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) {
|
2016-01-24 17:34:05 +00:00
|
|
|
ui->setupUi(this);
|
|
|
|
this->setConfiguration();
|
|
|
|
}
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
ConfigureDebug::~ConfigureDebug() {}
|
2016-01-24 17:34:05 +00:00
|
|
|
|
|
|
|
void ConfigureDebug::setConfiguration() {
|
2016-09-01 02:12:20 +00:00
|
|
|
ui->toggle_gdbstub->setChecked(Settings::values.use_gdbstub);
|
2016-01-24 20:54:04 +00:00
|
|
|
ui->gdbport_spinbox->setEnabled(Settings::values.use_gdbstub);
|
|
|
|
ui->gdbport_spinbox->setValue(Settings::values.gdbstub_port);
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureDebug::applyConfiguration() {
|
2016-09-01 02:12:20 +00:00
|
|
|
Settings::values.use_gdbstub = ui->toggle_gdbstub->isChecked();
|
2016-01-24 20:54:04 +00:00
|
|
|
Settings::values.gdbstub_port = ui->gdbport_spinbox->value();
|
2016-04-11 12:38:42 +00:00
|
|
|
Settings::Apply();
|
2016-01-24 17:34:05 +00:00
|
|
|
}
|