d4d8823f8cbf73d82ad440a90849f4d02df34886
[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     startPage = BStartPage.BStartPage()
21     wizard = QWizard()
22     wizard.setWindowTitle("Welcome in beRTOS configuration wizard")
23     wizard.addPage(startPage)
24     wizard.addPage(BVersionPage.BVersionPage())
25     wizard.show()
26     sys.exit(app.exec_())
27
28
29 if __name__ == '__main__':
30     main()
31