diff options
author | fahim | 2015-02-17 15:13:02 +0530 |
---|---|---|
committer | fahim | 2015-02-17 15:13:02 +0530 |
commit | 756ad7fcfe3e9cb7f1c90e0c773cfb46243a2496 (patch) | |
tree | 915c62da4d5df5d06f307c73e81defa976e02b46 /src/projManagement/openProject.py | |
parent | 74d560add00621421d366759bcc80900d8e14d8a (diff) | |
download | eSim-756ad7fcfe3e9cb7f1c90e0c773cfb46243a2496.tar.gz eSim-756ad7fcfe3e9cb7f1c90e0c773cfb46243a2496.tar.bz2 eSim-756ad7fcfe3e9cb7f1c90e0c773cfb46243a2496.zip |
Subject: openProject and Validation
Description: Included openProject and Validation module
Diffstat (limited to 'src/projManagement/openProject.py')
-rw-r--r-- | src/projManagement/openProject.py | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/projManagement/openProject.py b/src/projManagement/openProject.py new file mode 100644 index 00000000..a5c8c323 --- /dev/null +++ b/src/projManagement/openProject.py @@ -0,0 +1,61 @@ + +#=============================================================================== +# +# FILE: openProject.py +# +# USAGE: --- +# +# DESCRIPTION: It is called whenever new project is being called. +# +# OPTIONS: --- +# REQUIREMENTS: --- +# BUGS: --- +# NOTES: --- +# AUTHOR: Fahim Khan, fahim.elex@gmail.com +# ORGANIZATION: ecSim team at FOSSEE, IIT Bombay. +# CREATED: Wednesday 12 February 2015 +# REVISION: --- +#=============================================================================== + +from PyQt4 import QtGui +from Validation import Validation +from configuration.Appconfig import Appconfig + + + +class ProjectInfo: + """ + Class ProjectInfo accept model information from user + + """ + def __init__(self): + pass + + def body(self): + print "Create Dialog box" + self.proj_directory = QtGui.QFileDialog.getExistingDirectory() + self.obj_validation = Validation() + + + if self.obj_validation.validateOpenproj(self.proj_directory) == True: + print "Pass open project test" + self.obj_Appconfig = Appconfig() + self.obj_Appconfig.current_project['ProjectName'] = self.proj_directory + + + else: + print "Failed open project test" + reply = QtGui.QMessageBox.critical(None, "Error Message",'''<b> Error: The project doesn't contain .proj file.</b><br/> + <b>Please select the proper project directory else you won't be able to perform any operation</b>''',QtGui.QMessageBox.Ok|QtGui.QMessageBox.Cancel) + if reply == QtGui.QMessageBox.Ok: + self.body() + elif reply == QtGui.QMessageBox.Cancel: + pass + else: + pass + + + + + +
\ No newline at end of file |