[SOLVED] getting notified that the app has started
-
Hi,
If you are using Qt Creator to develop your program then you can spot the "3. Application Output" button in the bottom-most row called Locator in the GUI. If you're not using the IDE then you could insert this line to test
@
qDebug() << "Application Started" ;
@Hope this helps.
-
Maybe "QWidget::showEvent":http://doc.qt.nokia.com/latest/qwidget.html#showEvent is what are you looking for.
-
You could always set up a "QTimer::singleShot()":http://doc.qt.nokia.com/4.7/qtimer.html#singleShot call with a timeout of 0 before you start your main loop. It will then get processed early on as the eventloop starts up.