view feedworm-gui.py @ 23:dcc8abff0694

All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 29 Apr 2010 05:41:52 +0200
parents 42a225be7e56
children 6b5ceffabe49
line wrap: on
line source


from MainWindowController import MainWindowController
from PyQt4 import QtGui
import sys
from util import configureLogging, createSession

if __name__ == '__main__':
    configureLogging()
    session = createSession()
    
    app = QtGui.QApplication(sys.argv)
    mainWindowController = MainWindowController(session)
    mainWindowController.show()
    sys.exit(app.exec_())