diff options
author | nilshah98 | 2019-05-28 12:47:00 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-13 12:15:09 +0530 |
commit | 7c47d9e2e0458d084ffea649c788a4c2b41520ef (patch) | |
tree | c3aeadda1eaa628ca38229241f76eb962ac281b7 /src/projManagement/openProject.py | |
parent | 25c6eddcea3c8a62d9750a78435454544d8c7b14 (diff) | |
download | eSim-7c47d9e2e0458d084ffea649c788a4c2b41520ef.tar.gz eSim-7c47d9e2e0458d084ffea649c788a4c2b41520ef.tar.bz2 eSim-7c47d9e2e0458d084ffea649c788a4c2b41520ef.zip |
projectManagement documentation added
Diffstat (limited to 'src/projManagement/openProject.py')
-rw-r--r-- | src/projManagement/openProject.py | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/projManagement/openProject.py b/src/projManagement/openProject.py index 6cdcbb38..d12f4d8a 100644 --- a/src/projManagement/openProject.py +++ b/src/projManagement/openProject.py @@ -23,16 +23,26 @@ from configuration.Appconfig import Appconfig import os import json +""" +This class is called when User click on Open Project Button +""" -class OpenProjectInfo(QtGui.QWidget): - """ - This class is called when User click on Open Project Button - """ +class OpenProjectInfo(QtGui.QWidget): def __init__(self): super(OpenProjectInfo, self).__init__() self.obj_validation = Validation() + """ + Open a project directory using Qt GUI and validate + if .proj file present in it + + @params + + @return + :dirs => The directories inside the project folder + :filelist => The files inside the project folder + """ def body(self): self.obj_Appconfig = Appconfig() self.openDir = self.obj_Appconfig.default_workspace["workspace"] |