Add more stuff to configure.
This commit is contained in:
parent
e33b938505
commit
3eb737a5f5
15 changed files with 211 additions and 120 deletions
|
@ -2,13 +2,12 @@
|
|||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/core.h"
|
||||
#include "core/gdbstub/gdbstub.h" // TODO: can't include gdbstub without core.h
|
||||
#include "core/settings.h"
|
||||
|
||||
#include "configure_debug.h"
|
||||
#include "citra_qt/configure_debug.h"
|
||||
#include "ui_configure_debug.h"
|
||||
|
||||
#include "core/gdbstub/gdbstub.h"
|
||||
#include "core/settings.h"
|
||||
|
||||
ConfigureDebug::ConfigureDebug(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::ConfigureDebug)
|
||||
|
@ -18,16 +17,16 @@ ConfigureDebug::ConfigureDebug(QWidget *parent) :
|
|||
}
|
||||
|
||||
ConfigureDebug::~ConfigureDebug() {
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void ConfigureDebug::setConfiguration() {
|
||||
ui->toogleGDBStub->setChecked(Settings::values.use_gdbstub);
|
||||
ui->GDBPortSpinBox->setValue(Settings::values.gdbstub_port);
|
||||
ui->toogle_gdbstub->setChecked(Settings::values.use_gdbstub);
|
||||
ui->gdbport_spinbox->setEnabled(Settings::values.use_gdbstub);
|
||||
ui->gdbport_spinbox->setValue(Settings::values.gdbstub_port);
|
||||
}
|
||||
|
||||
void ConfigureDebug::applyConfiguration() {
|
||||
GDBStub::ToggleServer(ui->toogleGDBStub->isChecked());
|
||||
Settings::values.use_gdbstub = ui->toogleGDBStub->isChecked();
|
||||
Settings::values.gdbstub_port = ui->GDBPortSpinBox->value();
|
||||
GDBStub::ToggleServer(ui->toogle_gdbstub->isChecked());
|
||||
Settings::values.use_gdbstub = ui->toogle_gdbstub->isChecked();
|
||||
Settings::values.gdbstub_port = ui->gdbport_spinbox->value();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue