2017-07-21 20:48:21 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
#include "Core/NetPlayProto.h"
|
|
|
|
|
|
|
|
class QGridLayout;
|
|
|
|
class QComboBox;
|
|
|
|
class QDialogButtonBox;
|
|
|
|
|
2018-07-06 23:39:42 +00:00
|
|
|
namespace NetPlay
|
|
|
|
{
|
|
|
|
class Player;
|
|
|
|
}
|
|
|
|
|
2017-07-21 20:48:21 +00:00
|
|
|
class PadMappingDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit PadMappingDialog(QWidget* widget);
|
|
|
|
|
2018-05-17 20:15:59 +00:00
|
|
|
int exec() override;
|
2017-07-21 20:48:21 +00:00
|
|
|
|
2018-07-06 23:39:42 +00:00
|
|
|
NetPlay::PadMappingArray GetGCPadArray();
|
|
|
|
NetPlay::PadMappingArray GetWiimoteArray();
|
2017-07-21 20:48:21 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void CreateWidgets();
|
|
|
|
void ConnectWidgets();
|
2018-06-27 11:20:50 +00:00
|
|
|
|
2017-07-21 20:48:21 +00:00
|
|
|
void OnMappingChanged();
|
|
|
|
|
2018-07-06 23:39:42 +00:00
|
|
|
NetPlay::PadMappingArray m_pad_mapping;
|
|
|
|
NetPlay::PadMappingArray m_wii_mapping;
|
2017-07-21 20:48:21 +00:00
|
|
|
|
|
|
|
QGridLayout* m_main_layout;
|
|
|
|
std::array<QComboBox*, 4> m_gc_boxes;
|
|
|
|
std::array<QComboBox*, 4> m_wii_boxes;
|
2018-07-06 23:39:42 +00:00
|
|
|
std::vector<const NetPlay::Player*> m_players;
|
2017-07-21 20:48:21 +00:00
|
|
|
QDialogButtonBox* m_button_box;
|
|
|
|
};
|