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
|
from PyQt5 import QtCore, QtGui, QtWidgets, uic
import os
class TerminalUi(QtWidgets.QMainWindow):
"""This is a class that represents the GUI required to provide
details regarding the ngspice simulation. This GUI consists of
a progress bar, a console window which displays the log of the
simulation and button required for re-simulation and cancellation
of the simulation"""
def __init__(self, qProcess, args):
"""The constructor of the TerminalUi class
param: qProcess: a PyQt QProcess that runs ngspice
type: qProcess: :class:`QtCore.QProcess`
param: args: arguments to be passed on to the ngspice call
type: args: list
"""
super(TerminalUi, self).__init__()
# Other variables
self.darkColor = True
self.qProcess = qProcess
self.args = args
self.iconDir = "../../images"
# Load the ui file
uic.loadUi("TerminalUi.ui", self)
# Define Our Widgets
self.progressBar = self.findChild(
QtWidgets.QProgressBar,
"progressBar"
)
self.simulationConsole = self.findChild(
QtWidgets.QTextEdit,
"simulationConsole"
)
self.lightDarkModeButton = self.findChild(
QtWidgets.QPushButton,
"lightDarkModeButton"
)
self.cancelSimulationButton = self.findChild(
QtWidgets.QPushButton,
"cancelSimulationButton"
)
self.cancelSimulationButton.setEnabled(True)
self.redoSimulationButton = self.findChild(
QtWidgets.QPushButton,
"redoSimulationButton"
)
self.redoSimulationButton.setEnabled(False)
# Add functionalities to Widgets
self.lightDarkModeButton.setIcon(
QtGui.QIcon(
os.path.join(
self.iconDir,
'light_mode.png'
)
)
)
self.lightDarkModeButton.clicked.connect(self.changeColor)
self.cancelSimulationButton.clicked.connect(self.cancelSimulation)
self.redoSimulationButton.clicked.connect(self.redoSimulation)
self.simulationCancelled = False
self.show()
def cancelSimulation(self):
"""This function cancels the ongoing ngspice simulation.
"""
self.cancelSimulationButton.setEnabled(False)
self.redoSimulationButton.setEnabled(True)
if (self.qProcess.state() == QtCore.QProcess.NotRunning):
return
self.simulationCancelled = True
self.qProcess.kill()
# To show progressBar completed
self.progressBar.setMaximum(100)
self.progressBar.setProperty("value", 100)
cancelFormat = '<span style="color:#FF8624; font-size:26px;">{}</span>'
self.simulationConsole.append(
cancelFormat.format("Simulation Cancelled!"))
self.simulationConsole.verticalScrollBar().setValue(
self.simulationConsole.verticalScrollBar().maximum()
)
def redoSimulation(self):
"""This function reruns the ngspice simulation
"""
self.cancelSimulationButton.setEnabled(True)
self.redoSimulationButton.setEnabled(False)
if (self.qProcess.state() != QtCore.QProcess.NotRunning):
return
# To make the progressbar running
self.progressBar.setMaximum(0)
self.progressBar.setProperty("value", -1)
self.simulationConsole.setText("")
self.simulationCancelled = False
self.qProcess.start('ngspice', self.args)
def changeColor(self):
"""Toggles the :class:`Ui_Form` console between dark mode
and light mode
"""
if self.darkColor is True:
self.simulationConsole.setStyleSheet("QTextEdit {\n \
background-color: white;\n \
color: black;\n \
}")
self.lightDarkModeButton.setIcon(
QtGui.QIcon(
os.path.join(
self.iconDir,
"dark_mode.png"
)
)
)
self.darkColor = False
else:
self.simulationConsole.setStyleSheet("QTextEdit {\n \
background-color: rgb(36, 31, 49);\n \
color: white;\n \
}")
self.lightDarkModeButton.setIcon(
QtGui.QIcon(
os.path.join(
self.iconDir,
"light_mode.png"
)
)
)
self.darkColor = True
|