/[thuban]/branches/WIP-pyshapelib-bramz/ChangeLog
ViewVC logotype

Annotation of /branches/WIP-pyshapelib-bramz/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1051 - (hide annotations)
Tue May 27 09:32:07 2003 UTC (21 years, 9 months ago) by frank
Original Path: trunk/thuban/ChangeLog
File size: 158800 byte(s)
Fix legend tree display problems under Win32

1 frank 1051 2003-05-27 Frank Koormann <[email protected]>
2    
3     Fix legend tree display problems under Win32
4    
5     * Thuban/UI/legend.py: BMP_SIZE_W = 15
6     (LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title.
7     (LegendTree.__FillTreeLayer): Explicitely set SelectedImage.
8    
9     * Resources/Bitmaps/legend_icon_map.xpm: New icon for legend.
10    
11 jan 1048 2003-05-27 Jan-Oliver Wagner <[email protected]>
12    
13     * Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter
14     'after' now allows to insert separators almost anywhere in the menu.
15    
16 frank 1046 2003-05-27 Frank Koormann <[email protected]>
17    
18     * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
19     "S" of selection box label to hint on hot key (Alt-S). Works under
20     Win32 but is ignored under GTK.
21    
22     2003-05-26 Frank Koormann <[email protected]>
23    
24     * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
25     Center Choices.
26    
27 bh 1038 2003-05-26 Bernhard Herzog <[email protected]>
28    
29 bh 1044 Remove the Precision methods again. They're too DBF specific to be
30     part of the table interface and they're only used in table_to_dbf
31     anyway.
32    
33     * Thuban/Model/transientdb.py (TransientTableBase.Width):Use a
34     fixed precision of 12 for doubles.
35     (TransientTableBase.Precision): Removed
36     (AutoTransientTable.Width): Delegate to self.table.
37    
38     * Thuban/Model/table.py (DBFTable.Precision)
39     (MemoryTable.Precision): Removed.
40     (MemoryTable.Width): Use a fixed precision of 12 for doubles.
41     (table_to_dbf): Use a fixed precision of 12 for floats unless the
42     column object specifies something else.
43    
44     * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New.
45     test for table_to_dbf
46    
47     2003-05-26 Bernhard Herzog <[email protected]>
48    
49     * test/test_transientdb.py
50     (TestTransientTable.run_iceland_political_tests): Fix a comment.
51    
52     2003-05-26 Bernhard Herzog <[email protected]>
53    
54 bh 1038 * Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real
55     implementation. Mark parts of the file format strings for
56     localization.
57    
58     * Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf
59     file and add the table to the tables managed by the session
60    
61 bh 1040 * test/test_session.py (TestSessionSimple.test_open_table_file):
62     New. test case for OpenTableFile
63    
64 jan 1033 2003-05-26 Jan-Oliver Wagner <[email protected]>
65    
66 jan 1035 * Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py,
67     Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py,
68     Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py:
69     Replace the true/false of wxWindows by True/False of Python 2.2.1.
70    
71     2003-05-26 Jan-Oliver Wagner <[email protected]>
72    
73 bh 1038 * Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is
74     already a selection present, update the grid accordingly.
75 jan 1033
76     * Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog
77     resizeable and increase its initial size.
78    
79 frank 1030 2003-05-26 Frank Koormann <[email protected]>
80    
81     Table export functionality
82    
83     * Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width):
84     Return width (in characters) for a column.
85     (DBFTable.Precision, MemoryTable.Precision): Return decimal precision.
86     (table_to_dbf): Write table to dbf file.
87     (table_to_csv): Write table to csv file.
88    
89     * Thuban/Model/transientdb.py (TransientTableBase.Width,
90     TransientTableBase.Precision): Return column width and precision.
91    
92     * Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf
93     or table_to_csv depending on file selection.
94    
95     * test/test_dbf_table.py:
96     Test table_to_dbf (extension of former part of test).
97    
98     * test/test_csv_table.py:
99     Test table_to_csv.
100    
101 jan 1021 2003-05-23 Jan-Oliver Wagner <[email protected]>
102    
103 jan 1024 * Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings.
104     Use QueryTableFrame instead of TableFrame.
105 jan 1021
106 jan 1024 * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the
107     table window with 'Layer Table:' instead of 'Table:'.
108    
109     2003-05-23 Jan-Oliver Wagner <[email protected]>
110    
111     Give all tables a title via mix-in TitledObject.LayerShowTable
112    
113 jan 1021 * Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue'
114     only if it exists.
115    
116     * Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject
117     and call its init-method with a default title. Remove Title() method.
118    
119     * Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable,
120     AutoTransientTable): mix-in TitledObject and call its init-method with
121     a default title. Remove Title() method.
122    
123 bh 1017 2003-05-23 Bernhard Herzog <[email protected]>
124    
125     * Thuban/Model/session.py (Session.AddShapeStore): Define
126     AddShapeStore analogously to AddTable.
127    
128     * test/test_session.py (TestSessionSimple.test_add_shapestore):
129     New. Test for AddShapeStore
130    
131 jan 1015 2003-05-23 Jan-Oliver Wagner <[email protected]>
132    
133     Introducing QueryTableFrame and a very coarse ShowTable implementation.
134    
135     * Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the
136     class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame.
137     The latter implements the selection GUI without dependency on a layer.
138     LayerTableFrame now is derived from QueryTableFrame and connects
139     to a layer.
140    
141     * Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse
142     implementation that still needs work.
143    
144     * Thuban/Model/layer.py (Layer.TreeInfo): Added filename.
145    
146 frank 1011 2003-05-22 Frank Koormann <[email protected]>
147    
148     * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
149     Added "outer_join = False" as optional parameter.
150     (TransientJoinedTable.create): If outer join is true, perform a
151     "LEFT OUTER JOIN" instead of "JOIN", which preserves all records of
152     the left table. Records not matching are filled with 0 / None.
153    
154     * Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join.
155     (JoinDialog.OnJoin): Consider outer join check box.
156    
157 bh 1006 2003-05-22 Bernhard Herzog <[email protected]>
158    
159 bh 1008 * Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a
160     somewhat safer way. Storing the traceback in a local variable can
161     lead to memory leaks
162    
163     2003-05-22 Bernhard Herzog <[email protected]>
164    
165 bh 1006 * Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call
166     the wxMessageDialog's Destroy() method.
167    
168 frank 1004 2003-05-22 Frank Koormann <[email protected]>
169    
170     * Thuban/UI/join.py (JoinDialog.__init__): Make use of
171     TransientTable.Title()
172    
173     2003-05-22 Frank Koormann <[email protected]>
174    
175     Join Dialog, initial version.
176    
177     * Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print.
178    
179     * Thuban/UI/join.py (JoinDialog): Functional implementation of
180     former framework. Renamed Table1/Table2 to LeftTable/RightTable
181     in all occurences.
182    
183     * Thuban/Model/transientdb.py (TransientJoinedTable.__doc__):
184     Typo fixed.
185    
186 bh 995 2003-05-22 Bernhard Herzog <[email protected]>
187    
188 bh 999 Give the tables titles so that the GUI can display more meaningful
189     names. For now the titles are fixed but depend on e.g. filenames
190     or the titles of the joined tables.
191    
192     * Thuban/Model/transientdb.py (TransientTable.Title)
193     (TransientJoinedTable.Title, AutoTransientTable.Title): New.
194    
195     * Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New.
196    
197     * test/test_transientdb.py
198     (TestTransientTable.test_auto_transient_table_title): New. Test
199     for the Title method
200     (TestTransientTable.test_transient_joined_table)
201     (TestTransientTable.test_transient_table): Add test for the Title
202     methods
203    
204     * test/test_memory_table.py (TestMemoryTable.test_title): New.
205     Test for the Title method
206    
207     * test/test_dbf_table.py (TestDBFTable.test_title): New. Test for
208     the Title method
209    
210     2003-05-22 Bernhard Herzog <[email protected]>
211    
212 bh 997 * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
213     Provide a better way to destroy the layers
214     (TestLayer.test_base_layer, TestLayer.test_arc_layer)
215     (TestLayer.test_point_layer, TestLayer.test_empty_layer)
216     (TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use
217     the new way to destroy the layers.
218     (TestLayer.test_derived_store): New. Test for using a layer with a
219     DerivedShapeStore
220    
221     * Thuban/Model/layer.py (Layer.SetShapeStore): Only set the
222     filename if the shape store actually has one.
223    
224     2003-05-22 Bernhard Herzog <[email protected]>
225    
226 bh 995 * Thuban/Model/table.py (DBFTable.FileName): New. Accessor method
227     for the filename
228    
229     * test/test_dbf_table.py (TestDBFTable.test_filename): New. Test
230     for the FileName method
231     (TestDBFTableWriting.test_write): Fix spelling of filename
232    
233 tkoester 993 2003-05-22 Thomas Koester <[email protected]>
234    
235     * Thuban/Model/range.py, test/test_range.py: Brought over new Range
236     from SciParam that now really is immutable.
237    
238 frank 992 2003-05-22 Frank Koormann <[email protected]>
239    
240     Layer Top/Bottom placement added to legend.
241    
242     * Thuban/UI/legend.py
243     (LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods
244     bound to tool events.
245     (LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom):
246     New, methods binding the event methods with the map methods.
247    
248     * Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place
249     layer at top/bottom of layer stack.
250    
251     * Resources/Bitmaps/top_layer.xpm: New button icon.
252    
253     * Resources/Bitmaps/bottom_layer.xpm: New button icon.
254    
255 bh 988 2003-05-22 Bernhard Herzog <[email protected]>
256    
257     * Thuban/Model/session.py (Session.RemoveTable): New method to
258     remove tables
259    
260     * test/test_session.py (TestSessionSimple.test_remove_table): New.
261     Test for RemoveTable
262    
263 tkoester 986 2003-05-22 Thomas Koester <[email protected]>
264    
265     * Thuban/Model/classgen.py: Added short module doc string and CVS id.
266     (ClassGenerator.GenUniformDistribution): Use new Range __init__, too.
267    
268 bh 983 2003-05-22 Bernhard Herzog <[email protected]>
269    
270 bh 985 Implement a way to discover dependencies between tables and
271     shapestores.
272    
273     * Thuban/Model/transientdb.py (TransientTableBase.Dependencies)
274     (TransientJoinedTable.Dependencies)
275     (AutoTransientTable.SimpleQuery): New. Implement the dependencies
276     interface
277     (TransientJoinedTable.__init__): Keep tack of the original table
278     objects in addition to the corresponding transient tables.
279    
280     * Thuban/Model/table.py (DBFTable.Dependencies)
281     (MemoryTable.Dependencies): New. Implement the dependencies
282     interface
283    
284     * Thuban/Model/data.py (ShapeTable): New. Helper class for
285     ShapefileStore
286     (ShapefileStore.__init__): Use ShapeTable instead of
287     AutoTransientTable
288     (ShapefileStore.Table, ShapefileStore.Shapefile): Add doc-strings
289     (ShapefileStore.FileName, ShapefileStore.FileType): New. Accessor
290     methods for filename and type
291     (ShapefileStore.Dependencies): New. Implement the dependencies
292     interface
293     (DerivedShapeStore): New class to replace SimpleStore. The main
294     difference to SimpleStore is that it depends not on a shapefile
295     but another shapestore which expresses the dependencies a bit
296     better
297     (SimpleStore.__init__): Add deprecation warning.
298    
299     * test/test_dbf_table.py (TestDBFTable.test_dependencies): New.
300     Test for the Dependencies method.
301    
302     * test/test_memory_table.py (TestMemoryTable.test_dependencies):
303     New. Test for the Dependencies method.
304    
305     * test/test_transientdb.py
306     (TestTransientTable.test_auto_transient_table_dependencies): New.
307     Test for the Dependencies method.
308     (TestTransientTable.test_transient_joined_table): Add test for the
309     Dependencies method.
310    
311     * test/test_session.py (TestSessionSimple.setUp)
312     (TestSessionSimple.tearDown): New. Implement a better way to
313     destroy the sessions.
314     (TestSessionSimple.test_initial_state)
315     (TestSessionSimple.test_add_table): Bind session to self.session
316     so that it's destroyed by tearDown
317     (TestSessionSimple.test_open_shapefile): New. Test for
318     OpenShapefile and the object it returns
319    
320     2003-05-22 Bernhard Herzog <[email protected]>
321    
322 bh 983 * Thuban/Model/session.py (Session.AddTable): New method to
323     register tables with the session.
324     (Session.Tables): Return the tables registered with AddTable too.
325    
326     * test/test_session.py (TestSessionSimple.test_add_table): New.
327     Test case for the AddTable method
328    
329 frank 981 2003-05-22 Frank Koormann <[email protected]>
330    
331     UI polishing updates: Place main buttons (OK, Cancel, etc) in the
332     lower right corner, center labels for selections, initialize controls
333     in reasonable order for keyboard navigation.
334    
335     * Thuban/UI/projdialog.py (ProjFrame.__init__, ProjFrame.__doLayout)
336     (ProjFrame.__DoOnProjAvail): Determine position of current projection
337     using the wxListBox.FindString() method. Still a problem (#1886)
338    
339     * Thuban/UI/classifier.py
340     (Classifier.__init__, SelectPropertiesDialog.__init__)
341    
342     * Thuban/UI/classgen.py (ClassGenDialog.__init__,
343     (ClassGenDialog.__DoOnGenTypeSelect): Moved initialization of the
344     different classification types from here to __init__.
345     (GenUniquePanel.__init__): Set the column width of the first field
346     in the Field ListCtrl to the full width.
347    
348     * Thuban/UI/tableview.py (LayerTableFrame.__init__): Rename 'Save As'
349     Button to 'Export'. Center Buttons in Selection Box, set Focus to
350     Grid.
351     (LayerTableFrame.OnKeyDown()): New, bound to the grid with EVT_KEY_DOWN,
352     changes focus to the Selection when pressing "Alt-S".
353    
354     * Thuban/UI/legend.py (LegendTree.__SetVisibilityStyle): Only gray out
355     the text if not visible. The italic font sometimes exceeds the
356     rendering area.
357    
358 jonathan 972 2003-05-21 Jonathan Coles <[email protected]>
359 jonathan 971
360 jonathan 975 * Thuban/UI/dock.py (DockFrame): Rename references to _OnClose
361     to OnClose so that Thuban closes correctly.
362    
363     * Thuban/UI/mainwindow.py (MainWindow.OnClose): Call
364     DockFrame.OnClose, not DockFrame._OnClose.
365    
366     2003-05-21 Jonathan Coles <[email protected]>
367    
368 jonathan 971 * Thuban/Model/classgen.py (ClassGenerator.GenQuantiles): Remove
369     references to 'inf' and use new Range __init__ to pass floats
370     directly rather than converting them to strings first.
371     Fixes RTBug #1876.
372    
373     * Thuban/Model/classification.py (ClassGroupRange.SetRange):
374     Use new Range ___init__ to pass floats.
375    
376     * Thuban/Model/layer.py (RasterLayer.__init__): Test if the
377     filename is a valid image file. Throw IOError otherwise.
378    
379     * Thuban/Model/range.py: Brought over new Range from SciParam that
380     is immutable and has an __init__ which can accept floats.
381    
382     * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Move OpenShapefile
383     into try block. AddLayer doesn't throw any exceptions anymore.
384     (MainWindow.AddRasterLayer): Move constructor of RasterLayer into
385     try block.
386    
387     * Thuban/UI/projdialog.py (GeoPanel.__init__): Put Degrees as
388     the first item in choices. Fixes RTBug #1882.
389    
390     * Thuban/UI/renderer.py (MapRenderer.render_map): Check if scale
391     has gone to 0 which is a serious problem. abort.
392     (MapRenderer.draw_raster_layer): Catch IOError seperately and
393     print the error from GDAL.
394    
395     * Thuban/UI/tableview.py (TableGrid.__init__): Call
396     ToggleEventListeners to turn on listening.
397     (TableGrid.ToggleEventListeners): New. Turns event listening on
398     and off so as to prevent excessive messages.
399     (LayerTableFrame.OnQuery): Use TableGrid.ToggleEventListeners
400     to suppress excessive messages when selecting many rows.
401     Fixes RTBug #1880.
402    
403     * Thuban/UI/view.py: Added checks against if scale == 0. This
404     is a serious problem that can occur when an image without
405     geo data is loading and causes the map projection bounds to
406     go to infinity. Right now, the solution is to simply try
407     to recover.
408    
409     * extensions/thuban/cpl_mfile.cpp (MFILEClose): Make sure
410     to set the MFILEReceiver attributes even if the data is NULL.
411    
412     * extensions/thuban/gdalwarp.cpp: Improved the error handling
413     and passed GDAL messages back up to the Python layer. Also
414     tried to fix some memory leaks that were present in the original
415     utility but didn't matter because the program aborted.
416    
417     * test/test_range.py: Copied over tests from SciParam. Removed
418     tests against importing. Fixes RTBug #1867.
419    
420 bh 958 2003-05-21 Bernhard Herzog <[email protected]>
421    
422     * test/test_load.py: Remove unused imports and restructure the
423     test code
424     (LoadSessionTest): Split into one class for each test and turn
425     LoadSessionTest itself into the base class for all such session
426     tests.
427     (ClassificationTest): New base class for load tests that test
428     classifications
429     (TestSingleLayer, TestLayerVisibility, TestClassification)
430     (TestLabels, TestLayerProjection, TestRasterLayer): New classes
431     for the individual tests
432    
433     * test/support.py (FileLoadTestCase.filename): New base class for
434     file loading tests
435    
436 jan 955 2003-05-21 Jan-Oliver Wagner <[email protected]>
437    
438     * Resources/Projections/defaults.proj: Renamed 'Universal Transverse
439     Mercator' to 'UTM Zone 32' as a more convenient example.
440     Added 'Gauss Krueger Zone 6'.
441    
442     * Data/iceland_sample_raster.thuban: political polygon now
443     filled transparent to have the raster image visible at once.
444    
445 frank 952 2003-05-21 Frank Koormann <[email protected]>
446    
447     * Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to
448     OnClose() to keep in sync with extensions. Internally Thuban
449     still uses "underscored" names.
450    
451 jonathan 949 2003-05-20 Jonathan Coles <[email protected]>
452    
453     This puts back Raster layer support. These layers support projections
454     through the GDAL library. Currently, the CVS version is being used.
455     There are no Debian packages available although this may change soon.
456     A GDAL driver was extended to support writing to memory rather to
457     files.
458    
459     There is still some work that needs to be done, such as some error
460     handling when loading invalid images or when there is a problem
461     projecting the image. This putback simply checks in the majority
462     of the work.
463    
464     * setup.py: Add gdalwarp library extension.
465    
466     * Thuban/Model/layer.py (BaseLayer.HasClassification): New.
467     Defaults to False, but can be overridden by subclasses if they
468     support classification.
469     (RasterLayer): New. Defines a new layer that represents an
470     image.
471    
472     * Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer
473     tag handler.
474     (SessionLoader.start_layer): Encode the filename.
475     (SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer):
476     New. Supports reading a rasterlayer tag.
477    
478     * Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment.
479    
480     * Thuban/Model/save.py (XMLWriter.encode): Don't assume that we
481     get a string in Latin1. If we get such as string convert it to
482     unicode first, otherwise leave if alone before encoding.
483     (SessionSaver.write_layer): Add support for writing both Layers
484     and RasterLayers.
485    
486     * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
487     The right argument may not be a string, it could also be a Column.
488    
489     * Thuban/UI/application.py (ThubanApplication.CreateMainWindow):
490     Make initial window size 600x400. Fixes RTBug #1872.
491    
492     * Thuban/UI/classifier.py (Classifier.__init__): Rearrange how
493     the dialog is constructed so that we can support layers that
494     do not have classifications.
495     (Classifier._OnTry): Only build a classification if the layer
496     supports one.
497    
498     * Thuban/UI/legend.py: Change all checks that a layer is an
499     instance of Layer into checks against BaseLayer.
500     (LegendTree.__FillTreeLayer): Only add children to a branch if
501     the layer supports classification.
502    
503     * Thuban/UI/mainwindow.py (MainWindow.NewSession,
504     MainWindow.OpenSession): Don't proceed with an action if the
505     user chooses Cancel when they are asked to save changes.
506     (MainWindow.AddRasterLayer): New. Open a dialog to allow the
507     user to select an image file. Create a new RasterLayer and add
508     it to the map.
509    
510     * Thuban/UI/renderer.py (MapRenderer.render_map): Add support
511     for rendering RasterLayer layers.
512     (MapRenderer.draw_raster_layer): Actually method that calls
513     the GDALWarp python wrapper and constructs an image from the
514     data returned.
515    
516     * Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the
517     Choices symbols to match those used in the table query method.
518     Replace deprecated method calls on table with new method names.
519    
520     * Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit
521     how small the scale can get. This still needs more testing.
522    
523     * extensions/thuban/bmpdataset.cpp: New, but copied from GDAL.
524     Provides a driver to output in .bmp format.
525    
526     * extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h:
527     New. Provides IO routines which write to memory, rather than a file.
528    
529     * extensions/thuban/gdalwarp.cpp: New, but basically a direct copy
530     of the gdalwarp utility provided in GDAL. Added function calls
531     that can be accessed from python.
532    
533     * Data/iceland_sample_raster.thuban: New. Sample file that uses
534     a raster layer.
535    
536     * Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster
537     layer image data.
538    
539     * Doc/thuban.dtd: Added rasterlayer attribute definition.
540    
541     * test/test_layer.py, test/test_load.py, test/test_save.py: Added
542     tests associated with the raster layer code.
543    
544     * test/test_transientdb.py
545     (TestTransientTable.test_auto_transient_table_query): Added a test
546     for using a Column object as the "right" parameter to a query.
547    
548 frank 924 2003-05-19 Frank Koormann <[email protected]>
549    
550 frank 927 * Thuban/version.py (get_changelog_date):
551     Catch exceptions if ChangeLog does not exist.
552    
553     * Thuban/UI/view.py (MapCanvas.Export): Bugfix
554    
555     2003-05-19 Frank Koormann <[email protected]>
556    
557 frank 924 Extended version information for Thuban
558    
559     * Thuban/version.py: New, version information for Thuban: Last
560     modification date and last ChangeLog entry date.
561    
562     * Thuban/UI/mainwindow.py (MainWindow.About()): Extended version
563     information: Display Thuban, wxPython and Python version.
564    
565 bh 919 2003-05-16 Bernhard Herzog <[email protected]>
566    
567 bh 921 * Thuban/Model/save.py: Remove some unused imports including the
568     __future__ import for nested_scopes as Thuban relies on Python 2.2
569     now.
570     (XMLWriter.encode): Remove the special case for a None argument.
571     In the saver encode is always called with a string argument.
572    
573     2003-05-16 Bernhard Herzog <[email protected]>
574    
575 bh 919 * Thuban/UI/__init__.py: Remove the work-around for the locale bug
576     in wxPython (at least when usinvg wxGTK) prior to 2.4. The symptom
577     of the bug was that e.g. float("1.2") would fail. Thuban now
578     requires 2.4.x.
579    
580 frank 917 2003-05-16 Frank Koormann <[email protected]>
581    
582     Printing enhancement and WMF export (under Win32)
583    
584     * Thuban/UI/renderer.py (ExportRenderer): New, derived from
585     ScreenRenderer. Renders Map, Legend and Scalebar for export.
586     (PrinterRenderer): New, derived from ExportRenderer. Replaces the old
587     PrintRender.
588    
589     * Thuban/UI/view.py (MapPrintout.__init__): Enhanced parameter set
590     to fullfil information needed for PrinterRenderer.
591     (MapCanvas.Export): New. Export Map (currently only to WMF on Win32).
592     (MapCanvas.Print): Adapted to new MapPrintout.
593     (OutputTransform): General calculations to transform from canvas
594     coordinates to export/printing devices.
595    
596     * Thuban/UI/mainwindow.py (MainWindow.ExportMap()): New. Added also
597     new method_command to call ExportMap, with platform dependency (only
598     __WXMSW__)
599    
600     * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Position and Size
601     of scalebar drawing area as new parameters.
602    
603     * Thuban/Model/scalebar.py (roundInterval): round long instead of int
604    
605     * Thuban/UI/legend.py (ScalebarBitmap.__SetScale):
606     Update to extended scalebar.DrawScalebar header.
607    
608     * test/test_export.py: New, test Thuban.UI.view.OutputTransform()
609    
610     * test/test_scalebar.py: Made test executable as standalone.
611    
612 bh 908 2003-05-16 Bernhard Herzog <[email protected]>
613    
614     * Thuban/Model/table.py (Table): Remove this compatibility alias
615     for DBFTable.
616    
617     * test/test_table.py: Import DBFTable as Table because that alias
618     doesn't exist anymore.
619    
620     * Thuban/UI/classgen.py: Remove some unused imports
621    
622 jonathan 906 2003-05-14 Jonathan Coles <[email protected]>
623    
624     * Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList):
625     Fix docstring.
626     (ClassGenerator.GenUniformDistribution): Fix spelling of method name.
627     (ClassGenerator.GenQuantiles): Use the left/right brackets and min/max
628     values of the supplied range to determine the beginning and end
629     bounds of the generated classes.
630    
631     * Thuban/Model/range.py (Range.number_re): Now accepts floats that
632     do not have a leading 0 (.5 is now accepted as well as 0.5).
633    
634     * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method
635     call to ClassGenerator.GenUniformDistribution.
636    
637     * Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows
638     layout bug with the 'Projection' label.
639    
640     * test/support.py (FloatTestCase): New. Needed for the Range tests.
641    
642     * test/test_range.py: New. Imported from SciParam.
643    
644 jonathan 897 2003-05-12 Jonathan Coles <[email protected]>
645    
646 jonathan 899 * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call
647     to table.UniqueValues() with calls that retrieve all the values
648     from the table. This will need to be replaced by a method on table
649     which can simply return the list (perhaps more efficiently).
650    
651     2003-05-12 Jonathan Coles <[email protected]>
652    
653 jonathan 897 The return value of ClassGenerator.CalculateQuantiles has changed.
654     Refer to the documentation for details.
655    
656     * test/test_classgen.py: Modified Quantile tests to use the
657     new return values.
658    
659     * Thuban/Model/classgen.py
660     (ClassGenerator.GenQuantiles): Add comments describing the parameters,
661     use new return values from CalculateQuantiles to produce the correct
662     range bounds in the Classification.
663     (ClassGenerator.CalculateQuantiles): Add more comments describing
664     the return values and parameters. Make minor adjustments to improve
665     the legibility of the code. Fix problem with adjusted not being set
666     in most cases.
667    
668 frank 893 2003-05-12 Frank Koormann <[email protected]>
669    
670     * Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode
671     and latin1. Fixes #1851 finally.
672    
673 jonathan 889 2003-05-09 Jonathan Coles <[email protected]>
674    
675 jonathan 897 * test/test_classgen.py: New. Tests the Quantile algorithm.
676    
677     * Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles):
678     Clean up debugging statement, add comments, fix a small bug in the
679     returned adjusted percentiles.
680    
681     2003-05-09 Jonathan Coles <[email protected]>
682    
683 jonathan 889 Introduces Range class from SciParam into the ClassGroupRange class,
684     and such ranges can now be saved and loaded from disk.
685    
686     Quantiles are now available in the Classification Generator.
687    
688     Initial support for building Queries on a table. Doesn't do anything
689     but run some tests.
690    
691     * Thuban/Model/classification.py: Explicit imports.
692     (ClassGroupRange): Use the Range class to store the underlying
693     range information. The interface remains the same, except for
694     GetRange(), and you can also supply a Range object as the min
695     parameter to SetRange or __init__.
696    
697     * Thuban/Model/load.py (XMLReader.encode): New. Encodes the given
698     string appropriately for use in Thuban. Fixes RTbug #1851.
699     (SessionLoader.end_projection): Handle the context of the
700     projection tag a bit better by looking at what objects are not
701     None. There was an assumption that a projection tag for a map
702     could occur before any layers.
703     (SessionLoader.start_clrange): Provide backward compatibility for
704     reading min/max values as well as the new range parameter.
705    
706     * Thuban/Model/map.py: Explicit imports.
707    
708     * Thuban/Model/resource.py: Import _.
709     (ProjFileSaver.write): write header using projfile.dtd.
710    
711     * Thuban/Model/save.py: Explicit imports.
712     (XMLWriter.encode): New. Encode the given string from a format
713     used by Thuban into UTF-8. Fixes RTbug #1851.
714    
715     * Thuban/UI/classgen.py: Explicit imports.
716     (ClassGenDialog.__init__): Clean up the code and add support
717     for Quantiles.
718     (ClassGenDialog.OnOK): Add support for Quantiles.
719     (GenQuantilesPanel): New. Input panel for Quantiles.
720     (ClassGenerator, CustomRamp, MonochromaticRamp, GreyRamp, RedRamp,
721     GreenRamp, BlueRamp, HotToColdRamp): Move to Thuban/Model/classgen.py
722    
723     * Thuban/Model/classgen.py: New. Contains all the classes named above.
724    
725     * Thuban/UI/classifier.py: Explicit imports.
726     (ClassTable.GetValueAsCust, ClassTable.__ParseInput,
727     ClassTable.SetValueAsCustom): Reworked to use new Range class.
728    
729     * Thuban/UI/legend.py: Explicit imports.
730    
731     * Thuban/UI/mainwindow.py: Add support for the Join Dialog. Added
732     a Table menu and associated method calls.
733     (MainWindow.choose_color): Removed. No longer needed.
734    
735     * Thuban/UI/projdialog.py (ProjFrame.__VerifyButtons): Save button
736     should be disabled if no projection is selected in the available
737     list.
738    
739     * Thuban/UI/renderer.py: Explicit imports.
740    
741     * Thuban/UI/tableview.py (TableGrid.OnRangeSelect): Fix some issues
742     with correctly selecting the rows and issuing the right events.
743     Be sure to call Skip() to allow the grid to do some of its own
744     handling which allows the rows to actually be selected.
745     (LayerTableGrid.select_shapes): Rename from select_shape. Supports
746     selecting multiple shapes.
747     (LayerTableFrame): Support for building Queries.
748     (LayerTableFrame.select_shapes): Allow multiple shapes to be selected.
749    
750     * Thuban/UI/tree.py: Explicit imports.
751    
752     * Thuban/UI/view.py (MapCanvas): Delegate "SelectedShapes" so the
753     table view can call it.
754    
755     * test/test_classification.py: Explicit imports.
756     (TestClassification.test_ClassGroupRange): Fix test for new
757     Range class.
758    
759     * Doc/thuban.dtd: Add range parameter for clrange.
760    
761     * Thuban/Model/range.py: Taken from SciParam. Used as the underlying
762     object in ClassGroupRange, and also uesd for inputting ranges in
763     the classifer table and elsewhere.
764    
765     * Thuban/UI/join.py: New. Initial Join dialog. No real functionality
766     yet.
767    
768 frank 872 2003-05-09 Frank Koormann <[email protected]>
769    
770     * Thuban/UI/scalebar.py (DrawScaleBar): Draw only if interval > 0.0.
771    
772 frank 860 2003-05-08 Frank Koormann <[email protected]>
773    
774 frank 870 Coding style updates
775    
776     * test/test_scalebar.py: Replaced tab indentation by spaces.
777    
778     * Thuban/UI/scalebar.py: Explicit imports.
779    
780     2003-05-08 Frank Koormann <[email protected]>
781    
782 frank 867 * Thuban/UI/scalebar.py
783     (ScaleBar.DrawScalebar): Format string bug fixed.
784    
785     2003-05-08 Frank Koormann <[email protected]>
786    
787 frank 865 Reorganization of scalebar component (no wx in Thuban/Model)
788    
789     * Thuban/Model/scalebar.py: Rendering moved to Thuban/UI/scalebar.py
790     (deriveInterval):
791     Calculate scalebar interval and unit which fits in width for scale.
792     (roundInterval): Round float.
793    
794     * Thuban/UI/scalebar.py (ScaleBar): Scalebar rendering
795    
796     * test/test_scalebar.py: Test for Thuban/Model/scalebar.py methods.
797    
798     * Thuban/UI/legend.py: Import Thuban.UI.scalebar
799    
800     2003-05-08 Frank Koormann <[email protected]>
801    
802 frank 860 * Thuban/UI/legend.py (ScalebarBitmap.SetCanvas):
803     Initialize ScaleBar with canvas.map
804    
805     * Thuban/Model/scalebar.py (ScaleBar.roundInterval()): New,
806     round intervals to display smarter lengths
807     (ScaleBar.DrawScalebar): Draw Scalebar only if the map contains a
808     layer. If the maps has no projection applied grey the scalebar.
809    
810 frank 857 2003-05-07 Frank Koormann <[email protected]>
811    
812     Basic Scalebar features added.
813    
814     * Thuban/Model/scalebar.py (ScaleBar): New, scalebar rendering.
815    
816     * Thuban/UI/legend.py (LegendPanel): Added scalebar bitmap
817     (ScaleBarBitmap): New, links the scalebar bitmap with view messages
818     and the renderer.
819    
820     * Thuban/UI/view.py (MapCanvas.set_view_transform): Issue SCALE_CHANGED.
821    
822     * Thuban/UI/messages.py: SCALE_CHANGED added.
823    
824 bh 850 2003-05-07 Bernhard Herzog <[email protected]>
825    
826 bh 852 * Thuban/Model/session.py (Session.__init__): New instance
827     variable shapestores to hold a list of all open shapestore objects
828     (Session.ShapeStores): New. Accessor method for the shapestores
829     list.
830     (Session._add_shapestore, Session._clean_weak_store_refs): New.
831     Internal methods to maintain the shapestores list.
832     (Session.Tables): New. Return all tables open in the session.
833     (Session.OpenShapefile): Insert the new ShapeStore into the
834     shapestores list.
835    
836     * test/test_session.py (TestSessionSimple.test_initial_state): Add
837     tests for ShapeStores and Tables
838     (TestSessionWithContent.test_shape_stores)
839     (TestSessionWithContent.test_tables): New. Test cases for
840     ShapeStores and Tables
841    
842     2003-05-07 Bernhard Herzog <[email protected]>
843    
844 bh 850 * Thuban/Model/transientdb.py (TransientTableBase.ReadRowAsDict):
845     Add comments about the optimizations used.
846     (AutoTransientTable.ReadValue, TransientTableBase.ReadValue): New.
847     Implement the ReadValue table interface method.
848    
849     * test/test_transientdb.py
850     (TestTransientTable.run_iceland_political_tests)
851     (TestTransientTable.test_transient_joined_table): Add tests for
852     ReadValue
853    
854 frank 848 2003-05-07 Frank Koormann <[email protected]>
855    
856     * Resources/Bitmaps/fulllayerextent.xpm,
857     Resources/Bitmaps/fullselextent.xpm: Replaced the place holders with
858     new icons.
859    
860 bh 840 2003-05-06 Bernhard Herzog <[email protected]>
861    
862 bh 846 * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
863     New. Simply delegate to the transient table's version.
864    
865     * test/test_transientdb.py
866     (TestTransientTable.test_auto_transient_table_query): New. Test
867     case for AutoTransientTable's SimpleQuery
868    
869     2003-05-06 Bernhard Herzog <[email protected]>
870    
871 bh 843 * Thuban/Model/transientdb.py (TransientTableBase.SimpleQuery):
872     Implement a simple query method for the query dialog
873     (TransientTableBase.create): Add an INTEGER PRIMARY KEY that holds
874     the row index or shapeid.
875     (TransientTable.create): Insert the right value of the row index
876     (TransientJoinedTable.create): Copy the row index of the left
877     table to the joined result table
878    
879     * test/test_transientdb.py
880     (TestTransientTable.test_transient_table_read_twice): Fix
881     doc-string
882     (TestTransientTable.test_transient_table_query): New. Test for the
883     SimpleQuery method
884    
885     2003-05-06 Bernhard Herzog <[email protected]>
886    
887 bh 840 Convert all table users to use the new table interface. This only
888     covers Thuban itself, not GREAT-ER or other applications built on
889     Thuban yet, so the compatibility interface stays in place for the
890     time being but it now issues DeprecationWarnings.
891    
892     Finally, the new Table interface has a new method, HasColumn.
893    
894     * Thuban/Model/table.py (OldTableInterfaceMixin): All methods
895     issue deprecation warnings when they're. The warnings refer to the
896     caller of the method.
897     (OldTableInterfaceMixin.__deprecation_warning): New. Helper method
898     for the deprecation warnings
899    
900     * test/test_table.py: Ignore the deprecation warnings for the old
901     table in the tests in this module. The purpose of the tests is to
902     test the old interface, after all.
903    
904     * test/test_transientdb.py
905     (TestTransientTable.run_iceland_political_tests): Use the
906     constants for the types. Add a test for HasColumn
907     (TestTransientTable.test_transient_joined_table): Adapt to new
908     table interface. Add a test for HasColumn
909     (TestTransientTable.test_transient_table_read_twice): Adapt to new
910     table interface
911    
912     * Thuban/UI/tableview.py (DataTable.SetTable, DataTable.GetValue):
913     Adapt to new table interface
914    
915     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Adapt to
916     new table interface
917    
918     * Thuban/UI/controls.py (RecordListCtrl.fill_list)
919     (RecordTable.SetTable): Adapt to new table interface
920    
921     * Thuban/UI/classifier.py (Classifier.__init__)
922     (Classifier.__init__): Adapt to new table interface
923    
924     * Thuban/UI/classgen.py (ClassGenDialog.__init__)
925     (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve): Adapt
926     to new table interface
927    
928     * Thuban/Model/transientdb.py (TransientTableBase.HasColumn)
929     (AutoTransientTable.HasColumn): Implement the new table interface
930     method
931     (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ValueRange)
932     (AutoTransientTable.UniqueValues): Adapt to new table interface
933    
934     * Thuban/Model/layer.py (Layer.SetShapeStore, Layer.GetFieldType):
935     Adapt to new table interface
936    
937     * test/test_layer.py (TestLayer.open_shapefile): Helper method to
938     simplify opening shapefiles a bit easier.
939     (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
940     (TestLayer.test_point_layer): Use the new helper method
941     (TestLayer.test_get_field_type): New. Test for the GetFieldType
942     method
943    
944     * test/test_dbf_table.py (TestDBFTable.test_has_column): Test for
945     the new table method
946    
947     * test/test_memory_table.py (TestMemoryTable.test_has_column):
948     Test for the new table method HasColumn
949    
950 jonathan 833 2003-05-06 Jonathan Coles <[email protected]>
951    
952     Addresses the "Selection Extent" wish of RTbug #1787.
953    
954     * Resources/Bitmaps/fulllayerextent.xpm,
955     Resources/Bitmaps/fullselextent.xpm: Bitmaps for layer and selection
956     extent. These are just place holders for the real bitmaps.
957    
958     * Thuban/Model/layer.py (Shape): Since a Shape is immutable only
959     calculate the bounding box once (the first time compute_bbox() is
960     called).
961     (Layer.ShapesBoundingBox): New. Given a list of shape ids, return
962     the bounding box for the shapes in lat/long coordinates.
963    
964     * Thuban/UI/mainwindow.py: Added new "Full selection extent" menu
965     option.
966     (MainWindow.has_selected_shapes): New. Returns true if there are
967     any selected shapes.
968     (MainWindow.FullSelectionExtent): New. Calls
969     MapCanvas.FitSelectedToWindow() when the user selects the menu option.
970     (_has_selected_shapes): New. Returns true if there are any
971     selected shapes.
972    
973     * Thuban/UI/selection.py (Selection.HasSelectedShapes): New. Returns
974     true if there are any selected shapes.
975    
976     * Thuban/UI/view.py (MapCanvas): Added delegated method
977     HasSelectedShapes.
978     (MapCanvas.FitSelectedToWindow): New. Centers and scales any selected
979     shapes on the canvas using the map projection (if any).
980    
981     * test/test_layer.py (TestLayer.test_arc_layer): Add some tests
982     for Layer.ShapesBoundingBox().
983    
984 bh 826 2003-05-06 Bernhard Herzog <[email protected]>
985    
986     * Resources/Projections/defaults.proj: Fix spelling of Mercator
987    
988 jonathan 823 2003-05-05 Jonathan Coles <[email protected]>
989    
990     Addresses the "Full Layer Extent" wish of RTbug #1787.
991    
992     * Resources/Projections/defaults.proj: Added UK National Grid.
993    
994     * Thuban/UI/mainwindow.py: Added new "Full layer extent" menu option.
995     (MainWindow.FullLayerExtent): New. Calls MapCanvas.FitLayerToWindow()
996     when the user selects the menu option.
997    
998     * Thuban/UI/view.py (MapCanvas.FitLayerToWindow): New. Centers and
999     scales the given layer on the canvas using the map projection.
1000    
1001 bh 819 2003-05-05 Bernhard Herzog <[email protected]>
1002    
1003     Convert the table implementations to a new table interface. All
1004     tables use a common mixin class to provide backwards compatibility
1005     until all table users have been updated.
1006    
1007     * Thuban/Model/table.py (OldTableInterfaceMixin): Mixin class to
1008     provide backwards compatibility for table classes implementing the
1009     new interface
1010     (DBFTable, MemoryTable): Implement the new table interface. Use
1011     OldTableInterfaceMixin as base for compatibility
1012     (DBFColumn, MemoryColumn): New. Column description for DBFTable
1013     and MemoryTable resp.
1014    
1015     * test/test_dbf_table.py: New. Test cases for the DBFTable with
1016     the new table interface.
1017    
1018     * test/test_memory_table.py: New. Test cases for the MemoryTable
1019     with the new table interface.
1020    
1021     * test/test_table.py: Document the all tests in this file as only
1022     for backwards compatibility. The equivalent tests for the new
1023     interface are in test_memory_table.py and test_dbf_table.py
1024     (MemoryTableTest.test_read): field_info should be returning tuples
1025     with four items
1026     (MemoryTableTest.test_write): Make doc-string a more precise.
1027    
1028     * Thuban/Model/transientdb.py (TransientTableBase): Convert to new
1029     table interface. Derive from from OldTableInterfaceMixin for
1030     compatibility.
1031     (TransientTableBase.create): New intance variable column_map to
1032     map from names and indices to column objects
1033     (TransientTable.create): Use the new table interface of the input
1034     table
1035     (AutoTransientTable): Convert to new table interface. Derive from
1036     from OldTableInterfaceMixin for compatibility.
1037     (AutoTransientTable.write_record): Removed. It's not implemented
1038     yet and we still have to decide how to handle writing with the new
1039     table and data framework.
1040    
1041     * test/test_transientdb.py
1042     (TestTransientTable.run_iceland_political_tests)
1043     (TestTransientTable.test_transient_joined_table): Use the new
1044     table interface
1045    
1046 jonathan 817 2003-05-05 Jonathan Coles <[email protected]>
1047    
1048     This is namely a collection of UI updates to improve user interactivity.
1049     Tabbing between controls now exists and you can use ESC to close dialog
1050     boxes; ENTER will active the default button.
1051    
1052     * Thuban/UI/classgen.py (ClassGenDialog.__init__): Rearrange the
1053     order that the controls are created so that tabbing works correctly.
1054     (ClassGenDialog.OnOK): Renamed from _OnGenerate() so that the
1055     wxDialog can handle the default button correctly.
1056     (ClassGenDialog.OnCancel): Renamed from _OnCloseBtn() for the
1057     same reasons as for OnOK.
1058     (GenUniformPanel._OnRetrieve): Call wxBeginBusyCursor/wxEndBusyCursor
1059     when we ask the table for the maximum/minimum values of a field
1060     which could take a very long time.
1061    
1062     * Thuban/UI/classifier.py (Classifier.__init__): Rearrange the
1063     order that the controls are created so that tabbing works correctly.
1064     (SelectPropertiesDialog.__init__): Rearrange the order that the
1065     controls are created so that tabbing works correctly.
1066    
1067     * Thuban/UI/dialogs.py: Copied NonModalDialog box and changed it
1068     to derive from a wxDialog but behave like the original implementation
1069     which was derived from a wxFrame. wxDialog provides useful key
1070     handling functionality like ESC calling OnCancel and ENTER calling
1071     OnOK which is lost with wxFrame.
1072    
1073     * Thuban/UI/mainwindow.py: Add "..." to menu items that will open
1074     new dialogs.
1075    
1076     * Thuban/UI/projdialog.py (ProjFrame.__init__): Rearrange the
1077     order that the controls are created so that tabbing works correctly.
1078     (ProjFrame.OnApply): Renamed from _OnTry() to use wxDialog behaviour.
1079     (ProjFrame.OnOK): Renamed from _OnOK() to use wxDialog behaviour.
1080     (ProjFrame.OnCancel): Renamed from _OnClose() to use wxDialog behaviour.
1081     (ProjPanel.__init__): Add "Airy" to the list of ellipsoids so we
1082     can provide the "UK National Grid" as a default projection.
1083     (UTMPanel.__init__): Rearrange the order that the controls are
1084     created so that tabbing works correctly.
1085    
1086 bh 809 2003-05-05 Bernhard Herzog <[email protected]>
1087    
1088 bh 811 * extensions/thuban/wxproj.cpp: Fix some of the comments.
1089     (project_point): If a map projection but no layer projection is
1090     given, convert degrees to radians before applying the map
1091     projection.
1092    
1093 bh 809 * Thuban/UI/tableview.py (TableGrid.disallow_messages)
1094     (TableGrid.allow_messages): New methods to make it possible to
1095     inhibit message sending.
1096     (TableGrid.issue): Only send the message if not inhibited.
1097     (LayerTableGrid.select_shape): Use the new methods to make sure
1098     that no ROW_SELECTED message is sent while we're updating the
1099     selected rows to match the selected shapes.
1100    
1101 jan 807 2003-05-02 Jan-Oliver Wagner <[email protected]>
1102    
1103     Implementation of MemoryTable.
1104    
1105     * Thuban/Model/table.py (MemoryTable): New. Quite simple table
1106     implementation that operates on a list of tuples. All of the data
1107     are kept in the memory.
1108    
1109     * test/test_table.py (MemoryTableTest): New.
1110    
1111     * test/test_transientdb.py (SimpleTable): Removed.
1112     (TestTransientTable.test_transient_joined_table,
1113     (TestTransientTable.test_transient_table_read_twice): Replaced
1114     SimpleTable by MemoryTable.
1115    
1116 jonathan 793 2003-04-30 Jonathan Coles <[email protected]>
1117    
1118 jonathan 803 * Data/iceland_sample.thuban: Now contains correct projections
1119     for each of the layers.
1120    
1121     * Resources/Projections/defaults.proj: Geographic projection
1122     contains unit conversion parameter.
1123    
1124     2003-04-30 Jonathan Coles <[email protected]>
1125    
1126 jonathan 793 The most important part of this putback is the projection changes.
1127     It should now be possible to specify the projection that a layer
1128     is in and then specify a different projection for the map. The
1129     projection dialog has an extra parameter for a geographic projection
1130     which lets the user select if the input is in degrees or radians.
1131    
1132     * Thuban/Model/layer.py (Layer.ShapesInRegion): Fix docstring
1133     to say that the parameter is a tuple of unprojected
1134     points (which is what the callers to this method were assuming).
1135     Also, since the points are unprojected we need to projected them.
1136    
1137     * Thuban/UI/legend.py (LegendTree.MoveCurrentItemUp,
1138     LegendTree.MoveCurrentItemDown): If the layer or any of the layer's
1139     groups are selected, move the layer up/down. Fixes RTbug #1833.
1140    
1141     * Thuban/UI/mainwindow.py: Move menu item map_rename up.
1142    
1143     * Thuban/UI/projdialog.py (ProjFrame._OnSave): Add missing
1144     parameter in call to SetClientData.
1145     (GeoPanel): Add support for selecting the units that the
1146     source data is in (Radians or Degrees).
1147    
1148     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Optimize
1149     the rendering loop by reducing the number of if's, removing the
1150     unnecessary try/except block, and checking if the old group
1151     is the same as the new one (which happens a lot if there is
1152     no classification, or lots of shapes are in the same group).
1153    
1154     * Thuban/UI/view.py (MapCanvas.OnPaint): Add a try/except block
1155     around the redraw routine to try to catch problems that the user
1156     may create by selecting invalid projections for the data set and
1157     map. Clears the display if there are any problems and prints the
1158     error.
1159     (MapCanvas.do_redraw): Use DC.Clear() instead of drawing a filled
1160     rectangle.
1161    
1162     * extensions/thuban/wxproj.cpp (project_point): First invert the
1163     supplied point (which should be in projected coordinates) using
1164     the layer's projection and then project the point using the
1165     map's projection.
1166     (project_points): Use project_point() to project each point.
1167    
1168 jan 792 2003-04-30 Jan-Oliver Wagner <[email protected]>
1169    
1170     * Thuban/Model/layer.py (Layer.SetShapeStore): Fixed a bug:
1171     don't set the Classification to None if the classfication field
1172     is None (ie only a DEFAULT).
1173    
1174 bh 786 2003-04-30 Bernhard Herzog <[email protected]>
1175    
1176 bh 790 * Thuban/UI/view.py: Fix some typos.
1177    
1178 bh 788 * Thuban/UI/mainwindow.py (MainWindow.identify_view_on_demand): Do
1179     not pop up the dialog if the selection becomes empty (this could
1180     happen if e.g. a new selection is opened while the identify tool
1181     is active and dialog had been closed)
1182    
1183     2003-04-30 Bernhard Herzog <[email protected]>
1184    
1185 bh 786 * Thuban/Model/transientdb.py (TransientTableBase.__init__): New
1186     instance variable read_record_last_result
1187     (TransientTableBase.read_record): Make sure reading the same
1188     record twice works. The implementation uses the new instance
1189     variable read_record_last_result
1190    
1191     * test/test_transientdb.py
1192     (TestTransientTable.test_transient_table_read_twice): New test
1193     case for the above bug-fix.
1194    
1195 jonathan 793 2003-04-29 Jonathan Coles <[email protected]>
1196    
1197     * Thuban/common.py: Removed. No longer needed Str2Num. RTbug #1832.
1198    
1199     * Thuban/UI/classgen.py: Remove all uses of Str2Num.
1200    
1201     * Thuban/UI/classifier.py: Remove all uses of Str2Num.
1202     (ClassTable.SetValueAsCustom): Rename keyword argument in
1203     ClassGroup* constructors to match argument name.
1204    
1205 bh 779 2003-04-29 Bernhard Herzog <[email protected]>
1206    
1207     * Thuban/Model/session.py (Session.Destroy): Explicitly close the
1208     transient DB if it exists to make sure it doesn't leave a journal
1209     file in the temp directory.
1210    
1211     * Thuban/Model/transientdb.py (TransientDatabase.close): Set
1212     self.conn to None after closing the connection to make sure it's
1213     not closed twice
1214    
1215 jonathan 767 2003-04-29 Jonathan Coles <[email protected]>
1216    
1217 jonathan 769 Add a visible parameter in the layer XML tag. The default value is
1218     "true". If anything other than "false" is specified we also assume
1219 jonathan 776 "true". Addresses RTbug #1025.
1220 jonathan 769
1221     * Doc/thuban.dtd: Add visible parameter to a layer.
1222    
1223     * Thuban/Model/layer.py (BaseLayer.__init__): Change default value
1224     of visible from 1 to True.
1225     (Layer.__init__): Change default value of visible from 1 to True.
1226    
1227     * Thuban/Model/load.py (SessionLoader.start_layer): Read visible
1228     parameter.
1229    
1230     * Thuban/Model/save.py (SessionSaver.write_layer): Save visible
1231     parameter.
1232    
1233     * test/test_load.py: Add new test data contents_test_visible.
1234     (LoadSessionTest.setUp): save test data.
1235     (LoadSessionTest.testLayerVisibility): Test if the visible flag
1236     is loaded correctly.
1237    
1238     * test/test_save.py (SaveSessionTest.testSingleLayer): Add test
1239     for saving an invisible layer.
1240    
1241     2003-04-29 Jonathan Coles <[email protected]>
1242    
1243 jonathan 767 * Thuban/UI/mainwindow.py (MainWindow.SetMap): Look up the
1244     legend dialog box and tell it to change its map to the one
1245     supplied to SetMap(). Fixes RTbug #1770.
1246    
1247 bh 764 2003-04-29 Bernhard Herzog <[email protected]>
1248    
1249 bh 766 Next step of table implementation. Introduce a transient database
1250     using SQLite that some of the data is copied to on demand. This
1251     allows us to do joins and other operations that require an index
1252     for good performance with reasonable efficiency. Thuban now needs
1253     SQLite 2.8.0 and pysqlite 0.4.1. Older versions may work but I
1254     haven't tested that.
1255    
1256     * Thuban/Model/transientdb.py: New. Transient database
1257     implementation.
1258    
1259     * test/test_transientdb.py: New. Tests for the transient DB
1260     classes.
1261    
1262     * Thuban/Model/session.py (AutoRemoveFile, AutoRemoveDir): New
1263     classes to help automatically remove temporary files and
1264     directories.
1265     (Session.__init__): New instance variables temp_dir for the
1266     temporary directory and transient_db for the SQLite database
1267     (Session.temp_directory): New. Create a temporary directory if not
1268     yet done and return its name. Use AutoRemoveDir to have it
1269     automatically deleted
1270     (Session.TransientDB): Instantiate the transient database if not
1271     done yet and return it.
1272    
1273     * Thuban/Model/data.py (ShapefileStore.__init__): Use an
1274     AutoTransientTable so that data is copied to the transient DB on
1275     demand.
1276     (SimpleStore): New class that simply combines a table and a
1277     shapefile
1278    
1279     * Thuban/Model/table.py (Table, DBFTable): Rename Table into
1280     DBFTable and update its doc-string to reflect the fact that this
1281     is only the table interface to a DBF file. Table is now an alias
1282     for DBFTable for temporary backwards compatibility.
1283    
1284     * Thuban/UI/application.py (ThubanApplication.OnExit): Make sure
1285     the last reference to the session goes away so that the temporary
1286     files are removed properly.
1287    
1288     * test/test_load.py (LoadSessionTest.tearDown): Remove the
1289     reference to the session to make sure the temporary files are
1290     removed.
1291    
1292     2003-04-29 Bernhard Herzog <[email protected]>
1293    
1294 bh 764 * Thuban/Model/load.py (XMLReader.__init__, XMLReader.read): Turn
1295     the __parser instance variable into a normal local variable in
1296     read. It's only used there and read will never be called more than
1297     once. Plus it introduces a reference cycle that keeps can keep the
1298     session object alive for a long time.
1299    
1300 jonathan 767 2003-04-29 Jonathan Coles <[email protected]>
1301 jonathan 735
1302 jonathan 762 * Thuban/Model/proj.py (Projection): Removed Set*() methods to make
1303     Projection an immutable item. Fixes RTbug #1825.
1304     (Projection.__init__): Initialize instance variables here.
1305     (ProjFile.Replace): New. Replace the given projection object with
1306     the new projection object. This solves the problem of needing the
1307     mutator Projection.SetProjection() in the ProjFrame class and
1308     allows a projection to change parameters without changing its
1309     location in the file.
1310    
1311     * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs): Dialog should
1312     be of type wxSAVE and should verify overwriting a file.
1313    
1314     * Thuban/UI/projdialog.py (ProjFrame._OnSave): Use the new
1315     ProjFile.Replace() method instead of the mutator
1316     Projection.SetProjection(). Also requires that we reassign the
1317     client data to the new projection.
1318    
1319     * test/test_proj.py (TestProjection.test): Test GetName() and
1320     GetAllParameters()
1321     (TestProjFile.test): Remove tests for Set*() methods. Add tests
1322     for Replace().
1323    
1324     2003-04-25 Jonathan Coles <[email protected]>
1325    
1326 jonathan 756 * Thuban/Model/save.py (SessionSaver.write_projection): Make sure
1327     to save the name of the projection.
1328    
1329     * test/test_save.py (SaveSessionTest.testLayerProjection): New
1330     test to verify layer projections are saved correctly.
1331    
1332     2003-04-25 Jonathan Coles <[email protected]>
1333    
1334 jonathan 753 * Thuban/Model/proj.py (Projection.SetName): Set the name
1335     to "Unknown" if name is None.
1336     (Projection.SetAllParameters): New. Set the projection's
1337     parameter list to the one supplied.
1338     (Projection.SetProjection): New. Set the projection's
1339     properties to those of the supplied Projection.
1340    
1341     * Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set
1342     the dialog title to include the map's title.
1343     (MainWindow.LayerProjection): Set the dialog title to include
1344     the layer's title.
1345    
1346     * Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate
1347     error dialogs into a single method call.
1348     (ProjFrame.__VerifyButtons): Add more states to check.
1349     (ProjFrame.__GetProjection): Return the current state of an
1350     edited projection or None.
1351     (ProjFrame.__FillAvailList): Remove checks for states that
1352     shouldn't exist.
1353     (ProjFrame._OnNew): Clear all selected items and supply
1354     a projection panel if necessary.
1355    
1356     * test/test_proj.py (TestProjFile.test): Add tests for
1357     ProjFile.SetAllParameters, ProjFile.SetProjection,
1358     ProjFile.SetName.
1359    
1360     2003-04-25 Jonathan Coles <[email protected]>
1361    
1362 jonathan 748 * Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now
1363     takes an optional argument to select the current projection.
1364     This does not guarantee that the item is visible due to
1365     limited wxWindows functionality. Fixes RTBug #1821.
1366    
1367     2003-04-25 Jonathan Coles <[email protected]>
1368    
1369 jonathan 743 * Thuban/Model/load.py (SessionLoader.start_projection): Remember
1370     the projection name and use it when constructing the Projection
1371     object.
1372    
1373     * Thuban/Model/proj.py (Projection.__init__): Change the default
1374     value for 'name' to None and then test if name is equal to None
1375     in the body of the constructor. This way the caller doesn't have to
1376     know what the default value should be. Namely, useful in load.py
1377     where we have to pick a default value if the 'name' parameter
1378     doesn't exist in the XML file.
1379    
1380     * test/test_load.py (LoadSessionTest.testLayerProjection): New.
1381     Tests a file where a layer has a projection.
1382    
1383     2003-04-25 Jonathan Coles <[email protected]>
1384    
1385 jonathan 735 * Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the
1386     tree for projection information.
1387    
1388     * Thuban/Model/load.py (XMLReader.GetFilename): Renamed from
1389     XMLReader.GetFileName.
1390     (SessionLoader): Added support for loading projection tags that
1391     appear inside a layer.
1392    
1393     * Thuban/Model/proj.py (ProjFile): Document the class. Move
1394     back to using a list because the order of the projections in
1395     the file is important to maintain. Fixes RTbug #1817.
1396    
1397     * Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName
1398     to ProjFile.GetFilename.
1399    
1400     * Thuban/Model/save.py (SessionSaver.write_layer): Save projection
1401     information.
1402    
1403     * Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from
1404     ProjFrame._OnSaveAs. Removed old dead code from previous
1405     implementation.
1406     (ProjFrame._OnExport): Add support for exporting more than one
1407     projection to a single file.
1408     (ProjFrame.__FillAvailList): use string formatting (% operator)
1409     to build strings that are (partly) translated. Fixes RTbug #1818.
1410    
1411     * test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile
1412     class.
1413    
1414 bh 734 2003-04-24 Bernhard Herzog <[email protected]>
1415    
1416     * po/es.po: Updated Spanish translation by Daniel Calvelo Aros
1417    
1418     * po/fr.po: New. French translation by Daniel Calvelo Aros
1419    
1420     * Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate
1421     empty strings.
1422    
1423 jonathan 735 2003-04-24 Jonathan Coles <[email protected]>
1424 jonathan 724
1425     * Thuban/Model/layer.py (Layer.GetProjection): New. Needed to
1426     implement the interface that the ProjFrame dialog expects.
1427    
1428     * Thuban/Model/proj.py (Projection.SetName): New. Allows the
1429     name of the projection to be changed.
1430     (ProjFile): Use a dictionary instead of a list so that removing
1431     projections is easier and we are sure about uniqueness.
1432     (ProjFile.Remove): Remove the given projection object.
1433    
1434     * Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles):
1435     Return a list with only one projection file instead of searching for
1436     any projection file. This simplifies many things if the user can
1437     only have one system file and one user file.
1438    
1439     * Thuban/UI/classgen.py: Change all references to
1440     genCombo to genChoice.
1441    
1442     * Thuban/UI/mainwindow.py: Add a Projection option under the
1443     layer menu.
1444     (MainWindow.LayerProjection): New. Open up a projection window
1445     for a layer.
1446    
1447     * Thuban/UI/projdialog.py: Large changes to how the dialog is
1448     laid out. Use three panels instead of one. One for the list of
1449     projections, one for the edit controls, and one for the buttons.
1450     Fixed resizing problems so that the dialog resizes correctly
1451     when the projection panel changes. Added import/export, save, and
1452     new buttons/functionality.
1453    
1454 bh 723 2003-04-24 Bernhard Herzog <[email protected]>
1455    
1456     First step towards table management. Introduce a simple data
1457     abstraction so that we replace the data a layer uses more easily
1458     in the next step.
1459    
1460     * Thuban/Model/data.py: New file with a simple data abstraction
1461     that bundles shapefile and dbffile into one object.
1462    
1463     * Thuban/Model/session.py (Session.OpenShapefile): New method to
1464     open shapefiles and return a shape store object
1465    
1466     * Thuban/Model/layer.py (Layer.__init__): Pass the data as a store
1467     object instead of a shapefile filename. This introduces a new
1468     instance variable store holding the datastore. For intermediate
1469     backwards compatibility keep the old instance variables.
1470     (open_shapefile): Removed. No longer needed with the shape store.
1471     (Layer.SetShapeStore, Layer.ShapeStore): New methods to set and
1472     get the shape store used by a layer.
1473     (Layer.Destroy): No need to explicitly destroy the shapefile or
1474     table anymore.
1475    
1476     * Thuban/UI/mainwindow.py (MainWindow.AddLayer)
1477     (MainWindow.AddLayer): Use the session's OpenShapefile method to
1478     open shapefiles
1479    
1480     * Thuban/Model/load.py (ProcessSession.start_layer): Use the
1481     session's OpenShapefile method to open shapefiles
1482    
1483     * test/test_classification.py
1484     (TestClassification.test_classification): Use the session's
1485     OpenShapefile method to open shapefiles and build the filename in
1486     a more platform independed way
1487    
1488     * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
1489     Implement to have a session to use in the tests
1490     (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
1491     (TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the
1492     session's OpenShapefile method to open shapefiles
1493     (TestLayerLegend.setUp): Instantiate a session so that we can use
1494     it to open shapefiles.
1495     (TestLayerLegend.tearDown): Make sure that all references to
1496     layers and session are removed otherwise we may get a resource
1497     leak
1498    
1499     * test/test_map.py (TestMapAddLayer.test_add_layer)
1500     (TestMapWithContents.setUp): Instantiate a session so that we can
1501     use it to open shapefiles.
1502     (TestMapWithContents.tearDown): Make sure that all references to
1503     layers, maps and sessions are removed otherwise we may get a
1504     resource leak
1505     ("__main__"): use support.run_tests() so that more info about
1506     uncollected garbage is printed
1507    
1508     * test/test_save.py (SaveSessionTest.testSingleLayer): Use the
1509     session's OpenShapefile method to open shapefiles
1510     ("__main__"): use support.run_tests() so that more info about
1511     uncollected garbage is printed
1512    
1513     * test/test_selection.py (TestSelection.tearDown): Make sure that
1514     all references to the session and the selection are removed
1515     otherwise we may get a resource leak
1516     (TestSelection.get_layer): Instantiate a session so that we can
1517     use it to open shapefiles.
1518     ("__main__"): use support.run_tests() so that more info about
1519     uncollected garbage is printed
1520    
1521     * test/test_session.py (TestSessionBase.tearDown)
1522     (TestSessionWithContent.tearDown): Make sure that all references
1523     to the session and layers are removed otherwise we may get a
1524     resource leak
1525     (TestSessionWithContent.setUp): Use the session's OpenShapefile
1526     method to open shapefiles
1527    
1528 jonathan 721 2003-04-24 Jonathan Coles <[email protected]>
1529    
1530     * Thuban/Model/load.py (XMLReader.read): Should have been checking
1531     if the file_or_filename object had the 'read' attribute.
1532    
1533 jonathan 715 2003-04-23 Jonathan Coles <[email protected]>
1534    
1535 jonathan 720 * Thuban/Model/resource.py: Fixes RTbug #1813.
1536     (ReadProjFile): Add documentation about which exceptions are raised.
1537     Always pass the exceptions up to the caller.
1538     (GetProjFiles): If the directory can't be read return an empty list.
1539     If any of the proj files can't be read skip that file and go
1540     on to the next one.
1541    
1542     * test/test_proj.py: Added test cases to handle nonexistent files,
1543     unreadable files, and files that don't parse correctly.
1544    
1545     2003-04-23 Jonathan Coles <[email protected]>
1546    
1547 jonathan 716 Projection dialog. Allows the user to select from a list
1548     of projection templates and optionally edit them and save new ones.
1549    
1550     * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
1551     (ProjPanel): Base class for projection specific panels.
1552     (TMPanel): Projection panel for Transverse Mercartor.
1553     (UTMPanel): Projection panel for Universal Transverse Mercartor.
1554     (LCCPanel): Projection panel for Lambert Conic Conformal.
1555     (GeoPanel): Projetion panel for Geographic Projection.
1556    
1557     2003-04-23 Jonathan Coles <[email protected]>
1558    
1559 jonathan 715 * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
1560     promote symmetry. There now exists XMLReader and XMLWriter.
1561     (XMLReader.read): New. Call to read the given file descriptor or
1562     filename.
1563     (XMLReader.close): New. Make sure the file is closed.
1564     (XMLReader.GetFileName): New. Return just the file name that is being
1565     read from.
1566     (XMLReader.GetDirectory): New. Return just the directory of the file
1567     that is being read.
1568     (XMLReader.AddDispatchers): New. Take a dictionary which contains
1569     the names of functions to call as the XML tree is parsed.
1570     (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
1571     (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
1572     (SessionLoader): Removed class variables start_dispatcher and
1573     end_dispatcher since this functionality is now part of a class
1574     instance. Fixes RTbug #1808.
1575     (SessionLoader.__init__): Add dispatcher functions.
1576     (load_xmlfile): Code was moved into the XMLReader.read().
1577     (load_session): Use modified SessionLoader.
1578    
1579     * Thuban/Model/map.py (Map.GetProjection): New. Returns the
1580     map's projection.
1581    
1582     * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
1583     GetAllParameters.
1584     (Projection.GetParameter): Returns the value for the given parameter.
1585    
1586     * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
1587     (GetProjFiles): Renamed from GetProjections. Now returns a list
1588     of ProjFile objects.
1589     (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
1590     a list of ProjFile objects whose files are not user defined.
1591     (GetUserProjFiles): Renamed from GetUserProjections. Returns a
1592     list of ProjFile objects whose files are user defined.
1593     (ProjFileReader): Extend new XMLReader.
1594    
1595     * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
1596     promote symmetry.
1597    
1598     * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
1599     control instead of a wxComboBox. wxChoice controls do not generate
1600     events as the uses highlights possible choices which fixes problems
1601     with resizing the dialog when the use selects an option.
1602    
1603     * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
1604     control instead of a wxComboBox.
1605    
1606     * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
1607     dialog.
1608    
1609     * test/test_proj.py (TestProjection.test): New tests for GetParameter
1610     method.
1611    
1612 bh 703 2003-04-22 Bernhard Herzog <[email protected]>
1613    
1614 bh 705 * Thuban/UI/mainwindow.py: Remove some unused imports and global
1615     constants
1616    
1617 bh 703 * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
1618     (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
1619    
1620 bh 700 2003-04-17 Bernhard Herzog <[email protected]>
1621    
1622 bh 701 * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
1623     (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
1624     anymore.
1625     (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
1626     (Layer.ShapeType, Layer.Shape): No need to call
1627     self.open_shapefile since it's always called in __init__
1628    
1629 bh 700 * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
1630     In wxPython 2.4 there's no need to extend MainLoop anymore since
1631     wxPython itself makes sure OnExit is called.
1632    
1633 jonathan 688 2003-04-16 Jonathan Coles <[email protected]>
1634    
1635 jonathan 693 Initial putback of projection management code. Includes new
1636     classes to read and write projection files. The current load
1637     and save classes were abstracted a bit so they could be reused.
1638     The Projection class was extended to provide new methods and
1639     have a name.
1640    
1641     * Thuban/Model/load.py (XMLProcessor): New. Contains all the
1642     general XML reading methods that were part of ProcessSession.
1643    
1644     * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
1645     name.
1646     (ProjFile): New. Represents a file that contains projection
1647     information.
1648    
1649     * Thuban/Model/resource.py: New. Contains general utilities
1650     for read and writing projection files.
1651    
1652     * Thuban/Model/save.py (XMLSaver): New. Contains all the
1653     general XML writing methods that were part of SessionSaver.
1654     (SessionSaver): Renamed from Saver.
1655    
1656     * test/test_proj.py: New test cases for the projection
1657     file read and write functions.
1658    
1659     2003-04-16 Jonathan Coles <[email protected]>
1660    
1661 jonathan 688 * Thuban/Model/classification.py: Use repr() around values
1662     in the ClassGroup*.__repr__() methods so it is clearer when
1663     a value is a string and when it is a number.
1664    
1665     * test/test_load.py: Rework the classification test to test
1666     that we can load old files.
1667     (testLabels): Test a file where the groups have labels.
1668    
1669 bh 687 2003-04-16 Bernhard Herzog <[email protected]>
1670    
1671     Safer implementation of the performance enhancements of the
1672     low-level renderer:
1673    
1674     * extensions/thuban/wxproj.cpp (extract_projection)
1675     (extract_pointer): Rename extract_projection to extract_pointer
1676     and redefine its purpose to return the pointer stored in a CObject
1677     returned by the object's cobject method. Update all callers.
1678     (s_draw_info, free_draw_info, draw_polygon_init): Implement the
1679     handling of these low-level parameters so that each s_draw_info
1680     instance is handled as a CObject at python level that also
1681     contains real references to the actual python objects which
1682     contain the values in the struct. Add free_draw_info as the
1683     destructor.
1684     (draw_polygon_shape): Add the py_draw_info parameter which must a
1685     cobject containing an s_draw_info pointer.
1686    
1687     * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
1688     method to instantiat the low-level render parameter
1689     (MapRenderer.draw_shape_layer): Use the new method. Remove some
1690     commented out code.
1691     (MapRenderer.draw_polygon_shape): Make the first parameter not the
1692     layer but the low-level render parameter
1693     (ScreenRenderer.draw_shape_layer): Use the low-level render
1694     parameter.
1695    
1696 jonathan 673 2003-04-15 Jonathan Coles <[email protected]>
1697    
1698 jonathan 680 * Thuban/Model/classification.py: Implemented __repr__ for
1699     the ClassGroup* classes to make debugging a bit easier.
1700     (ClassGroup.SetLabel): Check that the string is an instance
1701     of StringTypes not StringType. Accounts for Unicode strings.
1702    
1703     * Thuban/Model/color.py: Implemented __repr__ to make
1704     debugging a bit easier.
1705    
1706     * Thuban/Model/save.py (Saver.write_classification): Need to
1707     save the group label.
1708    
1709     * test/test_load.py (testClassification): New. Loads the
1710     iceland_sample_test.thuban file and checks if it was loaded
1711     correctly.
1712    
1713     2003-04-15 Jonathan Coles <[email protected]>
1714    
1715 jonathan 673 * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
1716     to improve rendering performance by initializing the variables
1717     that are not change each time draw_polygon_shape() is called.
1718     The values are stored in a global struct draw_info.
1719     (draw_polygon_shape): Removed initialization code that is
1720     now in draw_polygon_init().
1721    
1722     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
1723 jonathan 674 drawing initialization call to draw_polygon_init()
1724     (MapRenderer.draw_polygon_shape): Use new signature of
1725     draw_polygon_shape.
1726 jonathan 673
1727 jonathan 674 * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
1728     weirdness by setting the range to (1, maxint).
1729 jonathan 673
1730 jonathan 674 * Thuban/Model/classification.py (ClassGroupProperties): Make
1731     instance variables private and optimize comparison operator
1732     by first checking if the color references are the same.
1733     (ClassGroupSingleton): Make instance variables private.
1734     (ClassGroupRange): Make instance variables private.
1735 jonathan 673
1736 jonathan 674 * HOWTO-Release: Filled in missing steps for releasing packages.
1737    
1738 bh 672 2003-04-15 Bernhard Herzog <[email protected]>
1739    
1740     First stab at internationalized messages:
1741    
1742     * Thuban/__init__.py (_): Implement the translation function for
1743     real using the python gettext module.
1744    
1745     * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
1746     translate empty strings.
1747    
1748     * Thuban/UI/application.py (ThubanApplication.read_startup_files):
1749     Add a missing space to a warning message
1750    
1751     * po/README: New. Notes about the management of the translation
1752     files.
1753    
1754     * po/Makefile: New. Makefile to help manage the translation files.
1755    
1756     * po/es.po: New. Spanish translation by Daniel Calvelo Aros
1757    
1758     * MANIFEST.in: Include the *.mo files in Resources/Locale and the
1759     translations and support files in po/
1760    
1761     * setup.py (data_files): Add the *.mo files to the data_files too
1762    
1763     * README: Add note about the translations when building from CVS
1764    
1765 jonathan 669 2003-04-14 Jonathan Coles <[email protected]>
1766    
1767     * Thuban/UI/dock.py: Fixes some window resizing problems most
1768     noticable under windows. Always assume the button bitmaps will
1769     be there. Code clean up.
1770     (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
1771     images for the dock/undock button to the same images.
1772     Work around for RTbug #1801.
1773    
1774     * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
1775     be allowed to grow within the sizer. Fixes a bug under Windows
1776     where the toolbar wasn't being drawn.
1777    
1778 frank 664 2003-04-14 Frank Koormann <[email protected]>
1779    
1780     * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
1781     Updated design to try to make the button functionality more
1782     transparent.
1783    
1784 jonathan 662 2003-04-14 Jonathan Coles <[email protected]>
1785    
1786     * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
1787     finalize the intialization of the panel.
1788    
1789     * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
1790     creation of the panel. Should be the last thing called in the
1791     initializer of a subclass.
1792    
1793     * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
1794     set the current selections in the combo boxes. This is needed
1795     under Windows.
1796    
1797     * Thuban/UI/classifier.py (Classifier.__init__): Add a top
1798     level panel to the dialog so that the background colors are
1799     consistent under Windows.
1800    
1801 jonathan 646 2003-04-11 Jonathan Coles <[email protected]>
1802    
1803 jonathan 662 * Thuban/UI/classgen.py: Change color ramps to start at white
1804     not black.
1805    
1806     * Thuban/UI/legend.py: Enable/disable the legend buttons when
1807     the legend changes. Fixes RTbug #1793.
1808    
1809     * test/test_classification.py: Added test for copying of
1810     classifications.
1811    
1812     2003-04-11 Jonathan Coles <[email protected]>
1813    
1814 jonathan 647 * Thuban/UI/resource.py: New. Centralize the loading of resources
1815     such as bitmaps.
1816    
1817     * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
1818     added images to the move buttons, added 'reverse' button.
1819     (CustomRampPanel.__init__): Added images to the move buttons.
1820     (GreyRamp): New. Generates a ramp from white to black.
1821     (HotToColdRamp): New. Generates a ramp from cold to hot colors.
1822    
1823     * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
1824     ID_PROPERTY_*.
1825     (Classifier.__init__): Minor changes to the layout.
1826     (Classifier._OnTitleChanged): Listen for when the user edits the
1827     title and update the dialog's title and the layer's title.
1828    
1829     * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
1830    
1831     * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
1832     (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
1833     if the layer's title changes.
1834    
1835     * Thuban/UI/mainwindow.py: Added new menu item and associated code
1836     to open a dialog to rename the map.
1837     (MainWindow): Use new resource class to import bitmaps.
1838    
1839     2003-04-11 Jonathan Coles <[email protected]>
1840    
1841 jonathan 646 * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
1842 jonathan 647 Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
1843     Resources/Bitmaps/group_use_none.xpm,
1844     Resources/Bitmaps/group_use_not.xpm,
1845     Resources/Bitmaps/hide_layer.xpm,
1846     Resources/Bitmaps/layer_properties.xpm,
1847     Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
1848     Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
1849     New.
1850 jonathan 646
1851 jonathan 636 2003-04-10 Jonathan Coles <[email protected]>
1852    
1853 jonathan 644 * Thuban/Model/classification.py: (ClassGroupRange.__init__):
1854     Should pass group to ClassGroup constructor.
1855    
1856     2003-04-10 Jonathan Coles <[email protected]>
1857    
1858 jonathan 636 * Thuban/Model/classification.py: (ClassGroup): Move all the common
1859     methods of the derived classes ([Set|Get]Properties(), __eq__, __ne__)
1860     here. Implement SetVisible(), IsVisible().
1861     (ClassGroup.__init__): Add group parameter which acts as a copy
1862     constructor.
1863    
1864     * Thuban/UI/classifier.py (ClassTable): Add a new column for the
1865     "Visible" check boxes.
1866     (Classifier): Rename the buttons and refactor the code to match
1867     the new labels.
1868    
1869     * Thuban/UI/legend.py: Classify button is now called "Properties".
1870     Refactored the code to change variable names.
1871     (LegendTree.__FillTreeLayer): Only list a group if it is visible.
1872    
1873     * Thuban/UI/mainwindow.py: MainWindow.OpenClassifier renamed to
1874     MainWindow.OpenLayerProperties. MainWindow.LayerEditProperties
1875     renamed to MainWindow.LayerEditProperties.
1876     (MainWindow.ToggleLegend): Don't include map name in legend title.
1877     (MainWindow.SetMap): Added the map name to the window title.
1878     (MainWindow.LayerFillColor, MainWindow.LayerTransparentFill,
1879     MainWindow.LayerOutlineColor, MainWindow.LayerNoOutline): Removed.
1880     Functionality is found in the layer properties dialog.
1881    
1882     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
1883     draw visible groups.
1884    
1885 jonathan 626 2003-04-09 Jonathan Coles <[email protected]>
1886    
1887 jonathan 634 * Thuban/UI/classgen.py: Modifications to allow simple
1888     addition and selection of new color schemes.
1889     (MonochromaticRamp): New. Generates a ramp between two colors.
1890     (RedRamp): New. Generates a ramp of all red.
1891     (GreenRamp): New. Generates a ramp of all green.
1892     (BlueRamp): New. Generates a ramp of all blue.
1893    
1894     2003-04-09 Jonathan Coles <[email protected]>
1895    
1896 jonathan 626 * Thuban/Model/classification.py (Classification.__deepcopy__):
1897     Need to copy over field and fieldType attributes.
1898    
1899     * Thuban/Model/table.py (Table.field_range): New. Retrive the
1900     maximum and minimum values over the entire table for a given
1901     field.
1902     (Table.GetUniqueValues): New. Retrieve all the unique values
1903     in the table for a given field.
1904    
1905     * Thuban/UI/classgen.py: Renamed GenRangePanel to GenUniformPanel.
1906     (GenUniquePanel): New. Controls to allow the user to select
1907     which unique field values they would like in the classification.
1908     (CustomRampPanel): Code that was in ClassGenDialog that allows
1909     the user to select the properties for a custom ramp.
1910     (ClassGenerator.GenUniformDistribution): Was called GenerateRanges.
1911    
1912     * Thuban/UI/classifier.py: Removed a lot of debugging code.
1913     (Classifier._SetClassification): Callback method so that the
1914     class generator can set the classification in the grid.
1915     (ClassGroupPropertiesCtrl): New. Encapsulates the drawing and
1916     editing of a group properties class into a wxWindows control.
1917    
1918     * Thuban/UI/dock.py: It was decided that if the user closes
1919     a dockable window the window should simply hide itself. That
1920     way if the user wants to show the dock again it appears in the
1921     same place as it was when it was closed.
1922     (DockableWindow.Destroy): Call renamed method OnDockDestroy().
1923     (DockableWindow._OnButtonClose): Hide the window instead of
1924     destroying it.
1925     (DockableWindow._OnClose): Hide the window instead of
1926     destroying it.
1927    
1928     * Thuban/UI/legend.py (LegendTree): Use a private method to
1929     consistently set the font and style of the text. Fixes RTbug #1786.
1930    
1931     * Thuban/UI/mainwindow.py: Import just the Classifier class.
1932    
1933 bh 623 2003-04-07 Bernhard Herzog <[email protected]>
1934    
1935 bh 625 * Thuban/UI/mainwindow.py (main_menu): Move the toggle_legend item
1936     to the map module
1937    
1938     2003-04-07 Bernhard Herzog <[email protected]>
1939    
1940 bh 623 * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree): Removed in
1941     favor of ToggleSessionTree
1942     (MainWindow.ToggleSessionTree): New method to toggle visibility of
1943     the session tree.
1944     (MainWindow.SessionTreeShown): New method to return whether the
1945     session tree is currently shown.
1946     (MainWindow.ToggleLegend): New method to toggle visibility of the
1947     legend
1948     (MainWindow.ShowLegend): Implement in terms of ToggleLegend and
1949     LegendShown
1950     (MainWindow.LegendShown): New method to return whether the legend
1951     is currently shown.
1952     (_method_command): Add checked parameter so we can define check
1953     menu items
1954     (_has_tree_window_shown, _has_legend_shown): Use the appropriate
1955     mainwindow methods.
1956     (show_session_tree, show_legend commands): Removed.
1957     (toggle_session_tree, toggle_legend commands): New commands to
1958     toggle the visibility of the dialogs
1959    
1960 jonathan 612 2003-04-07 Jonathan Coles <[email protected]>
1961    
1962 jonathan 619 * Thuban/UI/classgen.py: Fix Windows problem.
1963    
1964     * Thuban/UI/dock.py: Fix Windows problem.
1965    
1966     * Thuban/UI/mainwindow.py: Use False instead of false.
1967     (MainWindow.ShowLegend): Remove unnecessary switch parameter.
1968    
1969     2003-04-07 Jonathan Coles <[email protected]>
1970    
1971 jonathan 612 Since we now say that the order of the groups in a classification
1972     matters, it makes sense to be able to manipulate that order. Most
1973     of the changes to Thuban/Model/classification.py are to that end.
1974    
1975     * Thuban/Model/classification.py (Classification.AppendGroup,
1976     Classification.InsertGroup, Classification.ReplaceGroup,
1977     Classification.RemoveGroup, Classification.GetGroup): Do as the
1978     names imply.
1979     (Classification.FindGroup): This was called GetGroup, but GetGroup
1980     takes an index, while FindGroup takes a value.
1981     (Classification.__deepcopy__): Copy all the groups, BUT NOT THE LAYER
1982     REFERENCE. Currently there is a cyclic reference between the layer
1983     and its classification. If the classification doesn't need to know
1984     its owning layer we can change this, since it may make sense to be
1985     able to use the same classification with different layers.
1986    
1987     * Thuban/Model/load.py: Use Classification.AppendGroup(), not AddGroup()
1988    
1989     * Thuban/UI/classgen.py: Use Classification.AppendGroup(),
1990     not AddGroup()
1991    
1992     * Thuban/UI/classifier.py: Now that we can depend on the order in
1993     a Classification and have methods to manipulate that order we don't
1994     need to use our own data structures in the grid. We can simply make
1995     the grid/table access the information they need from a copy of
1996     the classification object.
1997     (Classifier._OnCloseBtn): Event handler for when the user clicks
1998     'Close'. This is needed so if the user applies changes and then
1999     continues to change the table the user has the option of discarding
2000     the most recent changes and keeping what they applied.
2001    
2002     * Thuban/UI/mainwindow.py: Put "Show Legend" and "Show Session Tree"
2003     into the same group.
2004    
2005     * extensions/thuban/wxproj.cpp (check_version): If Thuban is compiled
2006     with a really old version of proj, PJ_VERSION won't even be defined.
2007     If it isn't defined then just compile so that the function always
2008     returns Py_False.
2009    
2010     * test/test_classification.py: Fix tests to use the renamed methods.
2011     Still need to write tests for the new methods.
2012    
2013 jonathan 601 2003-04-04 Jonathan Coles <[email protected]>
2014 jonathan 608
2015 jonathan 612 * Thuban/UI/classifier.py (Classifier.__SelectField): Move the
2016     call to SetSelection out of the method and before the call
2017     to __SelectField in __init__. This prevents a recursion of events
2018     when _OnFieldSelect is triggered by the user.
2019    
2020     2003-04-04 Jonathan Coles <[email protected]>
2021    
2022 jonathan 608 * Thuban/Model/classification.py: Rename Color.None to
2023     Color.Transparent.
2024     (ClassGroupProperties.SetLineColori, ClassGroupProperties.SetFill):
2025     Don't bother copying the color, since Colors are immutable.
2026    
2027     * Thuban/Model/color.py, Thuban/Model/layer.py, Thuban/Model/load.py,
2028     Thuban/UI/classifier.py, Thuban/UI/mainwindow.py,
2029     Thuban/UI/renderer.py, Thuban/UI/view.py:
2030     Rename Color.None to Color.Transparent.
2031    
2032     * test/test_classification.py, test/test_load.py: Rename Color.None
2033     to Color.Transparent.
2034    
2035     2003-04-04 Jonathan Coles <[email protected]>
2036 jonathan 603
2037     * Thuban/Model/classification.py: Fix assert calls.
2038     (ClassGroupProperties.SetLineColor, ClassGroupProperties.SetFill):
2039     Copy the color parameter rather than hold onto a reference.
2040 jonathan 601
2041 jonathan 603 * Thuban/Model/color.py (Color.__copy__, Color.__deepcopy): Copy
2042     the color object.
2043     (NoColor.__copy__, NoColor.__deepcopy): Return 'self' so that we
2044     are sure there exists only one refernce to Color.None in the system.
2045     This allows us to use 'is' rather than the comparision functions.
2046    
2047     * Thuban/Model/save.py: Fix assert calls.
2048    
2049     * Thuban/UI/classifier.py: Fix assert calls.
2050     (ClassGrid._OnCellDClick): Call up to the classifier to open the
2051     dialog to edit the groups properties.
2052     (ClassGrid._OnCellResize): Make sure that the scollbars are drawn
2053     correctly if a cell is resized.
2054     (ClassTable.SetClassification): New. Changes the classification
2055     that is in the table.
2056     (ClassTable.__SetRow): Allow groups to be prepended.
2057     (Classifier): New code for opening the EditProperties and
2058     GenerateRanges dialogs.
2059     (SelectPropertiesDialog.__GetColor): Only set the color in the
2060     color dialog if the current color is not None.
2061    
2062     * Thuban/UI/dock.py: Fix assert calls.
2063    
2064     * Thuban/UI/legend.py: Fix assert calls.
2065    
2066     * Thuban/UI/renderer.py: Fix assert calls.
2067    
2068     * Thuban/UI/classgen.py (ClassGenDialog): Dialog for generating
2069     classifications.
2070     (GenRangePanel): Panel specific to range generation.
2071     (GenSingletonPanel): Panel specific to singleton generation.
2072     (ClassGenerator): Class responsible for actually generating
2073     the classification from the data gathered in the dialog box.
2074     (PropertyRamp): Generates properties whose values range from
2075     a starting property to an ending property.
2076 jonathan 601
2077 bh 600 2003-04-03 Bernhard Herzog <[email protected]>
2078    
2079     * test/support.py (print_garbage_information): New function that
2080     prints information about still connected messages and memory
2081     leaks.
2082     (run_suite): Removed.
2083     (run_tests): New function for use as a replacement of
2084     unittest.main in the test_* files. This one calls
2085     print_garbage_information at the end.
2086    
2087     * test/runtests.py (main): Use support.print_garbage_information
2088    
2089     * test/test_layer.py: Use support.run_tests instead of
2090     unittest.main so we get memory leak information
2091     (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
2092     (TestLayer.test_point_layer, TestLayer.test_empty_layer)
2093     (TestLayerLegend.test_visibility): Call the layer's Destroy method
2094     to fix a memory leak.
2095    
2096     * test/test_classification.py: Use support.run_tests instead of
2097     unittest.main so we get memory leak information
2098     (TestClassification.test_classification): Call the layer's Destroy
2099     method to fix a memory leak.
2100    
2101 bh 591 2003-04-02 Bernhard Herzog <[email protected]>
2102    
2103 bh 595 * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
2104     Handle the reference counts of the return value and errors in
2105     PyArg_ParseTuple correctly.
2106    
2107 bh 593 * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
2108     sure the filename is absolute to avoid problems when saving the
2109     session again
2110    
2111 bh 591 * Thuban/Model/table.py: Remove unnecessary import. Fix a typo.
2112    
2113 jonathan 587 2003-04-01 Jonathan Coles <[email protected]>
2114    
2115 jonathan 589 * Thuban/UI/renderer.py (MapRenderer.draw_point_shape): Check
2116 jonathan 587 that there actually are points in the returned list of points
2117     before trying to index into the list. The list may be empty if
2118     the shape is a Null Shape.
2119    
2120 bh 586 2003-04-01 Bernhard Herzog <[email protected]>
2121    
2122     * test/test_map.py: Don't use from <module> import *
2123    
2124 jonathan 581 2003-04-01 Jonathan Coles <[email protected]>
2125    
2126     * Thuban/Model/session.py: Use LAYER_CHANGED instead of
2127     LAYER_LEGEND_CHANGED
2128    
2129     * Thuban/UI/dock.py (DockableWindow._OnButtonClose): Call
2130     self.Destroy() to close the window after yesterday's changes.
2131    
2132     * test/test_map.py, test/test_session.py: Fix messages that
2133     are sent from maps and layers.
2134    
2135 jonathan 575 2003-03-31 Jonathan Coles <[email protected]>
2136    
2137     * Thuban/UI/classifier.py: Commented out some debugging statements.
2138     (ClassDataPreviewer.Draw): Draw rectangles for polygon layers per
2139     RTbug #1769.
2140    
2141     * Thuban/UI/dock.py (DockableWindow.UnDock): Restore size and
2142     position (although position doesn't work yet under GTK).
2143     (DockableWindow.Destroy): New. Called when the window must be
2144     closed. Namely needed when the DockFrame closes and must close
2145     its children.
2146     (DockFrame): Listen for EVT_CLOSE and destroy all children.
2147    
2148     * Thuban/UI/legend.py (LegendPanel.Destroy): New. Cleans up
2149     when then window is told to close.
2150     (LegendTree._OnMsgLayerChanged): Fixes a seg fault bug. See
2151     comment in source for more info.
2152    
2153     * Thuban/UI/main.py: Show the legend by default when Thuban starts.
2154    
2155     * Thuban/UI/mainwindow.py: Renamed OnClose to _OnClose for
2156     symmetry with other such methods.
2157     (MainWindow.ShowLegend): Show the legend docked by default.
2158    
2159 jonathan 569 2003-03-28 Jonathan Coles <[email protected]>
2160    
2161     * Thuban/UI/classifier.py: Support for highlighting a specific
2162     group within the grid when the classification dialog is opened.
2163     Also contains a lot of debugging printouts which will later
2164     be removed.
2165    
2166     * Thuban/UI/dock.py: Complete rework on the dock code so that
2167     that it is fairly removed from the rest of the Thuban application.
2168     It is easy to add new docks which the rest of the program having
2169     to be aware of them.
2170    
2171     * Thuban/UI/legend.py: Modifications to support selecting a
2172     specific group in the classification dialog. Changed how layers
2173     are drawn when the layer is visible/invisible.
2174    
2175     * Thuban/UI/mainwindow.py: Removed legend specific code and
2176     replaced it with calls to the new dock code.
2177    
2178     * Thuban/UI/renderer.py (MapRenderer.__init__): Added assert
2179     to check if scale > 0. Trying to track down a divide by zero.
2180    
2181 jonathan 557 2003-03-26 Jonathan Coles <[email protected]>
2182    
2183 jonathan 567 * Thuban/UI/legend.py: Removed unnecessary LegendDialog class.
2184     (LegendPanel): Removed _OnDock()/_OnUnDock() methods which are
2185     now part of DockableWindow.
2186     (LegendPanel.DoOnSelChanged): Select the current layer in the
2187     map.
2188     (LegendTree._OnSelChanged): Call LegendPanel.DoOnSelChanged()
2189     with the selected layer and/or group.
2190    
2191     2003-03-26 Jonathan Coles <[email protected]>
2192    
2193 jonathan 557 This putback contains the code for dockable windows. There is
2194     no support in wxWindows as of this date for windows that can
2195     attach themselves to other windows.
2196    
2197     The current model contains a DockableWindow which has a parent
2198     window for when it is detached and a dock window that it puts
2199     its contents in when it is docked. The contents of a DockableWindow
2200     must be a DockPanel. DockPanel itself derives from wxPanel.
2201    
2202     * Thuban/Model/layer.py (Layer.ClassChanged): Send a LAYER_CHANGED
2203     message, not a LAYER_LEGEND_CHANGED message.
2204    
2205     * Thuban/Model/map.py (Map): Forward LAYER_CHANGED messages.
2206    
2207     * Thuban/UI/classifier.py (Classifier.__init__): Use wxADJUST_MINSIZE
2208     as one of the style properties for the fieldTypeText item to
2209     be sure that its size is correct when the text changes.
2210    
2211     * Thuban/UI/dock.py: New. Classes for the DockPanel and
2212     DockableWindow.
2213    
2214     * Thuban/UI/legend.py: Added some more buttons and made the
2215     LegendPanel a DockPanel.
2216    
2217     * Thuban/UI/mainwindow.py: Added sash windows to the main window
2218     and supporting functions for manipulating the sashes.
2219     (MainWindow.ShowLegend): Create a DockableWindow with the
2220     LegendPanel as the contents.
2221    
2222     * Thuban/UI/messages.py: Added DOCKABLE_* messages
2223    
2224     * Thuban/UI/view.py (MapCanves.SetMap): Listen for LAYER_CHANGED,
2225     not LAYER_LEGEND_CHANGED, messages.
2226    
2227 jonathan 554 2003-03-25 Jonathan Coles <[email protected]>
2228    
2229     * setup.py: Added custom script bdist_rpm_build_script so that
2230     when the rpm is built the path to wx-config is correct.
2231    
2232     * setup.cfg: Added line saying to use the custom build script
2233    
2234 jonathan 552 2003-03-20 Jonathan Coles <[email protected]>
2235    
2236     Initial implementation of the Legend.
2237    
2238     * Thuban/UI/legend.py: New. Creates a window that shows the map's
2239     Legend information and allows the user to add/modify classifications
2240     and how the layers are drawn on the map.
2241    
2242     * setup.py: New command 'build_docs' which currently uses
2243     happydoc to generate html documentation for Thuban.
2244    
2245     * Thuban/Model/classification.py (ClassGroup.GetDisplayText): New.
2246     Returns a string which is appropriately describes the group.
2247    
2248     * Thuban/Model/layer.py (Layer.SetClassification): Generate a
2249     LAYER_CHANGED event instead of a LAYER_LEGEND_CHANGED event.
2250    
2251     * Thuban/Model/map.py (Map): Rename messages and use new, more
2252     specific, messages.
2253    
2254     * Thuban/Model/messages.py: New message to indicate that a layer's
2255     data has changed (LAYER_CHANGED). New map messages to indicate
2256     when layers have been added/removed/changed or if the stacking order
2257     of the layers has changed.
2258    
2259     * Thuban/Model/session.py: Rename and use new messages.
2260    
2261     * Thuban/UI/classifier.py: Remember if any changes have actually
2262     been applied so that if the dialog is cancelled without an application
2263     of changes we don't have to set a new classification.
2264     (ClassDataPreviewer): Pulled out the window specific code and put it
2265     ClassDataPreviewWindow. ClassDataPreviewer can then be used to draw
2266     symbols on any DC.
2267    
2268     * Thuban/UI/mainwindow.py: New code to open the legend.
2269    
2270     * Thuban/UI/view.py: Use new message names.
2271    
2272 jonathan 541 2003-03-19 Jonathan Coles <[email protected]>
2273    
2274     * Thuban/UI/main.py (verify_versions): New. Checks the versions
2275     of Python, wxPython, and some other libraries.
2276    
2277     * extensions/thuban/wxproj.cpp (check_version): Checks the given
2278     version against what wxproj was compiled with.
2279     (check_version_gtk): If wxproj was compiled with gtk then check
2280     the given version against the version of the gtk library
2281     currently being used.
2282    
2283 bh 538 2003-03-14 Bernhard Herzog <[email protected]>
2284    
2285     * test/test_command.py: Run the tests when the module is run as a
2286     script
2287    
2288     2003-03-14 Bernhard Herzog <[email protected]>
2289    
2290     Implement selection of multiple selected shapes in the same layer:
2291    
2292     - Introduce a new class to hold the selection. This basically
2293     replaces the interactor which was nothing more than the
2294     selection anyway. A major difference is of course that the new
2295     selection class supports multiple selected shapes in one layer
2296    
2297     - Move the object that represents the selection from the
2298     application to the canvas. The canvas is a better place than the
2299     application because the selection represents which shapes and
2300     layer of the map displayed by the canvas are selected and
2301     affects how the map is drawn.
2302    
2303     - Make the selection and its messages publicly available through
2304     the mainwindow.
2305    
2306     - The non-modal dialogs do not get a reference to the interactor
2307     anymore as they can simply refer to their parent, the
2308     mainwindow, for the what the interactor had to offer.
2309    
2310     * Thuban/UI/selection.py: New module with a class to represent the
2311     selection.
2312    
2313     * Thuban/UI/messages.py (SELECTED_TABLE, SELECTED_MAP): Remove
2314     these unused messages
2315    
2316     * Thuban/UI/application.py (ThubanApplication.OnInit)
2317     (ThubanApplication.OnExit, ThubanApplication.SetSession): The
2318     interactor is gone now.
2319     (ThubanApplication.CreateMainWindow): There is no interactor
2320     anymore so we pass None as the interactor argument for now for
2321     compatibility.
2322    
2323     * Thuban/UI/view.py (MapCanvas.delegated_messages)
2324     (MapCanvas.Subscribe, MapCanvas.Unsubscribe): In Subscribe and
2325     Unsubscribe, delegate messages according to the delegated_messages
2326     class variable.
2327     (MapCanvas.__getattr__, MapCanvas.delegated_methods): Get some
2328     attributes from instance variables as described with the
2329     delegated_methods class variable.
2330     (MapCanvas.__init__): New instance variable selection holding the
2331     current selection
2332     (MapCanvas.do_redraw): Deal with multiple selected shapes. Simply
2333     pass them on to the renderer
2334     (MapCanvas.SetMap): Clear the selection when a different map is
2335     selected.
2336     (MapCanvas.shape_selected): Simple force a complete redraw. The
2337     selection class now takes care of only issueing SHAPES_SELECTED
2338     messages when the set of selected shapes actually does change.
2339     (MapCanvas.SelectShapeAt): The selection is now managed in
2340     self.selection
2341    
2342     * Thuban/UI/mainwindow.py (MainWindow.delegated_messages)
2343     (MainWindow.Subscribe, MainWindow.Unsubscribe): In Subscribe and
2344     Unsubscribe, delegate messages according to the delegated_messages
2345     class variable.
2346     (MainWindow.delegated_methods, MainWindow.__getattr__): Get some
2347     attributes from instance variables as described with the
2348     delegated_methods class variable.
2349     (MainWindow.__init__): The interactor as ivar is gone. The
2350     parameter is still there for compatibility. The selection messages
2351     now come from the canvas.
2352     (MainWindow.current_layer, MainWindow.has_selected_layer):
2353     Delegate to the the canvas.
2354     (MainWindow.LayerShowTable, MainWindow.Classify)
2355     (MainWindow.identify_view_on_demand): The dialogs don't need the
2356     interactor parameter anymore.
2357    
2358     * Thuban/UI/tableview.py (TableFrame.__init__)
2359     (LayerTableFrame.__init__, LayerTableFrame.OnClose)
2360     (LayerTableFrame.row_selected): The interactor is gone. It's job
2361     from the dialog's point of view is now done by the mainwindow,
2362     i.e. the parent. Subscribe to SHAPES_SELECTED instead
2363     of SELECTED_SHAPE
2364    
2365     * Thuban/UI/dialogs.py (NonModalDialog.__init__): The interactor
2366     is gone. It's job from the dialog's point of view is now done by
2367     the mainwindow, i.e. the parent.
2368    
2369     * Thuban/UI/classifier.py (Classifier.__init__): The interactor is
2370     gone. It's job from the dialog's point of view is now done by the
2371     mainwindow, i.e. the parent.
2372    
2373     * Thuban/UI/tree.py (SessionTreeView.__init__): The interactor is
2374     gone. It's job from the dialog's point of view is now done by the
2375     mainwindow, i.e. the parent.
2376     (SessionTreeCtrl.__init__): New parameter mainwindow which is
2377     stored as self.mainwindow. The mainwindow is need so that the tree
2378     can still subscribe to the selection messages.
2379     (SessionTreeCtrl.__init__, SessionTreeCtrl.unsubscribe_all)
2380     (SessionTreeCtrl.update_tree, SessionTreeCtrl.OnSelChanged): The
2381     selection is now accessible through the mainwindow. Subscribe to
2382     SHAPES_SELECTED instead of SELECTED_SHAPE
2383    
2384     * Thuban/UI/identifyview.py (IdentifyView.__init__): Use the
2385     SHAPES_SELECTED message now.
2386     (IdentifyView.selected_shape): Now subscribed to SHAPES_SELECTED,
2387     so deal with multiple shapes
2388     (IdentifyView.__init__, IdentifyView.OnClose): The interactor is
2389     gone. It's job from the dialog's point of view is now done by the
2390     mainwindow, i.e. the parent.
2391    
2392     * Thuban/UI/controls.py (RecordListCtrl.fill_list): The second
2393     parameter is now a list of shape ids.
2394     (RecordTable.SetTable): The second parameter is now a list of
2395     indices.
2396    
2397     * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Rename the
2398     selected_shape parameter and ivar to selected_shapes. It's now a
2399     list of shape ids.
2400     (MapRenderer.draw_label_layer): Deal with multiple selected
2401     shapes. Rearrange the code a bit so that the setup and shape type
2402     distinctions are only executed once.
2403    
2404     * test/test_selection.py: Test cases for the selection class
2405    
2406 jonathan 527 2003-03-11 Jonathan Coles <[email protected]>
2407    
2408     * Thuban/Model/load.py: Temporary fix so that the xml reader
2409     doesn't cause Thuban to crash.
2410    
2411     * Thuban/Model/layer.py: Handle the cyclic references between
2412     a layer and its classification better, and be sure to disconnect
2413     the classification from the layer when the layer is destroyed
2414     so that we don't maintain a cyclic reference that may not be
2415     garbage collected.
2416    
2417     * Thuban/Model/classification.py: See comment for layer.py.
2418    
2419 jan 523 2003-03-12 Jan-Oliver Wagner <[email protected]>
2420    
2421     * HOWTO-Release: New. Information on the steps for releasing
2422     a new version of Thuban.
2423    
2424 jonathan 514 2003-03-11 Jonathan Coles <[email protected]>
2425    
2426     * Thuban/UI/classifier.py: Add normal border to SelectPropertiesDialog.
2427     Use True instead of true.
2428     (Classifier): Should have a single panel in which all the controls lie.
2429    
2430     * Thuban/UI/proj4dialog.py: Add normal border.
2431    
2432     * Thuban/UI/tree.py: Fixed problem with bad item images under Windows.
2433    
2434     * Thuban/UI/mainwindow.py: Use True instead of true.
2435    
2436     * setup.py: Update some definitions to use wxWindows2.4 files
2437    
2438     * Data/iceland_sample_class.thuban: Fixed file so that the
2439     field_type information is present.
2440    
2441 jonathan 490 2003-03-10 Jonathan Coles <[email protected]>
2442    
2443 jonathan 505 * Thuban/UI/classifier.py (Classifier.__init__): Make the
2444     field type label grow so that when the text changes the
2445     size is updated correctly. This may be a wxWindows bug.
2446    
2447     2003-03-10 Jonathan Coles <[email protected]>
2448    
2449 jonathan 499 * Thuban/UI/application.py: Changed SESSION_CHANGED to
2450     SESSION_REPLACED.
2451    
2452     * Thuban/UI/classifier.py: Wrap text with _().
2453     (ClassGrid.CreateTable): Set dimensions and size hints here,
2454     instead of in Reset, so we only set the size once.
2455    
2456     * Thuban/UI/dialogs.py: Don't need Shutdown(); just use Close()!
2457    
2458     * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
2459     Call Close() instead of Shutdown().
2460    
2461     * Thuban/UI/messages.py: Changed SESSION_CHANGED to SESSION_REPLACED.
2462    
2463     * Thuban/UI/tree.py: Changed SESSION_CHANGED to SESSION_REPLACED.
2464     Go back to using OnClose() instead of Shutdown().
2465    
2466     2003-03-10 Jonathan Coles <[email protected]>
2467    
2468 jonathan 497 * Thuban/UI/classifier.py (Classifier): SelectField() needed
2469     to know the old field index as well as the new one.
2470    
2471     2003-03-10 Jonathan Coles <[email protected]>
2472    
2473 jonathan 495 * Thuban/UI/classifier.py (Classifier): Use __SelectField()
2474     to correctly set the table information and call this from
2475     __init__ and from _OnFieldSelect so that all the information
2476     is up to date when the dialog opens and when a field is changed.
2477    
2478     2003-03-10 Jonathan Coles <[email protected]>
2479    
2480 jonathan 490 * Thuban/Model/classification.py (Classification): Don't use
2481     layer's message function directly, use the ClassChanged() method
2482     when then classification changes. SetField/SetFieldType/SetLayer
2483     must keep the information about field name and field type in
2484     sync when an owning layer is set or removed.
2485    
2486     * Thuban/Model/layer.py: Added ClassChanged() so that the
2487     classification can tell the layer when its data has changed.
2488     (Layer.SetClassification): Accepts None as an arguement to
2489     remove the current classification and correctly handles
2490     adding a new classification.
2491    
2492     * Thuban/Model/load.py: Comment out print statement
2493    
2494     * test/test_classification.py, test/test_save.py: New and
2495     improved tests.
2496    
2497 jonathan 483 2003-03-07 Jonathan Coles <[email protected]>
2498    
2499     * Thuban/Model/classification.py: Implemented __copy__ and
2500     __deepcopy__ for ClassGroup* and ClassGroupProperites so
2501     they can easily be copied by the classifier dialog.
2502     (ClassGroupProperites.__init__): The default line color should
2503     have been Color.Black.
2504    
2505     * Thuban/UI/classifier.py: Setting and Getting table values now
2506     uses a consistent set of functions.
2507     (Classifier): Now non-modal. Has field type label which changes
2508     as the field changes. Keep track of buttons in a list so that
2509     we can enable/disable the buttons when the None field is selected.
2510     (SelectPropertiesDialog): Add buttons to make the colors transparent.
2511    
2512     * Thuban/UI/dialogs.py (NonModalDialog.Shutdown): New method which
2513     does what OnClose did, but can be called by the application to
2514     close a window. Needed when a session changes, and we have to
2515     close the classifier windows.
2516    
2517     * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
2518     Shuts down open dialogs. Used when a new session is created
2519     or a session is opened.
2520     (MainWindow.SaveSession): Should only call application.SaveSession()
2521     if we don't call SaveSessionAs first.
2522     (MainWindow.Classify): Allow different classifier dialogs for
2523     different layers.
2524    
2525     * Thuban/UI/tree.py (SessionTreeView): Remove OnClose and let
2526     the parent class handle it. Add Shutdown() to unsubscibe from
2527     event notification and call the parent Shutdown(). This was
2528     necessary so the application can close the tree window.
2529    
2530 jonathan 478 2003-03-06 Jonathan Coles <[email protected]>
2531    
2532     * Thuban/Model/classification.py: Minor documentation changes,
2533     Addition of __eq__ and __ne__ methods.
2534     (Classification.SetLayer): prevent recursion between this method
2535     and Layer.SetClassification().
2536    
2537     * Thuban/Model/color.py: Addition of __eq__ and __ne__ methods.
2538    
2539     * Thuban/Model/layer.py (SetClassification): prevent recursion
2540     between this method and Classification.SetLayer().
2541    
2542     * test/test_classification.py, test/test_load.py,
2543     test/test_session.py: Fixed and added tests for the classification
2544     classes.
2545    
2546 bh 477 2003-03-06 Bernhard Herzog <[email protected]>
2547    
2548     * Thuban/UI/classifier.py (ClassGrid.__init__)
2549     (ClassGrid.CreateTable): Move the SetSelectionMode call to
2550     CreateTable because otherwise it triggers an assertion in
2551     wxPython/wxGTK 2.4.
2552    
2553 jonathan 459 2003-03-05 Jonathan Coles <[email protected]>
2554    
2555 jonathan 475 * Thuban/common.py: Move FIELDTYPE constants back to table.py.
2556 jonathan 471
2557 jonathan 475 * Thuban/Model/load.py: import FIELDTYPE constants from table.
2558 jonathan 471
2559 jonathan 475 * Thuban/UI/classifier.py: import FIELDTYPE constants from table.
2560 jonathan 471
2561 jonathan 475 * Thuban/Model/table.py: Put FIELDTYPE constants back.
2562 jonathan 471
2563     2003-03-05 Jonathan Coles <[email protected]>
2564    
2565 jonathan 459 * Thuban/UI/classifier.py: Added class documentation.
2566     Fixed RTbug #1713, #1714. Added Move[Up|Down] buttons.
2567     Store just the groups in the table and generate the other
2568     column information when it is requested. Add "None" field
2569     to pull-down to select no classification.
2570    
2571     * Thuban/common.py: Moved FIELDTYPE constants from table.py
2572     (Str2Num): Only catch ValueError exceptions.
2573    
2574     * Thuban/Model/classification.py: Class documentation. Renaming
2575     of methods with Stroke to Line. Groups are stored in a single
2576     list with the default as the first element. Groups are searched
2577     in the order they appear in the list.
2578    
2579     * Thuban/Model/color.py: Documentation.
2580    
2581     * Thuban/Model/layer.py (Layer): Add GetFieldType to retreive
2582     the kind of data represented by a field.
2583    
2584     * Thuban/Model/load.py (ProcessSession): Use proper string
2585     conversion function; fixes RTbug #1713.
2586    
2587     * Thuban/Model/save.py (Saver): Store field type information.
2588    
2589     * Thuban/Model/table.py: Put FIELDTYPE constants in common.py.
2590     (Table): Add field_info_by_name() to retrieve field information
2591     by specifying the field name, not the number.
2592    
2593     * Thuban/UI/mainwindow.py: Function name changes.
2594    
2595     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
2596     get the layer classification once. Don't try to classify
2597     values when the field is None: just use the default properties.
2598    
2599     * Thuban/UI/view.py: Function name changes.
2600    
2601     * Doc/thuban.dtd: Add field_type attribute to a classification.
2602    
2603 bh 456 2003-03-04 Bernhard Herzog <[email protected]>
2604    
2605 bh 458 * Doc/thuban.dtd: Use correct syntax for optional attributes. Make
2606     the fill and stroke layer attributes optional with suitable
2607     default values. Add the stroke_width layer attribute. Use correct
2608     syntax for empty elements. Make the attribute list for labels
2609     refer to the label element.
2610    
2611     2003-03-04 Bernhard Herzog <[email protected]>
2612    
2613 bh 456 * setup.py (thuban_build_py.build): Add a comment about distutils in
2614     Python 2.3 containing some of the functionality we implement in
2615     setup.py ourselves.
2616    
2617     * Thuban/UI/classifier.py (ClassGrid.__init__): Set the table
2618     before the selection mode. Doing it the other way round triggers
2619     an assertion in wxWindows.
2620    
2621     * Thuban/Model/save.py (escape): Fix typo in doc-string
2622    
2623     * Thuban/Model/classification.py: Remove unnecessary wxPython
2624     import
2625    
2626 jonathan 448 2003-03-04 Jonathan Coles <[email protected]>
2627    
2628     * Thuban/Model/classification.py (ClassGroupRange.GetProperties):
2629     Parameter 'value' should default to None.
2630    
2631     * Thuban/UI/mainwindow.py: Use Layer.GetClassification() since
2632     the class attribute __classification is now private.
2633    
2634     * Thuban/UI/classifier.py (ClassGrid): Moved OnCellDClick() from
2635     Classifier to ClassGrid. Added support for removing selected rows,
2636     which including code for keeping track of when cells are selected,
2637     and deselected.
2638     (ClassTable): Support for added/removing rows. Fixed a problem
2639     with __ParseInput whereby it would not allow strings (only numbers)
2640     to be entered.
2641     (Classifier): Added button and supporting code for removing
2642     selected rows.
2643    
2644 jonathan 445 2003-02-27 Jonathan Coles <[email protected]>
2645 jonathan 434
2646     * Thuban/common.py: Moved color conversion functions into
2647     Thuban/UI/common.py.
2648     (Str2Num): Now converts the float (not the string) to a long/int
2649     so that an exception isn't thrown.
2650    
2651     * Thuban/UI/common.py: Common functions used in several UI modules
2652    
2653     * Thuban/Model/classification.py: Changed the class hierarchy
2654     so that a Classification consists of Groups which return
2655     Properties when a value matches a Group.
2656    
2657     * Thuban/Model/layer.py: Fixed name resolution problem.
2658    
2659     * Thuban/Model/load.py: Use new Classification and Group functions.
2660    
2661     * Thuban/Model/save.py (Saver.write_attribs): Fixes a test case
2662     failure.
2663     (Saver.write_classification): Use new Classification and Group
2664     functions.
2665    
2666     * Thuban/UI/classifier.py: Changes to use new Classification and Group
2667 jonathan 445 functions. Fix to create a tuple with a single value instead of
2668     simply returning the value.
2669 jonathan 434
2670     * Thuban/UI/renderer.py: Use new Classification and Group functions.
2671     Use common.py functions.
2672    
2673 jonathan 445 * Thuban/UI/tree.py: Use common.py functions.
2674 jonathan 447
2675     * test/test_classification.py: Use new Classification and Group
2676     classes.
2677 jonathan 434
2678 jonathan 426 2003-02-24 Jonathan Coles <[email protected]>
2679    
2680     * Thuban/common.py (Color2wxColour, wxColour2Color): Conversion
2681     functions from Thuban color objects to wxWindow colour objects.
2682    
2683     * Thuban/Model/classification.py (Classification): Renamed
2684     GetProperties() to GetClassData(). Used the new iterator
2685     in TreeInfo().
2686     (ClassIterator): Iterator implementation to iterate over the
2687     ClassData objects in a classification object.
2688    
2689     * Thuban/Model/save.py (Saver.write_classificaton): Uses
2690     the new iterator to save the classification information.
2691    
2692     * Thuban/UI/classifier.py (SelectPropertiesDialog): Support
2693     for changing the stroke and fill colors and previewing the
2694     changes.
2695    
2696     * Thuban/UI/mainwindow.py (MainWindow.OpenSession,
2697     MainWindow.SaveSessionAs): Text string changes so the dialogs
2698     have more meaningful titles.
2699    
2700     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Change
2701     Classification method name from GetProperties to GetClassData.
2702    
2703     * Thuban/UI/view.py (MapCanvas.find_shape_at): Use method calls
2704     instead of accessing now non-existent class variables.
2705    
2706 bh 425 2003-02-24 Bernhard Herzog <[email protected]>
2707    
2708     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Remove
2709     unneeded Shape() call. Rendering is substantially faster without
2710     it and it avoids some problems with broken shape files.
2711    
2712 frank 423 2003-02-20 Frank Koormann <[email protected]>
2713    
2714     Force minimal size of identify and label dialogs. The autosizing
2715     looked too ugly.
2716    
2717     * Thuban/UI/controls.py (RecordListCtrl): Set minimal width for columns.
2718     * Thuban/UI/labeldialog.py (LabelDialog.dialog_layout):
2719     Set size of listctrl.
2720     * Thuban/UI/identifyview.py (IdentifyView.__init__):
2721     Set size of dialog.
2722    
2723 jonathan 408 2003-02-19 Jonathan Coles <[email protected]>
2724    
2725     * test/test_classification.py, test/test_layer.py,
2726     test/test_load.py, test/test_map.py, test/test_session.py:
2727     Updated the tests to use the new functions that are in the
2728     respective classes.
2729    
2730     * Thuban/Model/classification.py (Classification):
2731     Uses the new ClassData* classes. Modification messages are
2732     passed up to the parent layer (if it exists).
2733     (ClassData): New class to encapsulate the common data in each
2734     classification property.
2735     (ClassDataDefault): Represents the Default class. data.
2736     (ClassDataPoint): Represents a single class. data point
2737     (ClassDataRange): Represents a class. range
2738     (ClassDataMap): Represents a class. map (unused).
2739    
2740     * Thuban/Model/color.py: Added Color.None to represent something
2741     with no color. Color.Black represents the color black.
2742     (NoColor): Helper class derived from Color to represent something
2743     with no color.
2744    
2745     * Thuban/Model/layer.py (Layer): Removed references to fill, stroke,
2746     stroke_width attributes. Made the 'classification' attribute private.
2747     New methods for setting/getting the classification.
2748    
2749     * Thuban/Model/load.py (ProcessSession): Use new methods on Layer
2750     to get the classifcation and use the new ClassData* classes to
2751     hold the classification data. Use Str2Num to convert numbers
2752     properly.
2753    
2754     * Thuban/Model/save.py (Saver): Use new Color and Classification
2755     methods
2756    
2757     * Thuban/UI/classifier.py (ClassGrid): New class to represent a
2758     custom grid.
2759     (ClassTable): Support for editing Values and Labels and for
2760     changing what type (point or range) of data is stored in each
2761     property based on how the user enters the data.
2762     (Classifier): Support for saving the new classifications and
2763     launching the dialog to edit a property.
2764     (SelectPropertiesDialog): New class for editing the visual
2765     properties of a classification (stroke color, width, and fill color)
2766     (ClassPreviewer): Took the Draw method from ClassRenderer and
2767     made most of it into this new class. Intend to use this class in
2768     the SelectPropertiesDialog for previewing changes.
2769    
2770     * Thuban/UI/renderer.py: Use new Color and Classification methods.
2771    
2772     * Thuban/UI/tree.py: Formatting changes.
2773    
2774     * Doc/thuban.dtd: Add 'label' element
2775    
2776     * Thuban/common.py: New. Contains common routines used throughout
2777     the code.
2778     (Str2Num): Takes a string and converts it to the "best" type of
2779     number.
2780    
2781 bh 405 2003-02-14 Bernhard Herzog <[email protected]>
2782    
2783     * Thuban/UI/view.py (MapCanvas.OnLeftUp): Make sure that the
2784     dragging flag is always set to 0 even when the tool implementation
2785     raises an exception
2786    
2787 bh 402 2003-02-11 Bernhard Herzog <[email protected]>
2788    
2789     * Thuban/UI/application.py (ThubanApplication.splash_screen): New
2790     method to create a splash screen.
2791     (ThubanApplication.ShowMainWindow): New. Show the main window.
2792     Needed so the splash screen can display the mainwindow
2793     (ThubanApplication.OnInit): Call the
2794     new splash_screen method to determine whether the application
2795     should display a splash screen. If it displays a splash screen do
2796     not immediately show the main window.
2797    
2798 jonathan 399 2003-02-11 Jonathan Coles <[email protected]>
2799    
2800     * Thuban/Model/classification.py: Added import line to fix
2801     feature conflicts between running on python2.2 and python2.1.
2802    
2803     * Thuban/UI/classifier.py (ClassTable): Didn't need to hang
2804     onto the clinfo parameter, so removed the deepcopy().
2805    
2806 jonathan 396 2003-02-10 Jonathan Coles <[email protected]>
2807    
2808 tkoester 403 * Thuban/Model/save.py (Saver.open_element, Saver.close_element):
2809 jonathan 396 Added element_open variable to track opening and closing of tags
2810     so that tags that don't span more than one line are closed with
2811     /> instead of </tag_name>. Use the GetDefault*() methods of
2812     the Classification class.
2813    
2814     * Thuban/Model/classification.py (Classificaton): Added set and
2815     get methods for the default data. The class also takes a layer
2816     reference so that modification messages can be sent. Fixed the
2817     methods to use the new ClassData class.
2818     (ClassData): New class to encapsulate the classification data
2819    
2820     * Thuban/Model/layer.py (Layer): Remove the
2821 tkoester 403 Set[Fill|Stroke|StrokeWidth]() methods. Code should call the
2822 jonathan 396 SetDefault*() methods on the layer's classification object.
2823 tkoester 403 (Layer.__init__): Use the new SetDefault*() methods in the
2824 jonathan 396 Classification class.
2825    
2826     * Thuban/Model/load.py (ProcessSession): Use the new ClassData
2827     object instead of a dictionary.
2828    
2829 tkoester 403 * Thuban/UI/classifier.py (ClassRenderer): New class to
2830 jonathan 396 draw the classifications in the dialog box's table.
2831     (Classifier): Modified to use the ClassRenderer class.
2832    
2833 tkoester 403 * Thuban/UI/mainwindow.py (MainWindow): Use the SetDefault*()
2834     methods of the Classification class.
2835 jonathan 396
2836     * Thuban/UI/renderer.py (MapRenderer): Use the Get*() methods
2837     of the ClassData class.
2838    
2839     * test/test_classification.py, test/test_layer.py,
2840     test/test_map.py, test/test_session.py: Fix the tests to work
2841     with the above code changes.
2842    
2843 jonathan 387 2003-02-03 Jonathan Coles <[email protected]>
2844    
2845     * Thuban/Model/classification.py (Classification): Added getNull()
2846     to return the NullData reference
2847    
2848     * Thuban/Model/layer.py (Layer.SetFill, Layer.SetStroke,
2849     Layer.SetStrokeWidth): Modified these functions to change the
2850     null data in the classification rather than keep these values
2851     directly in the Layer class. Menu options to change these values
2852     work again.
2853    
2854 jonathan 380 2003-01-28 Jonathan Coles <[email protected]>
2855    
2856 jonathan 384 * Thuban/UI/classifier.py (Classifier): Resolved merging conflicts.
2857 tkoester 403 Fixed crashing problem on some systems. Dialog box shows
2858 jonathan 380 classification data.
2859    
2860 jonathan 384 * Thuban/UI/tree.py (SessionTreeCtrl.add_items): Handle drawing
2861     Colors in the tree view.
2862    
2863     * Thuban/Model/layer.py (Layer.TreeInfo): Added a call to build
2864     the tree info for classifications. Commented out unnecessary lines.
2865    
2866     * Thuban/Model/classification.py (Classification.TreeInfo): New
2867     function to add information about the classification into the
2868     tree view.
2869    
2870 tkoester 403 2003-01-27 Jan-Oliver Wagner <[email protected]>
2871 jan 375
2872 tkoester 403 * Thuban/__init__.py (_): New.
2873 jan 375
2874     * Thuban/Model/classification.py, Thuban/Model/extension.py,
2875     Thuban/Model/layer.py, Thuban/Model/load.py, Thuban/Model/map.py,
2876 tkoester 403 Thuban/Model/session.py, Thuban/UI/application.py,
2877     Thuban/UI/classifier.py, Thuban/UI/context.py, Thuban/UI/controls.py,
2878     Thuban/UI/identifyview.py, Thuban/UI/labeldialog.py,
2879     Thuban/UI/mainwindow.py, Thuban/UI/menu.py, Thuban/UI/proj4dialog.py,
2880     Thuban/UI/renderer.py, Thuban/UI/tree.py, Thuban/Lib/connector.py,
2881     Thuban/Lib/fileutil.py: Replace user string by _() for i18n.
2882 jan 375
2883 jonathan 370 2003-01-27 Jonathan Coles <[email protected]>
2884    
2885 tkoester 403 * Thuban/Model/layer.py: Classification initialization calls.
2886 jonathan 370
2887 tkoester 403 * Thuban/Model/classification.py: Created class to encapsulate
2888     a layer classification. Supports specific data points and
2889     ranges.
2890 jonathan 370
2891 tkoester 403 * Thuban/Model/load.py: Added support for loading classification
2892     information.
2893 jonathan 370
2894 tkoester 403 * Thuban/Model/save.py: Added support for saving classification
2895     information.
2896 jonathan 370
2897 tkoester 403 * Thuban/UI/classifier.py: Initial class for a dialog box for
2898     specifying classification information.
2899 jonathan 370
2900 tkoester 403 * Thuban/UI/mainwindows.py: Support for opening the classifier
2901     dialog.
2902 jonathan 370
2903 tkoester 403 * Thuban/UI/renderer.py: Support for drawing a layer with the
2904     classification information.
2905 jonathan 370
2906 tkoester 403 * Data/iceland_sample_class.thuban: iceland_sample with
2907     classification data.
2908 jonathan 370
2909 tkoester 403 * test/test_classification: Tests for the Classification class.
2910 jonathan 370
2911 bh 359 2002-12-09 Bernhard Herzog <[email protected]>
2912    
2913 bh 361 * test/test_command.py: New. Tests for the command classes.
2914    
2915 bh 359 * Thuban/UI/command.py (ToolCommand): New class for tool commands.
2916     (Command.IsTool): New method to distinguish between command
2917     switching tools and other commands.
2918    
2919     * Thuban/UI/view.py (MapCanvas.SelectTool): New method to select
2920     the tool to avoid direct assignments to instance variables
2921     (MapCanvas.ZoomInTool, MapCanvas.ZoomOutTool, MapCanvas.PanTool)
2922     (MapCanvas.IdentifyTool, MapCanvas.LabelTool): Use SelectTool to
2923     change the tool
2924    
2925     * Thuban/UI/mainwindow.py (MainWindow.update_command_ui): If an
2926     active tool's command turns insensitive, disable the tool.
2927     (_tool_command): Use the new ToolCommand class
2928    
2929     * Examples/simple_extensions/simple_tool.py (simple_tool): Use the
2930     SelectTool method to change the tool
2931     (iconfile): Use the ToolCommand class
2932    
2933 bh 354 2002-12-03 Bernhard Herzog <[email protected]>
2934    
2935     * Thuban/UI/tree.py (SessionTreeCtrl.normalize_selection): Handle
2936     the case of selected items that are not children of Layers or Maps
2937     properly. Previously this bug would trigger an assertion in
2938     wxWindows.
2939    
2940 frank 352 2002-11-06 Frank Koormann <[email protected]>
2941    
2942 bh 354 * Thuban/UI/mainwindow.py: Altered the order of tools in the
2943     toolbar: First now are all navigation tools (Zoom In/Out, Pan,
2944     Full Extent).
2945 tkoester 403
2946 bh 349 2002-10-23 Bernhard Herzog <[email protected]>
2947    
2948     * setup.py (setup call): version now 0.1.3
2949    
2950     * MANIFEST.in: Add the files in test/
2951    
2952     * test/README: Add note about tests requiring the iceland data
2953    
2954     * Thuban/UI/mainwindow.py (MainWindow.About): Add 2002 to
2955     copyright notice.
2956    
2957 bh 344 2002-10-18 Bernhard Herzog <[email protected]>
2958    
2959     * test/test_map.py
2960     (TestMapWithContents.test_projected_bounding_box): Use an explicit
2961     epsilon.
2962    
2963     * test/support.py (FloatComparisonMixin.assertFloatEqual)
2964     (FloatComparisonMixin.assertFloatSeqEqual): give a more useful
2965     message if the assertion fails and don't return the return value
2966     of self.assert_. In assertFloatSeqEqual the return meant that not
2967     all items of the sequence were compared.
2968    
2969 bh 326 2002-09-20 Bernhard Herzog <[email protected]>
2970    
2971 bh 341 * test/test_fileutil.py: New. Test cases for Thuban.Lib.fileutil
2972    
2973     * Thuban/Lib/fileutil.py: Fixup some whitespace and typos
2974    
2975 bh 338 * test/test_map.py (TestMapWithContents.test_tree_info): Create
2976     the string with the bounding box on the fly because of platform
2977     differences in the way %g is handled.
2978    
2979     * test/test_layer.py (TestLayer.test_empty_layer): Create an empty
2980     DBFfile too because Thuban layers can't yet cope missing DBF
2981     files.
2982    
2983     2002-09-20 Bernhard Herzog <[email protected]>
2984    
2985 bh 326 * test/test_menu.py: Use initthuban instead of
2986     add_thuban_dir_to_path to initialize Thuban.
2987    
2988     * test/support.py (FloatComparisonMixin.assertFloatEqual): New.
2989     Mixin class for float comparisons
2990     (SubscriberMixin): New. Mixin class to test messages sent through
2991     the Connector class
2992    
2993     * test/README: Fix a typo and add the -v flag to the command for
2994     individual tests
2995    
2996 bh 335 * test/test_session.py: New. Test cases for Thuban.Model.session
2997    
2998     * test/test_proj.py: New. Test cases for Thuban.Model.proj
2999    
3000     * test/test_map.py: New. Test cases for Thuban.Model.map
3001    
3002     * test/test_layer.py: New. Test cases for Thuban.Model.layer
3003    
3004     * test/test_label.py: New. Test cases for Thuban.Model.label
3005    
3006     * test/test_connector.py: New. Test cases for Thuban.Lib.connector
3007    
3008     * test/test_color.py: New. Test cases for Thuban.Model.color
3009    
3010     * test/test_base.py: New. Test cases for Thuban.Model.base
3011    
3012 bh 322 2002-09-13 Bernhard Herzog <[email protected]>
3013    
3014     * Thuban/Model/session.py (Session.forwarded_channels): Forward
3015     the CHANGED channel too.
3016    
3017     * Thuban/Model/map.py (Map.forwarded_channels): Forward the
3018     CHANGED channel too.
3019     (Map.__init__): Call the Modifiable constructor as well.
3020    
3021     * Thuban/Model/base.py (Modifiable.UnsetModified): Issue a CHANGED
3022     event if the modified flag changes.
3023     (Modifiable.changed): Tweak the doc-string.
3024    
3025     * Thuban/UI/mainwindow.py (MainWindow.view_position_changed)
3026     (MainWindow.set_position_text): Put the code that puts the text
3027     with the mouse position into the status bar into the new method
3028     set_position_text so that it can overwritten in derived classes.
3029    
3030 bh 317 2002-09-12 Bernhard Herzog <[email protected]>
3031    
3032     * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Center the
3033     message box on the main window.
3034    
3035 bh 313 2002-09-11 Bernhard Herzog <[email protected]>
3036    
3037     * Thuban/UI/mainwindow.py: Underline the 'x' in "Exit" instead of
3038     the 'E' because it's less likely to interfere with other menu
3039     entries.
3040 bh 315 (MainWindow.build_menu): remove an incorrect comment.
3041 bh 313
3042 bh 311 2002-09-10 Bernhard Herzog <[email protected]>
3043    
3044     * Thuban/UI/mainwindow.py (MainWindow.Map): New.
3045     (_tool_command): Add sensitive parameter
3046     (_has_visible_map): Sensitivity callback to tools and other
3047     commands that require a visible map. Use it in map_zoom_in_tool,
3048     map_zoom_out_tool, map_pan_tool, map_identify_tool, map_label_tool
3049     and map_full_extent
3050    
3051 bh 308 2002-09-06 Bernhard Herzog <[email protected]>
3052    
3053     * Thuban/UI/mainwindow.py (MainWindow.OnClose): Unsubscribe
3054     VIEW_POSITION
3055    
3056 tkoester 403 2002-09-04 Frank Koormann <[email protected]>
3057 frank 306
3058     * Resources/Bitmaps/fullextent.xpm: Updated Icon (removed "potatoe")
3059    
3060 bh 302 2002-09-02 Bernhard Herzog <[email protected]>
3061    
3062 bh 304 * Thuban/UI/view.py: Get rid of the idle redraw. This is done by
3063     wxWindows already and our implementation doesn't work correctly
3064     with wxGTK 2.3:
3065     (MapCanvas.__init__): Remove the instance variable
3066     (MapCanvas.OnPaint): Always call do_redraw when there's a map to
3067     be drawin
3068     (MapCanvas.OnIdle): Removed.
3069    
3070 bh 302 * Thuban/UI/view.py (MapCanvas.unprojected_rect_around_point): Add
3071     a parameter to determine the size of the rectangle.
3072     (MapCanvas.find_shape_at): Create the box around the point on a
3073     layer by layer basis and make the size depend on the shape type.
3074     This solves a problem with the selection of point shapes at the
3075     border of the layer's bounding box
3076    
3077 bh 292 2002-08-30 Bernhard Herzog <[email protected]>
3078    
3079 bh 300 * Thuban/UI/mainwindow.py (MainWindow.CanRemoveLayer): New method
3080     for the sensitivity of remove layer.
3081     (_can_remove_layer): New. Sensitivity callback for remove layer
3082     (Command layer_remove): Use _can_remove_layer
3083    
3084     * Thuban/Model/map.py (Map.CanRemoveLayer): New method to
3085     determine whether a given layer can be deleted.
3086    
3087 bh 297 * Thuban/UI/view.py (MapCanvas.__init__, MapCanvas.OnPaint)
3088     (MapCanvas.do_redraw): Get rid of the unused update_region
3089     instance variable
3090    
3091 bh 294 * Thuban/UI/view.py: Add/update some doc-strings.
3092    
3093 bh 292 * test/: new subdirectory with a bunch of unit tests.
3094    
3095     * test/README, test/test_table.py, test/test_save.py,
3096     test/test_menu.py, test/test_load.py: Initial set of tests and
3097     brief instructions on how to run them
3098    
3099 bh 287 2002-08-29 Bernhard Herzog <[email protected]>
3100    
3101 bh 291 * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Handle
3102     arcs with multiple parts.
3103    
3104 bh 289 * Thuban/UI/view.py (ZoomInTool.MouseUp, ZoomOutTool.MouseUp):
3105     Handle degenrate rectangles.
3106    
3107 bh 287 * Thuban/Model/table.py: Make writing records work correctly:
3108     (Table.__init__): Keep track of whether the DBF is open for
3109     writing
3110     (Table.write_record): Open the DBF file for writing when necessary
3111    
3112 bh 285 2002-08-27 Bernhard Herzog <[email protected]>
3113    
3114     * Thuban/Model/table.py (Table.write_record, Table.__init__): Open
3115     dbf files only for reading by default. Use a new writable dbf
3116     object for writing.
3117    
3118 bh 278 2002-08-26 Bernhard Herzog <[email protected]>
3119    
3120 bh 282 * Thuban/UI/mainwindow.py: Refactor the context creation:
3121     (MainWindow.Context): New method to return a context
3122     (MainWindow.invoke_command, MainWindow.update_command_ui): Use the
3123     new method
3124    
3125 bh 278 * Thuban/UI/tableview.py (TableGrid, LayerTableGrid): Split the
3126     layer table specific code from TableGrid into LayerTableGrid
3127     (TableFrame, LayerTableFrame): Split the layer table specific code
3128     from TableFrame into LayerTableFrame
3129 bh 280 (LayerTableGrid.select_shape): Remove a debug print
3130 bh 278
3131     * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Use the
3132     LayerTableFrame
3133    
3134 bh 277 2002-08-23 Bernhard Herzog <[email protected]>
3135    
3136     * Thuban/Model/layer.py (Layer.__init__): Make sure we have an
3137     absolute filename.
3138    
3139 bh 269 2002-08-22 Bernhard Herzog <[email protected]>
3140    
3141 bh 275 * Thuban/Model/table.py (Table.write_record): New method to write
3142     records.
3143 tkoester 403 (Table.__init__): Open the DBF file for writing too.
3144 bh 275
3145     * Thuban/UI/controls.py (RecordTable.SetValue): Write the value
3146     into the underlying table.
3147    
3148     * extensions/shapelib/shapefil.h (DBFCommit),
3149     extensions/shapelib/dbfopen.c (DBFCommit): New API function to
3150     commit any changes made to the DBF file.
3151    
3152 bh 271 * Thuban/UI/mainwindow.py (make_check_current_tool)
3153     (_tool_command): Put the code that generates the "checked"
3154     callback into a separate function so that we can reuse it
3155     elsewhere
3156    
3157 bh 269 * Thuban/Model/save.py (Saver): New class to handle serializing a
3158     session into an XML file. The main reason to introduce a class is
3159     that applications built on Thuban can derive from it so that they
3160     can save additional information in a session file.
3161     (save_session): Delegate almost all the work to the Saver class.
3162     Rename the filename argument to file because it may be a file like
3163     object now.
3164    
3165     * Thuban/Model/load.py: Get rid of the Python 1.5.2 compatibility
3166     code. Remove the little test code which would be executed when the
3167     module is run as a script which didn't work anymore since it can't
3168     import the other Thuban modules.
3169     (ProcessSession, load_session): Refactor the ProcessSession to
3170     have one method for each element start and end tag so that derived
3171     classes can easily override the processing of individual tags.
3172     Also, always parse with namespaces enabled because applications
3173     built on top of Thuban will likely use namespaces if they extend
3174     the session file format.
3175    
3176 bh 266 2002-08-21 Bernhard Herzog <[email protected]>
3177    
3178     * setup.py (ThubanInstall.run): Don't repr install_lib_orig
3179     because thubaninit_contents will do it for us.
3180    
3181 tkoester 403 2002-08-16 Jan-Oliver Wagner <[email protected]>
3182 jan 265
3183     * Thuban/UI/mainwindow.py: menu item 'show session tree' now disable if
3184     tree window already open
3185    
3186 bh 259 2002-08-15 Bernhard Herzog <[email protected]>
3187    
3188 bh 263 * Thuban/Model/layer.py (Layer.Destroy): Call the unboundd method
3189     with self.
3190    
3191     * Thuban/UI/view.py (MapCanvas.OnLeftUp): Only release the mouse
3192     when we have actually captured it.
3193    
3194 bh 259 * Thuban/Model/layer.py (Layer.Destroy): New. Explicitly close the
3195     shapefile and destroy the table.
3196    
3197     * Thuban/Model/table.py (Table.Destroy): New. Close the DBF file.
3198    
3199 bh 254 2002-08-14 Bernhard Herzog <[email protected]>
3200    
3201 bh 256 * Thuban/UI/controls.py (RecordTable.__init__): Remove the unused
3202     instance variable columns
3203     (RecordTable.GetTypeName): row and col may be negative in some
3204     cases.
3205    
3206 bh 254 * setup.py (InstallLocal.initialize_options)
3207     (InstallLocal.finalize_options, InstallLocal.user_options): New
3208     option create-init-file to build a thubaninit.py when running
3209     install_local
3210     (InstallLocal.run): Create the thubaninit.py module when requested
3211     (thubaninit_contents): Split the template into several parts and
3212     create a new function thubaninit_contents that creates the
3213     contents of a thubaninit module.
3214     (ThubanInstall.run): Use the new function to create the thubaninit
3215     module.
3216    
3217 bh 252 2002-07-30 Bernhard Herzog <[email protected]>
3218    
3219     * Thuban/UI/application.py (ThubanApplication.OnExit): Do some
3220     cleanup.
3221     (ThubanApplication.MainLoop): Extend to automatically call OnExit.
3222    
3223     * Thuban/Model/session.py (Session.Destroy): Don't bypass the
3224     direct base class' Destroy method.
3225    
3226     * Thuban/Model/map.py (Map.ClearLayers): New method to delete all
3227     layers.
3228     (Map.Destroy): Destroy the label_layer as well and call the
3229     inherited Desatroymethod first so that no more messages are
3230     issued.
3231     (Map.RaiseLayer, Map.LowerLayer): Only issue LAYERS_CHANGED
3232     message if the stacking order actually has changed. Add
3233     doc-strings.
3234     (Map.BoundingBox): Correct the doc-string.
3235     (Map.AddLayer, Map.RemoveLayer, Map.Layers, Map.HasLayers)
3236     (Map.ProjectedBoundingBox, Map.SetProjection): Add doc-strings.
3237    
3238     * Thuban/Model/label.py (LabelLayer.ClearLabels): New to delete
3239     all labels.
3240    
3241 bh 247 2002-07-29 Bernhard Herzog <[email protected]>
3242    
3243     * Thuban/Model/map.py (Map.subscribe_layer_channels)
3244     (Map.unsubscribe_layer_channels): Put the code that (un)subscribes
3245     to a layer's channels into separate methods.
3246     (Map.RemoveLayer, Map.AddLayer): Call the new methods
3247     (Map.Destroy): Unsubscribe from a layer's channels before
3248     destroying it.
3249    
3250     * Thuban/UI/view.py (MapCanvas.find_shape_at): Change the
3251     selected_layer parameter to searched_layer which is the layer to
3252     search in.
3253     (MapCanvas.SelectShapeAt): New parameter layer to restrict the
3254     search to that layer. Return the selected layer and shape.
3255    
3256     * Examples/simple_extensions/simple_tool.py (simple_tool): Fix a
3257     typo
3258    
3259 bh 238 2002-07-24 Bernhard Herzog <[email protected]>
3260    
3261 bh 243 * Thuban/UI/application.py (ThubanApplication.create_session):
3262     Extend the doc string.
3263     (ThubanApplication.subscribe_session)
3264     (ThubanApplication.unsubscribe_session): New methods to
3265     subscribe/unsubscribe to/from session channels.
3266     (ThubanApplication.SetSession): Call the new methods here.
3267     (ThubanApplication.maps_changed, ThubanApplication.set_map):
3268     Renamed set_map to maps_changed. Its now a subscriber for
3269     MAPS_CHANGED.
3270    
3271     * Thuban/UI/view.py (ZoomOutTool.MouseUp): Use the correct
3272     x-coordinate in case of simple clicks
3273    
3274     * Thuban/Model/base.py (Modifiable.changed): Apply the args tuple,
3275     don't pass it as a parameter
3276    
3277     * Thuban/Model/session.py (Session.RemoveMap): New
3278    
3279 bh 238 * Thuban/UI/mainwindow.py (MainWindow.__init__): Turn the initial
3280     window size into a parameter.
3281    
3282 bh 235 2002-07-23 Bernhard Herzog <[email protected]>
3283    
3284 bh 237 * Thuban/UI/menu.py (Menu.item_index): Also search for menus not
3285     just commands.
3286    
3287 bh 235 * Thuban/UI/mainwindow.py (MainWindow.__init__): Change the
3288     parameter list a bit to allow setting the window title and the
3289     initial message in the status bar. Update the callers.
3290    
3291     * Thuban/UI/application.py (ThubanApplication.OnInit)
3292     (ThubanApplication.CreateMainWindow): Put the mainwindow
3293     instantiation into a separate method so that it can be overridden
3294     by a subclass.
3295    
3296 bh 230 2002-07-19 Bernhard Herzog <[email protected]>
3297    
3298 bh 234 * Thuban/Model/session.py: Issue a CHANGED message every time
3299     another changed message is issued to make it easier to get
3300     notified of changes.
3301     (Session): Update the doc string
3302     (Session.forward): Issue changed-events as CHANGED as well.
3303     (Session.changed): Overwrite the inherited version to issue
3304     CHANGED events as well.
3305    
3306     * Thuban/UI/tree.py: We can now simply subscribe to the session's
3307     CHANGED channel to be informed of changes.
3308     (SessionTreeCtrl.session_channels): Not needed any longer.
3309 tkoester 403 (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):
3310 bh 234 Only have to (un)subscribe CHANGED
3311    
3312     * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.
3313    
3314 bh 230 * Thuban/UI/main.py, Thuban/UI/__init__.py: Move the work-around
3315     for the wxPython locale bug to __init__.py so that it's
3316     automatically executed by anybody using UI code from Thuban.
3317    
3318 bh 225 2002-07-18 Bernhard Herzog <[email protected]>
3319    
3320 bh 228 * Thuban/UI/main.py (main): app no longer needs to be global
3321    
3322     * Thuban/UI/mainwindow.py (MainWindow.__init__): Add application
3323     as parameter and store it in an instance variable
3324     (MainWindow.invoke_command, MainWindow.update_command_ui)
3325     (MainWindow.save_modified_session, MainWindow.NewSession)
3326     (MainWindow.OpenSession, MainWindow.SaveSession)
3327     (MainWindow.SaveSessionAs, MainWindow.ShowSessionTree): Use self's
3328     application object.
3329    
3330     * Thuban/UI/application.py (ThubanApplication.OnInit): Instantiate
3331     the main window with self.
3332    
3333 bh 225 * Thuban/UI/context.py: New module with the context class
3334    
3335     * Thuban/UI/command.py (Command): Update doc string.
3336    
3337     * Thuban/UI/mainwindow.py (MainWindow.invoke_command,
3338     MainWindow.update_command_ui): Pass an instance of the context
3339     class to the command's methods
3340     (check_current_tool, call_method): Handle the new context
3341     implementation
3342    
3343     * Examples/simple_extensions/simple_tool.py (simple_tool,
3344     check_simple_tool): Handle the new context implementation
3345    
3346     * Examples/simple_extensions/simple_command.py (simple_command):
3347     Handle the new context implementation. Update the comments about
3348     the context.
3349    
3350     * Thuban/UI/application.py (ThubanApplication.SetSession): Add
3351     doc-string
3352     (ThubanApplication.Session): New method to return the session
3353     object
3354    
3355     * Thuban/UI/tree.py (SessionTreeCtrl.update_tree): The
3356     interactor's selected_layer may not be a layer of the current
3357     session when the tree is updated while a new session is being set.
3358    
3359 bh 217 2002-07-17 Bernhard Herzog <[email protected]>
3360    
3361     * Thuban/UI/tree.py (color_string): Removed. No longer used.
3362     (SessionTreeCtrl.update_tree, SessionTreeCtrl.add_items): Split
3363     update_tree into update_tree and add_items. The tree now uses a
3364     more generic way to display the contents of the tree.
3365     (SessionTreeCtrl): Add a doc string explaining the TreeInfo method
3366    
3367     * Thuban/Model/layer.py (Layer.TreeInfo),
3368     Thuban/Model/extension.py (Extension.TreeInfo),
3369     Thuban/Model/map.py (Map.TreeInfo),
3370 tkoester 403 Thuban/Model/session.py (Session.TreeInfo):
3371 bh 217 Add TreeInfo methods to implement the new tree view update scheme
3372    
3373 bh 216 2002-07-16 Bernhard Herzog <[email protected]>
3374    
3375     * Thuban/UI/application.py: Don't use "import from" for the
3376     MainWindow. It can't always be resolved.
3377     (ThubanApplication.OnInit): change reference to MainWindow
3378     accordingly.
3379    
3380     * Thuban/UI/menu.py (Menu.SetItems): New method to replace a menu
3381     completely
3382    
3383 bh 213 2002-07-10 Bernhard Herzog <[email protected]>
3384    
3385     * setup.py (create_init_module): New configurable variable whose
3386     default depends on the platform we're running on.
3387     (ThubanInstall.initialize_options): Initialize
3388     self.create_init_module from the global create_init_module
3389     (ThubanInstall.user_options): indictate that the options
3390     create-init-module and init-module-dir have arguments.
3391    
3392     * setup.py: In the setup call change the version number to include
3393     cvs.
3394    
3395     * MANIFEST.in: Add the files in Examples
3396    
3397 bh 205 2002-07-09 Bernhard Herzog <[email protected]>
3398    
3399 bh 210 * setup.py: In the setup call, use the thuban homepage as the
3400     value of the url parameter.
3401    
3402 bh 208 * Examples: New subdirectory for examples.
3403    
3404     * Examples/simple_extensions/simple_tool.xpm,
3405     Examples/simple_extensions/simple_tool.py,
3406     Examples/simple_extensions/simple_command.py,
3407     Examples/simple_extensions/README: Simple examples showing how to
3408     add new commands and tools.
3409    
3410 bh 207 * setup.cfg (bdist_rpm): Add the default value for prefix and tell
3411     bdist_rpm that we also have an install script.
3412     (bdist_inno): Add 2002 to the copyright notice.
3413    
3414 bh 205 * setup.py: Create a file in python's site-packages directory to
3415     make installation of Thuban as a library easier.
3416     (ThubanInstall.user_options): Add two new options,
3417     create-init-module and init-module-dir
3418     (ThubanInstall.expand_with_pure_python_dirs): New method to expand
3419     filenames for installation in the default directories.
3420     (ThubanInstall.select_scheme, ThubanInstall.convert_paths): Extend
3421     the inherited methods to capture some filenames before they're
3422     transformed too much by distutils.
3423     (ThubanInstall.run): Create the init module if requested.
3424     (ThubanInstall.thuban_init_filename): New method to return the
3425     full name of the init module.
3426     (ThubanInstall.get_outputs): Append the filename of the init
3427     module.
3428    
3429 bh 202 2002-07-08 Bernhard Herzog <[email protected]>
3430    
3431 bh 205 * setup.py (thuban_bdist_rpm): Extend this version of bdist_rpm to
3432     handle the prefix properly which means that the default for the
3433     installation prefix should be /usr for RPMs and /usr/local when
3434     doing a normal source install.
3435     (bdist_rpm_install_script): Script to override the default install
3436     commands in the specfile generated by the bdist_rpm command.
3437     (thuban_bdist_rpm.user_options): Add a prefix option
3438     (thuban_bdist_rpm.initialize_options): Init the prefix option.
3439     Create the script files for the spec files as empty files here
3440     (thuban_bdist_rpm._make_spec_file): Override the inherited method
3441     to fill the script files with content.
3442    
3443 bh 202 * Thuban/Model/save.py (relative_filename): Wrapper around
3444     Thuban.Lib.fileutil.relative_filename that accepts an empty dir
3445     argument. save_session now automatically uses this version,
3446     solving a problem when saving to a relative filename.
3447    
3448     * setup.py: In the setup call, make sure that the library
3449     directories are under $prefix/lib not directly under $prefix.
3450    
3451 tkoester 403 2002-06-20 Jan-Oliver Wagner <[email protected]>
3452 jan 199
3453     * Thuban/Model/extension.py: new module to handle extension objects.
3454     * Thuban/Model/messages.py: new messages for extensions.
3455     * Thuban/Model/session.py (Session.Extensions, Session.HasExtensions,
3456     Session.AddExtension): new for handling extensions.
3457     Also some other minor changes to round up extension handling.
3458     * Thuban/UI/tree.py (SessionTreeCrtl:update_tree): Added visualization
3459     of Extension titles and title and names of its objects.
3460    
3461 bh 194 2002-05-29 Bernhard Herzog <[email protected]>
3462    
3463     * Thuban/UI/mainwindow.py (MainWindow.bind_command_events): Bind
3464 bh 202 the events for a command.
3465 bh 194 (MainWindow.add_toolbar_command, MainWindow.add_menu_command):
3466     Call bind_command_events to bind the events. add_toolbar_command
3467     can now bind events too so that it's possible to have commands
3468     that are only available through the toolbar.
3469     (MainWindow.init_ids): New instance variable events_bound to keep
3470     track of for which commands events have been bound.
3471    
3472 bh 190 2002-05-28 Bernhard Herzog <[email protected]>
3473    
3474     * Thuban/UI/menu.py: New module to build and manage menus.
3475    
3476     * Thuban/UI/mainwindow.py: Remove some unused imports.
3477     (MainWindow.__init__, main_menu): move the definition of the main
3478     menu from __init__ to the Menu instance main_menu.
3479     (MainWindow.build_menu_bar, MainWindow.build_menu): New methods to
3480     build the menu bar and sub-menus from a menu description.
3481    
3482     * Thuban/UI/application.py (ThubanApplication.OnInit): Read the
3483     startup file
3484     (ThubanApplication.read_startup_files): New method to run
3485     ~/.thuban/thubanstart.py
3486    
3487 bh 192 * Thuban/UI/mainwindow.py (MainWindow.__init__, main_toolbar):
3488     Move the toolbar definition to the Menu instance main_toolbar.
3489     (MainWindow.build_toolbar): New method to build the toolbar
3490     similar to the build_menu methods
3491    
3492 bh 184 2002-05-23 Bernhard Herzog <[email protected]>
3493    
3494 bh 186 * Thuban/UI/mainwindow.py (MainWindow.__init__): Fix spelling of
3495     layer_outline_color. Fix it in the definition of the command too.
3496    
3497 bh 184 * Thuban/UI/command.py (Command): Fix typo in doc string
3498    
3499 bh 182 2002-05-22 Bernhard Herzog <[email protected]>
3500    
3501     * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Fix a typo
3502     in the docstring
3503    
3504 bh 175 2002-05-15 Bernhard Herzog <[email protected]>
3505    
3506 bh 180 * Thuban/Model/layer.py (Layer.open_shapefile): Set bbox to None
3507     when the shapefile is empty.
3508     (Layer.BoundingBox, Layer.LatLongBoundingBox): Both methods may
3509     now return None for empty shapefiles. Update doc-strings.
3510    
3511     * Thuban/Model/map.py (Map.BoundingBox): Add doc-string. Deal with
3512     the layer's bbox being None.
3513    
3514     * Thuban/UI/tree.py (SessionTreeCtrl.update_tree): Deal with the
3515     layer's bbox being None.
3516    
3517 bh 175 * Thuban/UI/view.py (MapCanvas.shape_selected): Only redraw when
3518     necessary.
3519     (MapCanvas.__init__): New instance variables, last_selected_layer
3520     and last_selected_shape to determine how the selection has
3521     changed.
3522    
3523     * Thuban/UI/tableview.py (TableGrid.__init__): Do not call
3524     AutoSizeColumns because it will cause a traversal of the entire
3525     table which for large .dbf files will take a very long time.
3526    
3527 bh 172 2002-05-14 Bernhard Herzog <[email protected]>
3528    
3529     * Thuban/Model/layer.py (Layer.open_shapefile): Choose a better
3530     maximum depth for the tree than shapelib does by default.
3531    
3532 bh 165 2002-05-10 Bernhard Herzog <[email protected]>
3533    
3534     * setup.py (py_modules): The shptree modules doesn't have a
3535     wrapper, so don't include it in the py_modules
3536    
3537 bh 163 2002-05-08 Bernhard Herzog <[email protected]>
3538    
3539     * extensions/shapelib/shptree.c (compare_ints): Make arguments
3540     const void * as in the qsort prototype
3541     (SHPTreeFindLikelyShapes): Remove some unused variables.
3542    
3543     * Thuban/UI/view.py (PanTool.MouseMove): Use the bitmap the view
3544     maintains to redraw the window during a drag.
3545     (MapCanvas.unprojected_rect_around_point): New method to determine
3546     a small region around a point for hit-testing.
3547     (MapCanvas.find_shape_at): Only test the shapes in a small region
3548     around the point.
3549    
3550     * setup.py: Increment the version to 0.1.2
3551    
3552     * Thuban/UI/tree.py (SessionTreeCtrl.unsubscribe_all): Remove a
3553     debug print and set session to None after unsubscribing
3554    
3555 bh 146 2002-05-07 Bernhard Herzog <[email protected]>
3556    
3557 bh 154 * Data/iceland_sample.session, Data/iceland_sample.thuban: Rename
3558     the file to have a .thuban extension.
3559    
3560 bh 152 * Thuban/UI/tree.py (session_channels): New class constant with
3561     all the session channels to subscribe to to update the tree
3562     (SessionTreeCtrl.session_changed): Remember the session so that we
3563     can unsubscribe properly. Use the new class constant to
3564     unsubscribe from the old session and subscribe to the new one.
3565     (SessionTreeCtrl.unsubscribe_all): New method to unsubscribe all
3566     subscriptions of the SessionTreeCtrl.
3567     (SessionTreeView.OnClose): Call the tree's unsubscribe_all method.
3568    
3569     * Thuban/UI/mainwindow.py (MainWindow.__init__): Add the "Show
3570     Session Tree" command to the file menu.
3571    
3572     * Thuban/UI/view.py (MapCanvas.do_redraw): Pass the entire bitmap
3573     as update_region to the renderer.
3574    
3575     * Thuban/UI/renderer.py
3576     (ScreenRenderer.layer_ids, ScreenRenderer.draw_shape_layer): The
3577     update box is now directly a tuple, not a wxRect anymore.
3578    
3579     * Thuban/Model/layer.py (Layer.ShapesInRegion): Remove some debug
3580     prints.
3581    
3582     2002-05-07 Bernhard Herzog <[email protected]>
3583    
3584 bh 146 * setup.py: Add the shptree extension module. See
3585     extensions/pyshapelib/ChangeLog for more details.
3586    
3587     * extensions/shapelib/shpopen.c, extensions/shapelib/shapefil.h,
3588     extensions/shapelib/dbfopen.c: Really update to the versions of
3589     shapelib 1.2.9. For some reason it wasn't really done on
3590     2002-04-11.
3591    
3592     * extensions/shapelib/shptree.c: Modified version of shptree.c of
3593     shapelib 1.2.9. The only real difference is the use of qsort
3594     instead of a bubble sort implementation
3595    
3596     * Thuban/Model/layer.py (Layer.__init__): New instance variable
3597     shapetree to hold the shapelib quadtree for the shapefile
3598     (Layer.open_shapefile): Create the quad tree.
3599     (Layer.ShapesInRegion): New method to return the ids of shapes in
3600     a given region using the quad tree.
3601    
3602     * extensions/thuban/wxproj.cpp (project_points): Fix some typos in
3603     comment
3604     (draw_polygon_shape): Accept both arcs and polygons.
3605     (initwxproj): Use the new PYSHAPELIB_IMPORT_API macro to import
3606     the api.
3607    
3608     * Thuban/UI/renderer.py (MapRenderer.layer_ids): New method to
3609     return the shape ids to be rendered in a given layer.
3610     (MapRenderer.draw_shape_layer): Call layer_ids to get the list of
3611     ids. Use draw_polygon_shape to draw arc shapes as well.
3612     (ScreenRenderer.RenderMap): New parameter for the rectangle that
3613     has to be updated
3614     (ScreenRenderer.layer_ids): Make use of the layer's quadtree by
3615     calling it's ShapesInRegion method.
3616    
3617     * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
3618     update_region for the update region.
3619     (MapCanvas.OnPaint): Maintain the update region
3620     (MapCanvas.do_redraw): Pass the bounding box of the update_region
3621     to the renderer when drawing the bitmap. Reset the update_region.
3622    
3623 bh 129 2002-05-03 Bernhard Herzog <[email protected]>
3624    
3625 bh 131 * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs,
3626     MainWindow.OpenSession): Change the file extension of the session
3627     files to .thuban
3628    
3629 bh 129 * Thuban/Model/session.py (Session.AddMap, forwarded_channels):
3630     Move the map channels to be forwarded by the session into the
3631 bh 146 class constant with forwarded_channels. Also add
3632     LAYER_PROJECTION_CHANGED and LAYER_VISIBILITY_CHANGED to
3633     forwarded_channels
3634 bh 129
3635     * Thuban/Model/base.py (Modifiable.changed): Fix doc-string (a
3636     typo and some rewording).
3637    
3638 bh 126 2002-05-02 Bernhard Herzog <[email protected]>
3639    
3640     * Thuban/UI/view.py: Keep the temporary bitmap used during drawing
3641     around to speed up most redraws:
3642     (MapCanvas.__init__): New instance variable bitmap which holds the
3643     bitmap
3644     (MapCanvas.do_redraw): Redraw self.bitmap if necessary. Use
3645     self.bitmap to draw.
3646     (MapCanvas.full_redraw): New method to force a full redraw
3647     including the bitmap
3648     (MapCanvas.SetMap): Subscribe full_redraw instead of redraw to
3649     make sure the bitmap is redrawn.
3650     (MapCanvas.projection_changed, MapCanvas.set_view_transform,
3651     MapCanvas.shape_selected): Call full_redraw instead of readraw to
3652     make sure the bitmap is redrawn.
3653     (MapCanvas.OnSize): New method to handle size events so that the
3654     bitmap can be redrawn.
3655    
3656 bh 124 2002-04-29 Bernhard Herzog <[email protected]>
3657    
3658     * Thuban/UI/mainwindow.py (MainWindow.__init__): Subscribe to the
3659     canvas' VIEW_POSITION event
3660     (MainWindow.view_position_changed): Handler for VIEW_POSITION.
3661     Update the text in the status-bar accordingly.
3662    
3663     * Thuban/UI/view.py (MapCanvas): Derive from Publisher as well
3664     (MapCanvas.__del__): Implement because Publisher.__del__ has to be
3665     called.
3666     (MapCanvas.__init__): Bind EVT_LEAVE_WINDOW too. Initialize
3667     current_position
3668     (MapCanvas.set_current_position): New method to set
3669     current_position. Issue a VIEW_POSITION event
3670     (MapCanvas.CurrentPosition): New public method to return the value
3671     of current_position. Should be called when the VIEW_POSITION event
3672     is processed.
3673     (MapCanvas.OnLeftDown, MapCanvas.OnLeftUp, MapCanvas.OnMotion):
3674     Update the position.
3675     (MapCanvas.OnLeaveWindow): Set the position to None.
3676    
3677     * Thuban/UI/messages.py (VIEW_POSITION): New message for the
3678     position in the statusbar
3679    
3680 tkoester 403 2002-04-26 Frank Koormann <[email protected]>
3681 frank 120
3682     * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data
3683    
3684 tkoester 403 2002-04-24 Frank Koormann <[email protected]>
3685    
3686 frank 118 * Resources/Bitmaps/identify.xpm: shadow added
3687    
3688     * Resources/Bitmaps/fullextent.xpm: new
3689 jan 116
3690 tkoester 403 2002-04-22 Jan-Oliver Wagner <[email protected]>
3691 jan 116
3692 tkoester 403 * Thuban/UI/tree.py (update_tree): added test for None on map bounding
3693     box
3694 jan 114
3695 tkoester 403 2002-04-21 Jan-Oliver Wagner <[email protected]>
3696    
3697 jan 114 * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new
3698    
3699     * Thuban/UI/tree.py (update_tree): added added map extent
3700    
3701     * Thuban/UI/mainwindow.py (_method_command): extended by parameter
3702 tkoester 403 icon; added map_full_extend as tool
3703 jan 114
3704 tkoester 403 2002-04-19 Jan-Oliver Wagner <[email protected]>
3705 jan 107
3706     * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for
3707     saving _new_ sessions
3708    
3709     * Thuban/Model/session.py (create_empty_session): new session
3710     don't have a filename (set to None)
3711    
3712     * Thuban/UI/tree.py (update_tree): added filename and modified flag
3713    
3714     * Thuban/Model/load.py (ProcessSession): convert projection
3715     parameters from unicode to regular string
3716    
3717     * Data/iceland_sample.session: Added UTM Zone 26 projection.
3718    
3719 bh 100 2002-04-11 Bernhard Herzog <[email protected]>
3720    
3721     * extensions/shapelib/shapefil.h, extensions/shapelib/shpopen.c,
3722     extensions/shapelib/dbfopen.c: Update to the versions of shapelib
3723     1.2.9
3724    
3725     * setup.py (Lib.wxproj extension): Don't link shpopen.c and put
3726     the pyshapelib directoy into the list of include dirs, so that
3727     pyshapelib_api.h can be found.
3728    
3729     * extensions/thuban/wxproj.cpp (pyshapelib_api): New variable that
3730     holds the pyshapelib C-API
3731     (draw_polygon_shape, point_in_polygon_shape, shape_centroid): Use
3732     pyshapelib_api to access the shapelib functions.
3733     (initwxproj): Import the c_api from the shapelib module and
3734     initialize pyshapelib_api.
3735    
3736 bh 89 2002-04-04 Bernhard Herzog <[email protected]>
3737    
3738 bh 91 * setup.py (thuban_bdist_rpm.initialize_options): Use
3739     initialize_options to create the scripts for the rpm.
3740    
3741 bh 89 * extensions/pyprojection/setup.py (PROJ4_PREFIX): Just use /
3742    
3743 bh 85 2002-04-03 Bernhard Herzog <[email protected]>
3744    
3745 bh 87 * setup.py: Increment version to 0.1.1
3746    
3747 bh 85 * Thuban/UI/mainwindow.py (MainWindow.__init__): Move the "Add
3748     Layer" and "Remove Layer" commands from the layer menu to the map
3749     menu
3750    
3751 bh 83 2002-02-15 Bernhard Herzog <[email protected]>
3752    
3753     * Thuban/Model/layer.py (Layer.Shape): list append only takes one
3754     argument (python <= 1.5.2 erroneously accepted multiuple
3755     arguments)
3756    
3757 bh 81 2002-02-04 Bernhard Herzog <[email protected]>
3758    
3759     * Thuban/UI/identifyview.py (IdentifyGridCtrl): New class to use a
3760     RecordGrid in the identifyview.
3761     (IdentifyView.__init__): Use IdentifyGridCtrl instead of
3762     IdentifyListCtrl. The grid allows editing of the values.
3763    
3764     * Thuban/UI/controls.py (RecordTable, RecordGridCtrl): New classes
3765     implementing a grid for a single row of a thuban table.
3766    
3767     * Thuban/UI/view.py (MapCanvas.SelectShapeAt): Search through all
3768     layers by default. Easier to use than the previous default of only
3769     searching through the select layer which meant that if no layer
3770     was selected, you couldn't select a shape.
3771    
3772     * Thuban/UI/tableview.py (TableGrid.__init__): Fix typo
3773    
3774     * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Honour the
3775     stroke_width attribute
3776    
3777     * Thuban/Model/save.py (save_session): Write the new stroke_width
3778     attribute
3779    
3780     * Thuban/Model/load.py (ProcessSession.startElement): Read the
3781     stroke_width attribute
3782    
3783     * Thuban/Model/layer.py (Layer.__init__): New parameter and
3784     instance variable stroke_width
3785     (Layer.SetStrokeWidth): Set the stroke_width.
3786    
3787 bh 72 2002-02-01 Bernhard Herzog <[email protected]>
3788    
3789     * extensions/thuban/wxproj.cpp (project_points): Fix two
3790     off-by-one errors in the last loop that joins the various parts
3791     together.
3792    
3793 bh 71 2002-01-14 Bernhard Herzog <[email protected]>
3794    
3795     * setup.py (data_dist.make_distribution): Fix some typos
3796    
3797 bh 70 2001-09-18 Bernhard Herzog <[email protected]>
3798    
3799     * README: Slight tweaking in preparation for the 0.1 release
3800    
3801     * setup.cfg: Add section for sdist to create both tgz and zip
3802     archives
3803    
3804     * setup.py: increase version number to 0.1
3805     (data_dist): New command class for data distribution
3806    
3807 bh 64 2001-09-14 Bernhard Herzog <[email protected]>
3808    
3809 bh 70 * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):
3810     Handle the case of no layer (i.e. layer is None) properly.
3811    
3812 tkoester 403 * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):
3813 bh 70 Set the initial selection of the combo boxes to reflect the
3814     projection we're starting with in a way that works on windows,
3815     too.
3816    
3817 bh 64 * Thuban/Lib/connector.py (Connector.print_connections): Print the
3818     puiblisher's ids in hex to make it easier to compare them to the
3819     standard repr of python methods
3820    
3821     * Thuban/Model/map.py (Map.Destroy): Unsubscribe the label_layer
3822     messages
3823    
3824 bh 59 2001-09-13 Bernhard Herzog <[email protected]>
3825    
3826 bh 64 * Thuban/UI/tree.py (SessionTreeCtrl.OnSelChanged): Make sure to
3827     deselect the layer if no layer is selected
3828    
3829 bh 59 * Thuban/UI/view.py (MapCanvas.OnPaint): Only delay drawing to
3830     idle time when there actually is something to draw. If there's
3831     nothing to draw simply clear the window
3832     (MapCanvas.do_redraw): Call dc.EndDrawing and add some comments.
3833     (MapCanvas.SetMap): force a redraw in all cases because
3834     FitMapToWindow doesn't always do it.
3835     (MapCanvas.ZoomFactor): Add an optional parameter, center, to
3836     specify the point to move into the center of the window
3837     (ZoomOutTool.MouseUp, ZoomInTool.MouseUp): If the mouse wasn't
3838     dragged, zoon in/out by a factor of 2
3839 bh 64 (MapCanvas.find_shape_at): Iterate backwards (i.e. with decreasing
3840     index, i.e. reversed drawing order) so that objects appearing to
3841     be in from of others are selected first. This is probably mostly
3842     relevant for point shapes where the symbols used may overlap
3843 bh 59
3844     * Thuban/Model/session.py (create_empty_session): Unset the
3845     modified bit before returning it
3846    
3847     * Thuban/UI/mainwindow.py (MainWindow.NewSession): Use
3848     create_empty_session session to create the new, empty session.
3849    
3850     * Thuban/UI/mainwindow.py (MainWindow.__init__): Set the size of
3851     the tool bitmaps.
3852     (MainWindow.OnClose, MainWindow.save_modified_session): Separate
3853     the code that asks whether the session should be saved into the
3854     new method save_modified_session.
3855     (MainWindow.OpenSession, MainWindow.NewSession): Use the new
3856     method to save modified session here too.
3857    
3858 bh 55 2001-09-11 Bernhard Herzog <[email protected]>
3859    
3860     * setup.py (InnoIconItem): fix typo
3861    
3862     (thuban_bdist_inno.run):
3863     (bdist_inno.run): Move the decision not to create symlinks on
3864     non-nt platforms to thuban_bdist_inno and do it unconditinally
3865     since we never want to create the symlinks here
3866    
3867 bh 48 2001-09-10 Bernhard Herzog <[email protected]>
3868    
3869 bh 53 * Thuban/UI/mainwindow.py (MainWindow.IdentifyTool): Popup the
3870     identify view immediately
3871    
3872     * Thuban/UI/controls.py: New file with two classes RecordListCtrl
3873     and SelectableRecordListCtrl that implement the code shared by the
3874     identify view and the label dialog
3875    
3876     * Thuban/UI/identifyview.py (IdentifyListCtrl): Derive from the
3877     new class RecordListCtrl
3878    
3879     * Thuban/UI/labeldialog.py (LabelDialog.OnOK): Check whether the
3880     return value of GetValue is None instead of using it as a boolean
3881     directly so that Zero numbers are handled properly.
3882     (LabelListCtrl): Derive from the new class
3883     SelectableRecordListCtrl
3884    
3885 bh 48 * Thuban/UI/proj4dialog.py (Proj4Dialog.__init__):
3886     (Proj4Dialog.dialogLayout): Make the window resizable and set the
3887     size of the text control explicitly to make the sizers work on
3888     both Windows and X.
3889    
3890 bh 44 2001-09-07 Bernhard Herzog <[email protected]>
3891    
3892     * Thuban/UI/view.py (MapCanvas.find_shape_at):Add a new parameter
3893     that can limit the search to the currently selected layer.
3894     (MapCanvas.SelectShapeAt): Make sure that the currently selected
3895     layer stays selected even when no shape is found
3896 bh 46 (MapCanvas.FitRectToWindow): If the rect has zero with or zero
3897     height do nothing (avoids zero division errors)
3898 bh 44
3899 bh 32 2001-09-06 Bernhard Herzog <[email protected]>
3900    
3901 bh 42 * Thuban/UI/tree.py (SessionTreeCtrl, SessionTreeView.__init__):
3902     Correct the spelling of SessionTreeCtrl. dabbrev is too damn
3903     convenient :-)
3904     (SessionTreeCtrl.__init__, SessionTreeCtrl.update_tree): Introduce
3905     a new instvar layer_to_item to map layers to tree items
3906     (SessionTreeCtrl.layer_selected): Select the appropriate tree item
3907     to match the current selection in the interactor
3908    
3909 bh 40 * Thuban/UI/interactor.py (Interactor.SelectedLayer):
3910     (Interactor.HasSelectedLayer): New methods to query the current
3911     selection
3912    
3913     * Thuban/UI/mainwindow.py (MainWindow.current_layer):
3914     (MainWindow.has_selected_layer): Simply call the appropriate
3915     interactor method
3916    
3917     * Thuban/UI/mainwindow.py (MainWindow.__init__):
3918     (MainWindow.LayerShowTable):
3919     (MainWindow.identify_view_on_demand): Store the interactor in an
3920     instvar and use that reference instead of going through main.app
3921    
3922 tkoester 403 * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):
3923     * Thuban/UI/application.py (ThubanApplication.OnInit):
3924 bh 40 * Thuban/UI/main.py (main): Create the session tree view in main
3925     with the new mainwindow method ShowSessionTree and not directly
3926     the application's OnInit method
3927    
3928     * Thuban/UI/tree.py (myTreeCtrlPanel):
3929     (SessioinTreeCtrl): Rename to SessioinTreeCtrl and turn it into a
3930     TreeCtrl isntead of a panel. This affects most method since we now
3931     refer to self instead of self.tree
3932     (SessionTreeView): New class implementing a non-modal dialog
3933     showing the session tree.
3934    
3935 bh 35 * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Pass the
3936     layer to the tableview dialog.
3937    
3938     * Thuban/UI/tableview.py: Add some doc-strings
3939 tkoester 403 (TableGrid):
3940 bh 35 (TableGrid.OnRangeSelect):
3941     (TableGrid.OnSelectCell):
3942     (TableFrame.__init__):
3943     (TableFrame.row_selected):
3944     Selecting rows in the grid view now updates the selected shapes
3945     through the TableFrame. To achieve this we derive TableGrid from
3946     Publisher and introduce the message type ROW_SELECTED which the
3947     TableFrame subscribes to and which is issued by OnRangeSelect and
3948     OnSelectCell
3949    
3950     (DataTable.SelectRow): Removed because it's no longer needed in
3951     the row/shape selection scheme
3952    
3953 bh 32 * Thuban/UI/dialogs.py: New file implementing common classes for
3954     dialogs
3955    
3956     * Thuban/UI/tableview.py (TableGrid.__init__): Don't subscribe to
3957     the SELECTED_SHAPE message anymore. This is now handled by the
3958     parent.
3959     (TableGrid.select_shape): Only update the selection if the shape
3960     is not None.
3961     (TableFrame): Inherit from the new NonModalDialog class.
3962     (TableFrame.__init__, TableFrame.select_shape): Handle the
3963     SELECT_SHAPE message.
3964     (TableFrame.OnClose): Extend the inherited method to unsubscribe
3965     SELECT_SHAPE
3966    
3967     * Thuban/UI/mainwindow.py (MainWindow.init_dialogs):
3968     (MainWindow.add_dialog):
3969     (MainWindow.dialog_open):
3970     (MainWindow.remove_dialog):
3971     (MainWindow.get_open_dialog): New methods to maintain a dictionary
3972     of opened non-modal dialogs.
3973    
3974     (MainWindow.__init__): Initialize the new non-modal dictionary
3975     management code
3976     (MainWindow.LayerShowTable): maintain separate dialogs for each
3977     table using the non-modal dialog management code to only open a
3978     view once for each table.
3979    
3980     (MainWindow.IdentifyTool):
3981     (MainWindow.__init__):
3982     (MainWindow.identify_view_on_demand): Don't open the identify view
3983     in IdentifyTool anymore. This will be done automatically by the
3984     new method identify_view_on_demand which handles the
3985     SELECTED_SHAPE message so that the identify view will be opened on
3986     demand
3987    
3988     * Thuban/UI/identifyview.py (IdentifyListCtrl.__init__): Remove
3989     the interactor argument. The SELECTED_SHAPE message is now handled
3990     by the parent.
3991     (IdentifyView.__init__): Add the interactor argument so that we
3992     can handle the SELECTED_SHAPE message here
3993     (IdentifyView.selected_shape): New method to handle the
3994     SELECTED_SHAPE messages
3995    
3996     * Thuban/UI/identifyview.py (IdentifyView): Derive from the new
3997     NonModalDialog class
3998     (IdentifyView.OnClose): Extend the inherited version to
3999     unsubscribe SELECT_SHAPE
4000    
4001     * Thuban/Model/session.py (Session.UnsetModified): Remove debug prints
4002    
4003 bh 26 2001-09-05 Bernhard Herzog <[email protected]>
4004    
4005     * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.
4006 tkoester 403
4007 bh 26 * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument
4008     interactor to pass through to the MapCanvas
4009 tkoester 403
4010 bh 26 * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new
4011     argument to the MainWindow constructor to get rid of the ugly hack
4012     that made main.app available early just so that the mapcanvas
4013     could access the interactor object.
4014    
4015 bh 19 2001-09-04 Bernhard Herzog <[email protected]>
4016    
4017 bh 22 * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): New method
4018     that runs a modal message box
4019     (MainWindow.OnClose): Use the new method
4020     (MainWindow.RemoveLayer): Just do nothing in case no layer is
4021     selected. The command should be grayed out anyway, so there's no
4022     need to pop up a message box.
4023     (MainWindow.AddLayer): Pop up a message box with an error message
4024     if the shape file can't be opened
4025    
4026     * Thuban/Model/layer.py (Layer.__init__): Open the shapefile
4027     immediately. This will cause an exception in case the file can't
4028     be opened and we can display an appropriate message.
4029    
4030 bh 19 * MANIFEST.in: Add extensions/pyprojection/LICENSE
4031    
4032     * setup.py (thuban_bdist_rpm): New class implementing a Thuban
4033     specific bdist_rpm command.
4034    
4035     * Thuban/UI/main.py: Catch ImportError exceptions when importing
4036     the locale module because it may not be available on some
4037     installations.
4038    
4039     * extensions/pyprojection/LICENSE: Copy of the license text in
4040     Projection.i. Having it in a separate file makes it easier to
4041     refer to license text in e.g. RPMs
4042    
4043 bh 18 2001-09-03 Bernhard Herzog <[email protected]>
4044    
4045 bh 19 * setup.py: use wx-config instead of wxgtk-config because it's
4046     more generic
4047    
4048     * setup.py (ThubanInstall.get_outputs): Add the symlink in
4049     <prefix>/bin to the outputs
4050     (ThubanInstall.link_file): New method to link files. We need this
4051     because the standard copy_files refuses to link non-existing
4052     files.
4053     (ThubanInstall.run): Remove the leading install root from the
4054     script filename if an install root was specified and use the new
4055     link_file method
4056 tkoester 403
4057 bh 18 * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to
4058     the window when the first layer is added to the map.
4059    
4060     * setup.py (ThubanInstall.run): Honor the build root (self.root)
4061     when linking thuban.py to <prefix>/bin
4062    
4063 bh 16 2001-08-31 Bernhard Herzog <[email protected]>
4064    
4065     * setup.py: In the setup call, the install parameters shouldn't
4066     have trailing slashes because distutils on non-posix platforms
4067     doesn't like that. The same applies to other directories like
4068     "Resources/Bitmaps"
4069    
4070     In the configuration section for nt, move the wxWindows directory
4071     optins into the part clearly marked as editable.
4072    
4073     (InstallLocal.initialize_options):
4074     (InstallLocal.user_options): remove the currently unused debug
4075     flag
4076     (thuban_build_py.find_all_modules): Add this method so that it
4077     works for our case of having packages and modules in one
4078     distribution as well.
4079     (ThubanInstall.initialize_options):
4080     (ThubanInstall.finalize_options):
4081     (ThubanInstall.user_options):
4082     (ThubanInstall.boolean_options): Add new options, do-symlink and
4083     extra files. Since these are the first ThubanInstall specific
4084     options, override user_options and boolean_options
4085     (ThubanInstall.run): Honor the new do-symlink and extra-files
4086     options.
4087     (ThubanInstall.get_outputs): Add to override the base-class's
4088     version and add the extra-files to the outputs
4089     (bdist_inno): New class for windows distributions with Inno Setup
4090     (InnoIconItem): Helper class for bdist_inno
4091     (thuban_bdist_inno): Thuban specific version of bdist_inno. Added
4092     this together with the appropriate parameters, to the setup call.
4093 tkoester 403
4094 bh 16 * setup.cfg (bdist_inno): added new section for the inno setup
4095     installer
4096    
4097     * Thuban/UI/tree.py (myTreeCtrlPanel.__init__): New inst var
4098     changing_selection to avoid recursive selection events when
4099     modifying the selection in response to a selection event.
4100     (myTreeCtrlPanel.normalize_selection): Set the new inst var when
4101     changing the tree's selection.
4102     (myTreeCtrlPanel.OnSelChanged): Only normalize the selection when
4103     we're not being called indirectly from normalize_selection.
4104    
4105     * Thuban/UI/mainwindow.py (MainWindow.update_command_ui): Call
4106     event.Check only if the command is actuall checkable.
4107     (MainWindow.__init__): Call the toolbar's Realize method to make
4108     sure that the items are actually shown
4109    
4110 bh 7 2001-08-28 Bernhard Herzog <[email protected]>
4111    
4112 bh 9 * setup.py: Fix some doc strings
4113    
4114 bh 7 * ChangeLog: started
4115    

Properties

Name Value
svn:eol-style native
svn:keywords Author Date Id Revision

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26