I'm on the path to write a QCoreApplication supposed to create an external process via Qprocess.
I've just noticed that even if the waitForStarted()
is called and the process state is Running
before the event handler is executing, the external process does not start until the exec()
method is invoked on the QCoreApplication.
That said, is it possible to postpone the execution of a routine to the event handling start (in which to instantiate a QProcess), or the only viable way is to create a one shot QTimer?