dolphin/Source/Core/DolphinQt2/TAS/Shared.h

27 lines
1,001 B
C
Raw Normal View History

2018-01-27 14:35:02 +01:00
// Copyright 2018 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
2018-01-31 12:35:09 +01:00
#include <QWidget>
2018-01-27 14:35:02 +01:00
2018-02-06 12:10:28 +01:00
#include "Common/CommonTypes.h"
2018-01-31 12:35:09 +01:00
class QDialog;
class QString;
class QSpinBox;
class QCheckBox;
class QBoxLayout;
class QGroupBox;
struct GCPadStatus;
2018-01-27 14:35:02 +01:00
2018-01-31 12:35:09 +01:00
QGroupBox* CreateStickInputs(QDialog* window, 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(QDialog* window, QString name, QSpinBox*& value, u16 max,
2018-02-06 12:10:28 +01:00
Qt::Key shortcut_key, QWidget* shortcut_widget,
bool invert = false);
QSpinBox* CreateSliderValuePair(QDialog* window, QBoxLayout* layout, u16 max,
QKeySequence shortcut_key_sequence, Qt::Orientation orientation,
QWidget* shortcut_widget, bool invert = false);