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
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
import logging
from PyQt4.QtGui import (QDialog, QFrame, QPushButton, QLabel, QMessageBox)
logger = logging.getLogger(name=__name__)
class ErrorDialog(QDialog):
def __init__(self, parent=None, errtype=None, msg=None, label=None):
super(ErrorDialog, self).__init__(parent)
frameStyle = QFrame.Sunken | QFrame.Panel
self.warningLabel = QLabel()
self.warningLabel.setFrameStyle(frameStyle)
self.warningButton = QPushButton("QMessageBox.&warning()")
if msg is not None:
self.msg = msg
if label is not None:
self.label = label
if errtype == "critical":
self.criticalMessage(self.msg, self.label)
def warningMessage(self, msg, label):
msgBox = QMessageBox(QMessageBox.Warning,
"LEAP Client Error",
msg,
QMessageBox.NoButton, self)
msgBox.addButton("&Ok", QMessageBox.AcceptRole)
if msgBox.exec_() == QMessageBox.AcceptRole:
pass
# do whatever we want to do after
# closing the dialog. we can pass that
# in the constructor
def criticalMessage(self, msg, label):
msgBox = QMessageBox(QMessageBox.Critical,
"LEAP Client Error",
msg,
QMessageBox.NoButton, self)
msgBox.addButton("&Ok", QMessageBox.AcceptRole)
msgBox.exec_()
# It's critical, so we exit.
# We should better emit a signal and connect it
# with the proper shutdownAndQuit method, but
# this suffices for now.
logger.info('Quitting')
import sys
sys.exit()
def confirmMessage(self, msg, label, action):
msgBox = QMessageBox(QMessageBox.Critical,
self.tr("LEAP Client Error"),
msg,
QMessageBox.NoButton, self)
msgBox.addButton("&Ok", QMessageBox.AcceptRole)
msgBox.addButton("&Cancel", QMessageBox.RejectRole)
if msgBox.exec_() == QMessageBox.AcceptRole:
action()
|