blob: f861f945567fe6ca8ca2ca032d213f8bb84832d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
import logging
from PyQt4 import QtGui
from leap.gui import mainwindow_rc
logger = logging.getLogger(name=__name__)
class MainWindowMixin(object):
"""
create the main window
for leap app
"""
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
"""
self.headerBox = QtGui.QGroupBox()
self.headerLabel = QtGui.QLabel("<font size=40><b>E</b>ncryption \
<b>I</b>nternet <b>P</b>roxy</font>")
self.headerLabelSub = QtGui.QLabel("<i>trust your \
technolust</i>")
pixmap = QtGui.QPixmap(':/images/leap-color-small.png')
frog_lbl = QtGui.QLabel()
frog_lbl.setPixmap(pixmap)
headerLayout = QtGui.QHBoxLayout()
headerLayout.addWidget(frog_lbl)
headerLayout.addWidget(self.headerLabel)
headerLayout.addWidget(self.headerLabelSub)
headerLayout.addStretch()
self.headerBox.setLayout(headerLayout)
def set_statusbarMessage(self, msg):
self.statusBar().showMessage(msg)
def closeEvent(self, event):
"""
redefines close event (persistent window behaviour)
"""
if self.trayIcon.isVisible() and not self.debugmode:
QtGui.QMessageBox.information(
self, "Systray",
"The program will keep running "
"in the system tray. To "
"terminate the program, choose "
"<b>Quit</b> in the "
"context menu of the system tray entry.")
self.hide()
event.ignore()
if self.debugmode:
self.cleanupAndQuit()
def cleanupAndQuit(self):
"""
cleans state before shutting down app.
"""
# TODO:make sure to shutdown all child process / threads
# in conductor
# XXX send signal instead?
logger.info('Shutting down')
self.conductor.cleanup()
logger.info('Exiting')
QtGui.qApp.quit()
|