summaryrefslogtreecommitdiff
path: root/src/frontEnd/DockArea.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontEnd/DockArea.py')
-rwxr-xr-xsrc/frontEnd/DockArea.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/frontEnd/DockArea.py b/src/frontEnd/DockArea.py
index 01e0d715..d68085f5 100755
--- a/src/frontEnd/DockArea.py
+++ b/src/frontEnd/DockArea.py
@@ -16,7 +16,7 @@ from converter.pspiceToKicad import PspiceConverter
from converter.ltspiceToKicad import LTspiceConverter
from converter.LtspiceLibConverter import LTspiceLibConverter
from converter.libConverter import PspiceLibConverter
-from converter.browseSchematics import browse_path
+from converter.browseSchematic import browse_path
dockList = ['Welcome']
count = 1
dock = {}
@@ -127,14 +127,14 @@ class DockArea(QtWidgets.QMainWindow):
)
count = count + 1
- def ngspiceEditor(self, projName, netlist, simEndSignal):
+ def ngspiceEditor(self, projName, netlist, simEndSignal, plotFlag):
""" This function creates widget for Ngspice window."""
global count
self.ngspiceWidget = QtWidgets.QWidget()
self.ngspiceLayout = QtWidgets.QVBoxLayout()
self.ngspiceLayout.addWidget(
- NgspiceWidget(netlist, simEndSignal)
+ NgspiceWidget(netlist, simEndSignal, plotFlag)
)
# Adding to main Layout
@@ -172,7 +172,7 @@ class DockArea(QtWidgets.QMainWindow):
"""This function creates a widget for eSimConverter."""
global count
- dockName = 'Schematics Converter-'
+ dockName = 'Schematic Converter-'
self.eConWidget = QtWidgets.QWidget()
self.eConLayout = QVBoxLayout() # QVBoxLayout for the main layout
@@ -205,7 +205,7 @@ class DockArea(QtWidgets.QMainWindow):
upload_button2.clicked.connect(lambda: self.pspiceLib_converter.upload_file_Pspice(file_path_text_box.text()))
button_layout.addWidget(upload_button2)
- upload_button1 = QPushButton("Convert Pspice schematics")
+ upload_button1 = QPushButton("Convert Pspice schematic")
upload_button1.setFixedSize(180, 30)
upload_button1.clicked.connect(lambda: self.pspice_converter.upload_file_Pspice(file_path_text_box.text()))
button_layout.addWidget(upload_button1)
@@ -215,7 +215,7 @@ class DockArea(QtWidgets.QMainWindow):
upload_button3.clicked.connect(lambda: self.ltspiceLib_converter.upload_file_LTspice(file_path_text_box.text()))
button_layout.addWidget(upload_button3)
- upload_button = QPushButton("Convert LTspice schematics")
+ upload_button = QPushButton("Convert LTspice schematic")
upload_button.setFixedSize(184, 30)
upload_button.clicked.connect(lambda: self.ltspice_converter.upload_file_LTspice(file_path_text_box.text()))
button_layout.addWidget(upload_button)
@@ -267,9 +267,9 @@ class DockArea(QtWidgets.QMainWindow):
<p>
<b>Pspice to eSim </b> will convert the PSpice Schematic and Library files to KiCad Schematic and
Library files respectively with proper mapping of the components and the wiring. By this way one
- will be able to simulate their schematics in PSpice and get the PCB layout in KiCad.</b>
+ will be able to simulate their schematic in PSpice and get the PCB layout in KiCad.</b>
<br/><br/>
- <b>LTspice to eSim </b> will convert symbols and schematics from LTspice to Kicad.The goal is to design and
+ <b>LTspice to eSim </b> will convert symbols and schematic from LTspice to Kicad.The goal is to design and
simulate under LTspice and to automatically transfer the circuit under Kicad to draw the PCB.</b>
</p>
</body>