Files
eden/src/yuzu/configuration/configure_debug.h
T

38 lines
682 B
C++
Raw Normal View History

2022-05-15 02:06:02 +02:00
// SPDX-FileCopyrightText: 2016 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2016-01-24 18:34:05 +01:00
2016-01-24 21:54:04 +01:00
#pragma once
2016-01-24 18:34:05 +01:00
2016-09-18 09:38:01 +09:00
#include <memory>
2022-09-03 04:39:28 -07:00
#include <QScrollArea>
2016-01-24 18:34:05 +01:00
namespace Core {
class System;
}
2016-01-24 18:34:05 +01:00
namespace Ui {
class ConfigureDebug;
}
2022-09-03 04:39:28 -07:00
class ConfigureDebug : public QScrollArea {
2016-01-24 18:34:05 +01:00
Q_OBJECT
public:
explicit ConfigureDebug(const Core::System& system_, QWidget* parent = nullptr);
~ConfigureDebug() override;
2016-01-24 18:34:05 +01:00
void ApplyConfiguration();
2016-01-24 18:34:05 +01:00
private:
void changeEvent(QEvent* event) override;
void RetranslateUI();
void SetConfiguration();
2016-01-24 18:34:05 +01:00
2016-01-24 21:54:04 +01:00
std::unique_ptr<Ui::ConfigureDebug> ui;
const Core::System& system;
2022-07-10 11:29:10 -04:00
bool crash_dump_warning_shown{false};
2016-01-24 18:34:05 +01:00
};