UI/SplashScreen.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3012
d177226027e2
child 3065
070b35dde35e
equal deleted inserted replaced
3056:9986ec0e559a 3057:10516539f238
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):

eric ide

mercurial