from PyQt4 import QtGui,QtCore from configuration.Appconfig import Appconfig import platform class NgspiceWidget(QtGui.QWidget): """ This Class creates NgSpice Window """ def __init__(self,command,projPath): QtGui.QWidget.__init__(self) self.obj_appconfig = Appconfig() self.process = QtCore.QProcess(self) self.terminal = QtGui.QWidget(self) self.layout = QtGui.QVBoxLayout(self) self.layout.addWidget(self.terminal) print"command-------->", command if platform.system() == 'Linux': self.command = "cd "+projPath+";ngspice "+command #Creating argument for process self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command] self.process.start('xterm', self.args) elif platform.system() == 'Windows': self.command = "ngspice "+command self.process.start(self.command)