qucs_s/qucs/components/mscross.cpp
2004-01-31 21:27:38 +00:00

77 lines
2.9 KiB
C++

/***************************************************************************
mscross.cpp - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
email : margraf@mwt.ee.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 "mscross.h"
MScross::MScross()
{
Description = QObject::tr("microstrip cross");
Lines.append(new Line(-30, 0,-18, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 18, 0, 30, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 0, 18, 0, 30,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 0,-30, 0,-18,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-18, -8, -8, -8,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-18, 8, -8, 8,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-18, -8,-18, 8,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 8, -8, 18, -8,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 8, 8, 18, 8,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 18, -8, 18, 8,QPen(QPen::darkBlue,2)));
Lines.append(new Line( -8, 8, -8, 18,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 8, 8, 8, 18,QPen(QPen::darkBlue,2)));
Lines.append(new Line( -8, 18, 8, 18,QPen(QPen::darkBlue,2)));
Lines.append(new Line( -8,-18, -8, -8,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 8,-18, 8, -8,QPen(QPen::darkBlue,2)));
Lines.append(new Line( -8,-18, 8,-18,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-22, -4,-26, 4,QPen(QPen::darkBlue,2)));
Ports.append(new Port(-30, 0));
Ports.append(new Port( 0,-30));
Ports.append(new Port( 30, 0));
Ports.append(new Port( 0, 30));
x1 = -30; y1 =-30;
x2 = 30; y2 = 30;
tx = x1+4;
ty = y2+4;
Sign = "MCROSS";
Model = "MCROSS";
Name = "MS";
Props.append(new Property("Subst", "Subst1", true, QObject::tr("substrate")));
Props.append(new Property("W1", "1 mm", true, QObject::tr("width of line 1")));
Props.append(new Property("W2", "2 mm", true, QObject::tr("width of line 2")));
Props.append(new Property("W3", "1 mm", true, QObject::tr("width of line 3")));
Props.append(new Property("W4", "2 mm", true, QObject::tr("width of line 4")));
}
MScross::~MScross()
{
}
MScross* MScross::newOne()
{
return new MScross();
}