X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fbertos.py;h=124a453106e20a01e4de3007a6daeec7f0854f94;hb=62daf2c2387363780ef8f64e90e94ed527fbf58b;hp=db3fa49042c5ac94fa7104c354bc9414c0483a17;hpb=e492be662b42a892d63b24531fe04003fa28f0fc;p=bertos.git diff --git a/wizard/bertos.py b/wizard/bertos.py index db3fa490..124a4531 100644 --- a/wizard/bertos.py +++ b/wizard/bertos.py @@ -10,11 +10,18 @@ # import sys -import os - +from PyQt4.QtCore import * +from PyQt4.QtGui import * +import BStartPage def main(): - pass + app = QApplication(sys.argv) + startPage = BStartPage.BStartPage() + wizard = QWizard() + wizard.setWindowTitle("Welcome in beRTOS configuration wizard") + wizard.addPage(startPage) + wizard.show() + sys.exit(app.exec_()) if __name__ == '__main__':