[Solved] How to hide and show a mainwindow?
-
why would you want to hide your mainwindow at all??can you be more specific
-
[quote author="Leon" date="1307885217"]So a dialog can be hide with hide(); and can been shown with show();
But what about if it is not a dialog but the mainwindow?
hide(); doesn't hide my mainwindow....[/quote]How (eg: by using a push button?) and why do you plan to hide the main window? How and why do you plan to re-display the main window?
-
My app pops app a dialog and from there you can take a screenshot. And it has the ability to hide the dialog and after the screenshot has been take show it again. But i also want to hide the mainwindow..
So at the mainwindow hide(); doesn't hide the window.. What's wrong?
-
[quote author="Leon" date="1307951240"]My app pops app a dialog and from there you can take a screenshot. And it has the ability to hide the dialog and after the screenshot has been take show it again. But i also want to hide the mainwindow..
So at the mainwindow hide(); doesn't hide the window.. What's wrong?[/quote]
Just a guess: maybe you are calling hide() method/function of the wrong object (ie: not for the main window) by accident? Check it! ;-)
-
bq. As for an example… Putting hide(); at the constructor of the mainwindow.cpp won’t hide the window…
I suspected that's what you were doing. I don't think that should be expected to work. Although, the QMainWindow is constructed by then, i think you should try it after the construction of the MainWindow object is complete. Also, are you saying that the main window is shown without calling show()? Because you call hide() in the MainWindow constructor, where do you call show?
-
could you make an new widget based Qt project, choose a QMainwindow as class and use the following code in your main.
like this :
@int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();QTimer timer; timer.singleShot(1000, &w, SLOT(hide())); return a.exec();
}@
normally this should work unless you have other issues.
-
@jim_kaiser
it is possible to use hide() in the constructor of a QMainwindow class.
I tested it using a singleshot timer too.you're right asking where Leon uses his show() function, probably this one is called after the hide() function.
-
Thanks for the clarification about the hide() in the constructor. Assumed there might be events from the desktop which the main windows reacts to after the construction and just thought its a bit iffy.
-
Hi Gerolf,
You're right it's hidden unless you show it first.
But what Leon wants is to use a mainwindow and click a button to hide it. Hiding seems not to work on his system. That's why i suggested to use a minimal working example because we don't have code to look at.
-
Ok so probably it was wrong to put hide(); at the constructor.. Putting it in a void function will work..
I made an example that hides both the dialog and the mainwindow :) ("Link":http://dl.dropbox.com/u/11379868/hideExample.zip)