def showAbout(self): """Shows about dialog.""" import about about.AboutDialog(self).exec_()
def do_about(): about.AboutDialog().run()
def help_about(): import about about.AboutDialog(None).exec_()
def showAbout(self): dialog = about.AboutDialog(self, version) dialog.show()
def start_about_dialog(self): self.about_dialog = about.AboutDialog() self.about_dialog.show()
def showAbout(self): '''Slot to show the about dialog''' if self.aboutdlg is None: self.aboutdlg = about.AboutDialog() self.aboutdlg.show()
def on_about_activate(self, widget, data=None): self.aboutDialog = about.AboutDialog(self)
def create_about_dialog(self): ad = about.AboutDialog()
def on_help_about(self, checked=False): dlg = about.AboutDialog(self) dlg.show()
def __action_about(self): w = about.AboutDialog(self) w.go() self.wait_window(w)