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

On some devices the labels like .PARAM, .Nutmeg, etc. were rendered too small comparing to other parts of a component. With this commit they are rendered the same way on all devices.
76 lines
2.4 KiB
C++
76 lines
2.4 KiB
C++
/***************************************************************************
|
|
sp_spiceinit.cpp
|
|
---------------
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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_spiceinit.h"
|
|
#include "main.h"
|
|
|
|
#include <QFontInfo>
|
|
#include <QFontMetrics>
|
|
|
|
SpiceSpiceinit::SpiceSpiceinit()
|
|
{
|
|
isEquation = true;
|
|
Type = isComponent; // Analogue and digital component.
|
|
Description = QObject::tr(".spiceinit file");
|
|
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(".spiceinit"));
|
|
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(".spiceinit"), 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 = "SPICEINIT";
|
|
Name = "SPICEINIT";
|
|
|
|
Props.append(new Property(".spiceinit contents", "", true,
|
|
"Insert .spiceinit contents"));
|
|
}
|
|
|
|
SpiceSpiceinit::~SpiceSpiceinit()
|
|
{
|
|
}
|
|
|
|
Component* SpiceSpiceinit::newOne()
|
|
{
|
|
return new SpiceSpiceinit();
|
|
}
|
|
|
|
Element* SpiceSpiceinit::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr(".spiceinit contents");
|
|
BitmapFile = (char *) "sp_spiceinit";
|
|
|
|
if(getNewOne) return new SpiceSpiceinit();
|
|
return 0;
|
|
}
|
|
|
|
QString SpiceSpiceinit::getSpiceinit()
|
|
{
|
|
QString spiceinit;
|
|
if (isActive) spiceinit = Props.at(0)->Value+"\n";
|
|
return spiceinit;
|
|
}
|