Mercurial > hg > Feedworm
view feedworm-gui.py @ 46:03358c113170
Better preferences handling: the GUI's responsibility is to convert the input from the event into a boolean value
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sun, 16 May 2010 07:54:24 +0200 |
parents | 12ed8b5fa08c |
children | b8bfd1bd6c55 |
line wrap: on
line source
import Database from MainWindow import MainWindow from Preferences import Preferences from PyQt4 import QtGui import sys import util if __name__ == '__main__': util.configureLogging() session = Database.createSession() app = QtGui.QApplication(sys.argv) mainWindow = MainWindow(session) maximized = Preferences(session).startMaximized() if maximized: mainWindow.showMaximized() else: mainWindow.show() sys.exit(app.exec_())