88 self.pfile = "" # name of the multi project file |
88 self.pfile = "" # name of the multi project file |
89 self.ppath = "" # name of the multi project directory |
89 self.ppath = "" # name of the multi project directory |
90 self.description = "" # description of the multi project |
90 self.description = "" # description of the multi project |
91 self.name = "" |
91 self.name = "" |
92 self.opened = False |
92 self.opened = False |
93 self.projects = [] # list of project info; each info entry is |
93 self.projects = [] |
94 # a dictionary |
94 # list of project info; each info entry is a dictionary |
95 # 'name' : name of the project |
95 # 'name' : name of the project |
96 # 'file' : project file name |
96 # 'file' : project file name |
97 # 'master' : flag indicating the master |
97 # 'master' : flag indicating the master |
98 # project |
98 # project |
99 # 'description' : description of the project |
99 # 'description' : description of the project |
100 # 'category' : name of the group |
100 # 'category' : name of the group |
101 # 'uid' : unique identifier |
101 # 'uid' : unique identifier |
102 self.categories = [] |
102 self.categories = [] |
103 |
103 |
104 def __loadRecent(self): |
104 def __loadRecent(self): |
105 """ |
105 """ |
106 Private method to load the recently opened multi project filenames. |
106 Private method to load the recently opened multi project filenames. |