mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 01:29:59 +00:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
42 lines
810 B
C++
42 lines
810 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QWidget>
|
|
|
|
class ConfigureDebug;
|
|
class ConfigureCpuDebug;
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Ui {
|
|
class ConfigureDebugTab;
|
|
}
|
|
|
|
class ConfigureDebugTab : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDebugTab(const Core::System& system_, QWidget* parent = nullptr);
|
|
~ConfigureDebugTab() override;
|
|
|
|
void ApplyConfiguration();
|
|
|
|
void SetCurrentIndex(int index);
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void SetConfiguration();
|
|
|
|
std::unique_ptr<Ui::ConfigureDebugTab> ui;
|
|
|
|
std::unique_ptr<ConfigureDebug> debug_tab;
|
|
std::unique_ptr<ConfigureCpuDebug> cpu_debug_tab;
|
|
};
|