Minimizing a Qt application
For a QWidget which is a Window you can use the QWidget::showMinimized
method.
Probably QWidget::setWindowState will suit you and the state for minimized is Qt::WindowMinimized
.. So if your base widget is a QMainWindow
, you can use this function on it.
It will work for desktop applications.. Should be similar for Mobile apps though..
Hope it helps...