Full screen application with Qt creator

bone88
Hi,
I created an application with Qt creator for mini2440, but when I run
always starts in a window, how can I start it in full screen (without
windows) ?
I tried various options when creating the project,QMainWindows and QWidget,
but nothing.
Thanks
bone88

Jeremy Maccelari
I code my stuff by hand, so I use:
  
QDialog topWidget(NULL,"TopWidget",Qt::WStyle_Customize |
Qt::WStyle_NoBorder);

and then show this using:

topWidget.showFullScreen();

If you can figure out how to do this in your GUI builder...

bone88
Great!!! Work well in my GUI builder
Thanks

whitebank
Thanks :) That will make our application program more better.

However, if you wanna to close it, you will have to make a close button, or
using minicom to kill the process by command: 

pkill hello

  (hello is a program which you are running)
Bye.