qucs_s/qucs/spicecomponents/xsp_cmlib.cpp

97 lines
3.0 KiB
C++
Raw Normal View History

2016-01-23 11:10:39 +03:00
/***************************************************************************
sp_include.cpp - description
-------------------
begin : Mon Dec 07 2015
copyright : (C) 2015 by Vadim Kuznetsov
email : ra3xdh@gmail.com
***************************************************************************/
/***************************************************************************
* *
* 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 "xsp_cmlib.h"
#include "main.h"
2024-03-12 21:04:10 -04:00
#include "misc.h"
2016-01-23 11:10:39 +03:00
#include <QFontMetrics>
XSP_CMlib::XSP_CMlib()
{
isEquation = false;
Type = isComponent; // Analogue and digital component.
Description = QObject::tr("XSPICE precompiled CodeModel library\n");
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("Precompiled CM-library"));
int xb = r.width() >> 1;
int yb = r.height() >> 1;
Lines.append(new qucs::Line(-xb, -yb, -xb, yb,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-xb, yb, xb+3,yb,QPen(Qt::darkBlue,2)));
2016-01-23 11:10:39 +03:00
Texts.append(new Text(-xb+4, -yb-3, QObject::tr("Precompiled CM-library"),
QColor(0,0,0), 12.0));
x1 = -xb-3; y1 = -yb-5;
x2 = xb+9; y2 = yb+3;
tx = x1+4;
ty = y2+4;
Model = "XSP_CMlib";
Name = "XSP_CMlib";
SpiceModel = "CMlib";
2016-01-29 11:14:31 +03:00
Props.append(new Property("File", "/home/user/library.cm", true,"Precompiled *.cm file"));
2016-01-23 11:10:39 +03:00
Props.append(new Property("File", "", false,"Precompiled *.cm file"));
Props.append(new Property("File", "", false,"Precompiled *.cm file"));
Props.append(new Property("File", "", false,"Precompiled *.cm file"));
Props.append(new Property("File", "", false,"Precompiled *.cm file"));
}
XSP_CMlib::~XSP_CMlib()
{
}
Component* XSP_CMlib::newOne()
{
return new XSP_CMlib();
}
Element* XSP_CMlib::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("XSPICE precompiled CM-library");
BitmapFile = (char *) "xsp_cmlib";
if(getNewOne) return new XSP_CMlib();
return 0;
}
2016-01-23 11:38:23 +03:00
QString XSP_CMlib::getSpiceInit()
{
QString s;
s.clear();
2023-01-15 01:17:09 +03:00
for (Property *pp : Props) {
if (!pp->Value.isEmpty()) {
2024-03-12 21:04:10 -04:00
QString f = misc::properAbsFileName(pp->Value, containingSchematic);
s += "codemodel " + f + "\n";
}
2016-01-23 11:38:23 +03:00
}
return s;
}
QString XSP_CMlib::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
2016-01-23 11:10:39 +03:00
{
Q_UNUSED(dialect);
return QString();
2016-01-23 11:10:39 +03:00
}