Exemplo n.º 1
0
 def actionAbout_trigger(self, event):
     """Show about dialog"""
     from windows.about import About
     win = About()
     # Run the dialog event loop - blocking interaction on this window during this time
     result = win.exec_()
     if result == QDialog.Accepted:
         log.info('About Openshot add confirmed')
     else:
         log.info('About Openshot add cancelled')
Exemplo n.º 2
0
	def about(self, widget):
		about = About()
		about.show()
Exemplo n.º 3
0
 def about(self, widget):
     about = About()
     about.show()
Exemplo n.º 4
0
def test_about():
	a = About()
	a.show()