/[thuban]/branches/greater-ms3/thuban/ChangeLog
ViewVC logotype

Diff of /branches/greater-ms3/thuban/ChangeLog

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

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

Legend:
Removed from v.70  
changed lines
  Added in v.1038

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26