diff options
Diffstat (limited to 'src/subcircuit/newSub.py')
-rw-r--r-- | src/subcircuit/newSub.py | 58 |
1 files changed, 35 insertions, 23 deletions
diff --git a/src/subcircuit/newSub.py b/src/subcircuit/newSub.py index 229c3f46..6e0c7e63 100644 --- a/src/subcircuit/newSub.py +++ b/src/subcircuit/newSub.py @@ -1,65 +1,77 @@ -from PyQt4 import QtGui,QtCore +from PyQt4 import QtGui, QtCore from projManagement.Validation import Validation from configuration.Appconfig import Appconfig from projManagement import Worker import os + class NewSub(QtGui.QWidget): """ This class is called when User create new Project. """ - + def __init__(self): super(NewSub, self).__init__() self.obj_validation = Validation() self.obj_appconfig = Appconfig() - - def createSubcircuit(self,subName): + def createSubcircuit(self, subName): """ This function create Subcircuit related directories and files """ self.create_schematic = subName - #Checking if Workspace already exist or not - self.schematic_path = (os.path.join(os.path.abspath('..'),'SubcircuitLibrary',self.create_schematic)) - - #Validation for new subcircuit + # Checking if Workspace already exist or not + self.schematic_path = ( + os.path.join( + os.path.abspath('..'), + 'SubcircuitLibrary', + self.create_schematic)) + + # Validation for new subcircuit if self.schematic_path == "": self.reply = "NONE" else: - self.reply = self.obj_validation.validateNewproj(str(self.schematic_path)) - - #Checking Validations Response + self.reply = self.obj_validation.validateNewproj( + str(self.schematic_path)) + + # Checking Validations Response if self.reply == "VALID": print("Validated : Creating subcircuit directory") try: os.mkdir(self.schematic_path) - self.schematic = os.path.join(self.schematic_path,self.create_schematic) - self.cmd = "eeschema "+self.schematic+".sch" + self.schematic = os.path.join( + self.schematic_path, self.create_schematic) + self.cmd = "eeschema " + self.schematic + ".sch" self.obj_workThread = Worker.WorkerThread(self.cmd) self.obj_workThread.start() self.close() - except: + except BaseException: #print "Some Thing Went Wrong" self.msg = QtGui.QErrorMessage(self) - self.msg.showMessage('Unable to create subcircuit. Please make sure you have write permission on '+self.schematic_path) + self.msg.showMessage( + 'Unable to create subcircuit. Please make sure you have write permission on ' + + self.schematic_path) self.msg.setWindowTitle("Error Message") - - self.obj_appconfig.current_subcircuit['SubcircuitName'] = self.schematic_path - + + self.obj_appconfig.current_subcircuit['SubcircuitName'] = self.schematic_path + elif self.reply == "CHECKEXIST": #print "Project already exist" self.msg = QtGui.QErrorMessage(self) - self.msg.showMessage('The subcircuit "'+self.create_schematic+'" already exist.Please select the different name or delete existing subcircuit') + self.msg.showMessage( + 'The subcircuit "' + + self.create_schematic + + '" already exist.Please select the different name or delete existing subcircuit') self.msg.setWindowTitle("Error Message") - + elif self.reply == "CHECKNAME": #print "Name is not proper" self.msg = QtGui.QErrorMessage(self) - self.msg.showMessage('The subcircuit name should not contain space between them') + self.msg.showMessage( + 'The subcircuit name should not contain space between them') self.msg.setWindowTitle("Error Message") - + elif self.reply == "NONE": self.msg = QtGui.QErrorMessage(self) self.msg.showMessage('The subcircuit name cannot be empty') - self.msg.setWindowTitle("Error Message")
\ No newline at end of file + self.msg.setWindowTitle("Error Message") |