| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #pragma once
- #include <memory>
- #include <QDialog>
- class QPushButton;
- class ConfigureInputPlayer;
- class InputProfiles;
- namespace Core::HID {
- class HIDCore;
- }
- 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, Core::HID::HIDCore& hid_core,
- bool is_powered_on);
- ~ConfigureDebugController() override;
- void ApplyConfiguration();
- private:
- void changeEvent(QEvent* event) override;
- void RetranslateUI();
- std::unique_ptr<Ui::ConfigureDebugController> ui;
- ConfigureInputPlayer* debug_controller;
- };
|