| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 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;
- class ConfigureInputPlayer;
- class InputProfiles;
- namespace Core {
- class System;
- }
- namespace InputCommon {
- class InputSubsystem;
- }
- namespace Ui {
- class ConfigureInputProfileDialog;
- }
- class ConfigureInputProfileDialog : public QDialog {
- Q_OBJECT
- public:
- explicit ConfigureInputProfileDialog(QWidget* parent,
- InputCommon::InputSubsystem* input_subsystem,
- InputProfiles* profiles, Core::System& system);
- ~ConfigureInputProfileDialog() override;
- private:
- void changeEvent(QEvent* event) override;
- void RetranslateUI();
- std::unique_ptr<Ui::ConfigureInputProfileDialog> ui;
- ConfigureInputPlayer* profile_widget;
- };
|