Mercurial > hg > Feedworm
comparison 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 |
comparison
equal
deleted
inserted
replaced
13:591ecc2a99bd | 14:42a225be7e56 |
---|---|
1 | |
2 from Ui_MainWindow import Ui_MainWindow | |
3 from PyQt4 import QtGui | |
4 | |
5 class MainWindowController(QtGui.QMainWindow): | |
6 def __init__(self, session=None): | |
7 QtGui.QWidget.__init__(self, None) | |
8 self.session = session | |
9 self.ui = Ui_MainWindow() | |
10 self.ui.setupUi(self) |