Qt/Mapping: Add support for exclusive boolean settings

This commit is contained in:
spycrab
2018-07-02 15:16:43 +02:00
parent 3e2e813607
commit 0f48653935
6 changed files with 96 additions and 1 deletions

View File

@ -17,6 +17,7 @@ class MappingBool;
class MappingButton;
class MappingNumeric;
class MappingWindow;
class MappingRadio;
class QGroupBox;
namespace ControllerEmu
@ -64,6 +65,7 @@ private:
MappingWindow* m_parent;
bool m_first = true;
std::vector<MappingBool*> m_bools;
std::vector<MappingRadio*> m_radio;
std::vector<MappingButton*> m_buttons;
std::vector<MappingNumeric*> m_numerics;
};