5980aa1e51
We can simply enable CMAKE_AUTOUIC and let CMake take care of handling the UI code generation for targets. As part of letting CMake automatically handle the header file parsing, we must not name includes with "ui_*" unless they're related to the output of the Qt UIC compiler. Because of this, we need to rename ui_settings, given it would conflict with this restriction.
69 lines
2.7 KiB
C++
69 lines
2.7 KiB
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <QDesktopServices>
|
|
#include <QUrl>
|
|
#include "common/file_util.h"
|
|
#include "common/logging/backend.h"
|
|
#include "common/logging/filter.h"
|
|
#include "core/core.h"
|
|
#include "core/settings.h"
|
|
#include "ui_configure_debug.h"
|
|
#include "yuzu/configuration/configure_debug.h"
|
|
#include "yuzu/debugger/console.h"
|
|
#include "yuzu/uisettings.h"
|
|
|
|
ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) {
|
|
ui->setupUi(this);
|
|
SetConfiguration();
|
|
|
|
connect(ui->open_log_button, &QPushButton::pressed, []() {
|
|
QString path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::LogDir));
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
});
|
|
}
|
|
|
|
ConfigureDebug::~ConfigureDebug() = default;
|
|
|
|
void ConfigureDebug::SetConfiguration() {
|
|
ui->toggle_gdbstub->setChecked(Settings::values.use_gdbstub);
|
|
ui->gdbport_spinbox->setEnabled(Settings::values.use_gdbstub);
|
|
ui->gdbport_spinbox->setValue(Settings::values.gdbstub_port);
|
|
ui->toggle_console->setEnabled(!Core::System::GetInstance().IsPoweredOn());
|
|
ui->toggle_console->setChecked(UISettings::values.show_console);
|
|
ui->log_filter_edit->setText(QString::fromStdString(Settings::values.log_filter));
|
|
ui->homebrew_args_edit->setText(QString::fromStdString(Settings::values.program_args));
|
|
ui->dump_exefs->setChecked(Settings::values.dump_exefs);
|
|
ui->dump_decompressed_nso->setChecked(Settings::values.dump_nso);
|
|
ui->reporting_services->setChecked(Settings::values.reporting_services);
|
|
ui->quest_flag->setChecked(Settings::values.quest_flag);
|
|
}
|
|
|
|
void ConfigureDebug::ApplyConfiguration() {
|
|
Settings::values.use_gdbstub = ui->toggle_gdbstub->isChecked();
|
|
Settings::values.gdbstub_port = ui->gdbport_spinbox->value();
|
|
UISettings::values.show_console = ui->toggle_console->isChecked();
|
|
Settings::values.log_filter = ui->log_filter_edit->text().toStdString();
|
|
Settings::values.program_args = ui->homebrew_args_edit->text().toStdString();
|
|
Settings::values.dump_exefs = ui->dump_exefs->isChecked();
|
|
Settings::values.dump_nso = ui->dump_decompressed_nso->isChecked();
|
|
Settings::values.reporting_services = ui->reporting_services->isChecked();
|
|
Settings::values.quest_flag = ui->quest_flag->isChecked();
|
|
Debugger::ToggleConsole();
|
|
Log::Filter filter;
|
|
filter.ParseFilterString(Settings::values.log_filter);
|
|
Log::SetGlobalFilter(filter);
|
|
}
|
|
|
|
void ConfigureDebug::changeEvent(QEvent* event) {
|
|
if (event->type() == QEvent::LanguageChange) {
|
|
RetranslateUI();
|
|
}
|
|
|
|
QWidget::changeEvent(event);
|
|
}
|
|
|
|
void ConfigureDebug::RetranslateUI() {
|
|
ui->retranslateUi(this);
|
|
}
|