2016-07-29 05:45:49 -07:00
|
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2017-01-22 11:02:29 -08:00
|
|
|
|
#include <array>
|
2016-09-20 08:21:23 -07:00
|
|
|
|
#include <memory>
|
2018-10-29 21:03:25 -07:00
|
|
|
|
|
2016-07-29 05:45:49 -07:00
|
|
|
|
#include <QKeyEvent>
|
2020-10-27 10:33:25 -07:00
|
|
|
|
#include <QList>
|
2020-08-27 12:16:47 -07:00
|
|
|
|
#include <QWidget>
|
2018-10-29 21:03:25 -07:00
|
|
|
|
|
2020-08-15 12:26:29 -07:00
|
|
|
|
class QCheckBox;
|
2016-07-29 05:45:49 -07:00
|
|
|
|
class QString;
|
|
|
|
|
class QTimer;
|
|
|
|
|
|
2020-10-27 10:33:25 -07:00
|
|
|
|
class ConfigureInputAdvanced;
|
|
|
|
|
class ConfigureInputPlayer;
|
|
|
|
|
|
2020-09-23 06:52:25 -07:00
|
|
|
|
class InputProfiles;
|
|
|
|
|
|
2020-08-27 12:16:47 -07:00
|
|
|
|
namespace InputCommon {
|
|
|
|
|
class InputSubsystem;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-29 05:45:49 -07:00
|
|
|
|
namespace Ui {
|
2016-09-17 17:38:01 -07:00
|
|
|
|
class ConfigureInput;
|
2016-07-29 05:45:49 -07:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-04 19:01:01 -08:00
|
|
|
|
void OnDockedModeChanged(bool last_state, bool new_state);
|
|
|
|
|
|
2020-07-22 07:39:53 -07:00
|
|
|
|
class ConfigureInput : public QWidget {
|
2016-07-29 05:45:49 -07:00
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit ConfigureInput(QWidget* parent = nullptr);
|
2018-12-02 11:06:39 -08:00
|
|
|
|
~ConfigureInput() override;
|
2016-07-29 05:45:49 -07:00
|
|
|
|
|
2020-08-27 12:16:47 -07:00
|
|
|
|
/// Initializes the input dialog with the given input subsystem.
|
2020-08-21 04:39:24 -07:00
|
|
|
|
void Initialize(InputCommon::InputSubsystem* input_subsystem_, std::size_t max_players = 8);
|
2020-08-27 12:16:47 -07:00
|
|
|
|
|
2020-07-22 07:39:53 -07:00
|
|
|
|
/// Save all button configurations to settings file.
|
2019-05-25 21:39:23 -07:00
|
|
|
|
void ApplyConfiguration();
|
2016-07-29 05:45:49 -07:00
|
|
|
|
|
2020-07-22 07:39:53 -07:00
|
|
|
|
QList<QWidget*> GetSubTabs() const;
|
|
|
|
|
|
2016-07-29 05:45:49 -07:00
|
|
|
|
private:
|
2019-06-05 15:39:46 -07:00
|
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
|
void RetranslateUI();
|
2020-07-22 07:39:53 -07:00
|
|
|
|
void ClearAll();
|
2019-06-05 15:39:46 -07:00
|
|
|
|
|
2020-07-22 07:39:53 -07:00
|
|
|
|
void UpdateDockedState(bool is_handheld);
|
|
|
|
|
void UpdateAllInputDevices();
|
2020-10-29 09:15:35 -07:00
|
|
|
|
void UpdateAllInputProfiles(std::size_t player_index);
|
2017-12-05 20:26:29 -08:00
|
|
|
|
|
2016-12-09 15:59:09 -08:00
|
|
|
|
/// Load configuration settings.
|
2019-05-25 21:39:23 -07:00
|
|
|
|
void LoadConfiguration();
|
2019-06-05 15:39:46 -07:00
|
|
|
|
void LoadPlayerControllerIndices();
|
|
|
|
|
|
2016-07-29 05:45:49 -07:00
|
|
|
|
/// Restore all buttons to their default values.
|
2019-05-25 21:39:23 -07:00
|
|
|
|
void RestoreDefaults();
|
2018-08-26 01:23:12 -07:00
|
|
|
|
|
2018-11-01 19:06:48 -07:00
|
|
|
|
std::unique_ptr<Ui::ConfigureInput> ui;
|
2017-12-05 20:26:29 -08:00
|
|
|
|
|
2020-09-23 06:52:25 -07:00
|
|
|
|
std::unique_ptr<InputProfiles> profiles;
|
|
|
|
|
|
2020-07-22 07:39:53 -07:00
|
|
|
|
std::array<ConfigureInputPlayer*, 8> player_controllers;
|
|
|
|
|
std::array<QWidget*, 8> player_tabs;
|
|
|
|
|
std::array<QCheckBox*, 8> player_connected;
|
|
|
|
|
ConfigureInputAdvanced* advanced;
|
2016-07-29 05:45:49 -07:00
|
|
|
|
};
|