22 #include <QTextStream>
40 gContextHelp->showContext( context );
43 QgsContextHelp::QgsContextHelp()
48 QgsContextHelp::~QgsContextHelp()
53 QProcess *QgsContextHelp::start()
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() );
81 void QgsContextHelp::error( QProcess::ProcessError error )
86 void QgsContextHelp::showContext( QString context )
90 QString helpContents = gContextHelpTexts.value( context,
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() );
102 void QgsContextHelp::processExited()