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

78 lines
2.4 KiB
C++

/***************************************************************************
subcircuit.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 "subcircuit.h"
Subcircuit::Subcircuit(int No)
{
Description = QObject::tr("subcircuit");
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( -7, 0,"sub"));
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;
}
x1 = -30; y1 = -h-2;
x2 = 30; y2 = h+2;
tx = x1+4;
ty = y2+4;
Model = QString("Sub")+QString::number(No);
Name = "SUB";
Props.append(new Property("File", "test.sch", true,
QObject::tr("name of qucs schematic file")));
}
Subcircuit::~Subcircuit()
{
}
Component* Subcircuit::newOne()
{
int z = Model.mid(3).toInt();
return new Subcircuit(z);
}
Component* Subcircuit::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Subcircuit");
BitmapFile = "";
if(getNewOne) return new Subcircuit(1);
return 0;
}