2023-12-22 11:57:49 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
2022-12-24 03:58:21 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
|
|
|
|
#include "ui_DebugSettingsWidget.h"
|
|
|
|
|
2023-10-14 08:45:09 +00:00
|
|
|
class SettingsWindow;
|
2022-12-24 03:58:21 +00:00
|
|
|
|
|
|
|
class DebugSettingsWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2023-10-14 08:45:09 +00:00
|
|
|
DebugSettingsWidget(SettingsWindow* dialog, QWidget* parent);
|
2022-12-24 03:58:21 +00:00
|
|
|
~DebugSettingsWidget();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void onDrawDumpingChanged();
|
|
|
|
|
|
|
|
private:
|
2023-10-14 08:45:09 +00:00
|
|
|
SettingsWindow* m_dialog;
|
2022-12-24 03:58:21 +00:00
|
|
|
|
|
|
|
Ui::DebugSettingsWidget m_ui;
|
|
|
|
};
|