Mercurial > hg > Feedworm
view MainWindowController.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 | b1aeb98824c1 |
line wrap: on
line source
from Ui_MainWindow import Ui_MainWindow from PyQt4 import QtGui class MainWindowController(QtGui.QMainWindow): def __init__(self, session=None): QtGui.QWidget.__init__(self, None) self.session = session self.ui = Ui_MainWindow() self.ui.setupUi(self)