问题
I've just coded splash screen in my PyQt application, to show an image before start. I've used QSplashscreen. The problem is the image is displayed, let's say, once in a 20 times. In other cases there is a grey rectangle displayed istead. Screenshots of both cases:
Does work: http://dl.getdropbox.com/u/1088961/prob2.jpg
Does not work: http://dl.getdropbox.com/u/1088961/prob1.jpg
I tried to delay starting window, but if grey rectangle changes into picture it is just before vanishing (even if I delay everything 10 seconds).
This is my code:
# -*- coding: utf-8 -*-
import sys
from time import time, sleep
from PyQt4.QtGui import QApplication, QSplashScreen, QPixmap
from gui.gui import MainWindow
def main():
app = QApplication(sys.argv)
start = time()
splash = QSplashScreen(QPixmap("aquaticon/images/splash_screen.jpg"))
splash.show()
if time() - start < 1:
sleep(1)
win = MainWindow()
splash.finish(win)
win.show()
app.exec_()
if __name__ == "__main__":
main()
I'm using Debian Linux with Fluxbox (but it is the same in Gnome).
回答1:
It's because of the sleep(1)
line. For QSplashScreen
to work properly, there should be an event loop running. However, sleep
is blocking. So you don't get to app.exec_()
(event loop) part before sleep
finishes (for a whole second). That 'gray rectangle' is the case where you enter sleep
before QSplashScreen
could even paint itself.
For the normal case, you won't have this problem because you'll be waiting within Qt and the event loop will be running. If you want to 'simulate' a wait, sleep for small intervals and force the app
to do its job with .processEvents()
:
# -*- coding: utf-8 -*-
import sys
from time import time, sleep
from PyQt4.QtGui import QApplication, QSplashScreen, QPixmap
from gui.gui import MainWindow
def main():
app = QApplication(sys.argv)
start = time()
splash = QSplashScreen(QPixmap("aquaticon/images/splash_screen.jpg"))
splash.show()
while time() - start < 1:
sleep(0.001)
app.processEvents()
win = MainWindow()
splash.finish(win)
win.show()
app.exec_()
if __name__ == "__main__":
main()
来源:https://stackoverflow.com/questions/14989749/why-qsplashscreen-does-not-always-work