Ejemplo n.º 1
0
 def help(self):
     'Function called when the help button is hit.'
     #helpDlg = HelpDialog(self.root, filename="help.txt")
     HelpDialog(self.root, filename="help.txt")
Ejemplo n.º 2
0
 def helpOnclick(self):
     # return
     helpDialog = HelpDialog(self)
     # helpDialog.setWindowTitle("帮助")
     # helpDialog.exec_()
     helpDialog.show()
Ejemplo n.º 3
0
    def openHelp(self):

        self.helpDialog = HelpDialog(
            self.settings.app_path.decode('windows-1252'))
        self.helpDialog.setModal(False)
        self.helpDialog.show()
Ejemplo n.º 4
0
 def on_about(self, evt):
     helpfile = os.path.join(path + help_file)
     helpdlg = HelpDialog(helpfile, title=_(u'WPKG-GP Client - Help'))
     helpdlg.Center()
     helpdlg.ShowModal()
Ejemplo n.º 5
0
 def openHelp(self):
     dlg = HelpDialog()
     dlg.exec_()
 def helpOnclick(self):
     helpDialog = HelpDialog(self)
     helpDialog.show()