2020-07-22 15:39:53 +01:00
|
|
|
// 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>
|
|
|
|
|
|
|
|
class QPushButton;
|
|
|
|
|
2020-10-27 17:33:25 +00:00
|
|
|
class ConfigureInputPlayer;
|
|
|
|
|
2020-09-23 14:52:25 +01:00
|
|
|
class InputProfiles;
|
|
|
|
|
2021-11-05 03:54:22 +00:00
|
|
|
namespace Core::HID {
|
|
|
|
class HIDCore;
|
2021-09-03 02:40:55 +01:00
|
|
|
}
|
|
|
|
|
2020-08-27 20:16:47 +01:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2020-07-22 15:39:53 +01:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureDebugController;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ConfigureDebugController : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-09-23 14:52:25 +01:00
|
|
|
explicit ConfigureDebugController(QWidget* parent, InputCommon::InputSubsystem* input_subsystem,
|
2021-11-05 03:54:22 +00:00
|
|
|
InputProfiles* profiles, Core::HID::HIDCore& hid_core,
|
|
|
|
bool is_powered_on);
|
2020-07-22 15:39:53 +01:00
|
|
|
~ConfigureDebugController() override;
|
|
|
|
|
|
|
|
void ApplyConfiguration();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
void RetranslateUI();
|
|
|
|
|
|
|
|
std::unique_ptr<Ui::ConfigureDebugController> ui;
|
2020-08-15 20:26:29 +01:00
|
|
|
|
|
|
|
ConfigureInputPlayer* debug_controller;
|
2020-07-22 15:39:53 +01:00
|
|
|
};
|