/[thuban]/trunk/thuban/Thuban/UI/about.py
ViewVC logotype

Diff of /trunk/thuban/Thuban/UI/about.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1323 by jonathan, Mon Jun 30 12:02:01 2003 UTC revision 2736 by bernhard, Tue Mar 13 22:21:51 2007 UTC
# Line 1  Line 1 
1  # Copyright (c) 2001, 2002, 2003 by Intevation GmbH  # Copyright (c) 2001-2007 by Intevation GmbH
2    # vim: set fileencoding=ISO-8859-15 :
3  # Authors:  # Authors:
4  # Jonathan Coles <[email protected]>  # Jonathan Coles <[email protected]>
5    # Bernhard Reiter <[email protected]>
6    # Silke Reimer <[email protected]>
7  #  #
8  # This program is free software under the GPL (>=v2)  # This program is free software under the GPL (>=v2)
9  # Read the file COPYING coming with Thuban for details.  # Read the file COPYING coming with Thuban for details.
10    
11  from wxPython.wx import *  """The About Box"""
12    
13  from Thuban import _  __version__ = "$Revision$"
14    # $Source$
15    # $Id$
16    
17    import wx
18    
19    from Thuban import _, internal_from_unicode, get_internal_encoding
20  from Thuban.version import versions  from Thuban.version import versions
21    from Thuban.Model.resource import gdal_support_status
22    
23    from Thuban.UI.extensionregistry import ext_registry
24    
25  class About(wxDialog):  class About(wx.Dialog):
26    
27      def __init__(self, parent):      def __init__(self, parent):
28          wxDialog.__init__(self, parent, -1, _("About Thuban"),          wx.Dialog.__init__(self, parent, -1, _("About Thuban"),
29              style = wxDEFAULT_DIALOG_STYLE              style = wx.DEFAULT_DIALOG_STYLE
30                    | wxSYSTEM_MENU                    | wx.SYSTEM_MENU
31                    | wxMINIMIZE_BOX                    | wx.MINIMIZE_BOX
32                    | wxMAXIMIZE_BOX                    | wx.MAXIMIZE_BOX
33                    | wxRESIZE_BORDER,                    | wx.RESIZE_BORDER,
34              size = (400, 250))              size = (400, 250))
35    
36          text = _(#"Build Date: %s\n"          # Note: The source code is in ASCII, so we escape some
37              "%s\n\n"          # characters to get byte strings in latin1.
38              "Currently using:\n"          maintainers = [ 'Bernhard Reiter (2006 - current)',
39              "\t%s\n"                          'Bernhard Herzog (2001 - 2005)' ]
40              "\t%s\n"          lead_developer = 'Bernhard Herzog (2001 - 2005)'
41              "\t%s\n"          developers = [ 'Jonathan Coles (2003, 2005)',
42              "\t%s\n"                         'Frank Koormann (2002 - )',
43              "\t%s\n\n"                         internal_from_unicode(u'Martin M\xfcller (2003)'),
44              "Compiled against:\n"                         'Didrik Pinte (2006 - )',
45              "\t%s\n"                         'Bernhard Reiter (2004 - )',
46              "\t%s\n\n"                         'Jan-Oliver Wagner (2002 - 2005)' ]
47              "Lead Developer:\n"          translators = [ ( _('French'), 'Daniel Calvelo Aros' ),
48              "\tBernhard Herzog\n\n"                          ( _('German'),
49              "Developers:\n"                            internal_from_unicode(u'Bj\xf6rn Broscheit')),
50              "\tJonathan Coles\n"                          ( _('Hungarian'), 'Norbert Solymosi'),
51              "\tFrank Koormann\n"                          ( _('Italian'), 'Maurizio Napolitano'),
52              "\tBernhard Reiter\n"                          ( _('Portuguese (Brazilian)'), 'Eduardo Patto Kanegae'),
53              "\tJan-Oliver Wagner\n\n"                          ( _('Russian'), 'Alex Shevlakov'),
54              "Contributors:\n"                          ( _('Spanish'), 'Daniel Calvelo Aros') ]
55              "\tJonathan Byron\n"          other_contributors = [ 'Jonathan Byron (2004)',
56              "\tMartin M�ller\n\n"                                 'Ole Rahn (2004)',
57              "Questions and comments can be sent to the following addresses:\n"                                 'Silke Reimer (2003, 2004)',
58              "\tThuban developers:\n\t\t<[email protected]>\n"                                 'Martin "Joey" Schulze (2004, 2005)' ]
59              "\tThuban mailing list:\n\t\t<[email protected]>"          dyn_modules = [ ('wxPython', versions['wxPython']),
60              % ("Thuban %s"      % versions['thuban-long'],                          ('Python',   versions['python']),
61                 "wxPython %s"    % versions['wxPython'],                          ('PySQLite', versions['pysqlite']),
62                 "Python %s"      % versions['python'],                          ('SQLite',  versions['sqlite']),
63                 "PySQLite %s"    % versions['pysqlite'],                          ('GDAL', versions.get('gdal', _('- not available'))),
64                 "SQLite %s"      % versions['sqlite'],                          ('psycopg', versions.get('psycopg',
65                 "GDAL %s"        % versions.get('gdal', "- not available"),                                                   _('- not available')))]
66                 "GTK %s"         % versions.get('gtk', "- not available"),          direct_modules = [ \
67                 "proj %s"        % versions['proj']))                  ('GTK',      versions.get('gtk', _('- not available'))),
68                    ('proj',     versions['proj']) ]
69    
70            text = 'Thuban %s\n\n' % versions['thuban-long']
71    
72            text += _('Currently using:\n')
73    
74            for name, version in dyn_modules:
75                text+= '\t%s %s\n' % (name, version)
76            text += '\n'
77    
78            text += _('\tInternal encoding: %s\n') % get_internal_encoding()
79            text += '\n'
80    
81            if gdal_support_status:
82                text += gdal_support_status + "\n\n"
83    
84            text += _('Compiled for:\n')
85    
86            for name, version in direct_modules:
87                text+= '\t%s %s\n' % (name, version)
88            text += '\n'
89    
90            text += _('Extensions:\n')
91            if ext_registry:
92                for ext in ext_registry:
93                    text += '\t%s %s\n' % (ext.name, ext.version)
94            else:
95                text += _('\tNone registered.\n')
96            text += '\n'
97    
98            text += _('Maintainers:\n')
99            for name in maintainers:
100                text += '\t%s\n' % name
101            text += '\n'
102    
103            text += _('Lead Developer:\n')
104            text += '\t%s\n\n' % lead_developer
105    
106            text += _('Developers:\n')
107            for name in developers:
108                text += '\t%s\n' % name
109            text += '\n'
110    
111            text += _('Translators:\n')
112            for lang, name in translators:
113                text += '\t%s: %s\n' % (lang, name)
114            text += '\n'
115    
116            text += _('Other Contributors:\n')
117            for name in other_contributors:
118                text += '\t%s\n' % name
119            text += '\n'
120    
121            text += \
122                _("Questions and comments can be sent to the following addresses:\n"
123                "\tGeneral list (public):\n\t\t<[email protected]>\n"
124                "\tDevelopers list (public):\n\t\t<[email protected]>\n"
125                "\tThuban team at Intevation:\n\t\t<[email protected]>\n"
126                )
127    
128            text += '\n\n'
129    
130            text += _("Details on the registered extensions:\n\n")
131    
132            if ext_registry:
133                for ext in ext_registry:
134                    text += '%s %s:\n' % (ext.name, ext.version)
135                    text += _('Copyright %s\n') % ext.copyright
136                    text += _('Authors:\n')
137                    for author in ext.authors:
138                        text+= '\t%s\n' % author
139                    text += ext.desc
140                    text += '\n'
141                    text += 'Status: %s' % ext.status
142                    text += '\n\n'
143            else:
144                text += _('\tNone registered.\n')
145    
146          self.text = text          self.text = text
147    
148          text_title = wxStaticText(self, -1,          text_title = wx.StaticText(self, -1,
149              "Thuban is a program for exploring geographic data.\n\n"              _("Thuban is a program for exploring geographic data.\n\n") +
150              "Copyright 2001-2003 Intevation GmbH.\n"              "Copyright 2001-2007 Intevation GmbH.\n" +
151              "Thuban is licensed under the GNU GPL",              _("Thuban is licensed under the GNU GPL"),
152                                    style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE)                                    style=wx.ST_NO_AUTORESIZE|wx.ALIGN_CENTRE)
153    
154          textBox = wxTextCtrl(self, -1, text,          textBox = wx.TextCtrl(self, -1, text,
155              style=wxTE_READONLY|wxTE_MULTILINE|wxTE_LINEWRAP)              style=wx.TE_READONLY|wx.TE_MULTILINE|wx.TE_LINEWRAP)
156          w, h = (300, 150)          w, h = (300, 150)
157          textBox.SetSizeHints(w, h)          textBox.SetSizeHints(w, h)
158          textBox.SetSize((w, h))          textBox.SetSize((w, h))
159    
160          button_close = wxButton(self, wxID_CANCEL, _("Close"))          button_close = wx.Button(self, wx.ID_CANCEL, _("Close"))
161          button_close.SetDefault()          button_close.SetDefault()
162    
163          sizer = wxBoxSizer(wxVERTICAL)          sizer = wx.BoxSizer(wx.VERTICAL)
164          sizer.Add(text_title, 0, wxALL|wxEXPAND|wxADJUST_MINSIZE, 10)          sizer.Add(text_title, 0, wx.ALL|wx.EXPAND|wx.ADJUST_MINSIZE, 10)
165          sizer.Add(textBox, 1, wxALL|wxEXPAND, 10)          sizer.Add(textBox, 1, wx.ALL|wx.EXPAND, 10)
166          sizer.Add(button_close, 0, wxALL|wxALIGN_RIGHT, 10)          sizer.Add(button_close, 0, wx.ALL|wx.ALIGN_RIGHT, 10)
167    
168          self.SetAutoLayout(True)          self.SetAutoLayout(True)
169          self.SetSizer(sizer)          self.SetSizer(sizer)
# Line 82  class About(wxDialog): Line 171  class About(wxDialog):
171          sizer.SetSizeHints(self)          sizer.SetSizeHints(self)
172          self.Layout()          self.Layout()
173    
174          EVT_BUTTON(self, wxID_CANCEL, self.OnCancel)          self.Bind(wx.EVT_BUTTON, self.OnCancel, id=wx.ID_CANCEL)
175    
176      def OnCancel(self, event):      def OnCancel(self, event):
177          self.EndModal(wxID_CANCEL)          self.EndModal(wx.ID_CANCEL)
   
   

Legend:
Removed from v.1323  
changed lines
  Added in v.2736

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26