22 #include <QTextStream>
57 QgsDebugMsg( QString(
"Help path is %1" ).arg( helpPath ) );
59 QProcess *process =
new QProcess;
62 connect( process, SIGNAL( finished(
int, QProcess::ExitStatus ) ), SLOT(
processExited() ) );
65 connect( qApp, SIGNAL( aboutToQuit() ), process, SLOT( terminate() ) );
67 connect( process, SIGNAL(
error( QProcess::ProcessError ) ),
this, SLOT(
error( QProcess::ProcessError ) ) );
72 process->setEnvironment( QStringList() << QString(
"PATH=%1;%2" ).arg( getenv(
"PATH" ) ).arg( QApplication::applicationDirPath() ) );
76 process->start( helpPath, QStringList() );
91 tr(
"<h3>Oops! QGIS can't find help for this form.</h3>"
92 "The help file for %1 was not found for your language<br>"
93 "If you would like to create it, contact the QGIS development team"
97 helpContents =
"<head><style>" + myStyle +
"</style></head><body>" + helpContents +
"</body>\nEOH\n";
99 mProcess->write( helpContents.toUtf8() );