taurus.qt.qtgui.help
¶
This package contains a collection of taurus Qt widgets that provide a way to browse through the application help system
Classes
Functions
-
Assistant
(collection_file, auto_create=True, parent=None)[source]¶ The
Assistant()
will create a subprocess displaying the help system for the given QtHelp collection file (.qhc). Example usage:from taurus.external.qt import Qt from taurus.qt.qtgui.help import Assistant app = Qt.QApplication([]) qas = Assistant("my_app_help.qhc") qas.start() app.exec_()