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