Add the application QSettings
[bertos.git] / wizard / bertos.py
index 124a453106e20a01e4de3007a6daeec7f0854f94..78a42b0844f6302575ebf7c9ee6be6a20ff3604e 100644 (file)
@@ -13,13 +13,17 @@ import sys
 from PyQt4.QtCore import *
 from PyQt4.QtGui import *
 import BStartPage
+import BVersionPage
 
 def main():
     app = QApplication(sys.argv)
+    app.settings = QSettings("Develer", "Bertos Configurator")
+    QResource.registerResource("bertos.rcc")
     startPage = BStartPage.BStartPage()
     wizard = QWizard()
     wizard.setWindowTitle("Welcome in beRTOS configuration wizard")
     wizard.addPage(startPage)
+    wizard.addPage(BVersionPage.BVersionPage())
     wizard.show()
     sys.exit(app.exec_())