File: about.py

package info (click to toggle)
pythoncard 0.8.2-5
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 9,364 kB
  • ctags: 6,988
  • sloc: python: 56,804; makefile: 60; sh: 22
file content (43 lines) | stat: -rw-r--r-- 1,238 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

"""
__version__ = "$Revision: 1.6 $"
__date__ = "$Date: 2004/10/03 18:53:22 $"
"""

import os, sys
import wx
import __version__
import dialog

def aboutPythonCardDialog(parent=None):
    """Displays a ScrolledMessageDialog containing info about PythonCard and version numbers"""

    aboutTitle = "About PythonCard"
    txt = """PythonCard
        
PythonCard is a GUI construction kit for building cross-platform desktop applications on Windows, Mac OS X, and Linux, using the Python language.

"""
    txt += "PythonCard version: %s\n" % __version__.VERSION_STRING
    txt += "wxPython version: %s\n" % wx.VERSION_STRING
    txt += "Python version: %s\n" % sys.version
    txt += "Platform: %s\n" % os.sys.platform
    txt += """
        
For more information see the docs directory included with this distribution.

Latest release files:
http://sourceforge.net/project/showfiles.php?group_id=19015

PythonCard home page
http://pythoncard.sourceforge.net/

SourceForge summary page
http://sourceforge.net/projects/pythoncard/

Mailing list
http://lists.sourceforge.net/lists/listinfo/pythoncard-users

PythonCard requires Python 2.3 or later and wxPython 2.5.2.8 or later.
"""
    dialog.scrolledMessageDialog(parent, txt, aboutTitle)