Change beRTOS to BeRTOS in the wizard gui
[bertos.git] / wizard / bertos.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
5 # All rights reserved.
6 #
7 # $Id:$
8 #
9 # Author: Lorenzo Berni <duplo@develer.com>
10 #
11
12 import sys
13 from PyQt4.QtCore import *
14 from PyQt4.QtGui import *
15 import BStartPage
16 import BVersionPage
17
18 def main():
19     app = QApplication(sys.argv)
20     app.settings = QSettings("Develer", "Bertos Configurator")
21     QResource.registerResource("bertos.rcc")
22     startPage = BStartPage.BStartPage()
23     wizard = QWizard()
24     wizard.setWindowTitle("Welcome in BeRTOS configuration wizard")
25     wizard.addPage(startPage)
26     wizard.addPage(BVersionPage.BVersionPage())
27     wizard.show()
28     sys.exit(app.exec_())
29
30
31 if __name__ == '__main__':
32     main()
33