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/CUIGroupBox.cpp

52 lines
1.1 KiB
C++

3 weeks ago
#include "CUIGroupBox.h"
#include<CUIConfig.h>
#include<QVBoxLayout>
#include<QFormLayout>
#include<CUI.h>
#include<QDebug>
/**
* @brief CUIGroupBox::CUIGroupBox
* @param conf
* @param parent
*/
CUIGroupBox::CUIGroupBox(CUIConfig* conf, QVector<CUI*> &subCUI, QWidget *parent) : QGroupBox(parent)
{
this->conf = conf;
iniUI(subCUI);
}
/**
* @brief CUIGroupBox::iniUI
*/
void CUIGroupBox::iniUI(QVector<CUI*> &subCUI)
{
this->setTitle(conf->getPropertyValue("name"));
3 weeks ago
// appLayout();
layout = appLayout(conf);
this->setLayout(layout);
qDebug()<<this->conf->getSub().size();
for(auto conf : this->conf->getSub()){
3 weeks ago
CUI* tmp = new CUI(conf);
subCUI.push_back(tmp);
layout->addWidget(tmp->getUI());
}
}
/**
* @brief CUIGroupBox::appLayout layout
*/
//void CUIGroupBox::appLayout()
//{
// if(conf->property["layout"] == "QVBoxLayout")
// layout = new QVBoxLayout();
// layout = new QFormLayout();
// this->setLayout(layout);
//}