Hi guys I'm trying to develop an application for symbian s60 5th devices..

the application is almost ready but I have a problem...
I want to have a messagebox just like this one
http://wiki.forum.nokia.com/index.ph...Qt_for_Symbian

which appears in the centre of the screen...

but If I create a messagebox I just get the stupid symbian popup that comes from the bottom and stops at the bottom of the screen...

can anybody help me get that messagebox in the centre of the screen?

Thanks in advance...

Qt Code:
  1. m.setText("Something");
  2. m.setInformativeText("Somethidafsdffgng");
  3. m.move(40, 200);
  4. m.resize(30, 40);
  5. m.setStandardButtons(QMessageBox::Ok);
To copy to clipboard, switch view to plain text mode 

in this way I have the widget almost at the centre of the screen, but the resize() has no effect so it goes out of the screen on the right, and the OK button is still detached and it is in the bottom of the screen...

I just want to get a messagebox like the one in the link...

thanks in advance...