How can I minimize my application by clicking on some button in the application, on Windows Mobile and Symbian platforms, under Qt?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Probably QWidget::setWindowState will suit you and the state for minimized is
Qt::WindowMinimized.. So if your base widget is aQMainWindow, you can use this function on it.It will work for desktop applications.. Should be similar for Mobile apps though..
Hope it helps…