QT4.8
Hi, I am connecting to QT-Assistent using a QProcess schema.
For example (from the QT doc)
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 am passing commands to it by 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 maximize the help window, in case user minimizes it? Since the help is running as different process, did not find a way to bring the window up.
TIA.