diff options
author | fahim | 2015-06-08 14:21:19 +0530 |
---|---|---|
committer | fahim | 2015-06-08 14:21:19 +0530 |
commit | a783d14e674082a49ab5d5b7943ec5fc1f4c98f2 (patch) | |
tree | 3c89bbf40981d76b108d052967656f6c27652a4f /src/projManagement/Kicad.py | |
parent | 2a87f0eae40b90cc0657e46cbb8532d99f9373ab (diff) | |
download | eSim-a783d14e674082a49ab5d5b7943ec5fc1f4c98f2.tar.gz eSim-a783d14e674082a49ab5d5b7943ec5fc1f4c98f2.tar.bz2 eSim-a783d14e674082a49ab5d5b7943ec5fc1f4c98f2.zip |
Subject: Added Note Area changes
Description: Added Note Area Changes
Diffstat (limited to 'src/projManagement/Kicad.py')
-rw-r--r-- | src/projManagement/Kicad.py | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/src/projManagement/Kicad.py b/src/projManagement/Kicad.py index 1b5135b1..d7202b4f 100644 --- a/src/projManagement/Kicad.py +++ b/src/projManagement/Kicad.py @@ -36,7 +36,11 @@ class Kicad: This function create command to open Kicad schematic """ print "Kicad Schematic is called" - self.projDir = self.obj_appconfig.current_project["ProjectName"] + self.projDir = self.obj_appconfig.current_project["ProjectName"] + try: + self.obj_appconfig.print_info('Kicad Schematic is called for project ' + self.projDir) + except: + pass #Validating if current project is available or not if self.obj_validation.validateKicad(self.projDir): @@ -52,6 +56,7 @@ class Kicad: else: self.msg = QtGui.QErrorMessage(None) self.msg.showMessage('Please select the project first. You can either create new project or open existing project') + self.obj_appconfig.print_warning('Please select the project first. You can either create new project or open existing project') self.msg.setWindowTitle("Error Message") @@ -61,7 +66,11 @@ class Kicad: This function create command to open Footprint editor """ print "Kicad Foot print Editor called" - self.projDir = self.obj_appconfig.current_project["ProjectName"] + self.projDir = self.obj_appconfig.current_project["ProjectName"] + try: + self.obj_appconfig.print_info('Kicad Footprint Editor is called for project : ' + self.projDir) + except: + pass #Validating if current project is available or not if self.obj_validation.validateKicad(self.projDir): @@ -77,6 +86,7 @@ class Kicad: else: self.msg = QtGui.QErrorMessage(None) self.msg.showMessage('Please select the project first. You can either create new project or open existing project') + self.obj_appconfig.print_warning('Please select the project first. You can either create new project or open existing project') self.msg.setWindowTitle("Error Message") def openLayout(self): @@ -84,7 +94,11 @@ class Kicad: This function create command to open Layout editor """ print "Kicad Layout is called" - self.projDir = self.obj_appconfig.current_project["ProjectName"] + self.projDir = self.obj_appconfig.current_project["ProjectName"] + try: + self.obj_appconfig.print_info('PCB Layout is called for project : ' + self.projDir) + except: + pass #Validating if current project is available or not if self.obj_validation.validateKicad(self.projDir): print "calling Kicad schematic ",self.projDir @@ -99,6 +113,7 @@ class Kicad: else: self.msg = QtGui.QErrorMessage(None) self.msg.showMessage('Please select the project first. You can either create new project or open existing project') + self.obj_appconfig.print_warning('Please select the project first. You can either create new project or open existing project') self.msg.setWindowTitle("Error Message") def openKicadToNgspice(self): @@ -106,7 +121,13 @@ class Kicad: This function create command to call kicad to Ngspice converter. """ print "Open Kicad to Ngspice Conversion" + self.projDir = self.obj_appconfig.current_project["ProjectName"] + try: + self.obj_appconfig.print_info('Kicad to Ngspice Conversion is called') + self.obj_appconfig.print_info('Current Project is ' + self.projDir) + except: + pass #Validating if current project is available or not if self.obj_validation.validateKicad(self.projDir): #print "Project is present" @@ -125,11 +146,13 @@ class Kicad: else: self.msg = QtGui.QErrorMessage(None) self.msg.showMessage('The project does not contain any Kicad netlist file for conversion.') + self.obj_appconfig.print_error('The project does not contain any Kicad netlist file for conversion.') self.msg.setWindowTitle("Error Message") else: self.msg = QtGui.QErrorMessage(None) self.msg.showMessage('Please select the project first. You can either create new project or open existing project') + self.obj_appconfig.print_warning('Please select the project first. You can either create new project or open existing project') self.msg.setWindowTitle("Error Message")
\ No newline at end of file |