mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
e149ad4f0a
SPDX standardizes how source code conveys its copyright and licensing information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX tags are adopted in many large projects, including things like the Linux kernel.
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinQt/TAS/TASInputWindow.h"
|
|
|
|
class QGroupBox;
|
|
class QSpinBox;
|
|
class TASCheckBox;
|
|
struct GCPadStatus;
|
|
|
|
class GCTASInputWindow : public TASInputWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit GCTASInputWindow(QWidget* parent, int num);
|
|
void GetValues(GCPadStatus* pad);
|
|
|
|
private:
|
|
TASCheckBox* m_a_button;
|
|
TASCheckBox* m_b_button;
|
|
TASCheckBox* m_x_button;
|
|
TASCheckBox* m_y_button;
|
|
TASCheckBox* m_z_button;
|
|
TASCheckBox* m_l_button;
|
|
TASCheckBox* m_r_button;
|
|
TASCheckBox* m_start_button;
|
|
TASCheckBox* m_left_button;
|
|
TASCheckBox* m_up_button;
|
|
TASCheckBox* m_down_button;
|
|
TASCheckBox* m_right_button;
|
|
QSpinBox* m_l_trigger_value;
|
|
QSpinBox* m_r_trigger_value;
|
|
QSpinBox* m_x_main_stick_value;
|
|
QSpinBox* m_y_main_stick_value;
|
|
QSpinBox* m_x_c_stick_value;
|
|
QSpinBox* m_y_c_stick_value;
|
|
QGroupBox* m_main_stick_box;
|
|
QGroupBox* m_c_stick_box;
|
|
QGroupBox* m_triggers_box;
|
|
QGroupBox* m_buttons_box;
|
|
};
|