2018-07-07 05:51:34 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
struct GCPadStatus;
|
|
|
|
class QBoxLayout;
|
|
|
|
class QCheckBox;
|
|
|
|
class QDialog;
|
|
|
|
class QGroupBox;
|
|
|
|
class QSpinBox;
|
|
|
|
class QString;
|
2019-03-31 02:49:57 +00:00
|
|
|
class TASCheckBox;
|
2018-07-07 05:51:34 +00:00
|
|
|
|
|
|
|
class TASInputWindow : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit TASInputWindow(QWidget* parent);
|
|
|
|
|
2020-06-30 19:07:25 +00:00
|
|
|
int GetTurboPressFrames() const;
|
|
|
|
int GetTurboReleaseFrames() const;
|
|
|
|
|
2018-07-07 05:51:34 +00:00
|
|
|
protected:
|
2020-06-30 19:07:25 +00:00
|
|
|
TASCheckBox* CreateButton(const QString& name);
|
2018-07-07 05:51:34 +00:00
|
|
|
QGroupBox* CreateStickInputs(QString name, QSpinBox*& x_value, QSpinBox*& y_value, u16 max_x,
|
|
|
|
u16 max_y, Qt::Key x_shortcut_key, Qt::Key y_shortcut_key);
|
|
|
|
QBoxLayout* CreateSliderValuePairLayout(QString name, QSpinBox*& value, u16 max,
|
|
|
|
Qt::Key shortcut_key, QWidget* shortcut_widget,
|
|
|
|
bool invert = false);
|
|
|
|
QSpinBox* CreateSliderValuePair(QBoxLayout* layout, u16 max, QKeySequence shortcut_key_sequence,
|
|
|
|
Qt::Orientation orientation, QWidget* shortcut_widget,
|
|
|
|
bool invert = false);
|
|
|
|
template <typename UX>
|
2019-03-31 02:49:57 +00:00
|
|
|
void GetButton(TASCheckBox* button, UX& pad, UX mask);
|
2018-07-07 05:51:34 +00:00
|
|
|
void GetSpinBoxU8(QSpinBox* spin, u8& controller_value);
|
|
|
|
void GetSpinBoxU16(QSpinBox* spin, u16& controller_value);
|
2020-06-30 19:07:25 +00:00
|
|
|
|
|
|
|
QGroupBox* m_settings_box;
|
2018-07-07 05:51:34 +00:00
|
|
|
QCheckBox* m_use_controller;
|
2020-06-30 19:07:25 +00:00
|
|
|
QSpinBox* m_turbo_press_frames;
|
|
|
|
QSpinBox* m_turbo_release_frames;
|
2018-07-07 05:51:34 +00:00
|
|
|
|
|
|
|
private:
|
2019-03-31 02:49:57 +00:00
|
|
|
std::map<TASCheckBox*, bool> m_checkbox_set_by_controller;
|
2018-07-07 05:51:34 +00:00
|
|
|
std::map<QSpinBox*, u8> m_spinbox_most_recent_values_u8;
|
|
|
|
std::map<QSpinBox*, u8> m_spinbox_most_recent_values_u16;
|
|
|
|
};
|