Ejemplo n.º 1
0
 def about(self):
     QMessageBox.about( self, _("About ")+APP_NAME,
           """<b>%s</b> v%s<p>%s Pierre Raybaut
           <br>Copyright &copy; 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()) )
Ejemplo n.º 2
0
 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()) )
Ejemplo n.º 3
0
 def about(self):
     QMessageBox.about( self, _("About ")+APP_NAME,
           """<b>%s</b> v%s<p>%s Pierre Raybaut
           <br>Copyright &copy; 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()) )
Ejemplo n.º 4
0
 def about(self):
     QMessageBox.about( self, _("About ")+APP_NAME,
           """<b>%s</b> v%s<p>%s Matt Nottingham
           <br>Copyright &copy; 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()) )
Ejemplo n.º 5
0
 def about(self):
     QMessageBox.about( self, _("About ")+APP_NAME,
                       """<b>%s</b><br>
                       v%s<p>
                       Copyright &copy; 2014 IRA-INAF<br><br>
                       %s
                       """ % \
                       (APP_DESCRIPTION, dwdata.dw_version(), LICENSE))
Ejemplo n.º 6
0
 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))
Ejemplo n.º 7
0
 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))
Ejemplo n.º 8
0
Archivo: gui.py Proyecto: cbig/zupport
 def on_actionAbout_triggered(self):
     QMessageBox.about(self, "About Zupport GUI",
                       """<b>Zupport GUI</b> v %s
                         <p>Copyright &copy; 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()))
Ejemplo n.º 9
0
 def on_actionAbout_triggered(self):
     QMessageBox.about(self, "About Zupport GUI",
                       """<b>Zupport GUI</b> v %s
                         <p>Copyright &copy; 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()))
Ejemplo n.º 10
0
 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")
Ejemplo n.º 11
0
 def not_implemented(self):
     """Not implemented function dialog"""
     QMessageBox.about(self, "Sorry!", "Not yet implemented...")