Mercurial > hg > Feedworm
view feedworm-gui.py @ 90:a1066e5a8f88
save pending changes when quitting the app
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Fri, 24 Dec 2010 05:06:21 +0100 |
parents | b8bfd1bd6c55 |
children | 04a730f9d07d |
line wrap: on
line source
import Database from MainWindow import MainWindow from Preferences import Preferences from PyQt4 import QtGui from PyQt4.QtNetwork import QNetworkProxy import sys import util def setupProxy(preferences): if preferences.isProxyConfigured(): proxyHost = preferences.proxyHost() proxyPort = preferences.proxyPort() proxy = QNetworkProxy(QNetworkProxy.HttpProxy, proxyHost, proxyPort) QNetworkProxy.setApplicationProxy(proxy) if __name__ == '__main__': util.configureLogging() session = Database.createSession() preferences = Preferences(session) setupProxy(preferences) app = QtGui.QApplication(sys.argv) mainWindow = MainWindow(session) maximized = preferences.startMaximized() if maximized: mainWindow.showMaximized() else: mainWindow.show() sys.exit(app.exec_())