src/eric7/UI/SplashScreen.py

branch
eric7
changeset 10433
328f3ec4b77a
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10432:2fe91fe443dd 10433:328f3ec4b77a
38 38
39 def showMessage(self, msg): 39 def showMessage(self, msg):
40 """ 40 """
41 Public method to show a message in the bottom part of the splashscreen. 41 Public method to show a message in the bottom part of the splashscreen.
42 42
43 @param msg message to be shown (string) 43 @param msg message to be shown
44 @type str
44 """ 45 """
45 logging.debug(msg) 46 logging.debug(msg)
46 super().showMessage(msg, self.labelAlignment, QColor(Qt.GlobalColor.white)) 47 super().showMessage(msg, self.labelAlignment, QColor(Qt.GlobalColor.white))
47 QApplication.processEvents() 48 QApplication.processEvents()
48 49
70 71
71 def showMessage(self, msg): 72 def showMessage(self, msg):
72 """ 73 """
73 Public method to show a message in the bottom part of the splashscreen. 74 Public method to show a message in the bottom part of the splashscreen.
74 75
75 @param msg message to be shown (string) 76 @param msg message to be shown
77 @type str
76 """ 78 """
77 logging.debug(msg) 79 logging.debug(msg)
78 80
79 def clearMessage(self): 81 def clearMessage(self):
80 """ 82 """
84 86
85 def finish(self, widget): 87 def finish(self, widget):
86 """ 88 """
87 Public method to finish the splash screen. 89 Public method to finish the splash screen.
88 90
89 @param widget widget to wait for (QWidget) 91 @param widget widget to wait for
92 @type QWidget
90 """ 93 """
91 pass 94 pass

eric ide

mercurial