mirror of https://github.com/PCSX2/pcsx2.git
33 lines
613 B
C++
33 lines
613 B
C++
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_DebugSettingsWidget.h"
|
|
|
|
class SettingsWindow;
|
|
class DebugAnalysisSettingsWidget;
|
|
|
|
class DebugSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DebugSettingsWidget(SettingsWindow* dialog, QWidget* parent);
|
|
~DebugSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void onDrawDumpingChanged();
|
|
#ifdef PCSX2_DEVBUILD
|
|
void onLoggingEnableChanged();
|
|
#endif
|
|
|
|
private:
|
|
SettingsWindow* m_dialog;
|
|
DebugAnalysisSettingsWidget* m_analysis_settings;
|
|
|
|
Ui::DebugSettingsWidget m_ui;
|
|
};
|