Hi,
In the following code ...
Qt Code:
  1. #include <QtGui>
  2. int main(int argc, char *argv[])
  3. {
  4. QApplication app(argc, argv);
  5. QPixmap pixmap("f0.png");
  6. QSplashScreen splash(pixmap);
  7. splash.show();
  8. app.processEvents();
  9. //...
  10. QMainWindow window;
  11. window.show();
  12. splash.finish(&window);
  13. return app.exec();
  14.  
  15. }
To copy to clipboard, switch view to plain text mode 
... isn't it expected a mouse click to close the splash screen?

Or does it mean that i can use the mouse click to close the splash before the QMainWindow finishes loading?