Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
QHelpEngine with remote file souce, is possible?
-
Is possible set a remote file on QtHelpEngine?
QHelpEngine* helpEngine = new QHelpEngine("http://xxx.yyy/zzz/help.qhc", this);
Or is there anpther way to distribute by remote?
Thanks
-
Yes. It is a correct way but before the help engine can be used, it must be initialized by calling setupData().
QHelpEngine* helpEngine = new QHelpEngine("http://xxx.yyy/zzz/help.qhc", this); helpEngine->setupData();
Read more here:
http://doc.qt.io/qt-4.8/qhelpenginecore.html#details