first commit
This commit is contained in:
28
project/fm_viewer/cfg/rm_group_radio_buttons.h
Normal file
28
project/fm_viewer/cfg/rm_group_radio_buttons.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef RM_GROUP_RADIO_BUTTONS_H
|
||||
#define RM_GROUP_RADIO_BUTTONS_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QGroupBox>
|
||||
#include <QList>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
class RMRadioButtons;
|
||||
class RMGroupRadioButtons : public QGroupBox
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
#if (USE_JSON_SETTINGS)
|
||||
explicit RMGroupRadioButtons(QWidget *parent,int object);
|
||||
explicit RMGroupRadioButtons(QWidget *parent,int object,bool rowType);
|
||||
#else // #if (USE_JSON_SETTINGS)
|
||||
explicit RMGroupRadioButtons(QWidget *parent,QString title, QStringList items,unsigned char* value,QList<int> indexMap = QList<int>());
|
||||
explicit RMGroupRadioButtons(QWidget *parent,QString title, QStringList items,unsigned char* value,bool rowType = false,QList<int> indexMap = QList<int>());
|
||||
#endif // #if (USE_JSON_SETTINGS)
|
||||
|
||||
QVBoxLayout* layout;
|
||||
RMRadioButtons* radioButtons;
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif // RM_GROUP_RADIO_BUTTONS_H
|
||||
Reference in New Issue
Block a user