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