Hi ,
Is there an way in QT 4 to hide the taskbar and have my application occupy the entire screen when maximized just like a Powerpoint presentation ?
Thanks.
Hi ,
Is there an way in QT 4 to hide the taskbar and have my application occupy the entire screen when maximized just like a Powerpoint presentation ?
Thanks.
jimc1200 (30th January 2009)
Reading this thread i experimented this code:
Qt Code:
#include <QApplication> #include <QLineEdit> #include "Dialog.h" int main(int argc, char *argv[]){ x.showFullScreen(); Dialog *dialog = new Dialog; dialog->showFullScreen(); return app.exec(); }To copy to clipboard, switch view to plain text mode
The x widget is maximized but the Dialog no.
I supose this is because the Dialog was created with QtDesigner and i must change it there?
QDialog is a window that should be decorated as a dialog (i.e., typically no maximize or minimize buttons in the title bar). Why did you design a dialog if you want to show it in full screen mode?
J-P Nurmi
It's just a question ... but i get the Dialog idea![]()
Bookmarks