Exemplo n.º 1
0
 def OnAbout(self, evt):
     info = wx.AboutDialogInfo()
     info.AddDeveloper("_XLaT_ (x86xlat at gmail.com)")
     info.SetCopyright("(CC) 2007")
     info.SetLicense(PROGRAM_LICENSE)
     info.SetDescription(PROGRAM_NAME_FULL)
     info.SetName(PROGRAM_NAME)
     info.SetVersion(PROGRAM_VERSION)
     info.SetWebSite(PROGRAM_WEBSITE)
     wx.AboutBox(info)
Exemplo n.º 2
0
 def onHelpAbout(self, e):
     info = wx.AboutDialogInfo()
     info.Name = __app_name__
     info.Version = __version__
     info.Copyright = __copyright__
     info.Description = __description__
     info.WebSite = (__url__, __url__)
     info.Developers = ['%s <%s>' % (__author__, __author_email__)]
     info.Artists = [__artist__]
     wx.AboutBox(info)
Exemplo n.º 3
0
 def OnAboutBox(self, e):
   ''' About dialog '''
   info = wx.AboutDialogInfo()
   info.SetName('PRIME')
   info.SetWebSite('http://cci.lbl.gov/xfel')
   info.SetLicense(prime_license)
   info.SetDescription(prime_description)
   info.AddDeveloper('Monarin Uervirojnangkoorn')
   info.AddDeveloper('Axel Brunger')
   wx.AboutBox(info)
Exemplo n.º 4
0
 def OnAbout(self, e):
     """  About Window """
     info = wx.AboutDialogInfo()
     info.Name = "Fore"
     info.Version = "0.3"
     info.Copyright = "(C) 2002 Roman Bruckner"
     info.Description = "A sophisticated foto renaming tool"
     info.WebSite = ("http://www.romanbr.de/", "Official Website")
     #		info.Developers = ["Roman Bruckner"]
     wx.AboutBox(info)
Exemplo n.º 5
0
    def onAbout(self, event):
        pySoloVideoVersion = "XXXXXXXXXXX"  # temporary value
        info = wx.AboutDialogInfo()

        info.SetVersion('pySolo-Video - v' +
                        pySoloVideoVersion)  # PySoloVideoVersion not specified
        info.SetCopyright('by Giorgio F. Gilestro\n')
        info.SetWebSite('http://www.pysolo.net')

        wx.AboutBox(info)
Exemplo n.º 6
0
 def OnAbout(self, event):
     info = wx.AboutDialogInfo()
     info.SetCopyright("(C) 2012 Optical Fiber Systems inc.")
     info.SetName("SpiderScope Data Aquisition Software")
     info.SetDescription(
         " software to gather data, perform automated tests, and other functions using the DataSpider modules"
     )
     info.SetVersion(str(logger.VERSION))
     info.SetWebSite("http://pcdataspider.com")
     wx.AboutBox(info)
Exemplo n.º 7
0
 def ShowAbout(self):
     info = wx.AboutDialogInfo()
     info.AddDeveloper("Hu Jun")
     info.SetIcon(self.icon)
     info.SetName("Manpass")
     info.SetDescription("A Secure Password Manager")
     info.SetVersion(unicode(self.version))
     info.WebSite = ("https://github.com/hujun-open/manpass",
                     "Manpass website")
     wx.AboutBox(info, self)
Exemplo n.º 8
0
 def OnAbout(self, event):
     info = wx.AboutDialogInfo()
     info.SetName('Ballistic Missile Simulator')
     info.SetVersion('1.0')
     info.SetDescription("It's not rocket science")
     info.AddDeveloper('Josh Levinger')
     info.SetLicence(__doc__)
     info.SetCopyright("Copyright 2006 Josh Levinger")
     info.SetWebSite('http://www.levinger.net/josh')
     wx.AboutBox(info)
 def OnAboutButtonClicked(self, event):
     info = wx.AboutDialogInfo()
     info.Name = "Dictionary Input Tool"
     info.Version = "(v 1.0.9)"
     info.Description = "This tool is for editing the word list of Dictionary."
     info.Developers = [
         "Mohammod Zunayed Hassan\nEmail: [email protected]"
     ]
     info.License = "GNU GPL 2"
     wx.AboutBox(info)
Exemplo n.º 10
0
 def onAbout(self, event):
     info = wx.AboutDialogInfo()
     info.Name = __appname__
     info.Version = __version__
     info.Copyright = __author__
     info.Description = wordwrap(
         _("An easy tool for you to trade any commodity you like.\nLicense: MIT for individual, GPL for none individual.\n Author: TerryH"
           ), 350, wx.ClientDC(self))
     info.WebSite = (u"http://terryh.tp.blogspot.com/", u"TerryH's Blog")
     wx.AboutBox(info)
Exemplo n.º 11
0
 def about_dialog(self):
     info = wx.AboutDialogInfo()
     info.SetName(application.name)
     info.SetVersion(application.version)
     info.SetDescription(application.description)
     info.SetCopyright(application.copyright)
     info.SetTranslators(application.translators)
     #  info.SetLicence(application.licence)
     info.AddDeveloper(application.author)
     wx.AboutBox(info)
Exemplo n.º 12
0
 def OnAbout(self, event):
     info = wx.AboutDialogInfo()
     info.SetName('KBoot GUI')
     info.SetVersion('0.1 Beta')
     info.SetDescription(
         "KBoot GUI is PC side user interface fo Kinetis bootloader")
     info.SetCopyright('(C) 2016 Martin Olejar')
     info.SetWebSite('https://github.com/molejar')
     wx.AboutBox(info)
     event.Skip()
    def OnMenuHelpAbout(self, evt=None):
        info = wx.AboutDialogInfo()
        info.SetName('Virtual Setup')
        info.SetDescription(
            'An application for setting up linear sweeps of virtual\n'
            'variables for output variables.\n'
            '\n'
            'Using Spanish Acquisition version {0}.'.format(VERSION))

        wx.AboutBox(info)
Exemplo n.º 14
0
 def acerca(self, event):
     descripcion = """ Gestor de agenda desarrollado en wxPython """
     info = wx.AboutDialogInfo()
     info.SetName('Gestor de agenda')
     info.SetDescription(descripcion)
     info.SetVersion('1.0')
     info.SetLicense('')
     info.SetDevelopers(['GVR'])
     info.SetCopyright('(c) 2019')
     wx.AboutBox(info)
Exemplo n.º 15
0
 def OnCmdAbout(dummyEvent):
     info = wx.AboutDialogInfo()
     info.Name = "EventGhost Language Editor"
     info.Version = "1.0.2"
     info.Copyright = "© 2005-2020 EventGhost Project"
     info.Developers = [
         "Bitmonster",
     ]
     info.WebSite = ("http://www.eventghost.net", "EventGhost home page")
     wx.AboutBox(info)
Exemplo n.º 16
0
 def OnAboutDlg(self,evnet):
     info = wx.AboutDialogInfo()
     info.Name = config.PROGRAMNAME
     info.Version = config.VERSION
     info.Copyright = config.COPYRIGHT
     info.Description = wordwrap(config.DESCRIPTION,350, wx.ClientDC(self))
     info.WebSite = (config.WEBSITE,config.WEBSITE)
     info.Developers = config.DEVELOPERS
     info.License = wordwrap("None", 500, wx.ClientDC(self))
     wx.AboutBox(info)
Exemplo n.º 17
0
    def __ShowAboutDialogBox(self):
        name = 'pyprompter'
        version = self.version
        copyright = '(C) 2008 Matteo Vescovi'
        description = '''This program is intended as a demonstration of Presage ONLY.
The Presage project aims to provide an intelligent predictive text entry platform. Its intent is NOT to provide a predictive text entry user interface.

Think of Presage as the predictive backend that sits behind a shiny user interface and does all the predictive heavy lifting.
'''
        website = 'http://presage.sourceforge.net/'
        devs = ["Matteo Vescovi"]
        license = '''This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
'''
        # AboutBox and AboutDialogInfo were introduced in wxPython 2.7.1.1
        if wx.VERSION > (2, 7, 1, 1):
            # build about dialog information
            info = wx.AboutDialogInfo()
            info.SetName(name)
            info.SetVersion(version)
            info.SetCopyright(copyright)
            info.SetDescription(description)
            info.SetWebSite(website)
            info.SetDevelopers(devs)
            info.SetDocWriters(devs)
            info.SetArtists(devs)
            #info.SetTranslators(devs)
            info.SetLicense(license)
            #info.SetIcon()

            # show about dialog box
            wx.AboutBox(info)

        else:
            message = name + ' ' + version + '\n' \
                      + '\n' \
                      + copyright + '\n' \
                      + '\n' \
                      + description + '\n' \
                      + website

            dialog = wx.MessageDialog(self, message, "About pyprompter", wx.OK)
            dialog.ShowModal()
            dialog.Destroy()
Exemplo n.º 18
0
def GetAboutDialogInfo():
    import wx
    info = wx.AboutDialogInfo()

    info.Name = "Beremiz"
    info.Version = app_version

    info.Copyright = "(C) 2016 Andrey Skvortsov\n"
    info.Copyright += "(C) 2008-2015 Eduard Tisserant\n"
    info.Copyright += "(C) 2008-2015 Laurent Bessard"

    info.WebSite = ("http://beremiz.org", "beremiz.org")

    info.Description = _(
        "Open Source framework for automation, "
        "implemented IEC 61131 IDE with constantly growing set of extensions "
        "and flexible PLC runtime.")

    info.Developers = ("Andrey Skvortsov <*****@*****.**>",
                       "Sergey Surkov <*****@*****.**>",
                       "Edouard Tisserant <*****@*****.**>",
                       "Laurent Bessard <*****@*****.**>")

    info.License = (
        '\n This program is free software; you can redistribute it and/or\n'
        ' modify it under the terms of the GNU General Public License\n'
        ' as published by the Free Software Foundation; either version 2\n'
        ' of the License, or (at your option) any later version.\n'
        '\n'
        ' This program is distributed in the hope that it will be useful,\n'
        ' but WITHOUT ANY WARRANTY; without even the implied warranty of\n'
        ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n'
        ' GNU General Public License below for more details.\n'
        '\n'
        '\n'
        '\n'
        '')

    # read license file
    path = os.path.join(os.path.dirname(os.path.abspath(__file__)))
    license_path = os.path.join(path, u"COPYING")
    license = ''
    if os.path.exists(license_path):
        with open(license_path) as f:
            info.License += f.read()

    info.Icon = wx.Icon(os.path.join(path, "images", "about_brz_logo.png"),
                        wx.BITMAP_TYPE_PNG)

    info.Translators = (
        "Russian\t- Andrey Skvortsov <*****@*****.**>",
        "Korean\t- Reinhard Lee <*****@*****.**>",
        "German\t- Mark Muzenhardt <*****@*****.**>",
        "French\t- Laurent Bessard <*****@*****.**>")
    return info
Exemplo n.º 19
0
def show_about_box(frame, event):
    '''show_about_box(frame, event) --> None
    
    Show an about box about GenX with some info...
    '''
    import numpy, scipy, matplotlib, platform
    try:
        import scipy.weave as weave
    except:
        weave_version = 'Not installed'
    else:
        weave_version = weave.__version__
    try:
        import processing
    except:
        processing_version = 'Not installed'
    else:
        processing_version = processing.__version__
        
    info = wx.AboutDialogInfo()
    info.Name = "GenX"
    info.Version = __version__
    info.Copyright = "(C) 2008 Matts Bjorck"
    info.Description = wordwrap(
        "GenX is a multipurpose refinement program using the differential "
        "evolution algorithm. It is developed  mainly for refining x-ray reflectivity "
        "and neutron reflectivity data."
        
        "\n\nThe versions of the mandatory libraries are:\n"
        "Python: %s, wxPython: %s, Numpy: %s, Scipy: %s, Matplotlib: %s"
        "\nThe non-mandatory but useful packages:\n"
        "weave: %s, processing: %s"%(platform.python_version(), wx.__version__,\
            numpy.version.version, scipy.version.version,\
             matplotlib.__version__, weave_version, processing_version),
        500, wx.ClientDC(frame))
    info.WebSite = ("http:////genx.sourceforge.net", "GenX homepage")
    # No developers yet
    #info.Developers = []
    #head, tail = os.path.split(__file__)
    #license_text = file(head + '/LICENSE.txt','r').read()
    #license_text = file(_path + 'LICENSE.txt','r').read()
    #info.License = license_text#wordwrap(license_text, 500, wx.ClientDC(self))
    info.Licence = wordwrap('This program is free software: you can redistribute it and/or modify '
                            'it under the terms of the GNU General Public License as published by '
                            'the Free Software Foundation, either version 3 of the License, or '
                            '(at your option) any later version. '
                            '\n\nThis program is distributed in the hope that it will be useful, '
                            'but WITHOUT ANY WARRANTY; without even the implied warranty of '
                            'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the '
                            'GNU General Public License for more details. '
                            '\n\nYou should have received a copy of the GNU General Public License '
                            'along with this program.  If not, see <http://www.gnu.org/licenses/>. '
                            , 400, wx.ClientDC(frame))
    
    wx.AboutBox(info)
 def OnAbout(self, event):
     ####wx.MessageBox('A python program written by Shi Fang!', 'About')
     info = wx.AboutDialogInfo()
     info.Name = "Bitcion price monitor"
     info.Version = "0.1"
     info.Copyright = "(C) 2017 PhiPsi.top"
     info.Description = "This program is used to monitor the price of Bitcoin!"
     info.WebSite = ("http://phipsi.top/author.html", "About the author")
     info.License = "This program is an opensource program."
     info.Developers = ["Fang Shi"]
     wx.AboutBox(info)
Exemplo n.º 21
0
    def OnAbout(self, event):
        info = wx.AboutDialogInfo()
        info.SetName(PROGRAM_NAME)
        info.SetVersion(PROGRAM_VERSION)
        info.SetDescription(PROGRAM_DESCRIPTION)
        info.SetCopyright(PROGRAM_COPYRIGHT)
        fname = os.path.join(DATA_DIRECTORY, "sge_logo_alpha_black.png")
        icon = wx.Icon(fname, wx.BITMAP_TYPE_PNG)
        info.SetIcon(icon)

        wx.AboutBox(info)
Exemplo n.º 22
0
    def OnAbout(self, e):
        description = "" u"以N-GLAM演算法打造的文本分析工具,本工具僅支援中文文章。\n本工具同時採用標點緞斷句及長詞優先演算法。" ""
        info = wx.AboutDialogInfo()
        info.SetName('About N-GRAM Analyst')
        info.SetVersion('1.0')
        info.SetDescription(description)
        info.SetCopyright('(C) 2014 Bryan Yang')
        info.SetWebSite('http://bryannotes.blogspot.tw/')
        info.SetLicence('GPLv3')

        wx.AboutBox(info)
Exemplo n.º 23
0
 def _show_about_dialog(self, event=None):
     """Called when the About... button is clicked."""
     info = wx.AboutDialogInfo()
     info.Name = __software_name__.capitalize()
     info.Version = __version__
     info.Copyright = __copyright__
     info.Description = __long_description__
     info.WebSite = __url__
     info.Developers = __credits__
     info.License = __license__
     wx.AboutBox(info)
Exemplo n.º 24
0
 def onMenuAbout(self, evt):
     
     info = wx.AboutDialogInfo()
     info.AddDeveloper("%s <%s>" % (release.author, release.author_email))
     info.SetName(release.name)
     info.SetDescription("%s\n%s" % (release.description, release.url))
     info.SetVersion(release.version)
     info.SetCopyright("Copyright %s\nReleased under %s" % 
                       (release.copyright, release.license))
     #info.SetWebSite("https://github.com/emsrc/algraeph")
     wx.AboutBox(info)
Exemplo n.º 25
0
 def onAboutNeuroptikon(self, event_):
     info = wx.AboutDialogInfo()
     info.SetName(gettext('Neuroptikon'))
     info.SetVersion(__version__.version)
     info.SetDescription(
         gettext(
             'Developed at the \nJanelia Farm Research Campus by:\n\nFrank Midgley\nVivek Jayaraman\nMitya Chklovskii\nDon Olbris'
         ))
     info.SetCopyright(
         gettext('Copyright \xa9 2010 - Howard Hughes Medical Institute'))
     wx.AboutBox(info)
Exemplo n.º 26
0
    def onAbout (self, event) :
        
        about = wx.AboutDialogInfo()
        about.Name = "Replicator"
        about.Version = "0.0.1"
        about.Description = "\"Replicator\" is a python script to replicate"\
                            "an image following some kind of biological"\
                            "algorithm and to improve my python's writing."
        about.Developers = [ "Kéwan Marconnet (tharvik)" ]

        wx.AboutBox (about)
Exemplo n.º 27
0
 def OnMenuAbout(self, event):  # wxGlade: MainWindow.<event_handler>
     # On OS X some of the info seems to beread from info.plist
     # Need to see what it does on Win and Linux
     about = wx.AboutDialogInfo()
     about.Name = info.Name
     about.Version = info.Version
     about.Copyright = info.Copyright
     about.Description = info.Description
     about.WebSite = info.WebSite
     # about.Developers = info.Developers
     wx.AboutBox(about)
Exemplo n.º 28
0
 def OnAbout(self, event=None):
     adi = wx.AboutDialogInfo()
     adi.SetCopyright('GPL')
     adi.SetDevelopers(['Gissehel'])
     adi.SetName('pyrfeed')
     adi.SetVersion(pyrfeed_version)
     adi.SetWebSite('http://code.google.com/p/pyrfeed')
     adi.SetIcon(
         wx.Icon(os.path.join('..', 'res', 'pyrfeed-64x64.png'),
                 wx.BITMAP_TYPE_ANY))
     wx.AboutBox(adi)
Exemplo n.º 29
0
 def MenuAbout(self, event):
     info = wx.AboutDialogInfo()
     info.SetName("Sokoban")
     info.SetVersion("2.0")
     info.SetCopyright("D.A.  (12.2012)")
     info.SetDescription("An implementation of the Sokoban-Game")
     info.SetLicence(
         "Dieses Programm ist freie Software gemaess GNU General Public License"
     )
     info.AddDeveloper("Detlev Ahlgrimm")
     wx.AboutBox(info)
Exemplo n.º 30
0
 def OnMenuShowAboutBox(self, evt):
     # First we create and fill the info object
     info = wx.AboutDialogInfo()
     info.Name = "Earth Wallpaper"
     info.Version = "1.0"
     info.Copyright = "Copyright (c) 2009, Gianpaolo Terranova"
     info.Description = "Change Wallpaper"
     info.WebSite = ("http://www.terranovanet.it", "Author's website")
     info.Developers = ["Gianpaolo Terranova"]
     # Then we call wx.AboutBox giving it that info object
     wx.AboutBox(info)