first commit
This commit is contained in:
26
project/fm_viewer/cfg/rm_group_combo_box.h
Normal file
26
project/fm_viewer/cfg/rm_group_combo_box.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef RM_GROUP_COMBO_BOX_H
|
||||
#define RM_GROUP_COMBO_BOX_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QGroupBox>
|
||||
#include <QComboBox>
|
||||
#include <QList>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
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<int> indexMap = QList<int>());
|
||||
#endif // USE_JSON_SETTINGS
|
||||
QVBoxLayout* layout;
|
||||
RMComboBox* comboBox;
|
||||
};
|
||||
|
||||
#endif // RM_GROUP_COMBO_BOX_H
|
||||
Reference in New Issue
Block a user