Problem in QDialog Full Screen with Exec() ?
-
i am using Qt for Symbain 4.6 and, i want to show the QDialog in Full screen through exec() because i want Modal Dialog
Thanks in Advance
-
[quote author="syedasadalibs03" date="1292948468"]i am using Qt for Symbain 4.6 and, i want to show the QDialog in Full screen through exec() because i want Modal Dialog
Thanks in Advance[/quote]
By modal do you mean like Global Query Dialogs in Symbian
-
QDesktopWidget desk;
QRect screenres = desk.screenGeometry(0);
newDialog->setGeometry(QRect(screenres.x(),screenres.y(),screenres.width(),screenres.height()));newDialog->show();