1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
from PyQt4 import QtGui
from Processing import PrcocessNetlist
import TrackWidget
class Source(QtGui.QWidget):
"""
This class create Source Tab of KicadtoNgSpice Window.
"""
def __init__(self,sourcelist,sourcelisttrack):
QtGui.QWidget.__init__(self)
self.obj_track = TrackWidget.TrackWidget()
#Variable
self.count = 1
self.start = 0
self.end = 0
self.row = 0
self.entry_var = {}
#self.font = QtGui.QFont("Times",20,QtGui.QFont.Bold,True)
#Creating Source Widget
self.createSourceWidget(sourcelist,sourcelisttrack)
def createSourceWidget(self,sourcelist,sourcelisttrack):
"""
This function dynamically create source widget in the Source tab of KicadtoNgSpice window
"""
self.grid = QtGui.QGridLayout()
self.setLayout(self.grid)
if sourcelist:
for line in sourcelist:
#print "Voltage source line index: ",line[0]
#print "SourceList line Test: ",line
track_id=line[0]
#print "track_id is ",track_id
if line[2]=='ac':
acbox=QtGui.QGroupBox()
acbox.setTitle(line[3])
acgrid=QtGui.QGridLayout()
self.start=self.count
label=QtGui.QLabel(line[4])
acgrid.addWidget(label,self.row,0)
self.entry_var[self.count]=QtGui.QLineEdit()
self.entry_var[self.count].setMaximumWidth(150)
acgrid.addWidget(self.entry_var[self.count],self.row,1)
#Value Need to check previuouse value
self.entry_var[self.count].setText("")
self.row=self.row+1
self.end=self.count
self.count=self.count+1
acbox.setLayout(acgrid)
#CSS
acbox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(acbox)
sourcelisttrack.append([track_id,'ac',self.start,self.end])
elif line[2]=='dc':
dcbox=QtGui.QGroupBox()
dcbox.setTitle(line[3])
dcgrid=QtGui.QGridLayout()
self.start=self.count
label=QtGui.QLabel(line[4])
dcgrid.addWidget(label,self.row,0)
self.entry_var[self.count]=QtGui.QLineEdit()
self.entry_var[self.count].setMaximumWidth(150)
dcgrid.addWidget(self.entry_var[self.count],self.row,1)
self.entry_var[self.count].setText("")
self.row=self.row+1
self.end=self.count
self.count=self.count+1
dcbox.setLayout(dcgrid)
#CSS
dcbox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(dcbox)
sourcelisttrack.append([track_id,'dc',self.start,self.end])
elif line[2]=='sine':
sinebox=QtGui.QGroupBox()
sinebox.setTitle(line[3])
sinegrid=QtGui.QGridLayout()
self.start=self.count
for it in range(4,9):
label=QtGui.QLabel(line[it])
sinegrid.addWidget(label,self.row,0)
self.entry_var[self.count]=QtGui.QLineEdit()
self.entry_var[self.count].setMaximumWidth(150)
sinegrid.addWidget(self.entry_var[self.count],self.row,1)
self.entry_var[self.count].setText("")
self.row=self.row+1
self.count=self.count+1
self.end=self.count-1
sinebox.setLayout(sinegrid)
#CSS
sinebox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(sinebox)
sourcelisttrack.append([track_id,'sine',self.start,self.end])
elif line[2]=='pulse':
pulsebox=QtGui.QGroupBox()
pulsebox.setTitle(line[3])
pulsegrid=QtGui.QGridLayout()
self.start=self.count
for it in range(4,11):
label=QtGui.QLabel(line[it])
pulsegrid.addWidget(label,self.row,0)
self.entry_var[self.count]=QtGui.QLineEdit()
self.entry_var[self.count].setMaximumWidth(150)
pulsegrid.addWidget(self.entry_var[self.count],self.row,1)
self.entry_var[self.count].setText("")
self.row=self.row+1
self.count=self.count+1
self.end=self.count-1
pulsebox.setLayout(pulsegrid)
#CSS
pulsebox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(pulsebox)
sourcelisttrack.append([track_id,'pulse',self.start,self.end])
elif line[2]=='pwl':
pwlbox=QtGui.QGroupBox()
pwlbox.setTitle(line[3])
pwlgrid=QtGui.QGridLayout()
self.start=self.count
label=QtGui.QLabel(line[4])
pwlgrid.addWidget(label,self.row,0)
self.entry_var[self.count]=QtGui.QLineEdit()
self.entry_var[self.count].setMaximumWidth(150)
pwlgrid.addWidget(self.entry_var[self.count],self.row,1)
self.entry_var[self.count].setText("");
self.row=self.row+1
self.end=self.count
self.count=self.count+1
pwlbox.setLayout(pwlgrid)
#CSS
pwlbox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(pwlbox)
sourcelisttrack.append([track_id,'pwl',self.start,self.end])
elif line[2]=='exp':
expbox=QtGui.QGroupBox()
expbox.setTitle(line[3])
expgrid=QtGui.QGridLayout()
self.start=self.count
for it in range(4,10):
label=QtGui.QLabel(line[it])
expgrid.addWidget(label,self.row,0)
self.entry_var[self.count]=QtGui.QLineEdit()
self.entry_var[self.count].setMaximumWidth(150)
expgrid.addWidget(self.entry_var[self.count],self.row,1)
self.entry_var[self.count].setText("")
self.row=self.row+1
self.count=self.count+1
self.end=self.count-1
print "End",self.end
expbox.setLayout(expgrid)
#CSS
expbox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(expbox)
sourcelisttrack.append([track_id,'exp',self.start,self.end])
self.count=self.count+1
else:
print "No source is present in your circuit"
#This is used to keep the track of dynamically created widget
self.obj_track.sourcelisttrack["ITEMS"] = sourcelisttrack
self.obj_track.source_entry_var["ITEMS"] = self.entry_var
self.show()
|