diff options
author | kali <kali@leap.se> | 2012-09-04 06:01:50 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-09-04 06:01:50 +0900 |
commit | b0b2b342b698bbe5851e9312cd830938f8d564a5 (patch) | |
tree | 041e6bdd55e6c94765d9c8830256bd6a5c452ce3 /src/leap/baseapp/leap_app.py | |
parent | 3fbc512a49923ac73d2413a083e0bb1f7e163866 (diff) |
further cleaning of main window by moving init functions
to their base classes.
plus a bit of juggling with order.
Diffstat (limited to 'src/leap/baseapp/leap_app.py')
-rw-r--r-- | src/leap/baseapp/leap_app.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/leap/baseapp/leap_app.py b/src/leap/baseapp/leap_app.py index fb736ee3..1b4d7747 100644 --- a/src/leap/baseapp/leap_app.py +++ b/src/leap/baseapp/leap_app.py @@ -5,6 +5,28 @@ from leap.gui import mainwindow_rc class MainWindow(object): + def __init__(self, *args, **kwargs): + # XXX set initial visibility + # debug = no visible + + widget = QtGui.QWidget() + self.setCentralWidget(widget) + + self.createWindowHeader() + + # add widgets to layout + mainLayout = QtGui.QVBoxLayout() + mainLayout.addWidget(self.headerBox) + mainLayout.addWidget(self.statusIconBox) + if self.debugmode: + mainLayout.addWidget(self.statusBox) + mainLayout.addWidget(self.loggerBox) + widget.setLayout(mainLayout) + + self.setWindowTitle("LEAP Client") + self.resize(400, 300) + self.set_statusbarMessage('ready') + def createWindowHeader(self): """ description lines for main window |