qucs_s/qucs/extsimkernels/customsimdialog.cpp
2015-11-11 11:32:39 +03:00

85 lines
2.2 KiB
C++

#include "customsimdialog.h"
#include "node.h"
CustomSimDialog::CustomSimDialog(SpiceCustomSim *pc, Schematic *sch, QWidget *parent) :
QDialog(parent)
{
comp = pc;
Sch = sch;
QLabel* lblEdt = new QLabel(tr("Spice code editor"));
edtCode = new QTextEdit(this);
edtCode->insertPlainText(comp->Props.at(0)->Value);
QLabel* lblVars = new QLabel(tr("Variables to plot (semicolon separated)"));
edtVars = new QLineEdit(comp->Props.at(1)->Value);
btnApply = new QPushButton(tr("Apply"));
connect(btnApply,SIGNAL(clicked()),this,SLOT(slotApply()));
btnCancel = new QPushButton(tr("Cancel"));
connect(btnCancel,SIGNAL(clicked()),this,SLOT(slotCancel()));
btnOK = new QPushButton(tr("OK"));
connect(btnOK,SIGNAL(clicked()),this,SLOT(slotOK()));
btnPlotAll = new QPushButton(tr("Find all variables"));
connect(btnPlotAll,SIGNAL(clicked()),this,SLOT(slotFindVars()));
QVBoxLayout *vl1 = new QVBoxLayout;
QHBoxLayout *hl1 = new QHBoxLayout;
vl1->addWidget(lblEdt);
vl1->addWidget(edtCode);
vl1->addWidget(lblVars);
vl1->addWidget(edtVars);
vl1->addWidget(btnPlotAll);
hl1->addWidget(btnOK);
hl1->addWidget(btnApply);
hl1->addWidget(btnCancel);
vl1->addLayout(hl1);
this->setLayout(vl1);
}
void CustomSimDialog::slotApply()
{
comp->Props.at(0)->Value = edtCode->document()->toPlainText();
comp->Props.at(1)->Value = edtVars->text();
}
void CustomSimDialog::slotOK()
{
slotApply();
accept();
}
void CustomSimDialog::slotCancel()
{
reject();
}
void CustomSimDialog::slotFindVars()
{
QStringList vars;
for(Node *pn = Sch->DocNodes.first(); pn != 0; pn = Sch->DocNodes.next()) {
if(pn->Label != 0) {
if (!vars.contains(pn->Label->Name)) {
vars.append(pn->Label->Name);
}
}
}
for(Wire *pw = Sch->DocWires.first(); pw != 0; pw = Sch->DocWires.next()) {
if(pw->Label != 0) {
if (!vars.contains(pw->Label->Name)) {
vars.append(pw->Label->Name);
}
}
}
qDebug()<<vars;
for(QStringList::iterator it = vars.begin();it != vars.end(); it++) {
*it=QString("V(%1)").arg(*it);
}
edtVars->setText(vars.join(";"));
}