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.
|
|
|
|
|
2016-01-24 21:54:04 +01:00
|
|
|
#include "citra_qt/configure_debug.h"
|
|
|
|
#include "core/settings.h"
|
2016-09-20 17:21:23 +02:00
|
|
|
#include "ui_configure_debug.h"
|
2016-01-24 21:54:04 +01:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) {
|
2016-01-24 18:34:05 +01:00
|
|
|
ui->setupUi(this);
|
|
|
|
this->setConfiguration();
|
|
|
|
}
|
|
|
|
|
2016-09-19 03:01:46 +02:00
|
|
|
ConfigureDebug::~ConfigureDebug() {}
|
2016-01-24 18:34:05 +01:00
|
|
|
|
|
|
|
void ConfigureDebug::setConfiguration() {
|
2016-09-01 04:12:20 +02:00
|
|
|
ui->toggle_gdbstub->setChecked(Settings::values.use_gdbstub);
|
2016-01-24 21:54:04 +01:00
|
|
|
ui->gdbport_spinbox->setEnabled(Settings::values.use_gdbstub);
|
|
|
|
ui->gdbport_spinbox->setValue(Settings::values.gdbstub_port);
|
2016-01-24 18:34:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureDebug::applyConfiguration() {
|
2016-09-01 04:12:20 +02:00
|
|
|
Settings::values.use_gdbstub = ui->toggle_gdbstub->isChecked();
|
2016-01-24 21:54:04 +01:00
|
|
|
Settings::values.gdbstub_port = ui->gdbport_spinbox->value();
|
2016-04-11 14:38:42 +02:00
|
|
|
Settings::Apply();
|
2016-01-24 18:34:05 +01:00
|
|
|
}
|