qucs_s/qucs/components/sparamfile.cpp
2004-06-16 17:41:33 +00:00

82 lines
2.6 KiB
C++

/***************************************************************************
sparamfile.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 "sparamfile.h"
SParamFile::SParamFile(int No)
{
Description = QObject::tr("S parameter file");
int h = 30*((No-1)/2) + 15;
Lines.append(new Line(-15, -h, 15, -h,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 15, -h, 15, h,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-15, h, 15, h,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-15, -h,-15, h,QPen(QPen::darkBlue,2)));
Texts.append(new Text( -6, 0,QObject::tr("file")));
int i=0, y = 15-h;
while(i<No) {
i++;
Lines.append(new Line(-30, y,-15, y,QPen(QPen::darkBlue,2)));
Ports.append(new Port(-30, y));
Texts.append(new Text(-25,y-3,QString::number(i)));
if(i == No) break;
i++;
Lines.append(new Line( 15, y, 30, y,QPen(QPen::darkBlue,2)));
Ports.append(new Port( 30, y));
Texts.append(new Text( 20,y-3,QString::number(i)));
y += 60;
}
Lines.append(new Line( 0, h, 0,h+15,QPen(QPen::darkBlue,2)));
Texts.append(new Text( 4,h+10,"Ref"));
Ports.append(new Port( 0,h+15)); // 'Ref' port
x1 = -30; y1 = -h-2;
x2 = 30; y2 = h+15;
tx = x1+4;
ty = y2+4;
Model = QString("SPfile")+QString::number(No);
Name = "X";
Props.append(new Property("File", "test.s2p", true,
QObject::tr("name of the s parameter file")));
}
SParamFile::~SParamFile()
{
}
Component* SParamFile::newOne()
{
int z = Model.mid(6).toInt();
return new SParamFile(z);
}
Component* SParamFile::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("1-port S parameter file");
BitmapFile = "spfile1";
if(getNewOne) return new SParamFile(1);
return 0;
}