X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBWizardPage.py;h=d33c9cbad4d932c43ab11f681631cf4df2797bbc;hb=0676a7451f0fd727af3c17350f6abbde825b4e3b;hp=4233fc5baf8e3d559e52f6119bc61cce5192e6bc;hpb=b7a45b51a0f38ef111963ae61b46a40a1bffe9e5;p=bertos.git diff --git a/wizard/BWizardPage.py b/wizard/BWizardPage.py index 4233fc5b..d33c9cba 100644 --- a/wizard/BWizardPage.py +++ b/wizard/BWizardPage.py @@ -20,4 +20,19 @@ class BWizardPage(QWizardPage): self.pageContent = uic.loadUi(wizardGui, None) layout = QVBoxLayout() layout.addWidget(self.pageContent) - self.setLayout(layout) \ No newline at end of file + self.setLayout(layout) + + def _settingsStore(self, key, value): + QApplication.instance().settings.setValue(QString(key), QVariant(value)) + + def _settingsRetrieve(self, key): + 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.info(key) + + def reloadData(self): + pass \ No newline at end of file