def __init__(self):
pass
- def openProject(self, path):
- # Fill the BProject fields, opening an existing project
- pass
-
def setProjectPath(self, path):
self.projectPath = path
QApplication.instance().settings.setValue(QString(key), QVariant(value))
def _settingsRetrieve(self, key):
- return QApplication.instance().settings.value(QString(key), QVariant())
\ No newline at end of file
+ return QApplication.instance().settings.value(QString(key), QVariant())
+
+ def _projectInfoStore(self, key, value):
+ QApplication.instance().project.setInfo(key, value)
+
+ def _projectInfoRetrieve(self, key):
+ return QApplication.instance().project.setInfo(key)
\ No newline at end of file