You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/CFDStruct/CUIProperty/CUIButtonBox.cpp

45 lines
1.0 KiB
C++

#include "CUIButtonBox.h"
#include<CUIConfig.h>
#include<CUI.h>
#include<QButtonGroup>
#include<QLayout>
#include<QAbstractButton>
#include<QDebug>
#include<QRadioButton>
/**
* @brief CUIButtonBox::CUIButtonBox 构造函数
* @param conf
* @param subCUI
* @param parent
*/
CUIButtonBox::CUIButtonBox(CUIConfig* conf, QVector<CUI*> &subCUI, QWidget *parent) : CUIComponentBaseContainerWidget(parent)
{
this->conf = conf;
initUI(subCUI);
}
/**
* @brief CUIButtonBox::initUI 初始化
* @param subCUI
*/
void CUIButtonBox::initUI(QVector<CUI *> &subCUI)
{
m_groupBox = new QGroupBox;
m_groupBox->setTitle(conf->getPropertyValue("name"));
m_layout = this->getLayout(conf);
m_groupBox->setLayout(m_layout);
for(auto conf : this->conf->getSub()) {
QRadioButton* radio = new QRadioButton(conf->getPropertyValue("name"));
m_layout->addWidget(radio);
}
QVBoxLayout* mainLayout = new QVBoxLayout;
mainLayout->addWidget(m_groupBox);
this->setLayout(mainLayout);
}