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