Esempio n. 1
0
 def showAbout(self):
     """Shows about dialog."""
     import about
     about.AboutDialog(self).exec_()
Esempio n. 2
0
def do_about():
    about.AboutDialog().run()
Esempio n. 3
0
def help_about():
    import about
    about.AboutDialog(None).exec_()
Esempio n. 4
0
 def showAbout(self):
     dialog = about.AboutDialog(self, version)
     dialog.show()
Esempio n. 5
0
 def start_about_dialog(self):
     self.about_dialog = about.AboutDialog()
     self.about_dialog.show()
Esempio n. 6
0
 def showAbout(self):
     '''Slot to show the about dialog'''
     if self.aboutdlg is None:
         self.aboutdlg = about.AboutDialog()
     self.aboutdlg.show()
Esempio n. 7
0
 def on_about_activate(self, widget, data=None):
     self.aboutDialog = about.AboutDialog(self)
Esempio n. 8
0
 def create_about_dialog(self):
     ad = about.AboutDialog()
Esempio n. 9
0
 def on_help_about(self, checked=False):
     dlg = about.AboutDialog(self)
     dlg.show()
Esempio n. 10
0
 def __action_about(self):
     w = about.AboutDialog(self)
     w.go()
     self.wait_window(w)