taskbar in linux

Jaz 2010-09-02 19:52:58 Link
Hi, does anyone know how to get rid of the taskbar in linux on the
mini2440?

Thanks!

Jaz

jrh_engineering 2010-10-25 22:28:32 Link
If you want to do it from your Qt application use:
frmMyWidget->showFullScreen();
rather than 
frmMyWidget->show();
in your main.cpp or whatever file you use to instantiate your widget class.

frmMyWidget will be whatever name you have assigned to your form in
designer or whatever name you have given to your subclass object name.

int main (int argc, char * argv[])
{
   QApplication myapp(argc, argv);
   frmMyWidget *frmMyWidget1 = new frmMyWidget;
   ...
   ...
   frmMyWidget1->showFullScreen();

Reply

Name
eMail (not visible)
Subject (no text only in upper case; no HELP, URGENT...)
Text
HTML tags are not supported and links are generated automatically if they start with http or ftp.
Please submit long source code or log files as attachment (only registered users).
Please enter the number 3039