Files
eden/src/yuzu/configuration/configure_input.h
T

78 lines
1.7 KiB
C++
Raw Normal View History

2022-05-15 02:06:02 +02:00
// SPDX-FileCopyrightText: 2016 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <array>
2016-09-21 00:21:23 +09:00
#include <memory>
#include <QKeyEvent>
#include <QList>
2020-08-27 15:16:47 -04:00
#include <QWidget>
namespace Core {
class System;
}
2020-08-15 15:26:29 -04:00
class QCheckBox;
class QString;
class QTimer;
class ConfigureInputAdvanced;
class ConfigureInputPlayer;
2020-09-23 09:52:25 -04:00
class InputProfiles;
2020-08-27 15:16:47 -04:00
namespace InputCommon {
class InputSubsystem;
}
namespace Ui {
2016-09-18 09:38:01 +09:00
class ConfigureInput;
}
void OnDockedModeChanged(bool last_state, bool new_state, Core::System& system);
2020-07-22 10:39:53 -04:00
class ConfigureInput : public QWidget {
Q_OBJECT
public:
explicit ConfigureInput(Core::System& system_, QWidget* parent = nullptr);
~ConfigureInput() override;
2020-08-27 15:16:47 -04:00
/// Initializes the input dialog with the given input subsystem.
void Initialize(InputCommon::InputSubsystem* input_subsystem_, std::size_t max_players = 8);
2020-08-27 15:16:47 -04:00
2020-07-22 10:39:53 -04:00
/// Save all button configurations to settings file.
void ApplyConfiguration();
2020-07-22 10:39:53 -04:00
QList<QWidget*> GetSubTabs() const;
private:
void changeEvent(QEvent* event) override;
void RetranslateUI();
2020-07-22 10:39:53 -04:00
void ClearAll();
2020-07-22 10:39:53 -04:00
void UpdateDockedState(bool is_handheld);
void UpdateAllInputDevices();
void UpdateAllInputProfiles(std::size_t player_index);
/// Load configuration settings.
void LoadConfiguration();
void LoadPlayerControllerIndices();
/// Restore all buttons to their default values.
void RestoreDefaults();
std::unique_ptr<Ui::ConfigureInput> ui;
2020-09-23 09:52:25 -04:00
std::unique_ptr<InputProfiles> profiles;
2020-07-22 10:39:53 -04:00
std::array<ConfigureInputPlayer*, 8> player_controllers;
std::array<QWidget*, 8> player_tabs;
std::array<QCheckBox*, 8> player_connected;
ConfigureInputAdvanced* advanced;
Core::System& system;
};