2018-01-27 13:35:02 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-01-27 13:35:02 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-07 05:51:34 +00:00
|
|
|
#include "DolphinQt/TAS/TASInputWindow.h"
|
2018-01-27 13:35:02 +00:00
|
|
|
|
2018-07-07 05:51:34 +00:00
|
|
|
class QGroupBox;
|
2021-03-21 21:42:33 +00:00
|
|
|
class QHideEvent;
|
|
|
|
class QShowEvent;
|
2018-01-27 13:35:02 +00:00
|
|
|
class QSpinBox;
|
2019-03-31 02:49:57 +00:00
|
|
|
class TASCheckBox;
|
2018-01-27 13:35:02 +00:00
|
|
|
|
2018-07-07 05:51:34 +00:00
|
|
|
class GCTASInputWindow : public TASInputWindow
|
2018-01-27 13:35:02 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2021-03-21 21:42:33 +00:00
|
|
|
explicit GCTASInputWindow(QWidget* parent, int controller_id);
|
|
|
|
|
|
|
|
void hideEvent(QHideEvent* event) override;
|
|
|
|
void showEvent(QShowEvent* event) override;
|
2018-01-27 13:35:02 +00:00
|
|
|
|
|
|
|
private:
|
2021-03-21 21:42:33 +00:00
|
|
|
int m_controller_id;
|
|
|
|
|
|
|
|
InputOverrider m_overrider;
|
|
|
|
|
2019-03-31 02:49:57 +00:00
|
|
|
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;
|
2018-07-07 05:51:34 +00:00
|
|
|
QGroupBox* m_main_stick_box;
|
|
|
|
QGroupBox* m_c_stick_box;
|
|
|
|
QGroupBox* m_triggers_box;
|
|
|
|
QGroupBox* m_buttons_box;
|
2018-01-27 13:35:02 +00:00
|
|
|
};
|