From 756ad7fcfe3e9cb7f1c90e0c773cfb46243a2496 Mon Sep 17 00:00:00 2001 From: fahim Date: Tue, 17 Feb 2015 15:13:02 +0530 Subject: Subject: openProject and Validation Description: Included openProject and Validation module --- src/projManagement/openProject.py | 61 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/projManagement/openProject.py (limited to 'src/projManagement/openProject.py') 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",''' Error: The project doesn't contain .proj file.
+ Please select the proper project directory else you won't be able to perform any operation''',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 -- cgit