1 |
bh |
401 |
# Copyright (C) 2001, 2002, 2003 by Intevation GmbH |
2 |
bh |
6 |
# Authors: |
3 |
|
|
# Jan-Oliver Wagner <[email protected]> |
4 |
bh |
189 |
# Bernhard Herzog <[email protected]> |
5 |
bh |
6 |
# |
6 |
|
|
# This program is free software under the GPL (>=v2) |
7 |
|
|
# Read the file COPYING coming with Thuban for details. |
8 |
|
|
|
9 |
|
|
""" |
10 |
|
|
Thuban's application object. |
11 |
|
|
""" |
12 |
|
|
|
13 |
|
|
__version__ = "$Revision$" |
14 |
|
|
|
15 |
bh |
189 |
import sys, os |
16 |
|
|
import traceback |
17 |
|
|
|
18 |
bh |
6 |
from wxPython.wx import * |
19 |
|
|
|
20 |
|
|
from Thuban.Lib.connector import Publisher |
21 |
|
|
|
22 |
jan |
374 |
from Thuban import _ |
23 |
bh |
6 |
from Thuban.Model.session import create_empty_session |
24 |
|
|
from Thuban.Model.save import save_session |
25 |
|
|
from Thuban.Model.load import load_session |
26 |
bh |
242 |
from Thuban.Model.messages import MAPS_CHANGED |
27 |
bh |
6 |
|
28 |
|
|
import view |
29 |
|
|
import tree |
30 |
bh |
215 |
import mainwindow |
31 |
bh |
6 |
|
32 |
jonathan |
503 |
from messages import SESSION_REPLACED |
33 |
bh |
6 |
|
34 |
|
|
|
35 |
|
|
|
36 |
|
|
class ThubanApplication(wxApp, Publisher): |
37 |
|
|
|
38 |
|
|
""" |
39 |
|
|
Thuban's application class. |
40 |
|
|
|
41 |
|
|
All wxWindows programs have to have an instance of an application |
42 |
|
|
class derived from wxApp. In Thuban the application class holds |
43 |
bh |
535 |
references to the main window and the session. |
44 |
bh |
6 |
""" |
45 |
|
|
|
46 |
|
|
def OnInit(self): |
47 |
bh |
401 |
self.splash = self.splash_screen() |
48 |
|
|
if self.splash is not None: |
49 |
|
|
self.splash.Show() |
50 |
bh |
189 |
self.read_startup_files() |
51 |
bh |
401 |
self.top = self.CreateMainWindow() |
52 |
|
|
self.SetTopWindow(self.top) |
53 |
|
|
if self.splash is None: |
54 |
|
|
self.ShowMainWindow() |
55 |
bh |
6 |
self.session = None |
56 |
|
|
self.create_session() |
57 |
jonathan |
518 |
return True |
58 |
bh |
6 |
|
59 |
bh |
251 |
def OnExit(self): |
60 |
|
|
"""Clean up code. |
61 |
|
|
|
62 |
|
|
Extend this in derived classes if needed. |
63 |
|
|
""" |
64 |
|
|
self.session.Destroy() |
65 |
bh |
765 |
self.session = None |
66 |
bh |
251 |
Publisher.Destroy(self) |
67 |
|
|
|
68 |
bh |
189 |
def read_startup_files(self): |
69 |
|
|
"""Read the startup files.""" |
70 |
|
|
# for now the startup file is ~/.thuban/thubanstart.py |
71 |
|
|
dir =os.path.expanduser("~/.thuban") |
72 |
|
|
if os.path.isdir(dir): |
73 |
|
|
sys.path.append(dir) |
74 |
|
|
try: |
75 |
|
|
import thubanstart |
76 |
|
|
except ImportError: |
77 |
|
|
tb = sys.exc_info()[2] |
78 |
|
|
try: |
79 |
|
|
if tb.tb_next is not None: |
80 |
|
|
# The ImportError exception was raised from |
81 |
|
|
# inside the thubanstart module. |
82 |
jan |
374 |
sys.stderr.write(_("Cannot import the thubanstart" |
83 |
bh |
671 |
" module\n")) |
84 |
bh |
189 |
traceback.print_exc(None, sys.stderr) |
85 |
|
|
else: |
86 |
|
|
# There's no thubanstart module. |
87 |
jan |
374 |
sys.stderr.write(_("No thubanstart module available\n")) |
88 |
bh |
189 |
finally: |
89 |
|
|
# make sure we delete the traceback object, |
90 |
|
|
# otherwise there's be circular references involving |
91 |
|
|
# the current stack frame |
92 |
|
|
del tb |
93 |
|
|
except: |
94 |
jan |
374 |
sys.stderr.write(_("Cannot import the thubanstart module\n")) |
95 |
bh |
189 |
traceback.print_exc(None, sys.stderr) |
96 |
|
|
else: |
97 |
|
|
# There's no .thuban directory |
98 |
jan |
374 |
sys.stderr.write(_("No ~/.thuban directory\n")) |
99 |
bh |
189 |
|
100 |
bh |
401 |
def splash_screen(self): |
101 |
|
|
"""Create and return a splash screen. |
102 |
|
|
|
103 |
|
|
This method is called by OnInit to determine whether the |
104 |
|
|
application should have a splashscreen. If the application |
105 |
|
|
should display a splash screen override this method in a derived |
106 |
|
|
class and have it create and return the wxSplashScreen instance. |
107 |
|
|
The implementation of this method in the derived class should |
108 |
|
|
also arranged for ShowMainWindow to be called. |
109 |
|
|
|
110 |
|
|
The default implementation simply returns None so that no splash |
111 |
|
|
screen is shown and ShowMainWindow will be called automatically. |
112 |
|
|
""" |
113 |
|
|
return None |
114 |
|
|
|
115 |
|
|
def ShowMainWindow(self): |
116 |
|
|
"""Show the main window |
117 |
|
|
|
118 |
|
|
Normally this method is automatically called by OnInit to show |
119 |
|
|
the main window. However, if the splash_screen method has |
120 |
|
|
returned a splashscreen it is expected that the derived class |
121 |
|
|
also arranges for ShowMainWindow to be called at the appropriate |
122 |
|
|
time. |
123 |
|
|
""" |
124 |
jonathan |
518 |
self.top.Show(True) |
125 |
bh |
535 |
|
126 |
bh |
235 |
def CreateMainWindow(self): |
127 |
|
|
"""Create and return the main window for the application. |
128 |
|
|
|
129 |
|
|
Override this in subclasses to instantiate the Thuban mainwindow |
130 |
|
|
with different parameters or to use a different class for the |
131 |
|
|
main window. |
132 |
|
|
""" |
133 |
jan |
374 |
msg = (_("This is the wxPython-based Graphical User Interface" |
134 |
|
|
" for exploring geographic data")) |
135 |
bh |
535 |
return mainwindow.MainWindow(NULL, -1, "Thuban", self, None, |
136 |
bh |
235 |
initial_message = msg) |
137 |
|
|
|
138 |
bh |
219 |
def Session(self): |
139 |
|
|
"""Return the application's session object""" |
140 |
|
|
return self.session |
141 |
|
|
|
142 |
bh |
6 |
def SetSession(self, session): |
143 |
bh |
219 |
"""Make session the new session. |
144 |
|
|
|
145 |
jonathan |
503 |
Issue SESSION_REPLACED after self.session has become the new |
146 |
bh |
242 |
session. After the session has been assigned call |
147 |
|
|
self.subscribe_session() with the new session and |
148 |
|
|
self.unsubscribe_session with the old one. |
149 |
bh |
219 |
""" |
150 |
bh |
6 |
oldsession = self.session |
151 |
|
|
self.session = session |
152 |
bh |
242 |
self.subscribe_session(self.session) |
153 |
jonathan |
503 |
self.issue(SESSION_REPLACED) |
154 |
bh |
242 |
self.maps_changed() |
155 |
bh |
6 |
if oldsession is not None: |
156 |
bh |
242 |
self.unsubscribe_session(oldsession) |
157 |
bh |
6 |
oldsession.Destroy() |
158 |
|
|
|
159 |
bh |
242 |
def subscribe_session(self, session): |
160 |
|
|
"""Subscribe to some of the sessions channels. |
161 |
|
|
|
162 |
|
|
Extend this method in derived classes if you need additional |
163 |
|
|
channels. |
164 |
|
|
""" |
165 |
|
|
session.Subscribe(MAPS_CHANGED, self.maps_changed) |
166 |
|
|
|
167 |
|
|
def unsubscribe_session(self, session): |
168 |
|
|
"""Unsubscribe from the sessions channels. |
169 |
|
|
|
170 |
|
|
Extend this method in derived classes if you subscribed to |
171 |
|
|
additional channels in subscribe_session(). |
172 |
|
|
""" |
173 |
|
|
session.Unsubscribe(MAPS_CHANGED, self.maps_changed) |
174 |
|
|
|
175 |
bh |
6 |
def create_session(self): |
176 |
bh |
242 |
"""Create a default session. |
177 |
|
|
|
178 |
|
|
Override this method in derived classes to instantiate the |
179 |
|
|
session differently or to use a different session class. Don't |
180 |
|
|
subscribe to channels here yet. Do that in the |
181 |
|
|
subscribe_session() method. |
182 |
|
|
""" |
183 |
bh |
6 |
self.SetSession(create_empty_session()) |
184 |
|
|
|
185 |
|
|
def OpenSession(self, filename): |
186 |
bh |
592 |
"""Open the session in the file named filename""" |
187 |
|
|
# Make sure we deal with an absolute pathname. Otherwise we can |
188 |
|
|
# get problems when saving because the saving code expects an |
189 |
|
|
# absolute directory name |
190 |
|
|
filename = os.path.abspath(filename) |
191 |
bh |
6 |
session = load_session(filename) |
192 |
|
|
session.SetFilename(filename) |
193 |
|
|
session.UnsetModified() |
194 |
|
|
self.SetSession(session) |
195 |
|
|
|
196 |
|
|
def SaveSession(self): |
197 |
|
|
save_session(self.session, self.session.filename) |
198 |
|
|
|
199 |
bh |
242 |
def maps_changed(self, *args): |
200 |
bh |
6 |
if self.session.HasMaps(): |
201 |
|
|
self.top.SetMap(self.session.Maps()[0]) |
202 |
|
|
else: |
203 |
|
|
self.top.SetMap(None) |