blob: b6e8510b05d227a9fbc6b51b04843d29ec80a770 (
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
|
# -*- coding: utf-8 -*-
# app.py
# Copyright (C) 2016 LEAP Encryption Acess Project
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Main entrypoint for the Bitmask Qt GUI.
It just launches a wekbit browser that runs the local web-ui served by bitmaskd
when the web service is running.
"""
import sys
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5 import QtWebKit, QtWebKitWidgets
BITMASK_URI = 'http://localhost:7070'
qApp = None
class BrowserWindow(QtWidgets.QDialog):
def __init__(self, parent):
super(BrowserWindow, self).__init__(parent)
self.view = QtWebKitWidgets.QWebView(self)
self.setWindowTitle('Bitmask')
self.resize(800, 600)
self.load_app()
def load_app(self):
self.view.load(QtCore.QUrl(BITMASK_URI))
def shutdown(self):
print('[bitmask] shutting down...')
try:
self.view.stop()
QtCore.QTimer.singleShot(0, qApp.deleteLater)
except Exception as ex:
print('exception catched: %r' % ex)
sys.exit(1)
def start_app():
global qApp
qApp = QtWidgets.QApplication([])
browser = BrowserWindow(None)
qApp.setQuitOnLastWindowClosed(True)
qApp.lastWindowClosed.connect(browser.shutdown)
browser.show()
sys.exit(qApp.exec_())
if __name__ == "__main__":
start_app()
|