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.
45 lines
845 B
C++
45 lines
845 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
#include "Core/NetPlayProto.h"
|
|
|
|
class QGridLayout;
|
|
class QComboBox;
|
|
class QDialogButtonBox;
|
|
|
|
namespace NetPlay
|
|
{
|
|
class Player;
|
|
}
|
|
|
|
class PadMappingDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PadMappingDialog(QWidget* widget);
|
|
|
|
int exec() override;
|
|
|
|
NetPlay::PadMappingArray GetGCPadArray();
|
|
NetPlay::PadMappingArray GetWiimoteArray();
|
|
|
|
private:
|
|
void CreateWidgets();
|
|
void ConnectWidgets();
|
|
|
|
void OnMappingChanged();
|
|
|
|
NetPlay::PadMappingArray m_pad_mapping;
|
|
NetPlay::PadMappingArray m_wii_mapping;
|
|
|
|
QGridLayout* m_main_layout;
|
|
std::array<QComboBox*, 4> m_gc_boxes;
|
|
std::array<QComboBox*, 4> m_wii_boxes;
|
|
std::vector<const NetPlay::Player*> m_players;
|
|
QDialogButtonBox* m_button_box;
|
|
};
|