mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Add swtich to supress digital model generation when creating library
This commit is contained in:
parent
6adc782cff
commit
fcdcaeaebe
@ -424,10 +424,10 @@ QString LibComp::getSpiceLibrary()
|
||||
return QString();
|
||||
}
|
||||
for (const auto &file : attach) {
|
||||
if (file.endsWith(".cir") ||
|
||||
file.endsWith(".ckt") ||
|
||||
file.endsWith(".lib") ||
|
||||
file.endsWith(".sp")) {
|
||||
if (file.endsWith(".cir", Qt::CaseInsensitive) ||
|
||||
file.endsWith(".ckt", Qt::CaseInsensitive) ||
|
||||
file.endsWith(".lib", Qt::CaseInsensitive) ||
|
||||
file.endsWith(".sp", Qt::CaseInsensitive)) {
|
||||
files.append(getSubcircuitFile()+'/'+file);
|
||||
}
|
||||
}
|
||||
|
@ -105,6 +105,10 @@ LibraryDialog::LibraryDialog(QWidget *parent)
|
||||
hCheck->addStretch();
|
||||
connect(checkDescr, SIGNAL(stateChanged(int)), this, SLOT(slotCheckDescrChanged(int)));
|
||||
|
||||
checkAnalogLib = new QCheckBox(tr("Analog models only"));
|
||||
checkAnalogLib->setChecked(true);
|
||||
selectSubcktLayout->addWidget(checkAnalogLib);
|
||||
|
||||
// ...........................................................
|
||||
QGridLayout *gridButts = new QGridLayout();
|
||||
selectSubcktLayout->addLayout(gridButts);
|
||||
@ -523,6 +527,7 @@ void LibraryDialog::slotSave()
|
||||
QucsSettings.DefaultSimulator = sim;
|
||||
//}
|
||||
|
||||
if (!checkAnalogLib->isChecked()) {
|
||||
// save verilog model
|
||||
tmp.truncate(0);
|
||||
Doc->setIsVerilog(true);
|
||||
@ -597,6 +602,7 @@ void LibraryDialog::slotSave()
|
||||
else {
|
||||
ErrText->insertPlainText("\n");
|
||||
}
|
||||
}
|
||||
|
||||
Stream << " <Symbol>\n";
|
||||
Doc->createSubcircuitSymbol();
|
||||
|
@ -94,6 +94,7 @@ private:
|
||||
QStringList SelectedNames;
|
||||
QStringList Descriptions;
|
||||
QCheckBox *checkDescr;
|
||||
QCheckBox *checkAnalogLib;
|
||||
|
||||
QFile LibFile;
|
||||
QDir LibDir;
|
||||
|
Loading…
x
Reference in New Issue
Block a user