Merge pull request #5405 from spycrab/qt_mapping_windows

Qt: Implement mapping dialogs
This commit is contained in:
Anthony
2017-05-20 09:28:57 -07:00
committed by GitHub
28 changed files with 1871 additions and 3 deletions

View File

@ -8,6 +8,7 @@
#include <array>
class MappingWindow;
class QDialogButtonBox;
class QCheckBox;
class QComboBox;
@ -56,6 +57,7 @@ private:
QDialogButtonBox* m_button_box;
// Gamecube
std::array<MappingWindow*, 4> m_gc_mappings;
QGroupBox* m_gc_box;
QLabel* m_gc_label;
QFormLayout* m_gc_layout;
@ -64,6 +66,7 @@ private:
std::array<QHBoxLayout*, 4> m_gc_groups;
// Wii Remote
std::array<MappingWindow*, 4> m_wiimote_mappings;
QGroupBox* m_wiimote_box;
QLabel* m_wii_label;
QFormLayout* m_wiimote_layout;