mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Merge pull request #5405 from spycrab/qt_mapping_windows
Qt: Implement mapping dialogs
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user