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