#ifndef RM_GROUP_COMBO_BOX_H #define RM_GROUP_COMBO_BOX_H #include #include #include #include #include class RMComboBox; class QJsonObject; class RMGroupComboBox : public QGroupBox { Q_OBJECT public: #if (USE_JSON_SETTINGS) explicit RMGroupComboBox(QWidget *parent,int index); #else // USE_JSON_SETTINGS explicit RMGroupComboBox(QWidget *parent,QString title, QStringList items,unsigned char* value,QList indexMap = QList()); #endif // USE_JSON_SETTINGS QVBoxLayout* layout; RMComboBox* comboBox; }; #endif // RM_GROUP_COMBO_BOX_H