Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
coplanar.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  coplanar.cpp
3  --------------
4  begin : Sat Aug 23 2003
5  copyright : (C) 2003 by Michael Margraf
6  email : michael.margraf@alumni.tu-berlin.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #include "coplanar.h"
19 
20 
22 {
23  Description = QObject::tr("coplanar line");
24 
25  Lines.append(new Line(-30, 0,-18, 0,QPen(Qt::darkBlue,2)));
26  Lines.append(new Line( 18, 0, 30, 0,QPen(Qt::darkBlue,2)));
27  Lines.append(new Line(-13, -8, 23, -8,QPen(Qt::darkBlue,2)));
28  Lines.append(new Line(-23, 8, 13, 8,QPen(Qt::darkBlue,2)));
29  Lines.append(new Line(-13, -8,-23, 8,QPen(Qt::darkBlue,2)));
30  Lines.append(new Line( 23, -8, 13, 8,QPen(Qt::darkBlue,2)));
31 
32  Lines.append(new Line(-25,-13, 25,-13,QPen(Qt::darkBlue,2)));
33  Lines.append(new Line( 16,-21, 24,-13,QPen(Qt::darkBlue,2)));
34  Lines.append(new Line( 8,-21, 16,-13,QPen(Qt::darkBlue,2)));
35  Lines.append(new Line( 0,-21, 8,-13,QPen(Qt::darkBlue,2)));
36  Lines.append(new Line( -8,-21, 0,-13,QPen(Qt::darkBlue,2)));
37  Lines.append(new Line(-16,-21, -8,-13,QPen(Qt::darkBlue,2)));
38  Lines.append(new Line(-24,-21,-16,-13,QPen(Qt::darkBlue,2)));
39 
40  Lines.append(new Line(-25, 13, 25, 13,QPen(Qt::darkBlue,2)));
41  Lines.append(new Line(-24, 13,-16, 21,QPen(Qt::darkBlue,2)));
42  Lines.append(new Line(-16, 13, -8, 21,QPen(Qt::darkBlue,2)));
43  Lines.append(new Line( -8, 13, 0, 21,QPen(Qt::darkBlue,2)));
44  Lines.append(new Line( 0, 13, 8, 21,QPen(Qt::darkBlue,2)));
45  Lines.append(new Line( 8, 13, 16, 21,QPen(Qt::darkBlue,2)));
46  Lines.append(new Line( 16, 13, 24, 21,QPen(Qt::darkBlue,2)));
47 
48  Ports.append(new Port(-30, 0));
49  Ports.append(new Port( 30, 0));
50 
51  x1 = -30; y1 =-24;
52  x2 = 30; y2 = 24;
53 
54  tx = x1+4;
55  ty = y2+4;
56  Model = "CLIN";
57  Name = "CL";
58 
59  Props.append(new Property("Subst", "Subst1", true,
60  QObject::tr("name of substrate definition")));
61  Props.append(new Property("W", "1 mm", true,
62  QObject::tr("width of the line")));
63  Props.append(new Property("S", "1 mm", true,
64  QObject::tr("width of a gap")));
65  Props.append(new Property("L", "10 mm", true,
66  QObject::tr("length of the line")));
67  Props.append(new Property("Backside", "Air", false,
68  QObject::tr("material at the backside of the substrate")+
69  " [Metal, Air]"));
70  Props.append(new Property("Approx", "yes", false,
71  QObject::tr("use approximation instead of precise equation")+
72  " [yes, no]"));
73 }
74 
76 {
77 }
78 
80 {
81  return new Coplanar();
82 }
83 
84 Element* Coplanar::info(QString& Name, char* &BitmapFile, bool getNewOne)
85 {
86  Name = QObject::tr("Coplanar Line");
87  BitmapFile = (char *) "coplanar";
88 
89  if(getNewOne) return new Coplanar();
90  return 0;
91 }
Q3PtrList< Line > Lines
Definition: component.h:67
~Coplanar()
Definition: coplanar.cpp:75
int y1
Definition: element.h:153
int tx
Definition: component.h:78
int y2
Definition: element.h:153
Definition: element.h:72
int x1
Definition: element.h:153
int ty
Definition: component.h:78
Q3PtrList< Property > Props
Definition: component.h:72
Coplanar()
Definition: coplanar.cpp:21
Component * newOne()
Definition: coplanar.cpp:79
Definition: element.h:48
Superclass of all schematic drawing elements.
Definition: element.h:142
Q3PtrList< Port > Ports
Definition: component.h:70
QString Name
Definition: component.h:80
QString Model
Definition: component.h:80
QString Description
Definition: component.h:81
int x2
Definition: element.h:153
static Element * info(QString &, char *&, bool getNewOne=false)
Definition: coplanar.cpp:84