Hello,

In my app, I've got such a piece of code:
Qt Code:
  1. QSplashScreen splashScreen(QPixmap(":/data/other/splashScreen.png"));
  2. splashScreen.show();
  3. splashScreen.showMessage(QString("Loading..."),Qt::AlignCenter | Qt::AlignBottom,QColor(0,150,255));
  4.  
  5. MainWindow w;
  6. splashScreen.finish(&w);
  7. w.show();
To copy to clipboard, switch view to plain text mode 

It shows me a splash screen, but in places that should be transparent (as the base for this splash screen is a PNG image) there is background. Is this possible to have a splash screen with transparency?