예제 #1
0
 def about(self) -> None:
     """ Show About dialog (info about application)"""
     dlg = AboutDialog()
     dlg.exec_()
예제 #2
0
 def openAbout(self):
     """Slot for opening the About box."""
     dlg = AboutDialog()
     dlg.show()
     dlg.exec_()
예제 #3
0
 def openAbout(self):
     """Slot for opening the About box."""
     dlg = AboutDialog()
     dlg.show()
     dlg.exec_()
예제 #4
0
 def about(self):
     dlg = AboutDialog()
     dlg.exec_()
예제 #5
0
파일: main.py 프로젝트: webmedic/booker
 def on_actionAbout_triggered(self):
     about = AboutDialog()
     about.exec_()
예제 #6
0
파일: main.py 프로젝트: cgt-soft/sw-rune
 def about_action_triggered(self):
     about_window = AboutDialog()
     about_window.exec_()