Hi. I've got a question. In C++ GUI Programming with Qt 4 is explained how to do a splash screen, but it's different than this, what I wanna do. In book it was explained how to do this when you were implementing forms manually, and I was doing forms by designer. And I want to display splash screen without for example "loading plugins", but only and image, which is displaying for 4 seconds, and after it main window is shown. How can I do that, on my main.cpp file:
Qt Code:
  1. #include <QApplication>
  2. #include <QPlastiqueStyle>
  3. #include "maker.h"
  4. #include "about.h"
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8. QApplication::setStyle ( new QPlastiqueStyle() );
  9. QApplication app(argc, argv);
  10. MainWindow MainWindow;
  11. MainWindow.show();
  12. return app.exec();
  13. }
To copy to clipboard, switch view to plain text mode 
Regards