22 """ |
22 """ |
23 def __init__(self): |
23 def __init__(self): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 """ |
26 """ |
27 ericPic = QPixmap(os.path.join(getConfig('ericPixDir'), 'ericSplash.png')) |
27 ericPic = QPixmap( |
28 self.labelAlignment = \ |
28 os.path.join(getConfig('ericPixDir'), 'ericSplash.png')) |
29 Qt.Alignment(Qt.AlignBottom | Qt.AlignRight | Qt.AlignAbsolute) |
29 self.labelAlignment = Qt.Alignment( |
|
30 Qt.AlignBottom | Qt.AlignRight | Qt.AlignAbsolute) |
30 super().__init__(ericPic) |
31 super().__init__(ericPic) |
31 self.show() |
32 self.show() |
32 QApplication.flush() |
33 QApplication.flush() |
33 |
34 |
34 def showMessage(self, msg): |
35 def showMessage(self, msg): |