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.
45 lines
1.0 KiB
C++
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;
|
|
iniUI(subCUI);
|
|
}
|
|
|
|
/**
|
|
* @brief CUIButtonBox::iniUI 初始化
|
|
* @param subCUI
|
|
*/
|
|
void CUIButtonBox::iniUI(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);
|
|
|
|
}
|
|
|