summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPranav P2023-04-15 00:36:22 +0530
committerPranav P2023-04-15 00:36:22 +0530
commitc478715878df6fe972164c8d64220661b3798bb0 (patch)
tree2c200575bb47002c51c458feb86182fd8a5f08fb /src
parent8f7d5b170b587aa359f6df3b73f998bf8be9f008 (diff)
downloadeSim-c478715878df6fe972164c8d64220661b3798bb0.tar.gz
eSim-c478715878df6fe972164c8d64220661b3798bb0.tar.bz2
eSim-c478715878df6fe972164c8d64220661b3798bb0.zip
New progressBar
Diffstat (limited to 'src')
-rw-r--r--src/progressBar/progressBar.py79
1 files changed, 44 insertions, 35 deletions
diff --git a/src/progressBar/progressBar.py b/src/progressBar/progressBar.py
index 938b0774..a9e1d991 100644
--- a/src/progressBar/progressBar.py
+++ b/src/progressBar/progressBar.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Form implementation generated from reading ui file 'pop_up_design.ui'
+# Form implementation generated from reading ui file 'progressBarNew.ui'
#
# Created by: PyQt5 UI code generator 5.15.6
#
@@ -11,41 +11,50 @@
from PyQt5 import QtCore, QtGui, QtWidgets
-class Ui_Dialog(object):
- def setupUi(self, Dialog):
- Dialog.setObjectName("Dialog")
- Dialog.resize(843, 396)
- self.progressBar = QtWidgets.QProgressBar(Dialog)
- self.progressBar.setGeometry(QtCore.QRect(30, 30, 781, 31))
- self.progressBar.setStyleSheet("QProgressBar::chunk {\n"
-" background-color: rgb(38, 162, 105);\n"
-"}")
+class Ui_Simulation(object):
+ def setupUi(self, Simulation):
+ Simulation.setObjectName("Simulation")
+ Simulation.resize(1250, 652)
+ self.progressBar = QtWidgets.QProgressBar(Simulation)
+ self.progressBar.setGeometry(QtCore.QRect(27, 32, 660, 31))
+ self.progressBar.setStyleSheet("")
self.progressBar.setMaximum(0)
- #self.progressBar.setProperty("value", 100)
- self.progressBar.setTextDirection(QtWidgets.QProgressBar.TopToBottom)
+ self.progressBar.setProperty("value", -1)
self.progressBar.setFormat("")
self.progressBar.setObjectName("progressBar")
- self.ngspiceConsole = QtWidgets.QPlainTextEdit(Dialog)
- self.ngspiceConsole.setGeometry(QtCore.QRect(30, 80, 781, 281))
- self.ngspiceConsole.setAutoFillBackground(False)
- self.ngspiceConsole.setTextInteractionFlags(QtCore.Qt.TextSelectableByKeyboard | QtCore.Qt.TextSelectableByMouse)
- self.ngspiceConsole.setStyleSheet("QPlainTextEdit {\n"
-" background-color: rgb(36, 31, 49);\n"
-" color: white;\n"
-"}")
- self.ngspiceConsole.setObjectName("ngspiceConsole")
-
- self.retranslateUi(Dialog)
- QtCore.QMetaObject.connectSlotsByName(Dialog)
-
- def retranslateUi(self, Dialog):
+ self.simulationConsole = QtWidgets.QTextEdit(Simulation)
+ self.simulationConsole.setGeometry(QtCore.QRect(30, 90, 661, 430))
+ self.simulationConsole.setStyleSheet("")
+ self.simulationConsole.setTextInteractionFlags(QtCore.Qt.NoTextInteraction)
+ self.simulationConsole.setObjectName("simulationConsole")
+ self.pushButton = QtWidgets.QPushButton(Simulation)
+ self.pushButton.setGeometry(QtCore.QRect(839, 330, 241, 25))
+ self.pushButton.setObjectName("pushButton")
+ self.pushButton_2 = QtWidgets.QPushButton(Simulation)
+ self.pushButton_2.setGeometry(QtCore.QRect(840, 220, 240, 25))
+ self.pushButton_2.setObjectName("pushButton_2")
+ self.pushButton_3 = QtWidgets.QPushButton(Simulation)
+ self.pushButton_3.setGeometry(QtCore.QRect(840, 430, 240, 25))
+ self.pushButton_3.setObjectName("pushButton_3")
+
+ self.retranslateUi(Simulation)
+ QtCore.QMetaObject.connectSlotsByName(Simulation)
+
+ def retranslateUi(self, Simulation):
_translate = QtCore.QCoreApplication.translate
- Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
- #self.ngspiceConsole.setPlainText(_translate("Dialog", "The Ngspice simulation log will appear here."))
-
- def writeIntoConsole(self, text):
- self.ngspiceConsole.insertPlainText(text)
-
- def showProgressCompleted(self):
- self.progressBar.setMaximum(100)
- self.progressBar.setProperty("value", 100)
+ Simulation.setWindowTitle(_translate("Simulation", "Simulation"))
+ self.simulationConsole.setHtml(_translate("Simulation", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
+"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
+"p, li { white-space: pre-wrap; }\n"
+"</style></head><body style=\" font-family:\'Ubuntu\'; font-size:11pt; font-weight:400; font-style:normal;\">\n"
+"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">The quick brown fox jumped over the lazy dog</p></body></html>"))
+ self.pushButton.setText(_translate("Simulation", "Button 2"))
+ self.pushButton_2.setText(_translate("Simulation", "Cancel simulation"))
+ self.pushButton_3.setText(_translate("Simulation", "Button 3"))
+
+ def writeIntoConsole(self, consoleLog):
+ self.simulationConsole.insertPlainText(consoleLog)
+
+ def showProgressCompleted(self):
+ self.progressBar.setMaximum(100)
+ self.progressBar.setProperty("value", 100) \ No newline at end of file