Qt: Implement button mapping dialogs

This commit is contained in:
spycrab
2017-05-20 17:53:17 +02:00
parent faae89861b
commit 33e111e92f
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;
@ -55,6 +56,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;
@ -63,6 +65,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;