2016-07-29 12:45:49 +00: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 19:02:29 +00:00
|
|
|
|
#include <array>
|
2016-09-20 15:21:23 +00:00
|
|
|
|
#include <memory>
|
2018-10-30 04:03:25 +00:00
|
|
|
|
|
2018-11-22 20:27:07 +00:00
|
|
|
|
#include <QDialog>
|
2016-07-29 12:45:49 +00:00
|
|
|
|
#include <QKeyEvent>
|
2018-10-30 04:03:25 +00:00
|
|
|
|
|
2016-07-29 12:45:49 +00:00
|
|
|
|
#include "ui_configure_input.h"
|
|
|
|
|
|
|
|
|
|
class QPushButton;
|
|
|
|
|
class QString;
|
|
|
|
|
class QTimer;
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
2016-09-18 00:38:01 +00:00
|
|
|
|
class ConfigureInput;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 03:01:01 +00:00
|
|
|
|
void OnDockedModeChanged(bool last_state, bool new_state);
|
|
|
|
|
|
2018-11-22 20:27:07 +00:00
|
|
|
|
class ConfigureInput : public QDialog {
|
2016-07-29 12:45:49 +00:00
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit ConfigureInput(QWidget* parent = nullptr);
|
2018-12-02 19:06:39 +00:00
|
|
|
|
~ConfigureInput() override;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
|
|
|
|
|
/// Save all button configurations to settings file
|
2019-05-26 04:39:23 +00:00
|
|
|
|
void ApplyConfiguration();
|
2016-07-29 12:45:49 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2019-06-05 22:39:46 +00:00
|
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
|
void RetranslateUI();
|
|
|
|
|
void RetranslateControllerComboBoxes();
|
|
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
|
void UpdateUIEnabled();
|
2017-12-06 04:26:29 +00:00
|
|
|
|
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// Load configuration settings.
|
2019-05-26 04:39:23 +00:00
|
|
|
|
void LoadConfiguration();
|
2019-06-05 22:39:46 +00:00
|
|
|
|
void LoadPlayerControllerIndices();
|
|
|
|
|
|
2016-07-29 12:45:49 +00:00
|
|
|
|
/// Restore all buttons to their default values.
|
2019-05-26 04:39:23 +00:00
|
|
|
|
void RestoreDefaults();
|
2018-08-26 08:23:12 +00:00
|
|
|
|
|
2018-11-02 02:06:48 +00:00
|
|
|
|
std::unique_ptr<Ui::ConfigureInput> ui;
|
2017-12-06 04:26:29 +00:00
|
|
|
|
|
2018-11-04 15:18:59 +00:00
|
|
|
|
std::array<QComboBox*, 8> players_controller;
|
|
|
|
|
std::array<QPushButton*, 8> players_configure;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
};
|