mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Renamed 'Ngspice custom simulation'
This commit is contained in:
parent
4ab88d7150
commit
8ed1fab8b7
@ -22,15 +22,9 @@
|
||||
SpiceCustomSim::SpiceCustomSim()
|
||||
{
|
||||
isSimulation = true;
|
||||
Description = QObject::tr("Ngspice custom simulation");
|
||||
Description = QObject::tr("Nutmeg script");
|
||||
|
||||
QString s = Description;
|
||||
int a = s.indexOf(" ");
|
||||
if (a != -1) s[a] = '\n';
|
||||
|
||||
Texts.append(new Text(0, 0, s.left(a), Qt::darkRed, QucsSettings.largeFontSize));
|
||||
if (a != -1)
|
||||
Texts.append(new Text(0, 0, s.mid(a+1), Qt::darkRed, QucsSettings.largeFontSize));
|
||||
Texts.append(new Text(0, 0, Description, Qt::darkRed, QucsSettings.largeFontSize));
|
||||
|
||||
x1 = -10; y1 = -9;
|
||||
x2 = x1+104; y2 = y1+59;
|
||||
@ -62,7 +56,7 @@ Component* SpiceCustomSim::newOne()
|
||||
|
||||
Element* SpiceCustomSim::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
||||
{
|
||||
Name = QObject::tr("Ngspice custom simulation");
|
||||
Name = QObject::tr("Nutmeg script");
|
||||
BitmapFile = (char *) "sp_customsim";
|
||||
|
||||
if(getNewOne) return new SpiceCustomSim();
|
||||
|
Loading…
x
Reference in New Issue
Block a user