1 |
# Copyright (c) 2001, 2002, 2003 by Intevation GmbH |
# Copyright (c) 2001-2005 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Jonathan Coles <[email protected]> |
# Jonathan Coles <[email protected]> |
4 |
|
# Bernhard Reiter <[email protected]> |
5 |
|
# Silke Reimer <[email protected]> |
6 |
# |
# |
7 |
# This program is free software under the GPL (>=v2) |
# This program is free software under the GPL (>=v2) |
8 |
# Read the file COPYING coming with Thuban for details. |
# Read the file COPYING coming with Thuban for details. |
9 |
|
|
10 |
from wxPython.wx import * |
"""The About Box""" |
|
#from wxPython.wx import __version__ as wxPython_version |
|
|
|
|
|
from Thuban import _ |
|
|
#import Thuban.version |
|
|
from Thuban.version import versions |
|
11 |
|
|
12 |
#from sqlite import version as pysqlite_version |
__version__ = "$Revision$" |
13 |
#from _sqlite import sqlite_version |
# $Source$ |
14 |
|
# $Id$ |
15 |
|
|
16 |
#from wxproj import get_proj_version, get_gtk_version |
from wxPython.wx import * |
17 |
|
|
18 |
#from Thuban.Model.resource import has_gdal_support |
from Thuban import _, internal_from_unicode, get_internal_encoding |
19 |
|
from Thuban.version import versions |
20 |
|
from Thuban.Model.resource import gdal_support_status |
21 |
|
|
22 |
#if has_gdal_support(): |
from Thuban.UI.extensionregistry import ext_registry |
|
# from gdalwarp import get_gdal_version |
|
23 |
|
|
24 |
class About(wxDialog): |
class About(wxDialog): |
25 |
|
|
32 |
| wxRESIZE_BORDER, |
| wxRESIZE_BORDER, |
33 |
size = (400, 250)) |
size = (400, 250)) |
34 |
|
|
35 |
#proj_ver = get_proj_version() |
# Note: The source code is in ASCII, so we escape some |
36 |
#if proj_ver: |
# characters to get byte strings in latin1. |
37 |
#proj_ver = "%d.%d.%d" % proj_ver |
lead_developer = 'Bernhard Herzog' |
38 |
#else: |
developers = [ 'Jonathan Coles', |
39 |
#proj_ver = " - not available" |
'Frank Koormann', |
40 |
|
internal_from_unicode(u'Martin M\xfcller'), |
41 |
#gtk_ver = get_gtk_version() |
'Bernhard Reiter', |
42 |
#if gtk_ver: |
'Jan-Oliver Wagner' ] |
43 |
#gtk_ver = "%d.%d.%d" % gtk_ver |
translators = [ ( _('French'), 'Daniel Calvelo Aros' ), |
44 |
#else: |
( _('German'), |
45 |
#gtk_ver = " - not available" |
internal_from_unicode(u'Bj\xf6rn Broscheit')), |
46 |
|
( _('Hungarian'), 'Norbert Solymosi'), |
47 |
text = _(#"Build Date: %s\n" |
( _('Italian'), 'Maurizio Napolitano'), |
48 |
"%s\n\n" |
( _('Portuguese (Brazilian)'), 'Eduardo Patto Kanegae'), |
49 |
"Currently using:\n" |
( _('Russian'), 'Alex Shevlakov'), |
50 |
"\t%s\n" |
( _('Spanish'), 'Daniel Calvelo Aros') ] |
51 |
"\t%s\n" |
other_contributors = [ 'Jonathan Byron', |
52 |
"\t%s\n" |
'Didrik Pinte', |
53 |
"\t%s\n" |
'Ole Rahn', |
54 |
"\t%s\n\n" |
'Silke Reimer' ] |
55 |
"Compiled against:\n" |
dyn_modules = [ ('wxPython', versions['wxPython']), |
56 |
"\t%s\n" |
('Python', versions['python']), |
57 |
"\t%s\n\n" |
('PySQLite', versions['pysqlite']), |
58 |
"Lead Developer:\n" |
('SQLite', versions['sqlite']), |
59 |
"\tBernhard Herzog <[email protected]>\n\n" |
('GDAL', versions.get('gdal', _('- not available'))), |
60 |
"Developers:\n" |
('psycopg', versions.get('psycopg', |
61 |
"\tJonathan Coles\n" |
_('- not available')))] |
62 |
"\tFrank Koormann\n" |
direct_modules = [ \ |
63 |
"\tBernhard Reiter\n" |
('GTK', versions.get('gtk', _('- not available'))), |
64 |
"\tJan-Oliver Wagner\n\n" |
('proj', versions['proj']) ] |
65 |
"Contributors:\n" |
|
66 |
"\tJonathan Byron\n" |
text = 'Thuban %s\n\n' % versions['thuban-long'] |
67 |
"\tMartin M�ller" |
|
68 |
% ("Thuban %s" % versions['thuban-long'], |
text += _('Currently using:\n') |
69 |
"wxPython %s" % versions['wxPython'], |
|
70 |
"Python %s" % versions['python'], |
for name, version in dyn_modules: |
71 |
"PySQLite %s" % versions['pysqlite'], |
text+= '\t%s %s\n' % (name, version) |
72 |
"SQLite %s" % versions['sqlite'], |
text += '\n' |
73 |
"GDAL %s" % versions.get('gdal', " - not available"), |
|
74 |
"GTK %s" % versions.get('gtk', " - not available"), |
text += _('\tInternal encoding: %s\n') % get_internal_encoding() |
75 |
"proj %s" % versions['proj'])) |
text += '\n' |
76 |
|
|
77 |
|
if gdal_support_status: |
78 |
|
text += gdal_support_status + "\n\n" |
79 |
|
|
80 |
|
text += _('Compiled for:\n') |
81 |
|
|
82 |
|
for name, version in direct_modules: |
83 |
|
text+= '\t%s %s\n' % (name, version) |
84 |
|
text += '\n' |
85 |
|
|
86 |
|
text += _('Extensions:\n') |
87 |
|
if ext_registry: |
88 |
|
for ext in ext_registry: |
89 |
|
text += '\t%s %s\n' % (ext.name, ext.version) |
90 |
|
else: |
91 |
|
text += _('\tNone registered.\n') |
92 |
|
text += '\n' |
93 |
|
|
94 |
|
text += _('Lead Developer:\n') |
95 |
|
text += '\t%s\n\n' % lead_developer |
96 |
|
|
97 |
|
text += _('Developers:\n') |
98 |
|
for name in developers: |
99 |
|
text += '\t%s\n' % name |
100 |
|
text += '\n' |
101 |
|
|
102 |
|
text += _('Translators:\n') |
103 |
|
for lang, name in translators: |
104 |
|
text += '\t%s: %s\n' % (lang, name) |
105 |
|
text += '\n' |
106 |
|
|
107 |
|
text += _('Other Contributors:\n') |
108 |
|
for name in other_contributors: |
109 |
|
text += '\t%s\n' % name |
110 |
|
text += '\n' |
111 |
|
|
112 |
|
text += \ |
113 |
|
_("Questions and comments can be sent to the following addresses:\n" |
114 |
|
"\tGeneral list (public):\n\t\t<[email protected]>\n" |
115 |
|
"\tDevelopers list (public):\n\t\t<[email protected]>\n" |
116 |
|
"\tThuban team at Intevation:\n\t\t<[email protected]>\n" |
117 |
|
) |
118 |
|
|
119 |
|
text += '\n\n' |
120 |
|
|
121 |
|
text += _("Details on the registered extensions:\n\n") |
122 |
|
|
123 |
|
if ext_registry: |
124 |
|
for ext in ext_registry: |
125 |
|
text += '%s %s:\n' % (ext.name, ext.version) |
126 |
|
text += _('Copyright %s\n') % ext.copyright |
127 |
|
text += _('Authors:\n') |
128 |
|
for author in ext.authors: |
129 |
|
text+= '\t%s\n' % author |
130 |
|
text += ext.desc |
131 |
|
text += '\n' |
132 |
|
text += 'Status: %s' % ext.status |
133 |
|
text += '\n\n' |
134 |
|
else: |
135 |
|
text += _('\tNone registered.\n') |
136 |
|
|
137 |
self.text = text |
self.text = text |
138 |
|
|
139 |
text_title = wxStaticText(self, -1, |
text_title = wxStaticText(self, -1, |
140 |
"Thuban is a program for exploring geographic data.\n\n" |
_("Thuban is a program for exploring geographic data.\n\n") + |
141 |
"Copyright 2001-2003 Intevation GmbH.\n" |
"Copyright 2001-2006 Intevation GmbH.\n" + |
142 |
"Thuban is licensed under the GNU GPL", |
_("Thuban is licensed under the GNU GPL"), |
143 |
style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE) |
style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE) |
144 |
|
|
145 |
textBox = wxTextCtrl(self, -1, text, |
textBox = wxTextCtrl(self, -1, text, |
166 |
|
|
167 |
def OnCancel(self, event): |
def OnCancel(self, event): |
168 |
self.EndModal(wxID_CANCEL) |
self.EndModal(wxID_CANCEL) |
|
|
|
|
|
|