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
|
|
|
|
|
|
2016-09-20 15:21:23 +00:00
|
|
|
|
#include <memory>
|
2016-07-29 12:45:49 +00:00
|
|
|
|
#include <QKeyEvent>
|
2016-09-18 00:38:01 +00:00
|
|
|
|
#include <QWidget>
|
2016-12-09 23:59:09 +00:00
|
|
|
|
#include <boost/optional.hpp>
|
2016-07-29 12:45:49 +00:00
|
|
|
|
#include "core/settings.h"
|
|
|
|
|
#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:
|
|
|
|
|
std::unique_ptr<Ui::ConfigureInput> ui;
|
|
|
|
|
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// This input is currently awaiting configuration.
|
|
|
|
|
/// (i.e.: its corresponding QPushButton has been pressed.)
|
|
|
|
|
boost::optional<Settings::NativeInput::Values> current_input_id;
|
|
|
|
|
std::unique_ptr<QTimer> timer;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// Each input is represented by a QPushButton.
|
|
|
|
|
std::map<Settings::NativeInput::Values, QPushButton*> button_map;
|
|
|
|
|
/// Each input is configured to respond to the press of a Qt::Key.
|
|
|
|
|
std::map<Settings::NativeInput::Values, Qt::Key> key_map;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
|
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();
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// Update UI to reflect current configuration.
|
|
|
|
|
void updateButtonLabels();
|
|
|
|
|
|
|
|
|
|
/// Called when the button corresponding to input_id was pressed.
|
|
|
|
|
void handleClick(Settings::NativeInput::Values input_id);
|
|
|
|
|
/// Handle key press events.
|
|
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
|
|
|
|
/// Configure input input_id to respond to key key_pressed.
|
|
|
|
|
void setInput(Settings::NativeInput::Values input_id, Qt::Key key_pressed);
|
2016-07-29 12:45:49 +00:00
|
|
|
|
};
|