QT4.8
Hi, I am connecting to QT-Assistent using the QProcess scheme.
For example (from a QT document)
QProcess *process = new QProcess; QStringList args; args << QLatin1String("-collectionFile") << QLatin1String("mycollection.qhc") << QLatin1String("-enableRemoteControl"); process->start(QLatin1String("assistant"), args); if (!process->waitForStarted()) return;
and I pass commands to him using the suggested documentation:
QByteArray ba; ba.append("setSource qthelp://com.mycompany.1_0_0/doc/index.html\n"); process->write(ba);
My problem:
How to enlarge the help window if the user minimizes it? Because help works like another process, no way was found to bring the window up.
TIA.
source share