mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-03 19:11:20 -08:00
f0fac0c7fb
Co-authored-by: James Rowe <jroweboy@gmail.com> Co-authored-by: Its-Rei <kupfel@gmail.com>
34 lines
693 B
C++
34 lines
693 B
C++
// 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;
|
|
};
|