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
|
|
|
|
|
2016-07-29 12:45:49 +00:00
|
|
|
|
#include <QKeyEvent>
|
2016-09-18 00:38:01 +00:00
|
|
|
|
#include <QWidget>
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ConfigureInput : public QWidget {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit ConfigureInput(QWidget* parent = nullptr);
|
|
|
|
|
|
|
|
|
|
/// Save all button configurations to settings file
|
|
|
|
|
void applyConfiguration();
|
|
|
|
|
|
|
|
|
|
private:
|
2018-11-02 02:06:48 +00:00
|
|
|
|
void updateUIEnabled();
|
2017-12-06 04:26:29 +00:00
|
|
|
|
|
2018-11-04 15:18:59 +00:00
|
|
|
|
void OnDockedModeChanged(bool last_state, bool new_state);
|
|
|
|
|
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// Load configuration settings.
|
|
|
|
|
void loadConfiguration();
|
2016-07-29 12:45:49 +00:00
|
|
|
|
/// Restore all buttons to their default values.
|
|
|
|
|
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
|
|
|
|
};
|