PDA

View Full Version : [Symbian 4.7beta2] QSplashscreen not fullscreen



faenil
24th August 2010, 02:38
Hi guys I have this problem




int main(int argc, char *argv[])
{
QApplication a(argc, argv);
application w;

QPixmap pixmap(":/img/splash.jpg");
QSplashScreen *splash = new QSplashScreen(pixmap);
splash->showFullScreen();

QTimer::singleShot(2500, splash, SLOT(close()));
QTimer::singleShot(2500, &w, SLOT(showFullScreen()));

return a.exec();
}


The splashscreen is not being displayed at full screen, there is the bottom bar which is in front of it...
what am I doing wrong?