Beispiel #1
0
 def about(self) -> None:
     """ Show About dialog (info about application)"""
     dlg = AboutDialog()
     dlg.exec_()
Beispiel #2
0
 def openAbout(self):
     """Slot for opening the About box."""
     dlg = AboutDialog()
     dlg.show()
     dlg.exec_()
Beispiel #3
0
 def openAbout(self):
     """Slot for opening the About box."""
     dlg = AboutDialog()
     dlg.show()
     dlg.exec_()
Beispiel #4
0
 def about(self):
     dlg = AboutDialog()
     dlg.exec_()
Beispiel #5
0
 def on_actionAbout_triggered(self):
     about = AboutDialog()
     about.exec_()
Beispiel #6
0
 def about_action_triggered(self):
     about_window = AboutDialog()
     about_window.exec_()