mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Move DolphinQt2 to DolphinQt
This commit is contained in:
parent
059880bb16
commit
13ba24c5a6
233 changed files with 392 additions and 392 deletions
41
Source/Core/DolphinQt/TAS/GCTASInputWindow.h
Normal file
41
Source/Core/DolphinQt/TAS/GCTASInputWindow.h
Normal file
|
@ -0,0 +1,41 @@
|
|||
// Copyright 2018 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
class QCheckBox;
|
||||
class QSpinBox;
|
||||
struct GCPadStatus;
|
||||
|
||||
class GCTASInputWindow : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit GCTASInputWindow(QWidget* parent, int num);
|
||||
void GetValues(GCPadStatus* pad);
|
||||
|
||||
private:
|
||||
QCheckBox* m_a_button;
|
||||
QCheckBox* m_b_button;
|
||||
QCheckBox* m_x_button;
|
||||
QCheckBox* m_y_button;
|
||||
QCheckBox* m_z_button;
|
||||
QCheckBox* m_l_button;
|
||||
QCheckBox* m_r_button;
|
||||
QCheckBox* m_start_button;
|
||||
QCheckBox* m_left_button;
|
||||
QCheckBox* m_up_button;
|
||||
QCheckBox* m_down_button;
|
||||
QCheckBox* 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue