39 Public method to show a message in the bottom part of the splashscreen. |
39 Public method to show a message in the bottom part of the splashscreen. |
40 |
40 |
41 @param msg message to be shown (string) |
41 @param msg message to be shown (string) |
42 """ |
42 """ |
43 logging.debug(msg) |
43 logging.debug(msg) |
44 super(SplashScreen, self).showMessage(msg, self.labelAlignment, QColor(Qt.white)) |
44 super(SplashScreen, self).showMessage( |
|
45 msg, self.labelAlignment, QColor(Qt.white)) |
45 QApplication.processEvents() |
46 QApplication.processEvents() |
46 |
47 |
47 def clearMessage(self): |
48 def clearMessage(self): |
48 """ |
49 """ |
49 Public method to clear the message shown. |
50 Public method to clear the message shown. |