Dear all, dear Vishwadeep

*
*I hope this is not a little cross-posting, but,/despite it's not approved yet/, I've developed a plugin for qgis in which I sort of implement some help/about info in the way you try to implement it, so maybe you can take a look to it and perhaps tinker some of the code.

Basically what i do to show my html help is to create another dialog and then creating an instance of it when I click a button in the main dialog of the plugin. In that new dialog, I have a QTabWidget and in each tab I have a QWebView which shows an html page both for help and for about. _The trick here is to make those pages availabe in the qrc (resource) file (This can be done with QtDesigner)__
_
You can check my web page for the plugin in

http://imasdemase.com/programacion-2/qgis-plugin-transectizer/

and the source code repository in

https://github.com/jtornero/transectizer

The ui_about.* files take care of the implementation of the dialog and the way it is called is inside transectizer.py function simply as:

def about(self):
"""This function just shows the About/help dialog"""
aboutDialog().exec_()


Best regards

Jorge Tornero



El 13/01/14 11:54, Vishwadeep Shende escribió:
Respected,

I want to ask a query ie. how to write a help file for a plugin which i have developed. I want to know that, how to develop the help file for that plugin.I have written a pdf document, can I call that file through python by clicking on a button of my plugin. I have read the Documentation section of QGIS official website.It has given the logic to develop the help file by using the html programming. So my ultimate question is that how could I merge the python & html file for my html help document.

Thanks & regards


_______________________________________________
Qgis-user mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/qgis-user

_______________________________________________
Qgis-user mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/qgis-user

Reply via email to