UI/SplashScreen.py

changeset 3012
d177226027e2
parent 2302
f29e9405c851
child 3057
10516539f238
child 3160
209a07d7e401
equal deleted inserted replaced
3011:18292228c724 3012:d177226027e2
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):

eric ide

mercurial