2021-09-15 08:02:08 +08:00
|
|
|
#include "projectcompilerwidget.h"
|
|
|
|
#include "ui_projectcompilerwidget.h"
|
2021-09-15 11:23:42 +08:00
|
|
|
#include "../settings.h"
|
|
|
|
#include "../project.h"
|
|
|
|
#include "../mainwindow.h"
|
2021-09-15 08:02:08 +08:00
|
|
|
|
2021-09-15 11:23:42 +08:00
|
|
|
ProjectCompilerWidget::ProjectCompilerWidget(const QString &name, const QString &group, QWidget *parent) :
|
|
|
|
SettingsWidget(name,group,parent),
|
2021-09-15 08:02:08 +08:00
|
|
|
ui(new Ui::ProjectCompilerWidget)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectCompilerWidget::~ProjectCompilerWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
2021-09-15 11:23:42 +08:00
|
|
|
|
|
|
|
void ProjectCompilerWidget::refreshOptions()
|
|
|
|
{
|
|
|
|
Settings::PCompilerSet pSet = pSettings->compilerSets().defaultSet();
|
|
|
|
if (!pSet)
|
|
|
|
return;
|
|
|
|
QTabWidget* pTab = ui->tabOptions;
|
|
|
|
while (pTab->count()>0) {
|
|
|
|
QWidget* p=pTab->widget(0);
|
|
|
|
if (p!=nullptr) {
|
|
|
|
pTab->removeTab(0);
|
|
|
|
p->setParent(nullptr);
|
|
|
|
delete p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int index=0; index< pSet->options().count();index++){
|
|
|
|
PCompilerOption pOption =pSet->options()[index];
|
|
|
|
QWidget* pWidget = nullptr;
|
|
|
|
for (int i=0;i<pTab->count();i++) {
|
|
|
|
if (pOption->section == pTab->tabText(i)) {
|
|
|
|
pWidget = pTab->widget(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pWidget == nullptr) {
|
|
|
|
pWidget = new QWidget();
|
|
|
|
pTab->addTab(pWidget,pOption->section);
|
|
|
|
pWidget->setLayout(new QGridLayout());
|
|
|
|
}
|
|
|
|
QGridLayout *pLayout = static_cast<QGridLayout*>(pWidget->layout());
|
|
|
|
int row = pLayout->rowCount();
|
|
|
|
pLayout->addWidget(new QLabel(pOption->name),row,0);
|
|
|
|
QComboBox* pCombo = new QComboBox();
|
|
|
|
if (pOption->choices.count()>0) {
|
|
|
|
for (int i=0;i<pOption->choices.count();i++) {
|
|
|
|
QString choice = pOption->choices[i];
|
|
|
|
QStringList valueName=choice.split("=");
|
|
|
|
if (valueName.length()<2) {
|
|
|
|
pCombo->addItem("");
|
|
|
|
} else {
|
|
|
|
pCombo->addItem(valueName[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pCombo->addItem(QObject::tr("No"));
|
|
|
|
pCombo->addItem(QObject::tr("Yes"));
|
|
|
|
}
|
|
|
|
int value;
|
|
|
|
if (index<mOptions.length()) {
|
|
|
|
value = pSet->charToValue(mOptions[index]);
|
|
|
|
} else {
|
|
|
|
value = pOption->value;
|
|
|
|
}
|
|
|
|
pCombo->setCurrentIndex(value);
|
|
|
|
pLayout->addWidget(pCombo,row,1);
|
|
|
|
}
|
|
|
|
for (int i=0;i<pTab->count();i++) {
|
|
|
|
QWidget* pWidget = pTab->widget(i);
|
|
|
|
QGridLayout *pLayout = static_cast<QGridLayout*>(pWidget->layout());
|
|
|
|
int row = pLayout->rowCount();
|
|
|
|
QSpacerItem* horizontalSpacer = new QSpacerItem(10, 100, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
pLayout->addItem(horizontalSpacer,row,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectCompilerWidget::doLoad()
|
|
|
|
{
|
|
|
|
mOptions = pMainWindow->project()->options().compilerOptions;
|
|
|
|
ui->cbCompilerSet->setCurrentIndex(pMainWindow->project()->options().compilerSet);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectCompilerWidget::doSave()
|
|
|
|
{
|
|
|
|
Settings::PCompilerSet pSet = pSettings->compilerSets().defaultSet();
|
|
|
|
if (!pSet)
|
|
|
|
return;
|
|
|
|
//read values in the options widget
|
|
|
|
QTabWidget* pTab = ui->tabOptions;
|
2021-09-15 12:19:09 +08:00
|
|
|
mOptions.clear();
|
2021-09-15 11:23:42 +08:00
|
|
|
for (int i=0;i<pTab->count();i++) {
|
|
|
|
QString section = pTab->tabText(i);
|
|
|
|
QWidget* pWidget = pTab->widget(i);
|
|
|
|
QGridLayout* pLayout = static_cast<QGridLayout*>(pWidget->layout());
|
|
|
|
if (pLayout != nullptr) {
|
|
|
|
for (int j=1;j<pLayout->rowCount()-1;j++) {
|
|
|
|
QString name = static_cast<QLabel *>(pLayout->itemAtPosition(j,0)->widget())->text();
|
|
|
|
QComboBox* pCombo = static_cast<QComboBox *>(pLayout->itemAtPosition(j,1)->widget());
|
|
|
|
for (int index=0;index<pSet->options().count();index++) {
|
|
|
|
PCompilerOption pOption = pSet->options()[index];
|
|
|
|
if (pOption->section == section && pOption->name == name) {
|
|
|
|
char val = pSet->valueToChar( pCombo->currentIndex());
|
|
|
|
mOptions.append(val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pMainWindow->project()->options().compilerSet = ui->cbCompilerSet->currentIndex();
|
|
|
|
pMainWindow->project()->options().compilerOptions = mOptions;
|
2021-09-15 12:19:09 +08:00
|
|
|
pMainWindow->project()->saveOptions();
|
2021-09-15 11:23:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectCompilerWidget::init()
|
|
|
|
{
|
|
|
|
ui->cbCompilerSet->clear();
|
|
|
|
for (const Settings::PCompilerSet& set:pSettings->compilerSets().list()){
|
|
|
|
ui->cbCompilerSet->addItem(set->name());
|
|
|
|
}
|
2021-09-15 12:19:09 +08:00
|
|
|
SettingsWidget::init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectCompilerWidget::on_cbCompilerSet_currentIndexChanged(int)
|
|
|
|
{
|
|
|
|
refreshOptions();
|
2021-09-15 11:23:42 +08:00
|
|
|
}
|
2021-09-15 12:19:09 +08:00
|
|
|
|