mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

-Replaced Component::getExpression(bool isXyce, bool isCdl) with Component::getExpression(spicecompat::SpiceDialect dialect) Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
91 lines
2.8 KiB
C++
91 lines
2.8 KiB
C++
/***************************************************************************
|
|
equation.cpp - description
|
|
-------------------
|
|
begin : Sat Aug 23 2003
|
|
copyright : (C) 2003 by Michael Margraf
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
#include "sp_parameter.h"
|
|
#include "main.h"
|
|
|
|
#include <QFontInfo>
|
|
#include <QFontMetrics>
|
|
|
|
SpiceParam::SpiceParam()
|
|
{
|
|
isEquation = true;
|
|
Type = isComponent; // Analogue and digital component.
|
|
Description = QObject::tr(".PARAM section");
|
|
Simulator = spicecompat::simSpice;
|
|
|
|
QFont f = QucsSettings.font;
|
|
f.setWeight(QFont::Light);
|
|
f.setPointSizeF(12.0);
|
|
QFontMetrics metrics(f, 0); // use the the screen-compatible metric
|
|
QSize r = metrics.size(0, QObject::tr(".PARAM"));
|
|
int xb = r.width() >> 1;
|
|
int yb = r.height() >> 1;
|
|
|
|
Lines.append(new qucs::Line(-xb, -yb, -xb, yb,QPen(Qt::darkRed,2)));
|
|
Lines.append(new qucs::Line(-xb, yb, xb+3,yb,QPen(Qt::darkRed,2)));
|
|
Texts.append(new Text(-xb+4, -yb-3, QObject::tr(".PARAM"),
|
|
QColor(0,0,0), QFontInfo(f).pixelSize()));
|
|
|
|
x1 = -xb-3; y1 = -yb-5;
|
|
x2 = xb+9; y2 = yb+3;
|
|
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
Model = "SpicePar";
|
|
Name = "SpicePar";
|
|
|
|
Props.append(new Property("y", "1", true));
|
|
}
|
|
|
|
SpiceParam::~SpiceParam()
|
|
{
|
|
}
|
|
|
|
Component* SpiceParam::newOne()
|
|
{
|
|
return new SpiceParam();
|
|
}
|
|
|
|
Element* SpiceParam::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr(".PARAM Section");
|
|
BitmapFile = (char *) "sp_param";
|
|
|
|
if(getNewOne) return new SpiceParam();
|
|
return 0;
|
|
}
|
|
|
|
QString SpiceParam::getExpression(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
|
{
|
|
if (isActive != COMP_IS_ACTIVE) return QString();
|
|
|
|
QString s;
|
|
s.clear();
|
|
for (Property *pp : Props) {
|
|
if (dialect == spicecompat::CDL)
|
|
{
|
|
s += QStringLiteral(".PARAM %1=%2\n").arg(pp->Name).arg(pp->Value);
|
|
}
|
|
else
|
|
{
|
|
s += QStringLiteral(".PARAM %1 = %2\n").arg(pp->Name).arg(pp->Value);
|
|
}
|
|
}
|
|
return s;
|
|
}
|
|
|