def on_help(event, list_control): import cellprofiler.modules from cellprofiler.gui.htmldialog import HTMLDialog dlg = HTMLDialog(list_control, 'Help on module,"%s"' % MergeOutputFiles.module_name, __doc__) dlg.Show()
def on_help(event, list_control): import cellprofiler.modules from cellprofiler.gui.htmldialog import HTMLDialog import cellprofiler.gui.html.utils dlg = HTMLDialog( list_control, 'Help on module,"%s"' % MergeOutputFiles.module_name, cellprofiler.gui.html.utils.rst_to_html_fragment(__doc__)) dlg.Show()
def on_help(event, help_text=help_text): dlg = HTMLDialog(self, "Preferences help", help_text) dlg.Show()
def on_help(event): HTMLDialog(panel, "Workspace viewer help", WORKSPACE_VIEWER_HELP).Show()
def __on_help(self, event, help_text): dlg = HTMLDialog(self.__panel, "Help", help_text) dlg.Show()