def about(self): QMessageBox.about( self, _("About ")+APP_NAME, """<b>%s</b> v%s<p>%s Pierre Raybaut <br>Copyright © 2009-2010 CEA <p>Python %s, Qt %s, PyQt %s %s %s""" % \ (APP_NAME, VERSION, _("Developped by"), platform.python_version(), QT_VERSION_STR, PYQT_VERSION_STR, _("on"), platform.system()) )
def about( self ): QMessageBox.about( self, _("About ")+APP_NAME, """<b>%s</b> v%s<p>%s Darko Petrovic <br>(Lisence goes here) <p>Python %s, Qt %s, PyQt %s %s %s""" % \ (APP_NAME, VERSION, _("Developped by"), platform.python_version(), QT_VERSION_STR, PYQT_VERSION_STR, _("on"), platform.system()) )
def about(self): QMessageBox.about( self, _("About ")+APP_NAME, """<b>%s</b> v%s<p>%s Matt Nottingham <br>Copyright © 2015 Matt Nottingham <p>Python %s, Qt %s, PyQt %s %s %s""" % \ (APP_NAME, VERS, _("Developped by"), platform.python_version(), QT_VERSION_STR, PYQT_VERSION_STR, _("on"), platform.system()) )
def about(self): QMessageBox.about( self, _("About ")+APP_NAME, """<b>%s</b><br> v%s<p> Copyright © 2014 IRA-INAF<br><br> %s """ % \ (APP_DESCRIPTION, dwdata.dw_version(), LICENSE))
def about(self): QMessageBox.about( self, _("About ")+APP_NAME, """<b>%s</b> v%s<br>%s<p> <br>Copyright © François Bianco, University of Geneva <br>[email protected] <br>Distributed under the GNU GPL License v.3 """ % \ (APP_NAME, VERSION, APP_DESC))
def on_actionAbout_triggered(self): QMessageBox.about(self, "About Zupport GUI", """<b>Zupport GUI</b> v %s <p>Copyright © 2011 Joona Lehtomaki <*****@*****.**>. All rights reserved. <p>Support zools for Zonation related pre- and post-processing operations.</p> <p>Python %s - Qt %s - PySide %s on %s</p>""" % ( __version__, platform.python_version(), QT_VERSION, PYQT_VERSION, platform.system()))
def showErrorMessage(self, message): print("error") if message == "NOT_NONAME_ARRAY": QMessageBox.about( self, "Error message box", "Please make sure the data in the clip board is an array")
def not_implemented(self): """Not implemented function dialog""" QMessageBox.about(self, "Sorry!", "Not yet implemented...")