diff options
author | Morph <[email protected]> | 2020-07-22 10:39:53 -0400 |
---|---|---|
committer | Morph <[email protected]> | 2020-08-26 02:32:32 -0400 |
commit | f0fac0c7fb6f7dd9fe81747b3369767c8c9e7d01 (patch) | |
tree | 4438688a9b9b4bc015985f2df1a731de57fe50db /src/yuzu/configuration/configure_debug_controller.h | |
parent | b8885aa03bed5f9a374163d3fdcb67e59ab4c441 (diff) | |
download | yuzu-android-f0fac0c7fb6f7dd9fe81747b3369767c8c9e7d01.tar.gz yuzu-android-f0fac0c7fb6f7dd9fe81747b3369767c8c9e7d01.zip |
Project Mjölnir: Part 1
Co-authored-by: James Rowe <[email protected]>
Co-authored-by: Its-Rei <[email protected]>
Diffstat (limited to 'src/yuzu/configuration/configure_debug_controller.h')
-rw-r--r-- | src/yuzu/configuration/configure_debug_controller.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_debug_controller.h b/src/yuzu/configuration/configure_debug_controller.h new file mode 100644 index 000000000..df359a4f3 --- /dev/null +++ b/src/yuzu/configuration/configure_debug_controller.h @@ -0,0 +1,33 @@ +// Copyright 2020 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include <memory> +#include <QDialog> +#include "yuzu/configuration/configure_input_player.h" + +class QPushButton; + +namespace Ui { +class ConfigureDebugController; +} + +class ConfigureDebugController : public QDialog { + Q_OBJECT + +public: + explicit ConfigureDebugController(QWidget* parent); + ~ConfigureDebugController() override; + + void ApplyConfiguration(); + +private: + void changeEvent(QEvent* event) override; + void RetranslateUI(); + + ConfigureInputPlayer* debug_controller; + + std::unique_ptr<Ui::ConfigureDebugController> ui; +}; |