Mercurial > hg > Feedworm
annotate feedworm-gui.py @ 14:42a225be7e56
first version of the GUI
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Wed, 28 Apr 2010 02:36:00 +0200 |
parents | |
children | 6b5ceffabe49 |
rev | line source |
---|---|
14 | 1 |
2 from MainWindowController import MainWindowController | |
3 from PyQt4 import QtGui | |
4 import sys | |
5 from util import configureLogging, createSession | |
6 | |
7 if __name__ == '__main__': | |
8 configureLogging() | |
9 session = createSession() | |
10 | |
11 app = QtGui.QApplication(sys.argv) | |
12 mainWindowController = MainWindowController(session) | |
13 mainWindowController.show() | |
14 sys.exit(app.exec_()) |