view feedworm-gui.py @ 22:cb9d8da0f307

Put the widgets into a layout to have proper resize behaviour
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 29 Apr 2010 05:22:59 +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_())