| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // 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;
- class InputProfiles;
- namespace InputCommon {
- class InputSubsystem;
- }
- namespace Ui {
- class ConfigureDebugController;
- }
- class ConfigureDebugController : public QDialog {
- Q_OBJECT
- public:
- explicit ConfigureDebugController(QWidget* parent, InputCommon::InputSubsystem* input_subsystem,
- InputProfiles* profiles);
- ~ConfigureDebugController() override;
- void ApplyConfiguration();
- private:
- void changeEvent(QEvent* event) override;
- void RetranslateUI();
- std::unique_ptr<Ui::ConfigureDebugController> ui;
- ConfigureInputPlayer* debug_controller;
- };
|