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

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

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

revision 456 by bh, Tue Mar 4 11:32:31 2003 UTC revision 1483 by bh, Thu Jul 24 17:53:21 2003 UTC
# Line 1  Line 1 
1    2003-07-24  Bernhard Herzog  <[email protected]>
2    
3            * Thuban/Model/range.py, Thuban/version.py: Remove the #! line as
4            it annoys lintian which warns about these files not being
5            executable. The #1 isn't necessary here since if you absolutely
6            must execute them you can always say "python <filename>".
7    
8            * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Remove
9            superfluous code to set brush and pen for point shapes
10    
11            * Thuban/UI/viewport.py: Remove commented out code that wouldn't
12            belong in viewport anyway
13    
14    2003-07-24  Frank Koormann   <[email protected]>
15    
16            * Doc/manual/thuban-manual.xml: Added section on table management.
17    
18    2003-07-24  Bernhard Herzog  <[email protected]>
19    
20            * test/runtests.py (main): Recognize the long "verbose" option
21            correctly.
22    
23    2003-07-22  Jonathan Coles   <[email protected]>
24    
25            * Doc/manual/thuban-manual.xml: Continue to write first revision
26            of the manual.
27    
28            * Thuban/UI/renderer.py (MapRenderer.render_map): Wrap method
29            with Begin/EndDrawing() calls to ensure we aren't doing to
30            many updates to the dc during rendering.
31            (ScreenRenderer.draw_shape_layer): self.draw_point_shape takes
32            a pen and brush argument so they need to be passed to the function.
33    
34            * Thuban/UI/viewport.py (ViewPort.calc_min_max_scales): New.
35            Calculates the minimum and maximum scale values. Factored out
36            of set_view_transform so that it could be used to zoom all the
37            way into a single point.
38            (ViewPort.set_view_transform): Call calc_min_max_scales().
39            (ViewPort.FitSelectedToWindow): Zoom to the maximum scale
40            if only a single point is selected.
41    
42            * Doc/manual/images/1_2_legend_close.png,
43            Doc/manual/images/1_2_legend_dock.png,
44            Doc/manual/images/1_2_mainwindow.png,
45            Doc/manual/images/1_2_mainwindow.ps,
46            Doc/manual/images/1_2_mainwindow.sk,
47            Doc/manual/images/3_2_fullextent.png,
48            Doc/manual/images/3_2_fulllayerextent.png,
49            Doc/manual/images/3_2_fullshapeextent.png,
50            Doc/manual/images/3_2_pan.png,
51            Doc/manual/images/3_2_zoomin.png,
52            Doc/manual/images/3_2_zoomout.png,
53            Doc/manual/images/3_3_identify.png,
54            Doc/manual/images/3_3_label.png,
55            Doc/manual/images/3_5_invisible.png,
56            Doc/manual/images/3_5_movedown.png,
57            Doc/manual/images/3_5_moveup.png,
58            Doc/manual/images/3_5_props.png,
59            Doc/manual/images/3_5_tobottom.png,
60            Doc/manual/images/3_5_totop.png,
61            Doc/manual/images/3_5_visible.png: New. Images for the documentation.
62    
63    2003-07-18  Bernhard Herzog  <[email protected]>
64    
65            * Thuban/UI/messages.py (MAP_REPLACED): New message.
66    
67            * Thuban/UI/viewport.py (ViewPort.SetMap): Issue MAP_REPLACED
68            after the new map has been assigned
69    
70            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages):
71            Delegate MAP_REPLACED to the canvas too
72            (MainWindow.prepare_new_session): Removed. Thanks to the new
73            MAP_REPLACED message it's no longer needed
74            (MainWindow.OpenSession, MainWindow.NewSession):
75            prepare_new_session has been removed.
76    
77            * Thuban/UI/classifier.py (Classifier.__init__): Subscribe to
78            MAP_REPLACED so that we can close the dialog if a new map is set.
79            (Classifier.unsubscribe_messages): Unsubscribe from MAP_REPLACED
80            (Classifier.map_replaced): Handle MAP_REPLACED by closing the
81            dialog
82    
83            * test/test_viewport.py (SimpleViewPortTest)
84            (SimpleViewPortTest.test_default_size): Add doc-strings
85            (ViewPortTest.setUp): Bind map to self.map so we can use it in
86            tests. Subscribe to MAP_REPLACED messages too.
87            (ViewPortTest.tearDown): No need to explicitly unsubscribe
88            (ViewPortTest.test_set_map): New test for the SetMap method.
89    
90    2003-07-18  Bernhard Herzog  <[email protected]>
91    
92            * test/test_viewport.py (SimpleViewPortTest.test_default_size):
93            Move this test from ViewPortTest.setUp to this new separate test
94            case. setUp is not the place for the actual tests.
95            (ViewPortTest.test_inital_settings, ViewPortTest.setUp): Move some
96            more of the test from setUp to the new test test_inital_settings.
97            (ViewPortTest.test_win_to_proj, ViewPortTest.test_proj_to_win)
98            (ViewPortTest.test_proj_conv): Split test_proj_conv into
99            test_win_to_proj and test_proj_to_win and make the tests easier to
100            understand
101            (ViewPortTest.testFitRectToWindow, ViewPortTest.testZoomFactor)
102            (ViewPortTest.testZoomOutToRect, ViewPortTest.testTranslate)
103            (ViewPortTest.test_unprojected_rect_around_point)
104            (ViewPortTest.test_find_shape_at, ViewPortTest.testTools):
105            Reformat to increase readability.
106    
107    2003-07-18  Bernhard Herzog  <[email protected]>
108    
109            * Thuban/UI/view.py (MapCanvas.OnLeftDown): Capture the mouse.
110    
111    2003-07-18  Bernhard Herzog  <[email protected]>
112    
113            * test/runtests.py: The test suite can now be run without an X
114            connection. To make sure this remains true, remove the DISPLAY
115            environment variable so that an error occurs if the wxGTK is
116            imported accidentally
117    
118    2003-07-18  Bernhard Herzog  <[email protected]>
119    
120            * Thuban/UI/viewport.py: Remove unused imports
121    
122            * Thuban/UI/view.py: Remove unused imports
123    
124    2003-07-18  Bernhard Herzog  <[email protected]>
125    
126            * test/test_export.py Remove unused imports. The OutputTransform
127            function is now in viewport.py and is called output_transform
128            (TestScalebar.test_output_transform)
129            (TestScalebar.test_OutputTransform): Renamed to
130            test_output_transform and updated to use output_transform instead
131            of OutputTransform
132    
133            * Thuban/UI/view.py (OutputTransform): Moved to viewport.py and
134            renamed.
135            (MapCanvas.Export, MapPrintout.draw_on_dc): OutputTransform was
136            renamed to output_transform
137    
138            * Thuban/UI/viewport.py (OutputTransform, output_transform):
139            Rename to output_transform
140    
141    2003-07-18  Bernhard Herzog  <[email protected]>
142    
143            * Thuban/Model/layer.py (Layer.__init__): Rename
144            classificationField to classificatin_column and init it here so
145            that it can be used in SetClassificationColumn
146            (Layer.GetClassificationColumn, Layer.GetClassificationField):
147            Rename to GetClassificationColumn.
148            (Layer.SetClassificationColumn, Layer.SetClassificationField):
149            Rename to SetClassificationColumn and issue a LAYER_CHANGED
150            message if the column changes.
151            (Layer._classification_changed, Layer.ClassChanged): Rename to
152            _classification_changed. Update the callers.
153            (Layer.SetShapeStore): Further field->column renames.
154    
155            * Thuban/Model/load.py (SessionLoader.start_classification)
156            (SessionLoader.start_clpoint): Updates because of
157            field->column method name changes in the Layer class
158    
159            * Thuban/Model/save.py (SessionSaver.write_classification): Updates
160            because of field->column method name changes in the Layer class
161    
162            * Thuban/UI/classifier.py (Classifier.__init__)
163            (Classifier._OnTry, Classifier._OnRevert): Updates because of
164            field->column method name changes in the Layer class
165    
166            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Updates
167            because of field->column method name changes in the Layer class
168    
169            * Thuban/UI/viewport.py (ViewPort.find_shape_at): Updates because
170            of field->column method name changes in the Layer class
171    
172            * test/test_save.py (SaveSessionTest.testClassifiedLayer)
173            (SaveSessionTest.testClassifiedLayer): Update because of
174            field->column method name changes in the Layer class
175    
176            * test/test_layer.py (SetShapeStoreTests.setUp)
177            (SetShapeStoreTests.test_sanity): Update because of field->column
178            method name changes in the Layer class
179            (TestLayerModification.setUp): Subscribe to LAYER_CHANGED as well
180            (TestLayerModification.test_sanity)
181            (TestLayerModification.test_initial_settings): remove unsued code
182            and rename to test_sanity.
183            (TestLayerModification.test_set_classification): New test for
184            SetClassification and SetClassificationField.
185    
186    2003-07-18  Bernhard Herzog  <[email protected]>
187    
188            * test/test_classgen.py (TestFixedRamp.test): Extend test to check
189            the non-fixed values as well. The old test would have accepted a
190            fixed ramp that only returnes the fixed properties
191    
192    2003-07-17  Jonathan Coles   <[email protected]>
193    
194            * Doc/manual/mainwindow.png, Doc/manual/mainwindow.xcf: Screen
195            shots for the manual. The XCF file is the source image and
196            has additional layers to support changes.
197    
198            * Doc/manual/thuban-manual.xml: Wrote an initial Introduction.
199    
200            * Thuban/UI/classifier.py (Classifier.__BuildClassification):
201            Return both the new class and the field name.
202    
203            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Don't
204            fit the map to the window as this changes any zoom level that
205            the user may have set.
206    
207    2003-07-16  Jonathan Coles   <[email protected]>
208    
209            * Thuban/Model/classgen.py (generate_singletons,
210            generate_uniform_distribution, generate_quantiles): Remove
211            fixes parameter, but maintain the same functionality by having
212            the calling function pass a FixedRamp object for the ramp.
213            (FixedRamp): New. Adapts a ramp to have fixed property values.
214    
215            * Thuban/Model/classification.py: Use new CLASS_CHANGED message.
216            (Classification): Inherit from Publisher.
217            (Classification.__init__): Remove the layer parameter.
218            Classifications no longer need to have a parent layer.
219            (Classification.GetField, Classification.GetFieldType,
220            Classification.SetFieldInfo): Removed. The field name is stored
221            in the layer, and the type can be retreived by calling
222            Layer.GetFieldType().
223            (Classification._set_layer, Classification.GetLayer): Removed.
224            Classifications no longer have a parent layer.
225    
226            * Thuban/Model/layer.py (Layer.Destroy): Unsubscribe from the
227            classification.
228            (Layer.SetShapeStore): Reset the classification first while
229            we still have the old shape store to work with.
230            (Layer.GetClassificationField, Layer.SetClassificationField):
231            New. Method for getting/setting the field to classify on.
232            (Layer.SetClassification): Simplified now that the layer
233            simply has to hold a reference to the classification and not
234            tell the classification who owns it.
235            Fixes RTbug #2023.
236    
237            * Thuban/Model/load.py (SessionLoader.start_classification):
238            Set the field name on the layer, not the classification.
239    
240            * Thuban/Model/messages.py: Add CLASS_CHANGED for when a
241            classification is modified.
242    
243            * Thuban/Model/save.py (SessionSaver.write_classification):
244            Get the field name and type from the layer.
245    
246            * Thuban/Model/table.py (table_to_dbf, table_to_csv): Renamed
247            parameter records to rows and add docstring. Fixes RTbug #1997.
248    
249            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Use a fixed
250            ramp when we need to fix certain values of a ramp rather than
251            using the old fixes parameter. Fixes RTbug #2024.
252    
253            * Thuban/UI/classifier.py (ClassGrid.CreateTable): Add fieldType
254            parameter.
255            (ClassTable.Reset): Add fieldType parameter and use it, rather
256            than asking the classification.
257            (Classifier.__init__): Remember the original class's field
258            and ask the layer for the field type, rather than the classification.
259            (Classifier.__SetGridTable): Retrieve the field and field type
260            for the table because they are not in the classification.
261            (Classifier._OnTry, Classifier._OnRevert): Set the classification
262            field on the layer in addition to the classification itself.
263    
264            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Get the
265            classification field from layer.
266    
267            * Thuban/UI/viewport.py (ViewPort.find_shape_at): Get the
268            classification field from layer. Split up tests and remove
269            *-imports. Fixes RTbug #1992.
270    
271            * test/test_classgen.py (TestFixedRamp): Test for the FixedRamp class.
272    
273            * test/test_classification.py
274            (TestClassification.test_classification): Remove tests for methods
275            that no longer exist.
276    
277            * test/test_layer.py (SetShapeStoreTests.setUp): Classification
278            __init__ no longer has a field parameter, use SetClassificationField.
279            (SetShapeStoreTests.test_sanity): Use layer object to get class
280            field info.
281    
282            * test/test_save.py (SaveSessionTest.testClassifiedLayer): Use
283            SetClassificationField on layer to set class field info.
284    
285            * test/test_viewport.py: Renamed from test/test_view.py.
286    
287    2003-07-16  Jan-Oliver Wagner <[email protected]>
288    
289            * Doc/manual/thuban-manual.xml: Added authors and an initial
290            coarse structure.
291    
292    2003-07-15  Bernhard Herzog  <[email protected]>
293    
294            * test/support.py (FloatComparisonMixin): This is a mix-in class
295            and therefore should not be derived from any other class.
296    
297            * test/test_range.py (RangeTest): FloatComparisonMixin is a
298            mix-in, so derive from TestCase as well.
299    
300    2003-07-15  Bernhard Herzog  <[email protected]>
301    
302            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Rework the
303            draw_func handling a bit to remove one layer of indirection. This
304            makes the renderer about 10% faster in the non-classifying case
305            and the code a bit cleaner
306            (MapRenderer.draw_point_shape): Add the pen and brush parameters
307            and set them in the dc. Now the draw_point_shape method and
308            wxproj's draw_polygon_shape function have basically the same
309            signature so that both can be directly used as draw_func
310    
311    2003-07-15  Bernhard Herzog  <[email protected]>
312    
313            * Thuban/Model/save.py (SessionSaver.write_classification): Encode
314            string values (in addition to the labels) as UTF 8
315    
316            * Thuban/Model/load.py (SessionLoader.start_clpoint): Decode the
317            values if the field type is string
318    
319            * test/test_save.py (SaveSessionTest.testClassifiedLayer): Test
320            saving a session with non-ascii string classification values.
321    
322            * test/test_load.py (TestClassification.file_contents)
323            (TestClassification.test): Check for non-ascii values in string
324            classifications
325    
326    2003-07-14  Jonathan Coles   <[email protected]>
327    
328            * test/test_view.py: New. Tests for ViewPort.
329    
330    2003-07-14  Frank Koormann   <[email protected]>
331    
332            * Thuban/Model/load.py (SessionLoader.start_map): Encode map
333            title to latin1.  Fixes https://intevation.de/rt/webrt?serial_num=2013
334    
335            * test/test_load_0_8.py (TestUnicodeStrings): New, test load of
336            unicode strings from session file: session title, map title and
337            projection name.
338            
339    2003-07-10  Jonathan Coles   <[email protected]>
340    
341            * Thuban/UI/viewport.py (Tool.MouseUp): Should have called
342            drag_stop, not drag_move when the mouse is released.
343    
344    2003-07-10  Jonathan Coles   <[email protected]>
345    
346            The most important part of this is the seperation of view.py into
347            two pieces. viewport.py now has a class called ViewPort which
348            contains all the non-wx parts of view.py and can therefore be
349            tested. view.py contains only the wx-specific parts and is fairly
350            simple.
351    
352            * Thuban/UI/view.py: Stripped out all non-wx functionality. Fixes
353            RTTbug #1992.
354            * Thuban/UI/viewport.py: New. Contains non-wx view functionality.
355            RTTbug #1992.
356    
357            * Thuban/Model/classgen.py (generate_singletons,
358            generate_uniform_distribution, generate_quantiles):
359            Added 'fixes' parameter so that property attributes can
360            be held constant over the generated classification groups.
361            (CustomRamp.GetProperties): Remove unused variables.
362    
363            * Thuban/Model/map.py (Map.SetProjection): Send the old
364            projection as an argument to listeners of the MAP_PROJECTION_CHANGED
365            event.
366    
367            * Thuban/Model/table.py (table_to_dbf, table_to_csv): Added 'records'
368            parameter which is a list of records that restricts which
369            records are saved. Fixes RTbug #1997.
370    
371            * Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog):
372            Port exception dialog from GREAT-ER. Fixes RTbug #1993.
373    
374            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Add controls
375            to allow the user to fix line color/width on generated groups.
376            (ClassGenDialog.OnOK): Use new 'fixes' parameter of the generate_*
377            functions to optionally fix group properties.
378    
379            * Thuban/UI/main.py (main): Set exception hook to the
380            ShowExceptionDialog. Fixes RTbug #1993.
381    
382            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): Raise
383            the table window when it is selectd to be shown.
384    
385            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Add an
386            Export Selection button and move the export buttons underneath
387            the table.
388            (QueryTableFrame.UpdateStatusText): Added event argument so
389            that it can respond to grid selection events. The status text
390            is now updated even when the table is not associated with a
391            layer as was previously assumed.
392            (QueryTableFrame.OnGridSelectRange, OnGridSelectCell): Removed.
393            UpdateStatusText responds to these events.
394            (QueryTableFrame.OnSaveAs): Renamed to doExport.
395            (QueryTableFrame.doExport): Helper function that saves the
396            entire table, or selected rows, to a file.
397            (QueryTableFrame.OnExport, QueryTableFrame.OnExportSel): New.
398            Respond to export button events and call doExport.
399    
400            * extensions/thuban/gdalwarp.cpp (ProjectRasterFile): Make sure
401            the function doesn't return NULL without first setting a Python
402            Error.
403    
404            * test/runtests.py (main): Only print "Unknown option" for
405            unsupported options.
406    
407            * test/support.py (FloatComparisonMixin.assertFloatEqual): Take
408            optional epsilon argument to specify floating point accuracy.
409            (FloatComparisonMixin.assertFloatSeqEqual): Call assertFloatEqual
410            for each item test.
411    
412            * test/test_csv_table.py (TestCSVTable.test_table_to_cvs): Add
413            tests for saving selected records.
414    
415            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add
416            tests for saving selected records.
417    
418            * test/test_map.py (TestMapWithContents.test_set_projection):
419            MAP_PROJECTION_CHANGED events send the old projection.
420    
421            * test/test_session.py
422            (TestSessionWithContent.test_forward_map_projection):
423            MAP_PROJECTION_CHANGED events send the old projection.
424    
425            * test/test_table.py (TableTest): Update tests to use non-deprecated
426            functions.
427    
428    2003-07-08  Bernhard Herzog  <[email protected]>
429    
430            * Thuban/Model/transientdb.py (TransientTableBase.Width): The type
431            constants in the column objects are the standard ones defined in
432            the table module.
433    
434            * test/test_transientdb.py
435            (TestTransientTable.test_transienttable_to_dbf): New. Test whether
436            exporting transient tables as DBF works. This should catch the bug
437            just fixed in TransientTableBase.Width.
438    
439    2003-07-08  Bernhard Herzog  <[email protected]>
440    
441            * Thuban/Model/classgen.py (CustomRamp.GetProperties): Compute the
442            interpolated colors correctly.
443    
444            * test/test_classgen.py (TestCustomRamp.test_color_interpolation):
445            New. Test case for the fix in classgen.py
446    
447    2003-07-08  Bernhard Herzog  <[email protected]>
448    
449            * test/runtests.py (main): Make the default output less verbose
450            and add a verbosity option (-v) to get the old output
451    
452    2003-07-08  Bernhard Herzog  <[email protected]>
453    
454            * Resources/XML/thuban-0.9.dtd: New. This will become the DTD for
455            0.9.
456    
457            * Thuban/Model/transientdb.py (TransientJoinedTable.JoinType):
458            New. Return the join type
459    
460            * Thuban/Model/save.py (SessionSaver.write_session): Use new 0.9
461            DTD
462            (SessionSaver.write_data_containers): Save the join type for
463            joined tables
464    
465            * Thuban/Model/load.py (SessionLoader.__init__): Add the new 0.9
466            namespace
467            (SessionLoader.start_jointable): Handle the jointype attribute
468    
469            * test/test_load_0_8.py: New. Effectively a copy of test_load.py
470            as of Thuban 0.8. These are now tests to determine whether Thuban
471            can still read files generated by Thuban 0.8
472    
473            * test/test_load.py (LoadSessionTest.dtd)
474            (TestSingleLayer.file_contents)
475            (TestLayerVisibility.file_contents, TestLabels.file_contents)
476            (TestLayerProjection.file_contents)
477            (TestRasterLayer.file_contents, TestJoinedTable.file_contents)
478            (TestJoinedTable.file_contents)
479            (TestLoadError.file_contents): Update for new DTD
480            (TestJoinedTable.file_contents, TestJoinedTable.setUp): Add test
481            for new join type attribute
482    
483            * test/test_save.py (SaveSessionTest.dtd)
484            (SaveSessionTest.testEmptySession)
485            (SaveSessionTest.testSingleLayer)
486            (SaveSessionTest.testLayerProjection)
487            (SaveSessionTest.testRasterLayer)
488            (SaveSessionTest.testClassifiedLayer)
489            (SaveSessionTest.test_dbf_table)
490            (SaveSessionTest.test_joined_table): Update for new DTD
491            (SaveSessionTest.test_joined_table): Add test for new join type
492            attribute
493    
494    2003-07-04  Bernhard Herzog  <[email protected]>
495    
496            * Thuban/Model/table.py (_find_dbf_column_names): New. Helper
497            function for table_to_dbf
498            (table_to_dbf): Deal with names longer than the 10 character limit
499    
500            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add
501            doc-string
502            (TestTableToDBF.test_table_to_dbf_long_col_names): New test for
503            long column names
504    
505    2003-07-03  Bernhard Herzog  <[email protected]>
506    
507            * Doc/manual/thuban-manual.xml: Fix the CVS Revision Tag syntax
508    
509    2003-07-03  Bernhard Herzog  <[email protected]>
510    
511            * Doc/manual/thuban-manual.xml, Doc/manual/README: New. Skeleton
512            for the Thuban manual and README with some basic information about
513            the manual
514    
515    2003-07-03  Bernhard Herzog  <[email protected]>
516    
517            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
518            Update doc-string
519            (TransientJoinedTable.create): Do not modify the column objects of
520            the input tables in place and copy all columns of the input tables
521            into the joined table after all.
522    
523            * test/test_transientdb.py
524            (TestTransientTable.test_transient_joined_table_same_column_name):
525            Update to reflect the new behavior
526            (TestTransientTable.test_transient_joined_table_with_equal_column_names):
527            Update to reflect the new behavior
528            (TestTransientTable.test_transient_joined_table_name_collisions_dont_modify_in_place):
529            New test case for a bug which modified the column objects in place
530    
531    2003-07-02  Jonathan Coles   <[email protected]>
532    
533            * Thuban/Model/classgen.py (generate_singletons,
534            generate_uniform_distribution, generate_quantiles,
535            GenQuantiles0): Make sure maxValue isn't less than
536            one, otherwise we could divide by zero.
537    
538            * test/test_classgen.py (ClassGenTest.doClassRangeTest,
539            ClassGenTest.doClassSingleTest): Call doBoundsTest to
540            check the end classification groups against the
541            proper property values.
542            (ClassGenTest.doBoundsTest): New. Checks the first and
543            last classification groups to make sure their properties
544            are the correct upper and lower bounds for a color ramp.
545    
546    2003-07-02  Jonathan Coles   <[email protected]>
547    
548            * Thuban/Model/classgen.py (generate_singletons,
549            generate_uniform_distribution, generate_quantiles,
550            GenQuantiles0): The denominator was one to high when
551            calculating the index for the ramp causing the index
552            to never to reach one.
553    
554    2003-07-02  Jonathan Coles   <[email protected]>
555    
556            Changed the singature of ClassGroupRange.__init__ and
557            ClassGroupRange.SetRange() so that the min/max values are
558            passed as a tuple. This makes a better calling scheme for
559            when a Range object is passed instead.
560    
561            * Thuban/Model/classgen.py: Fixed parameters to
562            ClassGroupRange constructor.
563    
564            * Thuban/Model/classification.py (ClassGroupRange.__init__):
565            Consolidate the min/max parameters into a single _range which
566            can either be a tuple or a Range object.
567            (ClassGroupRange.SetRange): Consolidate the min/max parameters
568            into a single _range which can either be a tuple or a Range object.
569    
570            * Thuban/Model/load.py (SessionLoader.start_clrange): Fix
571            call to ClassGroupRange constructor to use a tuple.
572    
573            * Thuban/Model/layer.py (Layer.SetClassification): Switch
574            the classification instance variable to the new class
575            before calling _set_layer otherwise subscribers to a
576            LAYER_CHANGED event will not see any difference.
577    
578            * test/test_classification.py: Fix tests of ClassGroupRange
579            so that they use the new signature.
580    
581            * test/test_load.py: Fix use of ClassGroupRange so that it
582            uses the new signature.
583    
584            * test/test_load_0_2.py: Fix use of ClassGroupRange so that it
585            uses the new signature.
586    
587            * test/test_save.py: Fix use of ClassGroupRange so that it
588            uses the new signature.
589    
590    
591    2003-07-01  Jonathan Coles   <[email protected]>
592    
593            * Thuban/Model/classgen.py: Fixes RTbug #1972, 1971.
594            Import used objects/class from color.
595            (generate_singletons): We don't
596            need the numGroups parameter anymore because we are using
597            the new ramps with GetProperties().
598            (generate_uniform_distribution): Use new ramp method
599            GetProperties().
600            (generate_quantiles, GenQuantiles0): Use new ramp method
601            GetProperties().
602            (CustomRamp.SetNumGroups): Removed. The ramps now map
603            a value from 0 to 1 to class properties so the number
604            of groups is not needed ahead of time.
605            (CustomRamp.next): Removed. CustomRamp does not support
606            interation anymore.
607            (CustomRamp.GetProperties): Returns a ClassGroupProperties
608            object based on the index value from 0 to 1 that is
609            passed to it.
610            (GreyRamp, RedRamp, GreenRamp, BlueRamp, GreenToRedRamp):
611            Made into instances of Monochromatic class instread of
612            deriving from it.
613            (HotToCold.SetNumGroups): Removed. See CustomRamp.
614            (HotToCold.next): Removed. See CustomRamp.
615    
616            * Thuban/Model/classification.py: Fixes RTbug #1973, 1971.
617            (Classification.SetField, Classification.SetFieldType):
618            Replaced with SetFieldInfo.
619            (Classification.SetFieldInfo): New. Does a better job of
620            what SetField and SetFieldType used to do by combining
621            their function since they should really always be done
622            at the same time.
623            (Classification.SetLayer): Renamed to _set_layer.
624            (Classification._set_layer): Should only be called from
625            Layer's SetClassification. This does not cause a recursive
626            call as SetLayer did because we know that Layer knows about
627            the classification.
628    
629            * Thuban/Model/color.py: Fixes RTbug #1971.
630            (_Transparent): Renamed from Transparent so it doesn't
631            conflict with the module variable.
632            (Transparent, Black): Renamed from Color.Transparent,
633            Color.Black so they are not class variables.
634    
635            * Thuban/Model/layer.py: Fixes RTbug #1971, 1973.
636            (Layer.Destroy): We don't need to call SetClassification
637            anymore to clear out the back reference in the classifcation
638            to the layer. It's better to set it to None using _set_layer,
639            and we won't be creating another clas object too.
640            (Layer.SetClassification): Classification._set_layer is not
641            recursive so remove all the locking variables. Also clean
642            up the code so that it remains unchanged if something fails.
643    
644            * Thuban/Model/load.py: Fixes RTbug #1971.
645            (SessionLoader.start_classification): Call
646            Classification.SetFieldInfo().
647    
648            * Thuban/Model/save.py: Removed import of Color which wasn't
649            being used.
650    
651            * Thuban/UI/classgen.py: Fixes RTbug #1972.
652            (ClassGenDialog.__init__): Color ramps are now instances
653            already so we don't need to create any new objects.
654            (ClassGenDialog.OnOK): Check for numGroups is no longer
655            necessary because we never use it.
656    
657            * Thuban/UI/classifier.py: Fixes RTbug #1971.
658            (Classifier.__BuildClassification, Classifier.__SetGridTable):
659            Call Classification.SetFieldInfo() instead of SetFieldType.
660    
661            * Thuban/UI/renderer.py: Fixes RTbug #1971.
662    
663            * Thuban/UI/view.py: Fixes RTbug #1974, 1971.
664            (MapCanvas.__init__): Subscribe to the idle time event. Set
665            background color to white.
666            (MapCanvas.OnPaint): Set a flag indicating that we should
667            render the map during idle time. If we already have a bitmap
668            just draw it now.
669            (MapCanvas.OnIdle): New. Render the map only during idle time.
670            This also fixes a problem with the busy cursor under gtk.
671    
672            * test/test_classgen.py (ClassGenTest.test_generate_singletons):
673            Fix calls to generate_singletons because the signature changed.
674    
675            * test/test_classification.py: Fix color references and
676            change calls to Classification.[SetField|SetFieldType] to
677            SetFieldInfo.
678    
679            * test/test_load.py: Fix color references.
680    
681            * test/test_load_0_2.py: Fix color references.
682    
683            * test/test_save.py (SaveSessionTest.testClassifiedLayer):
684            Change calls to Classification.[SetField|SetFieldType] to
685            SetFieldInfo.
686    
687    2003-07-01  Frank Koormann   <[email protected]>
688    
689            MERGE from the greater-ms3 branch.
690    
691            * test/test_transientdb.py
692            (TestTransientTable.test_transient_joined_table_with_equal_column_names):
693            New. Test join of two tables with partly equal column names.
694    
695            * Thuban/Model/transientdb.py (TransientJoinedTable.create):
696            If duplicates in left and right tables column names are found,
697            append '_' (underscores) to the name until it is unique.
698            Create always new internal names for the resulting table and reference
699            columns in the join statement with <table>.<column>
700    
701    2003-07-01  Bernhard Herzog  <[email protected]>
702    
703            * test/test_transientdb.py
704            (TestTransientTable.test_transient_joined_table_same_column_name):
705            New. Test whether joining on columns with the same names in both
706            tables works.
707            
708            * Thuban/Model/transientdb.py (TransientJoinedTable.create): Make
709            sure to use the right internal names even when joining on field
710            with the same names in both tables. Also, detect duplicate names
711            in the joined table correctly.
712    
713    2003-07-01  Frank Koormann   <[email protected]>
714    
715            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
716            Reverse List of layers to render in same order as in desktop legend.
717    
718    2003-06-30  Jonathan Coles   <[email protected]>
719    
720            * Thuban/version.py (make_tuple): Takes a version string
721            and splits it into a tuple of at most three integers.
722            Used make_tuple() to make tuple versions of the version
723            numbers.
724    
725            * Thuban/UI/about.py: Add Thuban email addresses.
726    
727    2003-06-30  Jonathan Coles   <[email protected]>
728    
729            * Thuban/version.py: SQLite/PySQLite version dependencies
730            were too high.
731    
732    2003-06-30  Jonathan Coles   <[email protected]>
733    
734            * Thuban/version.py: Update version to 0.8.1
735            
736            * MANIFEST.in: Added Projections so that default.proj is
737            included.
738    
739    2003-06-26  Jonathan Coles   <[email protected]>
740    
741            New About box with lots more information including library
742            versions and credits. More/better version checking before
743            Thuban starts.
744    
745            * Thuban/UI/about.py: New. New About box that displays
746            library version information and credits.
747    
748            * Thuban/version.py: Added new 'versions' dictionary which
749            contains the verions of various libraries which are checked
750            when the module loads.
751            (verify_versions): Check all version numbers and returns
752            a list of errors.
753    
754            * Thuban/UI/classifier.py (Classifier.__EnableButtons):
755            Reset the status of the buttons as the situation warrants,
756            but in a better more reliable way by not relying on the
757            current status to determine what needs to change.
758    
759            * Thuban/UI/main.py (wxCHECK_VERSION): Removed. Not needed.
760            (verify_versions): Remove most of the code since it is
761            now in Thuban.version.verify_versions.o
762    
763            * Thuban/UI/mainwindow.py (MainWindow.About): Call new
764            About box in Thuban.UI.about.
765    
766            * extensions/thuban/gdalwarp.cpp (get_gdal_version): New.
767            Returns the version of gdal library being used as a string.
768    
769            * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
770            Removed.
771            (get_proj_version): Return the version of PROJ that the file
772            was compiled with.
773            (get_gtk_version): Return th version of GTK that the file
774            was compiled with.
775    
776    2003-06-25  Jonathan Coles   <[email protected]>
777    
778            * Thuban/UI/classifier.py (Classifier.EditSymbol): The parent
779            of the SelectPropertiesDialog should be self so the window
780            appears on top.
781            (ClassGroupPropertiesCtrl.DoEdit): The parent
782            of the SelectPropertiesDialog should be self so the window
783            appears on top.
784    
785            * Thuban/UI/resource.py: Cleaned up how we determine file
786            extensions.
787            (GetImageResource): Return an wxImage from our Resources.
788    
789    2003-06-24  Jonathan Coles   <[email protected]>
790    
791            * Thuban/UI/renderer.py (ExportRenderer.render_legend):
792            Check that a layer has a classification before trying
793            to get it. Raster layers don't have classifications.
794    
795    2003-06-23  Jonathan Coles   <[email protected]>
796            
797            * setup.py: Add Resources/XML to resource list.
798        
799    2003-06-23  Jonathan Coles   <[email protected]>
800    
801            * setup.cfg: Fix copyright dates
802        
803    2003-06-23  Jonathan Coles   <[email protected]>
804    
805            * MANIFEST.in: Update with Resources/XML
806    
807            * setup.py: Don't include Locale resources yet as we don't
808            have any and it causes problems building the distribution
809            for Windows. Update version to 0.8.0.
810    
811            * Doc/thuban.dtd: Removed since it is now in Resources/XML.
812    
813            * Thuban/UI/mainwindow.py: Add blank line at the end because
814            file was not being read correctly building the Windows
815            distribution.
816    
817    2003-06-23  Jonathan Coles   <[email protected]>
818    
819            * Thuban/UI/mainwindow.py (MainWindow.About): Fix text.
820    
821            * Thuban/version.py: Temporarily update longversion for
822            the 0.8 release so that it doesn't have the cvs revision.
823    
824    2003-06-23  Jonathan Coles   <[email protected]>
825    
826            * Thuban/UI/common.py (ThubanBeginBusyCursor): Call wxSafeYield
827            to make sure that we don't create reentrant possibilities with
828            wxYield.
829    
830            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxBeginBusyCursor()
831            directly to avoid the wxSafeYield() call which generates an
832            OnPaint event causing infinite recursion. Don't try to catch
833            exception anymore. This was for before there were limits on map
834            scaling.
835    
836    2003-06-23  Bernhard Herzog  <[email protected]>
837    
838            Bug fix for RT #1961:
839    
840            * Thuban/Model/load.py (SessionLoader.start_derivedshapesource):
841            Register DerivedShapestores with the session
842    
843            * Thuban/Model/session.py (Session.Tables): Make sure each table
844            is only listed once.
845    
846            * test/test_load.py (TestJoinedTable.test): Add check_format call.
847            Update file contents to match the one written out.
848    
849    2003-06-20  Bernhard Herzog  <[email protected]>
850    
851            * test/xmlsupport.py (SaxEventLister.startElementNS)
852            (SaxEventLister.endElementNS): Do not include the qname. Python
853            2.2.1 and 2.2.2 and 2.2.3 differ in this regard. In 2.2.1 qname it
854            is (presumably incorrectly) None, whereas it's a string with the
855            element name in the later versions.
856    
857            * test/test_xmlsupport.py (TestEventList.test_even_list_simple)
858            (TestEventList.test_even_list_namespace): Update tests to reflect
859            the new behaviour
860            (TestEventList.test_even_list_id_normalization): Fix doc-string
861    
862    2003-06-20  Jonathan Coles   <[email protected]>
863    
864            * Thuban/Model/layer.py (BaseLayer.HasShapes): New. Overridden
865            by deriving classes to determine if that layer supports shapes.
866            (Layer): Override HasShapes and return true.
867    
868            * Thuban/UI/classgen.py: Use Thuban[Begin|End]BusyCursor()
869            instead of a direct call to wx[Begin|End]CusyCursor().
870            (GenUniquePanel._OnRetrieve): Set busy cursor while retrieving
871            table data.
872    
873            * Thuban/UI/common.py (ThubanBeginBusyCursor, ThubanEndBusyCursor):
874            New. Wrappers around the wxWindows functions that allow us to
875            make additional calls such as wxYield which gives the native
876            system a chance to update the cursor correctly.
877    
878            * Thuban/UI/tableview.py: Use Thuban[Begin|End]BusyCursor()
879            instead of a direct call to wx[Begin|End]CusyCursor().
880    
881            * Thuban/UI/view.py: Use Thuban[Begin|End]BusyCursor()
882            instead of a direct call to wx[Begin|End]CusyCursor().
883            (MapCanvas.find_shape_at): Check if the current search layer
884            support shapes, otherwise go on to the next layer.
885    
886            * test/test_layer.py: Add tests in each type of layer for
887            HasClassification() and HasShapes()
888    
889    2003-06-20  Jonathan Coles   <[email protected]>
890    
891            * Thuban/UI/view.py (MapCanvas.OnPaint): Call wxYield after
892            turning on the busy cursor to allow the system to change the
893            cursor before we begin painting. This fixes a problem that
894            was occuring only under GTK. Fixes RTbug #1840.
895    
896    2003-06-20  Bernhard Herzog  <[email protected]>
897    
898            * Resources/XML/thuban-0.8.dtd: New DTD for the new file format
899            version.
900    
901            * Thuban/Model/save.py (sort_data_stores): New. Make topological
902            sort of the data sources so they can be written with sources that
903            data sources that depend on other data sources come after the
904            sources they depend on.
905            (SessionSaver.__init__): Add idmap instance variable to map from
906            objects to the ids used in the file.
907            (SessionSaver.get_id, SessionSaver.define_id)
908            (SessionSaver.has_id): New. Methods to manage the idmap
909            (SessionSaver.write): Use thuban-0.8.dtd
910            (SessionSaver.write_session): Add a namespace on the session and
911            write out the data sources before the maps.
912            (SessionSaver.write_data_containers): New. Write the data
913            containers.
914            (SessionSaver.write_layer): Layer elements now refer to a
915            shapestore and don't contain filenames anymore.
916    
917            * Thuban/Model/load.py (LoadError): Exception class to raise when
918            errors in the files are discovered
919            (SessionLoader.__init__): Define dispatchers for elements with a
920            thuban-0.8 namespace too.
921            (SessionLoader.check_attrs): New helper method to check and
922            convert attributes
923            (AttrDesc): New. Helper class for SessionLoader.check_attrs
924            (SessionLoader.start_fileshapesource)
925            (SessionLoader.start_derivedshapesource)
926            (SessionLoader.start_filetable, SessionLoader.start_jointable):
927            Handlers for the new elements in the new fileformat
928            (SessionLoader.start_layer): Handle the shapestore attribute in
929            addition to filename.
930            (SessionLoader.start_table, SessionLoader.end_table): Removed.
931            They were never used in the old formats and aren't needed for the
932            new.
933    
934            * Thuban/Model/session.py (Session.DataContainers): New method to
935            return all "data containers", i.e. shapestores and tables
936    
937            * test/xmlsupport.py (SaxEventLister.__init__)
938            (SaxEventLister.startElementNS, sax_eventlist): Add support to
939            normalize IDs.
940    
941            * test/test_xmlsupport.py
942            (TestEventList.test_even_list_id_normalization): New test case for
943            id normalization
944    
945            * test/test_load.py (LoadSessionTest.check_format): Use ID
946            normalization
947            (LoadSessionTest.thubanids, LoadSessionTest.thubanidrefs): New
948            class atrributes used for ID normalization
949            (TestSingleLayer, TestLayerVisibility, TestLabels.test)
950            (TestLayerProjection.test, TestRasterLayer.test): Adapt to new
951            file format
952            (TestJoinedTable): New test for loading sessions with joined
953            tables.
954            (TestLoadError): New. Test whether missing required attributes
955            cause a LoadError.
956    
957            * test/test_save.py (SaveSessionTest.thubanids)
958            (SaveSessionTest.thubanidrefs): New class attributes for ID
959            normalization in .thuban files.
960            (SaveSessionTest.compare_xml): Use id-normalization.
961            (SaveSessionTest.testEmptySession)
962            (SaveSessionTest.testLayerProjection)
963            (SaveSessionTest.testRasterLayer)
964            (SaveSessionTest.testClassifiedLayer): Adapt to new file format.
965            (SaveSessionTest.testLayerProjection): The filename used was the
966            same as for testSingleLayer. Use a different one.
967            (SaveSessionTest.test_dbf_table)
968            (SaveSessionTest.test_joined_table): New test cases for saving the
969            new data sources structures.
970            (TestStoreSort, MockDataStore): Classes to test the sorting of the
971            data stores for writing.
972    
973            * test/runtests.py: Add CVS keywords
974    
975    2003-06-20  Jonathan Coles   <[email protected]>
976    
977            * test/test_session.py
978            (UnreferencedTablesTests.test_unreferenced_tables_with_joins):
979            Use the cultural_landmark-point.dbf file for the store so that
980            the table rows and shape count match.
981    
982    2003-06-20  Jonathan Coles   <[email protected]>
983    
984            * Thuban/Model/data.py (DerivedShapeStore.__init__): Raise
985            an exception if the number of shapes is different from the
986            number of rows in the table. Address RTbug #1933.
987    
988            * test/test_layer.py (TestLayer.test_derived_store): Add
989            a test for the new exception in DerivedShapeStore.__init__.
990    
991            * test/support.py (FloatTestCase): Removed since there is
992            already FloatComparisonMixin. Fixes RTbug #1954.
993            (FloatComparisonMixin.assertFloatEqual): Include test for
994            infinity that was part of FloatTestCase.
995    
996            * test/test_range.py (RangeTest): Inherit from
997            support.FloatComparisonMixin now that we don't have
998            support.FloatTestCase.
999    
1000    2003-06-20  Bernhard Herzog  <[email protected]>
1001    
1002            * test/test_save.py (SaxEventLister, sax_eventlist): Removed. Use
1003            the implementation in xmlsupport instead.
1004            (SaveSessionTest.compare_xml): sax_eventlist is now in xmlsupport
1005    
1006            * test/test_proj.py: Import sax_eventlist from xmlsupport instead
1007            of test_save
1008    
1009    2003-06-20  Bernhard Herzog  <[email protected]>
1010    
1011            * test/test_load.py (LoadSessionTest.check_format): New helper
1012            method to make sure the test files we load might have been written
1013            by the current thuban version.
1014            (ClassificationTest.TestLayers, TestSingleLayer.test)
1015            (TestLayerVisibility.test, TestClassification.test)
1016            (TestLabels.test, TestLayerProjection.test, TestRasterLayer.test):
1017            Add check_format() calls and fix the thuban data to match the data
1018            that would be written by saving the session loaded from it.
1019    
1020            * test/xmlsupport.py (SaxEventLister, sax_eventlist): Copies of
1021            the same class and function in test_save.
1022    
1023            * test/test_xmlsupport.py (TestEventList): New. test cases for
1024            sax_eventlist
1025    
1026    2003-06-20  Bernhard Herzog  <[email protected]>
1027    
1028            * Resources/XML/thuban.dtd: Add comment about which versions of
1029            Thuban are covered by this DTD
1030            (map): Fix content model for layers and raster layers. There can
1031            be any number or layers and raster layers in any order.
1032    
1033    2003-06-20  Jonathan Coles   <[email protected]>
1034    
1035            This is mainly about fixing RTbug #1949.
1036    
1037            * Thuban/Model/classification.py: Remove "from __future__"
1038            import statement since python 2.2 is the earliest supported
1039            version.
1040    
1041            * Thuban/Model/proj.py (Projection.GetProjectedUnits): New.
1042            Currently returns PROJ_UNITS_METERS or PROJ_UNITS_DEGREES
1043            depending on the units this projection *forwards* into.
1044    
1045            * Thuban/Model/save.py (SessionSaver.write_classification):
1046            Remove unnecessary use of lambdas and nested functions.
1047    
1048            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Do scale
1049            adjustment here if the map projection uses degrees.
1050    
1051            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Remove
1052            scale adjust code since it is now done before calling
1053            this method. Don't do anything if the map projection
1054            is None.
1055    
1056    2003-06-19  Bernhard Herzog  <[email protected]>
1057    
1058            Move version specific load tests to their own file.
1059    
1060            * test/test_load.py: Expand the doc-string to explain a bit how to
1061            handle file format changes.
1062            (TestClassification.test): Update the docstring as this test is
1063            not about Thuban 0.2 anymore.
1064    
1065            * test/test_load_0_2.py: New file with the load tests for thuban
1066            files created with Thuban 0.2 and earlier.
1067    
1068    2003-06-19  Bernhard Herzog  <[email protected]>
1069    
1070            Add XML validation to some of the tests. Validation will only be
1071            done if pyRXP is installed (http://reportlab.com/xml/pyrxp.html).
1072            To make the DTD available to the test cases it's moved into
1073            Resources/XML
1074    
1075            * Resources/XML/thuban.dtd: New. This is now the real Thuban DTD
1076            for versions up to and including 0.2. Two slight changes: added an
1077            encoding specification and fixed the comment which refered to
1078            GRASS, not Thuban
1079    
1080            * test/xmlsupport.py: New support module for tests involving XML.
1081            Currently there's a mix-in class for XML validation.
1082    
1083            * test/test_xmlsupport.py: New. Tests for the xmlsupport module
1084    
1085            * test/test_save.py (SaveSessionTest): Derive from ValidationTest
1086            so that we can validate the
1087            (SaveSessionTest.testEmptySession)
1088            (SaveSessionTest.testSingleLayer)
1089            (SaveSessionTest.testSingleLayer)
1090            (SaveSessionTest.testLayerProjection)
1091            (SaveSessionTest.testRasterLayer)
1092            (SaveSessionTest.testClassifiedLayer): Validate the generated XML
1093    
1094            * test/runtests.py (main): Call print_additional_summary instead
1095            of print_garbage_information
1096    
1097            * test/support.py (resource_dir): New function to return the
1098            "Resource" subdirectory
1099            (print_additional_summary): New function to combine several
1100            summary functions
1101            (run_tests): Use print_additional_summary instead of calling
1102            print_garbage_information directly
1103    
1104    2003-06-19  Bernhard Herzog  <[email protected]>
1105    
1106            * Doc/thuban.dtd (classification): Correct the content model of
1107            the classification element.
1108            (projection): Add the "name" attribute
1109    
1110    2003-06-19  Frank Koormann   <[email protected]>
1111    
1112            MERGE from the greater-ms3 branch.
1113    
1114            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Apply conversion to
1115            scale if projection is latlong to get better estimate.
1116    
1117            Fix problem of hidden properties dialog under windows after double
1118            click on layer tree:
1119            The tree control always gets an Expanded / Collapsed event after
1120            the ItemActivated  on double click, which raises the main window again.         We add a second ItemActivated event to the queue, which simply
1121            raises the already displayed window.
1122    
1123            * Thuban/UI/legend.py (LegendTree.__init__): Instance variable
1124            raiseProperties initialized to prevent endless loops
1125            (LegendTree._OnItemActivated): Depending on self.raiseProperties
1126            simply raise the properties or open the dialog and issue a second
1127            event.
1128    
1129    2003-06-18  Jonathan Coles   <[email protected]>
1130    
1131            * setup.py: Fix a few problems that occured under Windows.
1132    
1133    2003-06-18  Jonathan Coles   <[email protected]>
1134    
1135            When Thuban loaded the map was redrawn twice because the
1136            legend was being opened after the mainwindow was created
1137            and not during its creation. This meant the map was drawn
1138            initially and then had to be redrawn when the legend
1139            caused the display to change. Now the legend is opened
1140            in the mainwindow constructor which resolves this issue.
1141    
1142            Also, although we were checking for the existence of
1143            gdal and gdalwarp modules, the gdalwarp extension was
1144            still being compiled (which may fail if the system doesn't
1145            have gdal installed). the build_ext command to setup.py
1146            now accepts the flags --with-gdal and --without-gdal.
1147            If --without-gdal is specified setup.py will try to
1148            use the gdal parameters specified by gdal-config. Under
1149            windows, those parameters have to be set in setup.py
1150            as with proj4 an wxWindows.
1151    
1152            * setup.py: Use a list instead of seperate variables for
1153            extension parameters so we can create a generic function
1154            that runs an appropriate *-config script.
1155            (run_cs_script): Renamed from run_wx_script and modified
1156            to accept a second argument which is a list of lists to
1157            be filled in by the values returned from running the command.
1158            (thuban_build_ext): New. Extends the build_ext command and
1159            provides the options --with-gdal/--without-gdal which then
1160            optionally includes the gdalwarp extension.
1161    
1162            * Thuban/Model/resource.py: First check if we can import
1163            the gdalwarp Thuban extension before checking for gdal.
1164            Also added some comments.
1165            
1166            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Check if
1167            the map is None which may be the case if none has been loaded
1168            yet.
1169    
1170            * Thuban/UI/main.py (main): Remove call to ShowLegend.
1171    
1172            * Thuban/UI/mainwindow.py (MainWindow.__init__): Call ShowLegend().
1173    
1174            * Thuban/UI/renderer.py: Check for gdal support before importing
1175            gdalwarp.
1176            (MapRenderer.render_map): Only try to optimize if we have gdal
1177            support otherwise nothing will get drawn.
1178    
1179            * Thuban/UI/view.py (MapCanvas.FitMapToWindow): This may be called
1180            during startup before a map has been created. Check if map is None
1181            before using it and do nothing if it is.
1182    
1183    2003-06-17  Jonathan Coles   <[email protected]>
1184    
1185            Fix the problem with raster layers under Windows that caused
1186            Thuban to crash. The view should respond to layer projection
1187            changed events to update the display. Changes to a projection
1188            should not cause the map to be set to full extent.
1189            
1190            * Thuban/UI/view.py (MapCanvas.__init__): New instance variable
1191            current_map_proj to remember the current map projection so that
1192            when the projection changes we know what the previous projection
1193            was.
1194            (MapCanvas.SetMap): Unsubscribe and subscribe to
1195            LAYER_PROJECTION_CHANGED events.
1196            (MapCanvas.projection_changed): Split into two methods that respond
1197            to map and layer projection changes.
1198            (MapCanvas.map_projection_changed): New. Takes the current view and
1199            projects it using the new projection. This does not cause the
1200            map to be redrawn at full extent.
1201            (MapCanvas.layer_projection_changed): New. Cause a redraw which
1202            will draw each layer in its new projection.
1203            
1204            * extensions/thuban/bmpdataset.cpp (BMPDataset::Open): Call
1205            VSIFClose() not VSIFCloseL() to close the file. Fixes a crash
1206            under Windows.
1207            
1208            * extensions/thuban/gdalwarp.cpp (MFILENAME): Padding should be
1209            to twice sizeof(void*) because there are two digits for each
1210            hex byte.
1211    
1212    2003-06-16  Bernhard Herzog  <[email protected]>
1213    
1214            Update to the layer interface: Direct access to the table,
1215            shapetable, shapefile and filename attributes is now actively
1216            deprecated by issuing deprecation warnings for all places where
1217            this happens.
1218    
1219            * Thuban/Model/layer.py (Layer.__getattr__): New. Implement access
1220            to the instance variables table, shapetable, shapefile and
1221            filename via __getattr__ so that we can issue a deprecation
1222            warning.
1223            (Layer.SetShapeStore): Don't set the deprecated instance variables
1224            any more
1225            (Layer.SetShapeStore): Don't use deprecated layer instance
1226            variables
1227            (Layer.Destroy): No need to explicitly remove the instance
1228            variables any more
1229            (Layer.GetFieldType, Layer.Shape): Don't use deprecated layer
1230            instance variables
1231    
1232            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
1233            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve)
1234            (GenQuantilesPanel.GetList, GenQuantilesPanel.OnRetrieve): Don't
1235            use deprecated layer instance variables
1236    
1237            * Thuban/UI/classifier.py (Classifier.__init__): Don't use
1238            deprecated layer instance variables
1239    
1240            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
1241            (IdentifyGridCtrl.selected_shape): Don't set the deprecated layer
1242            instance variables
1243    
1244            * Thuban/UI/tableview.py (LayerTableGrid.select_shapes): Don't use
1245            deprecated layer instance variables
1246    
1247            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Don't use
1248            deprecated layer instance variables
1249    
1250            * Thuban/Model/save.py (SessionSaver.write_layer): Don't use
1251            deprecated layer instance variables
1252    
1253            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer)
1254            (MapRenderer.polygon_render_param): Don't use deprecated layer instance
1255            variables
1256    
1257            * test/runtests.py (main): Turn Thuban's deprecation warnings into
1258            errors so that they're cought by the tests
1259    
1260            * test/test_load.py (TestSingleLayer.test): Don't use deprecated
1261            layer instance variables
1262    
1263    2003-06-16  Jonathan Coles   <[email protected]>
1264    
1265            Fix a problem under Windows whereby if the user double-clicks on a
1266            layer in the legend that tree item will expand or collapse as well
1267            as open the layer properties dialog. The state of the tree item
1268            should not be affected.
1269    
1270            * Thuban/UI/legend.py (LegendTree.__init__): Add instance variable
1271            preventExpandCollapse and subscribe to expanding and collapsing
1272            events.
1273            (LegendTree.OnItemExpandCollapse): New. Responds to expanding and
1274            collapsing events and will veto the event if it has been triggered
1275            by the user double clicking on a layer.
1276            (LegendTree._OnItemActivated): Set preventExpandCollapse to indicate
1277            that an expanding/collapsing event should be vetoed.
1278    
1279    2003-06-13  Bernhard Herzog  <[email protected]>
1280    
1281            * Thuban/UI/classifier.py (Classifier.OnClose)
1282            (Classifier.map_layers_removed)
1283            (Classifier.layer_shapestore_replaced): Unsubscribe the messages
1284            in OnClose and not in map_layers_removed or
1285            layer_shapestore_replaced to make sure it always happens when the
1286            dialog is closed
1287    
1288    2003-06-13  Jonathan Coles   <[email protected]>
1289    
1290            This puts back a fix for Windows where a panel is needed so that
1291            the background of the table view appears correctly.
1292    
1293            * Thuban/UI/tableview.py (TableFrame.__init__): Add a panel
1294            object that can be used by derived classes to place any
1295            controls (including the grid) onto.
1296            (QueryTableFrame.__init__): Use the panel as the parent window
1297            for all the controls. Reparent the grid so that the panel is
1298            the parent. Call UpdateStatusText() to correctly initialize
1299            the status bar.
1300    
1301    2003-06-13  Jonathan Coles   <[email protected]>
1302    
1303            * Thuban/UI/dialogs.py (ThubanFrame): New: a class that inherits
1304            from wxFrame (as opposed to wxDialog like the other classes)
1305            but otherwise behaves like the other classes. This is needed
1306            for the TableView which isn't really a dialog and needs to
1307            have a status bar and control buttons.
1308    
1309            * Thuban/UI/tableview.py (TableGrid.__init__): Create an
1310            instance variable to keep track of how many rows are selected.
1311            Subscribe once to the the events we are interested in.
1312            (ThubanGrid.OnRangeSelect): Only handle event if event handling
1313            hasn't been turned off.
1314            (ThubanGrid.OnSelectCell): Only handle event if event handling
1315            hasn't been turned off.
1316            (ThubanGrid.ToggleEventListeners): Rather than subscribe None
1317            as an event listener (which changes the event handler stack)
1318            simply set an instance variable to False. This is checked in
1319            the event handlers.
1320            (ThubanGrid.GetNumberSelected): Return the number of currently
1321            selected rows.
1322            (TableFrame): Inherit from ThubanFrame so we can have a
1323            status bar and control buttons.
1324            (QueryTableFrame.__init__): Create a status bar. Fixes RTbug #1942.
1325            Explicitly set which items are selected in the operator choice and
1326            action choice so there is always a valid selection. Fixes RTbug #1941.
1327            Subscribe to grid cell selection events so we can update the
1328            status bar.
1329            (QueryTableFrame.UpdateStatusText): Update the status bar with
1330            how many rows are in the grid, how many columns, and how many
1331            rows are selected.
1332            (QueryTableFrame.OnGridSelectRange, QueryTableFrame.OnGridSelectCell):
1333            Call UpdateStatusText when cells are (de)selected.
1334            (QueryTableFrame.OnQuery): Use the string value in the value
1335            combo if either the selected item index is 0 or if the string
1336            cannot be found in the predefined list (this happens if the
1337            user changes the text). Fixes RTbug #1940.
1338            Only turn off the grid event listeners if there a query comes
1339            back with a none empty list of ids. in the case that the list
1340            is empty this causes a grid.ClearSelection() call to actually
1341            clear the grid selection which causes the selected items in
1342            the map to be deselected. Fixes RTbug #1939.
1343    
1344            * test/test_save.py (XMLWriterTest.Encode): Check return values.
1345            Fixes RTbug #1851.
1346    
1347    2003-06-13  Bernhard Herzog  <[email protected]>
1348    
1349            * Thuban/UI/identifyview.py (IdentifyView.__init__): Call
1350            self.selected_shape with the current selection to make sure the
1351            contents of the dialog are up to date when it's shown for the
1352            first time.
1353            The dialog used to work without this by luck. The recent fix to
1354            the connector module 'broke' a 'feature' the identify view was
1355            relying on, i.e that subscribing to a message in response to
1356            receiving a message of that type would mean that the new
1357            subscriber would also be called for the same message.
1358            
1359    2003-06-12  Jonathan Coles   <[email protected]>
1360    
1361            * extensions/thuban/gdalwarp.cpp: Removed debug printing as
1362            the image is rendered. Fixes RTbug #1937.
1363    
1364    2003-06-12  Jonathan Coles   <[email protected]>
1365    
1366            * Thuban/Lib/fileutil.py: As is done under Windows, create the
1367            user directory if it doesn't exist on a posix system.
1368            Fixes RTbug #1815.
1369    
1370            * Thuban/Model/resource.py (get_user_proj_files): Moved the
1371            called to get_application_dir here, so that the directory
1372            will only be called if this method is invoked.
1373    
1374            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Clear
1375            the projfilepath if no projection is selected.
1376    
1377    2003-06-12  Jonathan Coles   <[email protected]>
1378    
1379            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Don't draw
1380            the scalebar if the current map has no projection set.
1381    
1382            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Set the
1383            projfilepath label to just the basename of the projection file
1384            rather than include the entire path.
1385    
1386            * Thuban/Model/resource.py: Fix missed proj functions that
1387            needed to be renamed.
1388    
1389    2003-06-12  Jonathan Coles   <[email protected]>
1390    
1391            * Thuban/Model/classification.py: Removed assert statements that
1392            tested if the variable was an instance of Color.
1393    
1394            * Thuban/Model/color.py (Color): Remove commented code that isn't
1395            used.
1396            (Transparent): Renamed from NoColor. Doesn't inherit from Color.
1397            Fixes RTbug #1835.
1398            (Transparent.__eq__, Transparent.__ne, Transparent.__repr): New.
1399            Needed now that the class doesn't inherit from Color.
1400    
1401    2003-06-12  Jonathan Coles   <[email protected]>
1402    
1403            * test/test_save.py (XMLWriterTest.testEncode): Explicitly
1404            check unicode strings.
1405    
1406            * test/test_layer.py: Check for existence of gdal.
1407    
1408    2003-06-12  Jonathan Coles   <[email protected]>
1409        
1410            * Thuban/Model/xmlreader.py: New. Contains the XMLReader class
1411            that was in load.py
1412    
1413            * Thuban/Model/xmlwriter.py: New. Contains the XMLWriter class
1414            that was in save.py
1415    
1416    2003-06-12  Jonathan Coles   <[email protected]>
1417    
1418            This is largely a collection of bug fixes. We also handle the
1419            case where gdal is not on the system. The XMLReader and XMLWriter
1420            classes were moved into there own files to resolve some circular
1421            import references and because they shouldn't really be in the
1422            file that is dediciated to reading/writing session files since
1423            they are also used elsewhere.
1424    
1425            * Thuban/Model/classgen.py: Renamed functions to follow the
1426            function_names_with_underscores style. Fixes RTbug #1903.
1427            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
1428    
1429            * Thuban/Model/layer.py: Import gdal only if it available.
1430            (RasterLayer): Handle the case where the gdal library is unavailable.
1431            Addresses RTbug #1877.
1432    
1433            * Thuban/Model/load.py (XMLReader): Moved into seperate file
1434            xmlreader.py.
1435    
1436    2003-06-12  Jonathan Coles   <[email protected]>
1437    
1438            This is largely a collection of bug fixes. We also handle the
1439            case where gdal is not on the system. The XMLReader and XMLWriter
1440            classes were moved into there own files to resolve some circular
1441            import references and because they shouldn't really be in the
1442            file that is dediciated to reading/writing session files since
1443            they are also used elsewhere.
1444    
1445            * Thuban/Model/classgen.py: Renamed functions to follow the
1446            function_names_with_underscores style. Fixes RTbug #1903.
1447            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
1448    
1449            * Thuban/Model/layer.py: Import gdal only if it available.
1450            (RasterLayer): Handle the case where the gdal library is unavailable.
1451            Addresses RTbug #1877.
1452    
1453            * Thuban/Model/load.py (XMLReader): Moved into seperate file
1454            xmlreader.py.
1455    
1456            * Thuban/Model/save.py (escape, XMLWriter): Moved into seperate
1457            file xmlwriter.py.
1458    
1459            * Thuban/Model/resource.py: Renamed functions to following the
1460            function_names_with_underscores style.
1461            (has_gdal_support): New function that returns true if the gdal
1462            library is available. Addresses RTbug #1877.
1463    
1464            * Thuban/UI/application.py (ThubanApplication.OpenSession):
1465            Display a message box if the gdal library is not available, but
1466            only if there are any layers that would use it. Addresses RTbug #1877.
1467    
1468            * Thuban/UI/classgen.py: Use renamed projection resource functions.
1469            (GenUniformPanel.__CalcStepping): Fix a slight discrepency
1470            when using integers versus floats.
1471    
1472            * Thuban/UI/mainwindow.py (_has_gdal_support): New. Used to
1473            determine if the "Add Image Layer" menu option should be
1474            greyed out or not. Addresses RTbug #1877.
1475    
1476            * Thuban/UI/projdialog.py: Use renamed projection resource functions.
1477    
1478            * Thuban/UI/renderer.py (MapRenderer.render_map): Only try to
1479            optimize if a raster layer is visible. Fixes RTbug #1931.
1480            Only draw the raster layer if the gdal library is available.
1481            Addresses RTbug #1877.
1482    
1483            * test/test_classgen.py: Add tests for generate_singletons,
1484            generate_uniform_distribution, generate_quantiles. Fixes RTbug #1903.
1485            (test_calculate_quantiles): Fix some tests to catch the new
1486            ValueError that is raised.
1487    
1488            * test/test_proj.py: Use renamed projection resource functions.
1489    
1490            * test/test_save.py (SaveSessionTest.testClassifiedLayer): New
1491            test for saving classified layers. Fixes RTbug #1902.
1492            (XMLWriterTest): New. Tests the XMLWriter class. Fixes RTbug #1851.
1493    
1494    2003-06-12  Jan-Oliver Wagner <[email protected]>
1495    
1496            Fix for http://intevation.de/rt/webrt?serial_num=1900.
1497    
1498            * Thuban/UI/multiplechoicedialog.py: New. A multiple choice dialog.
1499    
1500            * Thuban/UI/mainwindow.py: import wxMultipleChoiceDialog from
1501            multiplechoicedialog.py rather than from the wxPython library.
1502    
1503    2003-06-11  Frank Koormann  <[email protected]>
1504    
1505            * Thuban/Lib/fileutil.py (get_application_dir): Minor stability
1506            update.
1507    
1508    2003-06-11  Frank Koormann  <[email protected]>
1509    
1510            * Thuban/Lib/fileutil.py (get_application_dir): New function to
1511            determine the absolute .thuban/thuban directory under
1512            "posix" (os.expanduser) and "nt" (read AppData registry key).
1513    
1514            * Thuban/Model/resource.py: Use get_application_dir
1515    
1516            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
1517            Use get_application_dir.
1518    
1519    2003-06-10  Bernhard Herzog  <[email protected]>
1520    
1521            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Subscribe to
1522            the messages MAP_LAYERS_REMOVED messages
1523            (LayerTableFrame.OnClose): Unsubscribe from it.
1524            (LayerTableFrame.map_layers_removed): New. Receiver for
1525            MAP_LAYERS_REMOVED. Close the dialog when the layer whose the
1526            dialog is showing is removed.
1527    
1528    2003-06-10  Bernhard Herzog  <[email protected]>
1529    
1530            * Thuban/Lib/connector.py (Connector.Issue): Iterate over a copy
1531            of the receivers list so that unsubscribing in a receiver doesn't
1532            modify it while iterating over it.
1533    
1534            * test/test_connector.py
1535            (ConnectorTest.test_disconnect_in_receiver): New. Test whether
1536            unsubscribing in a receiver works correctly. See docstring for
1537            details
1538    
1539    2003-06-10  Bernhard Herzog  <[email protected]>
1540    
1541            * Thuban/Model/messages.py (LAYER_SHAPESTORE_REPLACED): New
1542            message.
1543    
1544            * Thuban/Model/layer.py (Layer.SetShapeStore): Send
1545            LAYER_SHAPESTORE_REPLACED when the shapestore changes. A
1546            LAYER_CHANGED will still be sent if the classification changes.
1547    
1548            * Thuban/UI/classifier.py (Classifier.__init__): Add the map as
1549            parameter so we can subscribe to some of its messages
1550            (Classifier.__init__): Subscribe to the map's MAP_LAYERS_REMOVED
1551            and the layer's LAYER_SHAPESTORE_REPLACED
1552            (Classifier.unsubscribe_messages): New. Unsubscribe from message
1553            subscribed to in __init__
1554            (Classifier.map_layers_removed)
1555            (Classifier.layer_shapestore_replaced): receivers for the messages
1556            subscribed to in __init__. Unsubscribe and close the dialog
1557    
1558            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): Pass
1559            the map to the Classifier dialog
1560    
1561            * test/test_layer.py (SetShapeStoreTests): Derive from
1562            SubscriberMixin as well so we can test messages
1563            (SetShapeStoreTests.setUp): Subscribe to some of the layer's
1564            messages
1565            (SetShapeStoreTests.tearDown): Clear the messages again
1566            (SetShapeStoreTests.test_sanity): Expand the doc-string and check
1567            for the modified flag too
1568            (SetShapeStoreTests.test_set_shape_store_modified_flag): New test
1569            to check whether SetShapeStore sets the modified flag
1570            (SetShapeStoreTests.test_set_shape_store_different_field_name)
1571            (SetShapeStoreTests.test_set_shape_store_same_field)
1572            (SetShapeStoreTests.test_set_shape_store_same_field_different_type):
1573            Add tests for the messages. This checks both the new
1574            LAYER_SHAPESTORE_REPLACED and the older LAYER_CHANGED
1575    
1576    2003-06-06  Jan-Oliver Wagner <[email protected]>
1577    
1578            * Thuban/UI/mainwindow.py: Improved and partly added help texts for
1579            the menu items.
1580    
1581    2003-06-05  Frank Koormann  <[email protected]>
1582    
1583            * Thuban/UI/identifyview.py (IdentifyView.__init__):
1584            Layout reimplemented without panel. Make life easier to fit the list
1585            in the dialog.
1586    
1587    2003-06-05  Frank Koormann  <[email protected]>
1588    
1589            * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice
1590            once on initialisation (Former implementation resulted in multiple
1591            entries for each projection).
1592            (ProjFrame.__FillAvailList): selectProj as second optional parameter,
1593            if set, select the projection found under the specified name. This
1594            overwrites any other selection estimate.
1595            Removed projchoice filling from this method.
1596            (ProjFrame._OnSave, ProjFrame._OnAddToList):
1597            Updated call of ProjFrame.__FillAvailList
1598            (LCCPanel._DoLayout): Moved parameter controls in more common order.
1599    
1600            * Resources/Projections/defaults.proj: Extended defaults representing
1601            various common European projections.
1602    
1603    2003-06-05  Frank Koormann  <[email protected]>
1604    
1605            * Thuban/UI/identifyview.py (IdentifyView.__init__):
1606            Use ListCtrl instead of GridCtrl
1607    
1608            * Thuban/Model/resource.py:
1609            Guess location of .thuban directory from tempdir parent directory.
1610    
1611            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
1612            Guess location of .thuban directory from tempdir parent directory.
1613    
1614    2003-06-04  Bernhard Herzog  <[email protected]>
1615    
1616            Do not cache the values returned by the tree widget's
1617            GetFirstChild and GetNextChild methods because it led to lots of
1618            segfaults. The new way requires more brute force but is more
1619            reliable.
1620    
1621            * Thuban/UI/legend.py (LegendTree.__init__): Remove instance
1622            variable layer2id
1623            (LegendTree.find_layer): New method to do with brute force what
1624            layer2id tried to accomplish
1625            (LegendTree._OnMsgLayerChanged)
1626            (LegendTree._OnMsgLayerTitleChanged, LegendTree.__ShowHideLayer):
1627            Use find_layer instead of layer2id
1628            (LegendTree.__RemoveLayer, LegendTree.__AddLayer): No need to
1629            update layer2id anymore
1630            (LegendTree._OnMsgMapLayersRemoved)
1631            (LegendTree._OnMsgMapLayersAdded): Get by without layer2id.
1632    
1633    2003-06-03  Thomas Koester  <[email protected]>
1634    
1635            * Thuban/Model/classgen.py (GenQuantiles0): New function.
1636    
1637    2003-06-02  Bernhard Herzog  <[email protected]>
1638    
1639            * Thuban/UI/mainwindow.py (layer_rename command, table_rename command):
1640            New commands.
1641            (main_menu): Add the new commands.
1642            (MainWindow.TableRename): New. Implementation of the table_rename
1643            command.
1644            (MainWindow.RenameLayer): New. Implementation of the layer_rename
1645            command.
1646    
1647            * Thuban/Model/session.py (Session.AddTable): call self.changed to
1648            set the modified flag
1649    
1650            * test/test_session.py (TestSessionSimple.test_add_table): Test
1651            whether the modified flag is set properly
1652    
1653            * Thuban/Model/base.py (TitledObject.SetTitle): Call changed
1654            instead of issue so that the modified flags get updated.
1655    
1656            * test/test_base.py (SomeTitledObject): Derive from Modifiable
1657            instead of Publisher to reflect reality better and to accomodate
1658            the fact that SetTitle now calls changed instead of issue
1659    
1660    2003-06-02  Bernhard Herzog  <[email protected]>
1661    
1662            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Resource
1663            acquisition has to happen before the try in a try-finally.
1664    
1665    2003-06-02  Bernhard Herzog  <[email protected]>
1666    
1667            * Thuban/UI/legend.py (LegendTree._OnMsgMapLayersRemoved): It's
1668            possible that a layer is removed that is not currently selected in
1669            the legend so don't check for this.
1670    
1671    2003-05-30  Bernhard Herzog  <[email protected]>
1672    
1673            * Thuban/Model/layer.py (Layer.Destroy): Set all instance
1674            variables to None that have direct or indirect references to
1675            shapefiles or dbf files to make sure that they do go away and the
1676            files are closed.
1677    
1678    2003-05-30  Bernhard Herzog  <[email protected]>
1679    
1680            * Thuban/UI/legend.py (LegendTree.GetRootItem): Reset
1681            availImgListIndices when a new image list is created
1682            
1683    2003-05-30  Bernhard Herzog  <[email protected]>
1684    
1685            * Thuban/UI/legend.py (LegendTree.__init__): New instance variable
1686            changing_selection to indicate whether the LegendTree code itself
1687            is currently changing the selection
1688            (LegendTree.normalize_selection): New method to normalize the
1689            selection by selecting the layer item even if the user clicked on
1690            the classification.
1691            (LegendTree._OnSelChanged): normalize the selection. This works
1692            around a bug in wx which doesn't keep track of the selection
1693            properly when subtrees are deleted.
1694    
1695    2003-05-30  Bernhard Herzog  <[email protected]>
1696    
1697            * Thuban/UI/view.py (MapCanvas.set_view_transform): Limit the
1698            maximum and minimum scale factors.
1699    
1700            * test/test_classgen.py (ClassGenTest.test): Update to reflect the
1701            changes in classgen.py
1702    
1703    2003-05-30  Jonathan Coles   <[email protected]>
1704    
1705            * Thuban/Model/classgen.py: Remove ClassGenerator class but make
1706            all the methods functions. Fixes RTBug #1903.
1707    
1708            * Thuban/Model/map.py (Map.TopLayer, Map.BottomLayer): Renamed
1709            to MoveLayerToTop and MoveLayerToBottom respectively. Fixes
1710            RTBug #1907.
1711    
1712            * Thuban/UI/classgen.py: Use classgen functions that were part
1713            of the ClassGenerator class. Put try/finally blocks around
1714            code that uses wxBeginBusyCursor()/wxEndBusyCursor(). Fixes
1715            RTBug #1904.
1716    
1717            * Thuban/UI/classifier.py: Remove unused import of ClassGenerator.
1718    
1719            * Thuban/UI/legend.py: The legend was cleared and repopulated any
1720            time something changed which caused some state to be lost such
1721            as which children were expanded or collapsed. Fixes RTBug #1901.
1722            (LegendTree._OnMsgMapLayersAdded): Add only new layers.
1723            (LegendTree.__OnMsgMapLayersRemoved): Remove layers that exist in
1724            the legend but not in the map.
1725            (LegendTree.__FillTree): Move main functionality out into smaller
1726            methods that can be used by other methods.
1727            (LegendTree.__FillTreeLayer): Reuse old slots in the image list
1728            if they are available.
1729            (LegendTree.DeleteAllItems): Renamed from __DeleteAllItems so
1730            that we override the wxTreeCtrl method. Iterate over children
1731            and call __RemoveLayer.
1732            (LegendTree.__AddLayer): New. Add a new layer to the legend.
1733            (LegendTree.__RemoveLayer): Remove a layer from the legend.
1734            (LegendTree.DeleteChildren): New, overrides wxTreeCtrl method.
1735            Should only be called with the id of a layer branch.
1736            (LegendTree.GetRootItem): New, overrides wxTreeCtrl method.
1737            Returns the root item or creates one if necessary.
1738    
1739            * Thuban/UI/renderer.py (MapRenderer.draw_raster_layer): Call
1740            ProjectRasterFile with tuple arguments instead of strings.
1741    
1742            * Thuban/UI/tableview.py (QueryTableFrame.OnQuery): Wrap code
1743            with try/finally. Fixes RTBug #1904.
1744    
1745            * Thuban/UI/view.py (MapCanvas.OnPaint): Wrap code
1746            with try/finally. Fixes RTBug #1904.
1747            (MapCanvas.FitSelectedToWindow): If a single point is selected
1748            simply center it on the display. Fixes RTBug #1849.
1749    
1750            * extensions/thuban/gdalwarp.cpp: Removed code that allowed gdalwarp
1751            to be compiled as a standalone app. Now the code can only be
1752            called from Python which simplifies the parameter passing.
1753            (ProjectRasterFile): Handle Python arguments. Remove code that
1754            checks for a destination dataset. Add more clean up code.
1755    
1756            * test/test_map.py (TestMapWithContents.test_raise_layer_top,
1757            TestMapWithContents.test_lower_layer_bottom):
1758            Test Map.MoveLayerToTop() and Map.MoveLayerToBottom() respectively.
1759            Fixes RTBug #1907.
1760    
1761            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Apply a full
1762            extent to the map when the legend is toggled. Fixes RTBug #1881.
1763    
1764    2003-05-29  Jan-Oliver Wagner <[email protected]>
1765    
1766            * Thuban/UI/tableview.py (LayerTableFrame.OnClose): Bug-fix: Now
1767            unsubscribes all that is subcribed in __init__.
1768    
1769    2003-05-28  Bernhard Herzog  <[email protected]>
1770    
1771            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer)
1772            (MainWindow.CanDuplicateLayer): New methods to implement the
1773            Layer/Duplicate command.
1774            (layer_duplicate command): New.
1775            (main_menu): Add layer_duplicate to the Layer menu.
1776    
1777    2003-05-28  Bernhard Herzog  <[email protected]>
1778    
1779            * Thuban/UI/tableview.py (NullRenderer.Draw): New. Our own
1780            renderer so that NULL/None values get displayed differently (by a
1781            gray rectangle).
1782            (TableGrid.__init__): Override the default renderers
1783    
1784    2003-05-28  Bernhard Herzog  <[email protected]>
1785    
1786            * Thuban/Model/layer.py (Layer.SetShapeStore): Set the
1787            classification to "None" if the type of the field has changed.
1788    
1789            * test/test_layer.py (SetShapeStoreTests): New. Class with a few
1790            test for the Layer.SetShapeStore method
1791    
1792    2003-05-28  Jan-Oliver Wagner <[email protected]>
1793    
1794            * Thuban/Model/layer.py (Layer.TreeInfo): Fixed a bug (a layer
1795            does not necessarily have a filename).
1796    
1797    2003-05-28  Jan-Oliver Wagner <[email protected]>
1798    
1799            * Thuban/UI/mainwindow.py (MainWindow.TableClose, MainWindow.TableShow):
1800            sort the selection list for the dialog.
1801    
1802    2003-05-28  Frank Koormann  <[email protected]>
1803    
1804            * extensions/thuban/wxproj.cpp
1805            (project_point): Removed cast to int for projected point coordinates.
1806            (shape_centroid): Return last point if all polygon vertices fall
1807            to one point.
1808    
1809    2003-05-28  Bernhard Herzog  <[email protected]>
1810    
1811            * Thuban/UI/mainwindow.py (_can_unjoin): Add doc-string and cope
1812            with layers that don't have shapestores, i.e. raster layers.
1813    
1814    2003-05-28  Bernhard Herzog  <[email protected]>
1815    
1816            * Thuban/Model/table.py (DBFTable.__init__): Omit the extension
1817            when determining the title from the filename.
1818    
1819            * test/test_dbf_table.py (TestDBFTable.test_title): Update to
1820            reflect changes in the way the title is derived from the filename
1821    
1822    2003-05-28  Frank Koormann  <[email protected]>
1823    
1824            * Thuban/UI/mainwindow.py (MainWindow.TableShow):
1825            Added wxDEFAULT_DIALOG_STYLE to show table dialog styles.
1826    
1827    2003-05-27  Bernhard Herzog  <[email protected]>
1828    
1829            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages): Also
1830            delegate SelectedLayer.
1831            (MainWindow.LayerUnjoinTable): Implement.
1832            (_can_unjoin): New. Helper function for the sensitivity of the
1833            layer/unjoin command.
1834    
1835            * Thuban/Model/data.py (ShapefileStore.OrigShapeStore)
1836            (DerivedShapeStore.OrigShapeStore): New. Return the original
1837            shapestore. Used to figure out how to unjoin.
1838            (DerivedShapeStore.Shapefile): Fix a typo.
1839    
1840    2003-05-27  Bernhard Herzog  <[email protected]>
1841    
1842            * Thuban/UI/join.py (JoinDialog): Extend to handle layer joins as
1843            well
1844            (JoinDialog.__init__): Use the layer parameter and only build the
1845            left choice when a layer is given
1846            (JoinDialog.OnJoin): Handle layer joins as well
1847            (JoinDialog.OnLeftTable, JoinDialog.OnRightTable): Handle the case
1848            that the user selects the "Select..." item. The sensitivitly
1849            updating is now in update_sensitivity
1850            (JoinDialog.y): New method to refactor the sensitivity update of
1851            the join button into its own method.
1852    
1853            * Thuban/UI/mainwindow.py (MainWindow.LayerJoinTable): Implement.
1854    
1855    2003-05-27  Bernhard Herzog  <[email protected]>
1856    
1857            * Thuban/UI/mainwindow.py (table_close command): Make it sensitive
1858            iff there are unreferenced tables in the session
1859    
1860    2003-05-27  Bernhard Herzog  <[email protected]>
1861    
1862            * Thuban/Model/messages.py (TABLE_REMOVED): New message.
1863    
1864            * Thuban/Model/session.py (Session.UnreferencedTables): New method
1865            to return tables that are not referenced by other tables or shape
1866            stores and can be removed.
1867            (Session.RemoveTable): Issue a TABLE_REMOVED message after
1868            removing the table
1869    
1870            * Thuban/UI/mainwindow.py: Remove unused imports
1871            (MainWindow.TableClose): Implement.
1872    
1873            * Thuban/UI/tableview.py (TableFrame.__init__): Subscribe to some
1874            messages so that the frame will be automatically closed when a new
1875            session is opened or the table is removed.
1876            (TableFrame.OnClose): Unsubscribe the Subscriptions made in
1877            __init__
1878            (TableFrame.close_on_session_replaced)
1879            (TableFrame.close_on_table_removed): New. Subscribers that close
1880            the window
1881    
1882            * test/test_session.py (TestSessionMessages.test_remove_table)
1883            (TestSessionSimple.test_remove_table): Move the test to
1884            TestSessionSimple and add test for the TABLE_REMOVED message
1885            (TestSessionBase.setUp): Also subscribe to TABLE_REMOVED
1886            (TestSessionSimple.test_unreferenced_tables) New. Test for the
1887            UnreferencedTables method.
1888            (UnreferencedTablesTests): New. Class with some more sophisticated
1889            tests for UnreferencedTables.
1890    
1891    2003-05-27  Frank Koormann  <[email protected]>
1892    
1893            * Thuban/UI/tableview.py (QueryTableFrame.__init__): The "_S_election"
1894            display has some unwanted side effects. Removed again.
1895    
1896    2003-05-27  Frank Koormann  <[email protected]>
1897    
1898            * Resources/Bitmaps/legend_icon_layer.xpm: New, icon for legend.
1899    
1900            * Thuban/UI/legend.py (LegendTree.__FillTree): Use "legend_icon_layer"
1901    
1902    2003-05-27  Jan-Oliver Wagner <[email protected]>
1903    
1904            * test/test_menu.py (MenuTest.test): Added test for
1905            Menu.RemoveItem().
1906    
1907            * Thuban/UI/menu.py (Menu.RemoveItem): New. Remove an item from
1908            the menu.
1909    
1910    2003-05-27  Frank Koormann  <[email protected]>
1911            
1912            Nonmodal dialogs without parent (i.e. they can fall behind the main
1913            window)
1914    
1915            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Explicitly destroy
1916            all dialogs in the dialogs dictionary and the canvas.
1917    
1918            * Thuban/UI/dialogs.py (NonModalNonParentDialog): New class, without
1919            parent, i.e. can fall behind other windows.
1920            (NonModalDialog.OnClose): Check is dialog is in mainwindow.dialog
1921            dictionary before removing it.
1922    
1923            * Thuban/UI/classifier.py: Dialog derived from NonModalNonParentDialog
1924    
1925            * Thuban/UI/projdialog.py: Dialog derived from NonModalNonParentDialog
1926            * Thuban/UI/tableview.py: Dialog derived from NonModalNonParentDialog
1927            * Thuban/UI/tree.py: Dialog derived from NonModalNonParentDialog
1928    
1929    2003-05-27  Bernhard Herzog  <[email protected]>
1930    
1931            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): New. Open a
1932            tableview dialog
1933            (MainWindow.TableShow): Use ShowTableView to open the dialogs.
1934            Also, don't use the table's titles as the dialog names. The titles
1935            aren't guaranteed to be unique.
1936            (MainWindow.TableOpen): Open a table view dialog after opening the
1937            table
1938    
1939    2003-05-27  Bernhard Herzog  <[email protected]>
1940    
1941            * Thuban/UI/mainwindow.py: Remove the Table/Hide menu item. Its
1942            effect can be achieved by simply closing the window showing the
1943            table.
1944            (MainWindow.TableHide): Removed.
1945            (main_menu): Removed "table_hide"
1946    
1947    2003-05-27  Frank Koormann  <[email protected]>
1948    
1949            Fix legend tree display problems under Win32
1950    
1951            * Thuban/UI/legend.py:  BMP_SIZE_W = 15
1952            (LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title.
1953            (LegendTree.__FillTreeLayer): Explicitely set SelectedImage.
1954    
1955            * Resources/Bitmaps/legend_icon_map.xpm: New icon for legend.
1956    
1957    2003-05-27  Jan-Oliver Wagner <[email protected]>
1958    
1959            * Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter
1960            'after' now allows to insert separators almost anywhere in the menu.
1961    
1962    2003-05-27  Frank Koormann  <[email protected]>
1963    
1964            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
1965            "S" of selection box label to hint on hot key (Alt-S). Works under
1966            Win32 but is ignored under GTK.
1967    
1968    2003-05-26  Frank Koormann  <[email protected]>
1969    
1970            * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
1971            Center Choices.
1972    
1973    2003-05-26  Bernhard Herzog  <[email protected]>
1974    
1975            Remove the Precision methods again. They're too DBF specific to be
1976            part of the table interface and they're only used in table_to_dbf
1977            anyway.
1978            
1979            * Thuban/Model/transientdb.py (TransientTableBase.Width):Use a
1980            fixed precision of 12 for doubles.
1981            (TransientTableBase.Precision): Removed
1982            (AutoTransientTable.Width): Delegate to self.table.
1983    
1984            * Thuban/Model/table.py (DBFTable.Precision)
1985            (MemoryTable.Precision): Removed.
1986            (MemoryTable.Width): Use a fixed precision of 12 for doubles.
1987            (table_to_dbf): Use a fixed precision of 12 for floats unless the
1988            column object specifies something else.
1989    
1990            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New.
1991            test for table_to_dbf
1992    
1993    2003-05-26  Bernhard Herzog  <[email protected]>
1994    
1995            * test/test_transientdb.py
1996            (TestTransientTable.run_iceland_political_tests): Fix a comment.
1997    
1998    2003-05-26  Bernhard Herzog  <[email protected]>
1999    
2000            * Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real
2001            implementation. Mark parts of the file format strings for
2002            localization.
2003    
2004            * Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf
2005            file and add the table to the tables managed by the session
2006    
2007            * test/test_session.py (TestSessionSimple.test_open_table_file):
2008            New. test case for OpenTableFile
2009    
2010    2003-05-26  Jan-Oliver Wagner <[email protected]>
2011    
2012            * Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py,
2013            Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py,
2014            Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py:
2015            Replace the true/false of wxWindows by True/False of Python 2.2.1.
2016    
2017    2003-05-26  Jan-Oliver Wagner <[email protected]>
2018    
2019            * Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is
2020            already a selection present, update the grid accordingly.
2021    
2022            * Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog
2023            resizeable and increase its initial size.
2024    
2025    2003-05-26  Frank Koormann  <[email protected]>
2026    
2027            Table export functionality
2028    
2029            * Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width):
2030            Return width (in characters) for a column.
2031            (DBFTable.Precision, MemoryTable.Precision): Return decimal precision.
2032            (table_to_dbf): Write table to dbf file.
2033            (table_to_csv): Write table to csv file.
2034    
2035            * Thuban/Model/transientdb.py (TransientTableBase.Width,
2036            TransientTableBase.Precision): Return column width and precision.
2037    
2038            * Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf
2039            or table_to_csv depending on file selection.
2040    
2041            * test/test_dbf_table.py:
2042            Test table_to_dbf (extension of former part of test).
2043    
2044            * test/test_csv_table.py:
2045            Test table_to_csv.
2046    
2047    2003-05-23  Jan-Oliver Wagner <[email protected]>
2048    
2049            * Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings.
2050            Use QueryTableFrame instead of TableFrame.
2051    
2052            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the
2053            table window with 'Layer Table:' instead of 'Table:'.
2054    
2055    2003-05-23  Jan-Oliver Wagner <[email protected]>
2056    
2057            Give all tables a title via mix-in TitledObject.LayerShowTable
2058    
2059            * Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue'
2060            only if it exists.
2061    
2062            * Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject
2063            and call its init-method with a default title. Remove Title() method.
2064    
2065            * Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable,
2066            AutoTransientTable): mix-in TitledObject and call its init-method with
2067            a default title. Remove Title() method.
2068    
2069    2003-05-23  Bernhard Herzog  <[email protected]>
2070    
2071            * Thuban/Model/session.py (Session.AddShapeStore): Define
2072            AddShapeStore analogously to AddTable.
2073    
2074            * test/test_session.py (TestSessionSimple.test_add_shapestore):
2075            New. Test for AddShapeStore
2076    
2077    2003-05-23  Jan-Oliver Wagner <[email protected]>
2078    
2079            Introducing QueryTableFrame and a very coarse ShowTable implementation.
2080    
2081            * Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the
2082            class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame.
2083            The latter implements the selection GUI without dependency on a layer.
2084            LayerTableFrame now is derived from QueryTableFrame and connects
2085            to a layer.
2086    
2087            * Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse
2088            implementation that still needs work.
2089    
2090            * Thuban/Model/layer.py (Layer.TreeInfo): Added filename.
2091    
2092    2003-05-22  Frank Koormann  <[email protected]>
2093    
2094            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
2095            Added "outer_join = False" as optional parameter.
2096            (TransientJoinedTable.create): If outer join is true, perform a
2097            "LEFT OUTER JOIN" instead of "JOIN", which preserves all records of
2098            the left table. Records not matching are filled with 0 / None.
2099    
2100            * Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join.
2101            (JoinDialog.OnJoin): Consider outer join check box.
2102    
2103    2003-05-22  Bernhard Herzog  <[email protected]>
2104    
2105            * Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a
2106            somewhat safer way. Storing the traceback in a local variable can
2107            lead to memory leaks
2108    
2109    2003-05-22  Bernhard Herzog  <[email protected]>
2110    
2111            * Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call
2112            the wxMessageDialog's Destroy() method.
2113    
2114    2003-05-22  Frank Koormann  <[email protected]>
2115    
2116            * Thuban/UI/join.py (JoinDialog.__init__): Make use of
2117            TransientTable.Title()
2118    
2119    2003-05-22  Frank Koormann  <[email protected]>
2120    
2121            Join Dialog, initial version.
2122    
2123            * Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print.
2124    
2125            * Thuban/UI/join.py (JoinDialog): Functional implementation of
2126            former framework. Renamed Table1/Table2 to LeftTable/RightTable
2127            in all occurences.
2128    
2129            * Thuban/Model/transientdb.py (TransientJoinedTable.__doc__):
2130            Typo fixed.
2131    
2132    2003-05-22  Bernhard Herzog  <[email protected]>
2133    
2134            Give the tables titles so that the GUI can display more meaningful
2135            names. For now the titles are fixed but depend on e.g. filenames
2136            or the titles of the joined tables.
2137    
2138            * Thuban/Model/transientdb.py (TransientTable.Title)
2139            (TransientJoinedTable.Title, AutoTransientTable.Title): New.
2140    
2141            * Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New.
2142    
2143            * test/test_transientdb.py
2144            (TestTransientTable.test_auto_transient_table_title): New. Test
2145            for the Title method
2146            (TestTransientTable.test_transient_joined_table)
2147            (TestTransientTable.test_transient_table): Add test for the Title
2148            methods
2149    
2150            * test/test_memory_table.py (TestMemoryTable.test_title): New.
2151            Test for the Title method
2152    
2153            * test/test_dbf_table.py (TestDBFTable.test_title): New. Test for
2154            the Title method
2155    
2156    2003-05-22  Bernhard Herzog  <[email protected]>
2157    
2158            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
2159            Provide a better way to destroy the layers
2160            (TestLayer.test_base_layer, TestLayer.test_arc_layer)
2161            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
2162            (TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use
2163            the new way to destroy the layers.
2164            (TestLayer.test_derived_store): New. Test for using a layer with a
2165            DerivedShapeStore
2166    
2167            * Thuban/Model/layer.py (Layer.SetShapeStore): Only set the
2168            filename if the shape store actually has one.
2169    
2170    2003-05-22  Bernhard Herzog  <[email protected]>
2171    
2172            * Thuban/Model/table.py (DBFTable.FileName): New. Accessor method
2173            for the filename
2174    
2175            * test/test_dbf_table.py (TestDBFTable.test_filename): New. Test
2176            for the FileName method
2177            (TestDBFTableWriting.test_write): Fix spelling of filename
2178    
2179    2003-05-22  Thomas Koester  <[email protected]>
2180    
2181            * Thuban/Model/range.py, test/test_range.py: Brought over new Range
2182            from SciParam that now really is immutable.
2183    
2184    2003-05-22  Frank Koormann  <[email protected]>
2185    
2186            Layer Top/Bottom placement added to legend.
2187    
2188            * Thuban/UI/legend.py
2189            (LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods
2190            bound to tool events.
2191            (LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom):
2192            New, methods binding the event methods with the map methods.
2193    
2194            * Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place
2195            layer at top/bottom of layer stack.
2196    
2197            * Resources/Bitmaps/top_layer.xpm: New button icon.
2198    
2199            * Resources/Bitmaps/bottom_layer.xpm: New button icon.
2200    
2201    2003-05-22  Bernhard Herzog  <[email protected]>
2202    
2203            * Thuban/Model/session.py (Session.RemoveTable): New method to
2204            remove tables
2205    
2206            * test/test_session.py (TestSessionSimple.test_remove_table): New.
2207            Test for RemoveTable
2208    
2209    2003-05-22  Thomas Koester  <[email protected]>
2210    
2211            * Thuban/Model/classgen.py: Added short module doc string and CVS id.
2212            (ClassGenerator.GenUniformDistribution): Use new Range __init__, too.
2213    
2214    2003-05-22  Bernhard Herzog  <[email protected]>
2215    
2216            Implement a way to discover dependencies between tables and
2217            shapestores.
2218    
2219            * Thuban/Model/transientdb.py (TransientTableBase.Dependencies)
2220            (TransientJoinedTable.Dependencies)
2221            (AutoTransientTable.SimpleQuery): New. Implement the dependencies
2222            interface
2223            (TransientJoinedTable.__init__): Keep tack of the original table
2224            objects in addition to the corresponding transient tables.
2225    
2226            * Thuban/Model/table.py (DBFTable.Dependencies)
2227            (MemoryTable.Dependencies): New. Implement the dependencies
2228            interface
2229    
2230            * Thuban/Model/data.py (ShapeTable): New. Helper class for
2231            ShapefileStore
2232            (ShapefileStore.__init__): Use ShapeTable instead of
2233            AutoTransientTable
2234            (ShapefileStore.Table, ShapefileStore.Shapefile): Add doc-strings
2235            (ShapefileStore.FileName, ShapefileStore.FileType): New. Accessor
2236            methods for filename and type
2237            (ShapefileStore.Dependencies): New. Implement the dependencies
2238            interface
2239            (DerivedShapeStore): New class to replace SimpleStore. The main
2240            difference to SimpleStore is that it depends not on a shapefile
2241            but another shapestore which expresses the dependencies a bit
2242            better
2243            (SimpleStore.__init__): Add deprecation warning.
2244    
2245            * test/test_dbf_table.py (TestDBFTable.test_dependencies): New.
2246            Test for the Dependencies method.
2247    
2248            * test/test_memory_table.py (TestMemoryTable.test_dependencies):
2249            New. Test for the Dependencies method.
2250    
2251            * test/test_transientdb.py
2252            (TestTransientTable.test_auto_transient_table_dependencies): New.
2253            Test for the Dependencies method.
2254            (TestTransientTable.test_transient_joined_table): Add test for the
2255            Dependencies method.
2256    
2257            * test/test_session.py (TestSessionSimple.setUp)
2258            (TestSessionSimple.tearDown): New. Implement a better way to
2259            destroy the sessions.
2260            (TestSessionSimple.test_initial_state)
2261            (TestSessionSimple.test_add_table): Bind session to self.session
2262            so that it's destroyed by tearDown
2263            (TestSessionSimple.test_open_shapefile): New. Test for
2264            OpenShapefile and the object it returns
2265    
2266    2003-05-22  Bernhard Herzog  <[email protected]>
2267    
2268            * Thuban/Model/session.py (Session.AddTable): New method to
2269            register tables with the session.
2270            (Session.Tables): Return the tables registered with AddTable too.
2271    
2272            * test/test_session.py (TestSessionSimple.test_add_table): New.
2273            Test case for the AddTable method
2274    
2275    2003-05-22  Frank Koormann  <[email protected]>
2276    
2277            UI polishing updates: Place main buttons (OK, Cancel, etc) in the
2278            lower right corner, center labels for selections, initialize controls
2279            in reasonable order for keyboard navigation.
2280    
2281            * Thuban/UI/projdialog.py (ProjFrame.__init__, ProjFrame.__doLayout)
2282            (ProjFrame.__DoOnProjAvail): Determine position of current projection
2283            using the wxListBox.FindString() method. Still a problem (#1886)
2284    
2285            * Thuban/UI/classifier.py
2286            (Classifier.__init__, SelectPropertiesDialog.__init__)
2287    
2288            * Thuban/UI/classgen.py (ClassGenDialog.__init__,
2289            (ClassGenDialog.__DoOnGenTypeSelect): Moved initialization of the
2290            different classification types from here to __init__.
2291            (GenUniquePanel.__init__): Set the column width of the first field
2292            in the Field ListCtrl to the full width.
2293    
2294            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Rename 'Save As'
2295            Button to 'Export'. Center Buttons in Selection Box, set Focus to
2296            Grid.
2297            (LayerTableFrame.OnKeyDown()): New, bound to the grid with EVT_KEY_DOWN,
2298            changes focus to the Selection when pressing "Alt-S".
2299    
2300            * Thuban/UI/legend.py (LegendTree.__SetVisibilityStyle): Only gray out
2301            the text if not visible. The italic font sometimes exceeds the
2302            rendering area.
2303    
2304    2003-05-21  Jonathan Coles   <[email protected]>
2305    
2306            * Thuban/UI/dock.py (DockFrame): Rename references to _OnClose
2307            to OnClose so that Thuban closes correctly.
2308    
2309            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Call
2310            DockFrame.OnClose, not DockFrame._OnClose.
2311    
2312    2003-05-21  Jonathan Coles   <[email protected]>
2313    
2314            * Thuban/Model/classgen.py (ClassGenerator.GenQuantiles): Remove
2315            references to 'inf' and use new Range __init__ to pass floats
2316            directly rather than converting them to strings first.
2317            Fixes RTBug #1876.
2318    
2319            * Thuban/Model/classification.py (ClassGroupRange.SetRange):
2320            Use new Range ___init__ to pass floats.
2321    
2322            * Thuban/Model/layer.py (RasterLayer.__init__): Test if the
2323            filename is a valid image file. Throw IOError otherwise.
2324    
2325            * Thuban/Model/range.py: Brought over new Range from SciParam that
2326            is immutable and has an __init__ which can accept floats.
2327    
2328            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Move OpenShapefile
2329            into try block. AddLayer doesn't throw any exceptions anymore.
2330            (MainWindow.AddRasterLayer): Move constructor of RasterLayer into
2331            try block.
2332    
2333            * Thuban/UI/projdialog.py (GeoPanel.__init__): Put Degrees as
2334            the first item in choices. Fixes RTBug #1882.
2335    
2336            * Thuban/UI/renderer.py (MapRenderer.render_map): Check if scale
2337            has gone to 0 which is a serious problem. abort.
2338            (MapRenderer.draw_raster_layer): Catch IOError seperately and
2339            print the error from GDAL.
2340    
2341            * Thuban/UI/tableview.py (TableGrid.__init__): Call
2342            ToggleEventListeners to turn on listening.
2343            (TableGrid.ToggleEventListeners): New. Turns event listening on
2344            and off so as to prevent excessive messages.
2345            (LayerTableFrame.OnQuery): Use TableGrid.ToggleEventListeners
2346            to suppress excessive messages when selecting many rows.
2347            Fixes RTBug #1880.
2348    
2349            * Thuban/UI/view.py: Added checks against if scale == 0. This
2350            is a serious problem that can occur when an image without
2351            geo data is loading and causes the map projection bounds to
2352            go to infinity. Right now, the solution is to simply try
2353            to recover.
2354    
2355            * extensions/thuban/cpl_mfile.cpp (MFILEClose): Make sure
2356            to set the MFILEReceiver attributes even if the data is NULL.
2357    
2358            * extensions/thuban/gdalwarp.cpp: Improved the error handling
2359            and passed GDAL messages back up to the Python layer. Also
2360            tried to fix some memory leaks that were present in the original
2361            utility but didn't matter because the program aborted.
2362    
2363            * test/test_range.py: Copied over tests from SciParam. Removed
2364            tests against importing. Fixes RTBug #1867.
2365    
2366    2003-05-21  Bernhard Herzog  <[email protected]>
2367    
2368            * test/test_load.py: Remove unused imports and restructure the
2369            test code
2370            (LoadSessionTest): Split into one class for each test and turn
2371            LoadSessionTest itself into the base class for all such session
2372            tests.
2373            (ClassificationTest): New base class for load tests that test
2374            classifications
2375            (TestSingleLayer, TestLayerVisibility, TestClassification)
2376            (TestLabels, TestLayerProjection, TestRasterLayer): New classes
2377            for the individual tests
2378    
2379            * test/support.py (FileLoadTestCase.filename): New base class for
2380            file loading tests
2381    
2382    2003-05-21  Jan-Oliver Wagner <[email protected]>
2383    
2384            * Resources/Projections/defaults.proj: Renamed 'Universal Transverse
2385            Mercator' to 'UTM Zone 32' as a more convenient example.
2386            Added 'Gauss Krueger Zone 6'.
2387    
2388            * Data/iceland_sample_raster.thuban: political polygon now
2389            filled transparent to have the raster image visible at once.
2390    
2391    2003-05-21  Frank Koormann  <[email protected]>
2392    
2393            * Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to
2394            OnClose() to keep in sync with extensions. Internally Thuban
2395            still uses "underscored" names.
2396    
2397    2003-05-20  Jonathan Coles   <[email protected]>
2398    
2399            This puts back Raster layer support. These layers support projections
2400            through the GDAL library. Currently, the CVS version is being used.
2401            There are no Debian packages available although this may change soon.
2402            A GDAL driver was extended to support writing to memory rather to
2403            files.
2404    
2405            There is still some work that needs to be done, such as some error
2406            handling when loading invalid images or when there is a problem
2407            projecting the image. This putback simply checks in the majority
2408            of the work.
2409    
2410            * setup.py: Add gdalwarp library extension.
2411    
2412            * Thuban/Model/layer.py (BaseLayer.HasClassification): New.
2413            Defaults to False, but can be overridden by subclasses if they
2414            support classification.
2415            (RasterLayer): New. Defines a new layer that represents an
2416            image.
2417    
2418            * Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer
2419            tag handler.
2420            (SessionLoader.start_layer): Encode the filename.
2421            (SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer):
2422            New. Supports reading a rasterlayer tag.
2423    
2424            * Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment.
2425    
2426            * Thuban/Model/save.py (XMLWriter.encode): Don't assume that we
2427            get a string in Latin1. If we get such as string convert it to
2428            unicode first, otherwise leave if alone before encoding.
2429            (SessionSaver.write_layer): Add support for writing both Layers
2430            and RasterLayers.
2431    
2432            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
2433            The right argument may not be a string, it could also be a Column.
2434    
2435            * Thuban/UI/application.py (ThubanApplication.CreateMainWindow):
2436            Make initial window size 600x400. Fixes RTBug #1872.
2437    
2438            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange how
2439            the dialog is constructed so that we can support layers that
2440            do not have classifications.
2441            (Classifier._OnTry): Only build a classification if the layer
2442            supports one.
2443    
2444            * Thuban/UI/legend.py: Change all checks that a layer is an
2445            instance of Layer into checks against BaseLayer.
2446            (LegendTree.__FillTreeLayer): Only add children to a branch if
2447            the layer supports classification.
2448    
2449            * Thuban/UI/mainwindow.py (MainWindow.NewSession,
2450            MainWindow.OpenSession): Don't proceed with an action if the
2451            user chooses Cancel when they are asked to save changes.
2452            (MainWindow.AddRasterLayer): New. Open a dialog to allow the
2453            user to select an image file. Create a new RasterLayer and add
2454            it to the map.
2455    
2456            * Thuban/UI/renderer.py (MapRenderer.render_map): Add support
2457            for rendering RasterLayer layers.
2458            (MapRenderer.draw_raster_layer): Actually method that calls
2459            the GDALWarp python wrapper and constructs an image from the
2460            data returned.
2461    
2462            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the
2463            Choices symbols to match those used in the table query method.
2464            Replace deprecated method calls on table with new method names.
2465    
2466            * Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit
2467            how small the scale can get. This still needs more testing.
2468    
2469            * extensions/thuban/bmpdataset.cpp: New, but copied from GDAL.
2470            Provides a driver to output in .bmp format.
2471    
2472            * extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h:
2473            New. Provides IO routines which write to memory, rather than a file.
2474    
2475            * extensions/thuban/gdalwarp.cpp: New, but basically a direct copy
2476            of the gdalwarp utility provided in GDAL. Added function calls
2477            that can be accessed from python.
2478    
2479            * Data/iceland_sample_raster.thuban: New. Sample file that uses
2480            a raster layer.
2481    
2482            * Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster
2483            layer image data.
2484    
2485            * Doc/thuban.dtd: Added rasterlayer attribute definition.
2486    
2487            * test/test_layer.py, test/test_load.py, test/test_save.py: Added
2488            tests associated with the raster layer code.
2489    
2490            * test/test_transientdb.py
2491            (TestTransientTable.test_auto_transient_table_query): Added a test
2492            for using a Column object as the "right" parameter to a query.
2493    
2494    2003-05-19  Frank Koormann  <[email protected]>
2495    
2496            * Thuban/version.py (get_changelog_date):
2497            Catch exceptions if ChangeLog does not exist.
2498    
2499            * Thuban/UI/view.py (MapCanvas.Export): Bugfix
2500    
2501    2003-05-19  Frank Koormann  <[email protected]>
2502    
2503            Extended version information for Thuban
2504    
2505            * Thuban/version.py: New, version information for Thuban: Last
2506            modification date and last ChangeLog entry date.
2507    
2508            * Thuban/UI/mainwindow.py (MainWindow.About()): Extended version
2509            information: Display Thuban, wxPython and Python version.
2510    
2511    2003-05-16  Bernhard Herzog  <[email protected]>
2512    
2513            * Thuban/Model/save.py: Remove some unused imports including the
2514            __future__ import for nested_scopes as Thuban relies on Python 2.2
2515            now.
2516            (XMLWriter.encode): Remove the special case for a None argument.
2517            In the saver encode is always called with a string argument.
2518    
2519    2003-05-16  Bernhard Herzog  <[email protected]>
2520    
2521            * Thuban/UI/__init__.py: Remove the work-around for the locale bug
2522            in wxPython (at least when usinvg wxGTK) prior to 2.4. The symptom
2523            of the bug was that e.g. float("1.2") would fail. Thuban now
2524            requires 2.4.x.
2525            
2526    2003-05-16  Frank Koormann   <[email protected]>
2527    
2528            Printing enhancement and WMF export (under Win32)
2529    
2530            * Thuban/UI/renderer.py (ExportRenderer): New, derived from
2531            ScreenRenderer. Renders Map, Legend and Scalebar for export.
2532            (PrinterRenderer): New, derived from ExportRenderer. Replaces the old
2533            PrintRender.
2534    
2535            * Thuban/UI/view.py (MapPrintout.__init__): Enhanced parameter set
2536            to fullfil information needed for PrinterRenderer.
2537            (MapCanvas.Export): New. Export Map (currently only to WMF on Win32).
2538            (MapCanvas.Print): Adapted to new MapPrintout.
2539            (OutputTransform): General calculations to transform from canvas
2540            coordinates to export/printing devices.
2541    
2542            * Thuban/UI/mainwindow.py (MainWindow.ExportMap()): New. Added also
2543            new method_command to call ExportMap, with platform dependency (only
2544            __WXMSW__)
2545      
2546            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Position and Size
2547            of scalebar drawing area as new parameters.
2548            
2549            * Thuban/Model/scalebar.py (roundInterval): round long instead of int
2550    
2551            * Thuban/UI/legend.py (ScalebarBitmap.__SetScale):
2552            Update to extended scalebar.DrawScalebar header.
2553    
2554            * test/test_export.py: New, test Thuban.UI.view.OutputTransform()
2555    
2556            * test/test_scalebar.py: Made test executable as standalone.
2557    
2558    2003-05-16  Bernhard Herzog  <[email protected]>
2559    
2560            * Thuban/Model/table.py (Table): Remove this compatibility alias
2561            for DBFTable.
2562    
2563            * test/test_table.py: Import DBFTable as Table because that alias
2564            doesn't exist anymore.
2565    
2566            * Thuban/UI/classgen.py: Remove some unused imports
2567    
2568    2003-05-14  Jonathan Coles   <[email protected]>
2569    
2570            * Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList):
2571            Fix docstring.
2572            (ClassGenerator.GenUniformDistribution): Fix spelling of method name.
2573            (ClassGenerator.GenQuantiles): Use the left/right brackets and min/max
2574            values of the supplied range to determine the beginning and end
2575            bounds of the generated classes.
2576    
2577            * Thuban/Model/range.py (Range.number_re): Now accepts floats that
2578            do not have a leading 0 (.5 is now accepted as well as 0.5).
2579    
2580            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method
2581            call to ClassGenerator.GenUniformDistribution.
2582    
2583            * Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows
2584            layout bug with the 'Projection' label.
2585    
2586            * test/support.py (FloatTestCase): New. Needed for the Range tests.
2587    
2588            * test/test_range.py: New. Imported from SciParam.
2589    
2590    2003-05-12  Jonathan Coles   <[email protected]>
2591    
2592            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call
2593            to table.UniqueValues() with calls that retrieve all the values
2594            from the table. This will need to be replaced by a method on table
2595            which can simply return the list (perhaps more efficiently).
2596    
2597    2003-05-12  Jonathan Coles   <[email protected]>
2598    
2599            The return value of ClassGenerator.CalculateQuantiles has changed.
2600            Refer to the documentation for details.
2601    
2602            * test/test_classgen.py: Modified Quantile tests to use the
2603            new return values.
2604    
2605            * Thuban/Model/classgen.py
2606            (ClassGenerator.GenQuantiles): Add comments describing the parameters,
2607            use new return values from CalculateQuantiles to produce the correct
2608            range bounds in the Classification.
2609            (ClassGenerator.CalculateQuantiles): Add more comments describing
2610            the return values and parameters. Make minor adjustments to improve
2611            the legibility of the code. Fix problem with adjusted not being set
2612            in most cases.
2613    
2614    2003-05-12  Frank Koormann <[email protected]>
2615            
2616            * Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode
2617            and latin1. Fixes #1851 finally.
2618    
2619    2003-05-09  Jonathan Coles   <[email protected]>
2620    
2621            * test/test_classgen.py: New. Tests the Quantile algorithm.
2622    
2623            * Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles):
2624            Clean up debugging statement, add comments, fix a small bug in the
2625            returned adjusted percentiles.
2626            
2627    2003-05-09  Jonathan Coles   <[email protected]>
2628    
2629            Introduces Range class from SciParam into the ClassGroupRange class,
2630            and such ranges can now be saved and loaded from disk.
2631    
2632            Quantiles are now available in the Classification Generator.
2633    
2634            Initial support for building Queries on a table. Doesn't do anything
2635            but run some tests.
2636    
2637            * Thuban/Model/classification.py: Explicit imports.
2638            (ClassGroupRange): Use the Range class to store the underlying
2639            range information. The interface remains the same, except for
2640            GetRange(), and you can also supply a Range object as the min
2641            parameter to SetRange or __init__.
2642    
2643            * Thuban/Model/load.py (XMLReader.encode): New. Encodes the given
2644            string appropriately for use in Thuban. Fixes RTbug #1851.
2645            (SessionLoader.end_projection): Handle the context of the
2646            projection tag a bit better by looking at what objects are not
2647            None. There was an assumption that a projection tag for a map
2648            could occur before any layers.
2649            (SessionLoader.start_clrange): Provide backward compatibility for
2650            reading min/max values as well as the new range parameter.
2651    
2652            * Thuban/Model/map.py: Explicit imports.
2653    
2654            * Thuban/Model/resource.py: Import _.
2655            (ProjFileSaver.write): write header using projfile.dtd.
2656    
2657            * Thuban/Model/save.py: Explicit imports.
2658            (XMLWriter.encode): New. Encode the given string from a format
2659            used by Thuban into UTF-8. Fixes RTbug #1851.
2660    
2661            * Thuban/UI/classgen.py: Explicit imports.
2662            (ClassGenDialog.__init__): Clean up the code and add support
2663            for Quantiles.
2664            (ClassGenDialog.OnOK): Add support for Quantiles.
2665            (GenQuantilesPanel): New. Input panel for Quantiles.
2666            (ClassGenerator, CustomRamp, MonochromaticRamp, GreyRamp, RedRamp,
2667            GreenRamp, BlueRamp, HotToColdRamp): Move to Thuban/Model/classgen.py
2668    
2669            * Thuban/Model/classgen.py: New. Contains all the classes named above.
2670    
2671            * Thuban/UI/classifier.py: Explicit imports.
2672            (ClassTable.GetValueAsCust, ClassTable.__ParseInput,
2673            ClassTable.SetValueAsCustom): Reworked to use new Range class.
2674    
2675            * Thuban/UI/legend.py: Explicit imports.
2676    
2677            * Thuban/UI/mainwindow.py: Add support for the Join Dialog. Added
2678            a Table menu and associated method calls.
2679            (MainWindow.choose_color): Removed. No longer needed.
2680    
2681            * Thuban/UI/projdialog.py (ProjFrame.__VerifyButtons): Save button
2682            should be disabled if no projection is selected in the available
2683            list.
2684    
2685            * Thuban/UI/renderer.py: Explicit imports.
2686    
2687            * Thuban/UI/tableview.py (TableGrid.OnRangeSelect): Fix some issues
2688            with correctly selecting the rows and issuing the right events.
2689            Be sure to call Skip() to allow the grid to do some of its own
2690            handling which allows the rows to actually be selected.
2691            (LayerTableGrid.select_shapes): Rename from select_shape. Supports
2692            selecting multiple shapes.
2693            (LayerTableFrame): Support for building Queries.
2694            (LayerTableFrame.select_shapes): Allow multiple shapes to be selected.
2695    
2696            * Thuban/UI/tree.py: Explicit imports.
2697    
2698            * Thuban/UI/view.py (MapCanvas): Delegate "SelectedShapes" so the
2699            table view can call it.
2700    
2701            * test/test_classification.py: Explicit imports.
2702            (TestClassification.test_ClassGroupRange): Fix test for new
2703            Range class.
2704    
2705            * Doc/thuban.dtd: Add range parameter for clrange.
2706    
2707            * Thuban/Model/range.py: Taken from SciParam. Used as the underlying
2708            object in ClassGroupRange, and also uesd for inputting ranges in
2709            the classifer table and elsewhere.
2710    
2711            * Thuban/UI/join.py: New. Initial Join dialog. No real functionality
2712            yet.
2713    
2714    2003-05-09  Frank Koormann <[email protected]>
2715    
2716            * Thuban/UI/scalebar.py (DrawScaleBar): Draw only if interval > 0.0.
2717    
2718    2003-05-08  Frank Koormann <[email protected]>
2719    
2720            Coding style updates
2721    
2722            * test/test_scalebar.py: Replaced tab indentation by spaces.
2723    
2724            * Thuban/UI/scalebar.py: Explicit imports.
2725    
2726    2003-05-08  Frank Koormann <[email protected]>
2727    
2728            * Thuban/UI/scalebar.py
2729            (ScaleBar.DrawScalebar): Format string bug fixed.
2730    
2731    2003-05-08  Frank Koormann <[email protected]>
2732    
2733            Reorganization of scalebar component (no wx in Thuban/Model)
2734    
2735            * Thuban/Model/scalebar.py: Rendering moved to Thuban/UI/scalebar.py
2736            (deriveInterval):
2737            Calculate scalebar interval and unit which fits in width for scale.
2738            (roundInterval): Round float.
2739    
2740            * Thuban/UI/scalebar.py (ScaleBar): Scalebar rendering
2741    
2742            * test/test_scalebar.py: Test for Thuban/Model/scalebar.py methods.
2743    
2744            * Thuban/UI/legend.py: Import Thuban.UI.scalebar
2745    
2746    2003-05-08  Frank Koormann <[email protected]>
2747    
2748            * Thuban/UI/legend.py (ScalebarBitmap.SetCanvas):
2749            Initialize ScaleBar with canvas.map
2750    
2751            * Thuban/Model/scalebar.py (ScaleBar.roundInterval()): New,
2752            round intervals to display smarter lengths
2753            (ScaleBar.DrawScalebar): Draw Scalebar only if the map contains a
2754            layer. If the maps has no projection applied grey the scalebar.
2755    
2756    2003-05-07  Frank Koormann <[email protected]>
2757            
2758            Basic Scalebar features added.
2759    
2760            * Thuban/Model/scalebar.py (ScaleBar): New, scalebar rendering.
2761    
2762            * Thuban/UI/legend.py (LegendPanel): Added scalebar bitmap
2763            (ScaleBarBitmap): New, links the scalebar bitmap with view messages
2764            and the renderer.
2765    
2766            * Thuban/UI/view.py (MapCanvas.set_view_transform): Issue SCALE_CHANGED.
2767    
2768            * Thuban/UI/messages.py: SCALE_CHANGED added.
2769    
2770    2003-05-07  Bernhard Herzog  <[email protected]>
2771    
2772            * Thuban/Model/session.py (Session.__init__): New instance
2773            variable shapestores to hold a list of all open shapestore objects
2774            (Session.ShapeStores): New. Accessor method for the shapestores
2775            list.
2776            (Session._add_shapestore, Session._clean_weak_store_refs): New.
2777            Internal methods to maintain the shapestores list.
2778            (Session.Tables): New. Return all tables open in the session.
2779            (Session.OpenShapefile): Insert the new ShapeStore into the
2780            shapestores list.
2781    
2782            * test/test_session.py (TestSessionSimple.test_initial_state): Add
2783            tests for ShapeStores and Tables
2784            (TestSessionWithContent.test_shape_stores)
2785            (TestSessionWithContent.test_tables): New. Test cases for
2786            ShapeStores and Tables
2787    
2788    2003-05-07  Bernhard Herzog  <[email protected]>
2789    
2790            * Thuban/Model/transientdb.py (TransientTableBase.ReadRowAsDict):
2791            Add comments about the optimizations used.
2792            (AutoTransientTable.ReadValue, TransientTableBase.ReadValue): New.
2793            Implement the ReadValue table interface method.
2794    
2795            * test/test_transientdb.py
2796            (TestTransientTable.run_iceland_political_tests)
2797            (TestTransientTable.test_transient_joined_table): Add tests for
2798            ReadValue
2799    
2800    2003-05-07  Frank Koormann <[email protected]>
2801    
2802            * Resources/Bitmaps/fulllayerextent.xpm,
2803            Resources/Bitmaps/fullselextent.xpm: Replaced the place holders with
2804            new icons.
2805    
2806    2003-05-06  Bernhard Herzog  <[email protected]>
2807    
2808            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
2809            New. Simply delegate to the transient table's version.
2810    
2811            * test/test_transientdb.py
2812            (TestTransientTable.test_auto_transient_table_query): New. Test
2813            case for AutoTransientTable's SimpleQuery
2814    
2815    2003-05-06  Bernhard Herzog  <[email protected]>
2816    
2817            * Thuban/Model/transientdb.py (TransientTableBase.SimpleQuery):
2818            Implement a simple query method for the query dialog
2819            (TransientTableBase.create): Add an INTEGER PRIMARY KEY that holds
2820            the row index or shapeid.
2821            (TransientTable.create): Insert the right value of the row index
2822            (TransientJoinedTable.create): Copy the row index of the left
2823            table to the joined result table
2824    
2825            * test/test_transientdb.py
2826            (TestTransientTable.test_transient_table_read_twice): Fix
2827            doc-string
2828            (TestTransientTable.test_transient_table_query): New. Test for the
2829            SimpleQuery method
2830    
2831    2003-05-06  Bernhard Herzog  <[email protected]>
2832    
2833            Convert all table users to use the new table interface. This only
2834            covers Thuban itself, not GREAT-ER or other applications built on
2835            Thuban yet, so the compatibility interface stays in place for the
2836            time being but it now issues DeprecationWarnings.
2837    
2838            Finally, the new Table interface has a new method, HasColumn.
2839    
2840            * Thuban/Model/table.py (OldTableInterfaceMixin): All methods
2841            issue deprecation warnings when they're. The warnings refer to the
2842            caller of the method.
2843            (OldTableInterfaceMixin.__deprecation_warning): New. Helper method
2844            for the deprecation warnings
2845    
2846            * test/test_table.py: Ignore the deprecation warnings for the old
2847            table in the tests in this module. The purpose of the tests is to
2848            test the old interface, after all.
2849    
2850            * test/test_transientdb.py
2851            (TestTransientTable.run_iceland_political_tests): Use the
2852            constants for the types. Add a test for HasColumn
2853            (TestTransientTable.test_transient_joined_table): Adapt to new
2854            table interface. Add a test for HasColumn
2855            (TestTransientTable.test_transient_table_read_twice): Adapt to new
2856            table interface
2857    
2858            * Thuban/UI/tableview.py (DataTable.SetTable, DataTable.GetValue):
2859            Adapt to new table interface
2860    
2861            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Adapt to
2862            new table interface
2863    
2864            * Thuban/UI/controls.py (RecordListCtrl.fill_list)
2865            (RecordTable.SetTable): Adapt to new table interface
2866    
2867            * Thuban/UI/classifier.py (Classifier.__init__)
2868            (Classifier.__init__): Adapt to new table interface
2869    
2870            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
2871            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve): Adapt
2872            to new table interface
2873    
2874            * Thuban/Model/transientdb.py (TransientTableBase.HasColumn)
2875            (AutoTransientTable.HasColumn): Implement the new table interface
2876            method
2877            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ValueRange)
2878            (AutoTransientTable.UniqueValues): Adapt to new table interface
2879    
2880            * Thuban/Model/layer.py (Layer.SetShapeStore, Layer.GetFieldType):
2881            Adapt to new table interface
2882    
2883            * test/test_layer.py (TestLayer.open_shapefile): Helper method to
2884            simplify opening shapefiles a bit easier.
2885            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
2886            (TestLayer.test_point_layer): Use the new helper method
2887            (TestLayer.test_get_field_type): New. Test for the GetFieldType
2888            method
2889    
2890            * test/test_dbf_table.py (TestDBFTable.test_has_column): Test for
2891            the new table method
2892    
2893            * test/test_memory_table.py (TestMemoryTable.test_has_column):
2894            Test for the new table method HasColumn
2895    
2896    2003-05-06  Jonathan Coles   <[email protected]>
2897    
2898            Addresses the "Selection Extent" wish of RTbug #1787.
2899    
2900            * Resources/Bitmaps/fulllayerextent.xpm,
2901            Resources/Bitmaps/fullselextent.xpm: Bitmaps for layer and selection
2902            extent. These are just place holders for the real bitmaps.
2903    
2904            * Thuban/Model/layer.py (Shape): Since a Shape is immutable only
2905            calculate the bounding box once (the first time compute_bbox() is
2906            called).
2907            (Layer.ShapesBoundingBox): New. Given a list of shape ids, return
2908            the bounding box for the shapes in lat/long coordinates.
2909    
2910            * Thuban/UI/mainwindow.py: Added new "Full selection extent" menu
2911            option.
2912            (MainWindow.has_selected_shapes): New. Returns true if there are
2913            any selected shapes.
2914            (MainWindow.FullSelectionExtent): New. Calls
2915            MapCanvas.FitSelectedToWindow() when the user selects the menu option.
2916            (_has_selected_shapes): New. Returns true if there are any
2917            selected shapes.
2918    
2919            * Thuban/UI/selection.py (Selection.HasSelectedShapes): New. Returns
2920            true if there are any selected shapes.
2921    
2922            * Thuban/UI/view.py (MapCanvas): Added delegated method
2923            HasSelectedShapes.
2924            (MapCanvas.FitSelectedToWindow): New. Centers and scales any selected
2925            shapes on the canvas using the map projection (if any).
2926    
2927            * test/test_layer.py (TestLayer.test_arc_layer): Add some tests
2928            for Layer.ShapesBoundingBox().
2929    
2930    2003-05-06  Bernhard Herzog  <[email protected]>
2931    
2932            * Resources/Projections/defaults.proj: Fix spelling of Mercator
2933    
2934    2003-05-05  Jonathan Coles   <[email protected]>
2935    
2936            Addresses the "Full Layer Extent" wish of RTbug #1787.
2937    
2938            * Resources/Projections/defaults.proj: Added UK National Grid.
2939    
2940            * Thuban/UI/mainwindow.py: Added new "Full layer extent" menu option.
2941            (MainWindow.FullLayerExtent): New. Calls MapCanvas.FitLayerToWindow()
2942            when the user selects the menu option.
2943    
2944            * Thuban/UI/view.py (MapCanvas.FitLayerToWindow): New. Centers and
2945            scales the given layer on the canvas using the map projection.
2946    
2947    2003-05-05  Bernhard Herzog  <[email protected]>
2948    
2949            Convert the table implementations to a new table interface. All
2950            tables use a common mixin class to provide backwards compatibility
2951            until all table users have been updated.
2952    
2953            * Thuban/Model/table.py (OldTableInterfaceMixin): Mixin class to
2954            provide backwards compatibility for table classes implementing the
2955            new interface
2956            (DBFTable, MemoryTable): Implement the new table interface. Use
2957            OldTableInterfaceMixin as base for compatibility
2958            (DBFColumn, MemoryColumn): New. Column description for DBFTable
2959            and MemoryTable resp.
2960    
2961            * test/test_dbf_table.py: New. Test cases for the DBFTable with
2962            the new table interface.
2963    
2964            * test/test_memory_table.py: New. Test cases for the MemoryTable
2965            with the new table interface.
2966    
2967            * test/test_table.py: Document the all tests in this file as only
2968            for backwards compatibility. The equivalent tests for the new
2969            interface are in test_memory_table.py and test_dbf_table.py
2970            (MemoryTableTest.test_read): field_info should be returning tuples
2971            with four items
2972            (MemoryTableTest.test_write): Make doc-string a more precise.
2973    
2974            * Thuban/Model/transientdb.py (TransientTableBase): Convert to new
2975            table interface. Derive from from OldTableInterfaceMixin for
2976            compatibility.
2977            (TransientTableBase.create): New intance variable column_map to
2978            map from names and indices to column objects
2979            (TransientTable.create): Use the new table interface of the input
2980            table
2981            (AutoTransientTable): Convert to new table interface. Derive from
2982            from OldTableInterfaceMixin for compatibility.
2983            (AutoTransientTable.write_record): Removed. It's not implemented
2984            yet and we still have to decide how to handle writing with the new
2985            table and data framework.
2986    
2987            * test/test_transientdb.py
2988            (TestTransientTable.run_iceland_political_tests)
2989            (TestTransientTable.test_transient_joined_table): Use the new
2990            table interface
2991    
2992    2003-05-05  Jonathan Coles   <[email protected]>
2993    
2994            This is namely a collection of UI updates to improve user interactivity.
2995            Tabbing between controls now exists and you can use ESC to close dialog
2996            boxes; ENTER will active the default button.
2997    
2998            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Rearrange the
2999            order that the controls are created so that tabbing works correctly.
3000            (ClassGenDialog.OnOK): Renamed from _OnGenerate() so that the
3001            wxDialog can handle the default button correctly.
3002            (ClassGenDialog.OnCancel): Renamed from _OnCloseBtn() for the
3003            same reasons as for OnOK.
3004            (GenUniformPanel._OnRetrieve): Call wxBeginBusyCursor/wxEndBusyCursor
3005            when we ask the table for the maximum/minimum values of a field
3006            which could take a very long time.
3007    
3008            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange the
3009            order that the controls are created so that tabbing works correctly.
3010            (SelectPropertiesDialog.__init__): Rearrange the order that the
3011            controls are created so that tabbing works correctly.
3012    
3013            * Thuban/UI/dialogs.py: Copied NonModalDialog box and changed it
3014            to derive from a wxDialog but behave like the original implementation
3015            which was derived from a wxFrame. wxDialog provides useful key
3016            handling functionality like ESC calling OnCancel and ENTER calling
3017            OnOK which is lost with wxFrame.
3018    
3019            * Thuban/UI/mainwindow.py: Add "..." to menu items that will open
3020            new dialogs.
3021    
3022            * Thuban/UI/projdialog.py (ProjFrame.__init__): Rearrange the
3023            order that the controls are created so that tabbing works correctly.
3024            (ProjFrame.OnApply): Renamed from _OnTry() to use wxDialog behaviour.
3025            (ProjFrame.OnOK): Renamed from _OnOK() to use wxDialog behaviour.
3026            (ProjFrame.OnCancel): Renamed from _OnClose() to use wxDialog behaviour.
3027            (ProjPanel.__init__): Add "Airy" to the list of ellipsoids so we
3028            can provide the "UK National Grid" as a default projection.
3029            (UTMPanel.__init__): Rearrange the order that the controls are
3030            created so that tabbing works correctly.
3031    
3032    2003-05-05  Bernhard Herzog  <[email protected]>
3033    
3034            * extensions/thuban/wxproj.cpp: Fix some of the comments.
3035            (project_point): If a map projection but no layer projection is
3036            given, convert degrees to radians before applying the map
3037            projection.
3038    
3039            * Thuban/UI/tableview.py (TableGrid.disallow_messages)
3040            (TableGrid.allow_messages): New methods to make it possible to
3041            inhibit message sending.
3042            (TableGrid.issue): Only send the message if not inhibited.
3043            (LayerTableGrid.select_shape): Use the new methods to make sure
3044            that no ROW_SELECTED message is sent while we're updating the
3045            selected rows to match the selected shapes.
3046    
3047    2003-05-02  Jan-Oliver Wagner <[email protected]>
3048    
3049            Implementation of MemoryTable.
3050    
3051            * Thuban/Model/table.py (MemoryTable): New. Quite simple table
3052            implementation that operates on a list of tuples. All of the data
3053            are kept in the memory.
3054    
3055            * test/test_table.py (MemoryTableTest): New.
3056    
3057            * test/test_transientdb.py (SimpleTable): Removed.
3058            (TestTransientTable.test_transient_joined_table,
3059            (TestTransientTable.test_transient_table_read_twice): Replaced
3060            SimpleTable by MemoryTable.
3061    
3062    2003-04-30  Jonathan Coles   <[email protected]>
3063    
3064            * Data/iceland_sample.thuban: Now contains correct projections
3065            for each of the layers.
3066    
3067            * Resources/Projections/defaults.proj: Geographic projection
3068            contains unit conversion parameter.
3069    
3070    2003-04-30  Jonathan Coles   <[email protected]>
3071    
3072            The most important part of this putback is the projection changes.
3073            It should now be possible to specify the projection that a layer
3074            is in and then specify a different projection for the map. The
3075            projection dialog has an extra parameter for a geographic projection
3076            which lets the user select if the input is in degrees or radians.
3077    
3078            * Thuban/Model/layer.py (Layer.ShapesInRegion): Fix docstring
3079            to say that the parameter is a tuple of unprojected
3080            points (which is what the callers to this method were assuming).
3081            Also, since the points are unprojected we need to projected them.
3082    
3083            * Thuban/UI/legend.py (LegendTree.MoveCurrentItemUp,
3084            LegendTree.MoveCurrentItemDown): If the layer or any of the layer's
3085            groups are selected, move the layer up/down. Fixes RTbug #1833.
3086    
3087            * Thuban/UI/mainwindow.py: Move menu item map_rename up.
3088    
3089            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Add missing
3090            parameter in call to SetClientData.
3091            (GeoPanel): Add support for selecting the units that the
3092            source data is in (Radians or Degrees).
3093    
3094            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Optimize
3095            the rendering loop by reducing the number of if's, removing the
3096            unnecessary try/except block, and checking if the old group
3097            is the same as the new one (which happens a lot if there is
3098            no classification, or lots of shapes are in the same group).
3099    
3100            * Thuban/UI/view.py (MapCanvas.OnPaint): Add a try/except block
3101            around the redraw routine to try to catch problems that the user
3102            may create by selecting invalid projections for the data set and
3103            map. Clears the display if there are any problems and prints the
3104            error.
3105            (MapCanvas.do_redraw): Use DC.Clear() instead of drawing a filled
3106            rectangle.
3107    
3108            * extensions/thuban/wxproj.cpp (project_point): First invert the
3109            supplied point (which should be in projected coordinates) using
3110            the layer's projection and then project the point using the
3111            map's projection.
3112            (project_points): Use project_point() to project each point.
3113    
3114    2003-04-30  Jan-Oliver Wagner <[email protected]>
3115    
3116            * Thuban/Model/layer.py (Layer.SetShapeStore): Fixed a bug:
3117            don't set the Classification to None if the classfication field
3118            is None (ie only a DEFAULT).
3119    
3120    2003-04-30  Bernhard Herzog  <[email protected]>
3121    
3122            * Thuban/UI/view.py: Fix some typos.
3123    
3124            * Thuban/UI/mainwindow.py (MainWindow.identify_view_on_demand): Do
3125            not pop up the dialog if the selection becomes empty (this could
3126            happen if e.g. a new selection is opened while the identify tool
3127            is active and dialog had been closed)
3128    
3129    2003-04-30  Bernhard Herzog  <[email protected]>
3130    
3131            * Thuban/Model/transientdb.py (TransientTableBase.__init__): New
3132            instance variable read_record_last_result
3133            (TransientTableBase.read_record): Make sure reading the same
3134            record twice works. The implementation uses the new instance
3135            variable read_record_last_result
3136    
3137            * test/test_transientdb.py
3138            (TestTransientTable.test_transient_table_read_twice): New test
3139            case for the above bug-fix.
3140    
3141    2003-04-29  Jonathan Coles   <[email protected]>
3142    
3143            * Thuban/common.py: Removed. No longer needed Str2Num. RTbug #1832.
3144    
3145            * Thuban/UI/classgen.py: Remove all uses of Str2Num.
3146    
3147            * Thuban/UI/classifier.py: Remove all uses of Str2Num.
3148            (ClassTable.SetValueAsCustom): Rename keyword argument in
3149            ClassGroup* constructors to match argument name.
3150    
3151    2003-04-29  Bernhard Herzog  <[email protected]>
3152    
3153            * Thuban/Model/session.py (Session.Destroy): Explicitly close the
3154            transient DB if it exists to make sure it doesn't leave a journal
3155            file in the temp directory.
3156    
3157            * Thuban/Model/transientdb.py (TransientDatabase.close): Set
3158            self.conn to None after closing the connection to make sure it's
3159            not closed twice
3160    
3161    2003-04-29  Jonathan Coles   <[email protected]>
3162    
3163            Add a visible parameter in the layer XML tag. The default value is
3164            "true". If anything other than "false" is specified we also assume
3165            "true". Addresses RTbug #1025.
3166    
3167            * Doc/thuban.dtd: Add visible parameter to a layer.
3168    
3169            * Thuban/Model/layer.py (BaseLayer.__init__): Change default value
3170            of visible from 1 to True.
3171            (Layer.__init__): Change default value of visible from 1 to True.
3172    
3173            * Thuban/Model/load.py (SessionLoader.start_layer): Read visible
3174            parameter.
3175    
3176            * Thuban/Model/save.py (SessionSaver.write_layer): Save visible
3177            parameter.
3178    
3179            * test/test_load.py: Add new test data contents_test_visible.
3180            (LoadSessionTest.setUp): save test data.
3181            (LoadSessionTest.testLayerVisibility): Test if the visible flag
3182            is loaded correctly.
3183    
3184            * test/test_save.py (SaveSessionTest.testSingleLayer): Add test
3185            for saving an invisible layer.
3186    
3187    2003-04-29  Jonathan Coles   <[email protected]>
3188    
3189            * Thuban/UI/mainwindow.py (MainWindow.SetMap): Look up the
3190            legend dialog box and tell it to change its map to the one
3191            supplied to SetMap(). Fixes RTbug #1770.
3192    
3193    2003-04-29  Bernhard Herzog  <[email protected]>
3194    
3195            Next step of table implementation. Introduce a transient database
3196            using SQLite that some of the data is copied to on demand. This
3197            allows us to do joins and other operations that require an index
3198            for good performance with reasonable efficiency. Thuban now needs
3199            SQLite 2.8.0 and pysqlite 0.4.1. Older versions may work but I
3200            haven't tested that.
3201            
3202            * Thuban/Model/transientdb.py: New. Transient database
3203            implementation.
3204    
3205            * test/test_transientdb.py: New. Tests for the transient DB
3206            classes.
3207    
3208            * Thuban/Model/session.py (AutoRemoveFile, AutoRemoveDir): New
3209            classes to help automatically remove temporary files and
3210            directories.
3211            (Session.__init__): New instance variables temp_dir for the
3212            temporary directory and transient_db for the SQLite database
3213            (Session.temp_directory): New. Create a temporary directory if not
3214            yet done and return its name. Use AutoRemoveDir to have it
3215            automatically deleted
3216            (Session.TransientDB): Instantiate the transient database if not
3217            done yet and return it.
3218    
3219            * Thuban/Model/data.py (ShapefileStore.__init__): Use an
3220            AutoTransientTable so that data is copied to the transient DB on
3221            demand.
3222            (SimpleStore): New class that simply combines a table and a
3223            shapefile
3224    
3225            * Thuban/Model/table.py (Table, DBFTable): Rename Table into
3226            DBFTable and update its doc-string to reflect the fact that this
3227            is only the table interface to a DBF file. Table is now an alias
3228            for DBFTable for temporary backwards compatibility.
3229    
3230            * Thuban/UI/application.py (ThubanApplication.OnExit): Make sure
3231            the last reference to the session goes away so that the temporary
3232            files are removed properly.
3233    
3234            * test/test_load.py (LoadSessionTest.tearDown): Remove the
3235            reference to the session to make sure the temporary files are
3236            removed.
3237    
3238    2003-04-29  Bernhard Herzog  <[email protected]>
3239    
3240            * Thuban/Model/load.py (XMLReader.__init__, XMLReader.read): Turn
3241            the __parser instance variable into a normal local variable in
3242            read. It's only used there and read will never be called more than
3243            once. Plus it introduces a reference cycle that keeps can keep the
3244            session object alive for a long time.
3245    
3246    2003-04-29  Jonathan Coles   <[email protected]>
3247    
3248            * Thuban/Model/proj.py (Projection): Removed Set*() methods to make
3249            Projection an immutable item. Fixes RTbug #1825.
3250            (Projection.__init__): Initialize instance variables here.
3251            (ProjFile.Replace): New. Replace the given projection object with
3252            the new projection object. This solves the problem of needing the
3253            mutator Projection.SetProjection() in the ProjFrame class and
3254            allows a projection to change parameters without changing its
3255            location in the file.
3256    
3257            * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs): Dialog should
3258            be of type wxSAVE and should verify overwriting a file.
3259    
3260            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Use the new
3261            ProjFile.Replace() method instead of the mutator
3262            Projection.SetProjection(). Also requires that we reassign the
3263            client data to the new projection.
3264    
3265            * test/test_proj.py (TestProjection.test): Test GetName() and
3266            GetAllParameters()
3267            (TestProjFile.test): Remove tests for Set*() methods. Add tests
3268            for Replace().
3269    
3270    2003-04-25  Jonathan Coles   <[email protected]>
3271    
3272            * Thuban/Model/save.py (SessionSaver.write_projection): Make sure
3273            to save the name of the projection.
3274    
3275            * test/test_save.py (SaveSessionTest.testLayerProjection): New
3276            test to verify layer projections are saved correctly.
3277    
3278    2003-04-25  Jonathan Coles   <[email protected]>
3279    
3280            * Thuban/Model/proj.py (Projection.SetName): Set the name
3281            to "Unknown" if name is None.
3282            (Projection.SetAllParameters): New. Set the projection's
3283            parameter list to the one supplied.
3284            (Projection.SetProjection): New. Set the projection's
3285            properties to those of the supplied Projection.
3286    
3287            * Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set
3288            the dialog title to include the map's title.
3289            (MainWindow.LayerProjection): Set the dialog title to include
3290            the layer's title.
3291    
3292            * Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate
3293            error dialogs into a single method call.
3294            (ProjFrame.__VerifyButtons): Add more states to check.
3295            (ProjFrame.__GetProjection): Return the current state of an
3296            edited projection or None.
3297            (ProjFrame.__FillAvailList): Remove checks for states that
3298            shouldn't exist.
3299            (ProjFrame._OnNew): Clear all selected items and supply
3300            a projection panel if necessary.
3301    
3302            * test/test_proj.py (TestProjFile.test): Add tests for
3303            ProjFile.SetAllParameters, ProjFile.SetProjection,
3304            ProjFile.SetName.
3305    
3306    2003-04-25  Jonathan Coles   <[email protected]>
3307    
3308            * Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now
3309            takes an optional argument to select the current projection.
3310            This does not guarantee that the item is visible due to
3311            limited wxWindows functionality. Fixes RTBug #1821.
3312    
3313    2003-04-25  Jonathan Coles   <[email protected]>
3314    
3315            * Thuban/Model/load.py (SessionLoader.start_projection): Remember
3316            the projection name and use it when constructing the Projection
3317            object.
3318    
3319            * Thuban/Model/proj.py (Projection.__init__): Change the default
3320            value for 'name' to None and then test if name is equal to None
3321            in the body of the constructor. This way the caller doesn't have to
3322            know what the default value should be. Namely, useful in load.py
3323            where we have to pick a default value if the 'name' parameter
3324            doesn't exist in the XML file.
3325    
3326            * test/test_load.py (LoadSessionTest.testLayerProjection): New.
3327            Tests a file where a layer has a projection.
3328    
3329    2003-04-25  Jonathan Coles   <[email protected]>
3330    
3331            * Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the
3332            tree for projection information.
3333    
3334            * Thuban/Model/load.py (XMLReader.GetFilename): Renamed from
3335            XMLReader.GetFileName.
3336            (SessionLoader): Added support for loading projection tags that
3337            appear inside a layer.
3338    
3339            * Thuban/Model/proj.py (ProjFile): Document the class. Move
3340            back to using a list because the order of the projections in
3341            the file is important to maintain. Fixes RTbug #1817.
3342    
3343            * Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName
3344            to ProjFile.GetFilename.
3345    
3346            * Thuban/Model/save.py (SessionSaver.write_layer): Save projection
3347            information.
3348    
3349            * Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from
3350            ProjFrame._OnSaveAs. Removed old dead code from previous
3351            implementation.
3352            (ProjFrame._OnExport): Add support for exporting more than one
3353            projection to a single file.
3354            (ProjFrame.__FillAvailList): use string formatting (% operator)
3355            to build strings that are (partly) translated. Fixes RTbug #1818.
3356    
3357            * test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile
3358            class.
3359    
3360    2003-04-24  Bernhard Herzog  <[email protected]>
3361    
3362            * po/es.po: Updated Spanish translation by Daniel Calvelo Aros
3363    
3364            * po/fr.po: New. French translation by Daniel Calvelo Aros
3365    
3366            * Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate
3367            empty strings.
3368    
3369    2003-04-24  Jonathan Coles   <[email protected]>
3370    
3371            * Thuban/Model/layer.py (Layer.GetProjection): New. Needed to
3372            implement the interface that the ProjFrame dialog expects.
3373    
3374            * Thuban/Model/proj.py (Projection.SetName): New. Allows the
3375            name of the projection to be changed.
3376            (ProjFile): Use a dictionary instead of a list so that removing
3377            projections is easier and we are sure about uniqueness.
3378            (ProjFile.Remove): Remove the given projection object.
3379    
3380            * Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles):
3381            Return a list with only one projection file instead of searching for
3382            any projection file. This simplifies many things if the user can
3383            only have one system file and one user file.
3384    
3385            * Thuban/UI/classgen.py: Change all references to
3386            genCombo to genChoice.
3387    
3388            * Thuban/UI/mainwindow.py: Add a Projection option under the
3389            layer menu.
3390            (MainWindow.LayerProjection): New. Open up a projection window
3391            for a layer.
3392    
3393            * Thuban/UI/projdialog.py: Large changes to how the dialog is
3394            laid out. Use three panels instead of one. One for the list of
3395            projections, one for the edit controls, and one for the buttons.
3396            Fixed resizing problems so that the dialog resizes correctly
3397            when the projection panel changes. Added import/export, save, and
3398            new buttons/functionality.
3399    
3400    2003-04-24  Bernhard Herzog  <[email protected]>
3401    
3402            First step towards table management. Introduce a simple data
3403            abstraction so that we replace the data a layer uses more easily
3404            in the next step.
3405    
3406            * Thuban/Model/data.py: New file with a simple data abstraction
3407            that bundles shapefile and dbffile into one object.
3408    
3409            * Thuban/Model/session.py (Session.OpenShapefile): New method to
3410            open shapefiles and return a shape store object
3411    
3412            * Thuban/Model/layer.py (Layer.__init__): Pass the data as a store
3413            object instead of a shapefile filename. This introduces a new
3414            instance variable store holding the datastore. For intermediate
3415            backwards compatibility keep the old instance variables.
3416            (open_shapefile): Removed. No longer needed with the shape store.
3417            (Layer.SetShapeStore, Layer.ShapeStore): New methods to set and
3418            get the shape store used by a layer.
3419            (Layer.Destroy): No need to explicitly destroy the shapefile or
3420            table anymore.
3421    
3422            * Thuban/UI/mainwindow.py (MainWindow.AddLayer)
3423            (MainWindow.AddLayer): Use the session's OpenShapefile method to
3424            open shapefiles
3425    
3426            * Thuban/Model/load.py (ProcessSession.start_layer): Use the
3427            session's OpenShapefile method to open shapefiles
3428    
3429            * test/test_classification.py
3430            (TestClassification.test_classification): Use the session's
3431            OpenShapefile method to open shapefiles and build the filename in
3432            a more platform independed way
3433    
3434            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
3435            Implement to have a session to use in the tests
3436            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
3437            (TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the
3438            session's OpenShapefile method to open shapefiles
3439            (TestLayerLegend.setUp): Instantiate a session so that we can use
3440            it to open shapefiles.
3441            (TestLayerLegend.tearDown): Make sure that all references to
3442            layers and session are removed otherwise we may get a resource
3443            leak
3444    
3445            * test/test_map.py (TestMapAddLayer.test_add_layer)
3446            (TestMapWithContents.setUp): Instantiate a session so that we can
3447            use it to open shapefiles.
3448            (TestMapWithContents.tearDown): Make sure that all references to
3449            layers, maps and sessions are removed otherwise we may get a
3450            resource leak
3451            ("__main__"): use support.run_tests() so that more info about
3452            uncollected garbage is printed
3453    
3454            * test/test_save.py (SaveSessionTest.testSingleLayer): Use the
3455            session's OpenShapefile method to open shapefiles
3456            ("__main__"): use support.run_tests() so that more info about
3457            uncollected garbage is printed
3458    
3459            * test/test_selection.py (TestSelection.tearDown): Make sure that
3460            all references to the session and the selection are removed
3461            otherwise we may get a resource leak
3462            (TestSelection.get_layer): Instantiate a session so that we can
3463            use it to open shapefiles.
3464            ("__main__"): use support.run_tests() so that more info about
3465            uncollected garbage is printed
3466    
3467            * test/test_session.py (TestSessionBase.tearDown)
3468            (TestSessionWithContent.tearDown): Make sure that all references
3469            to the session and layers are removed otherwise we may get a
3470            resource leak
3471            (TestSessionWithContent.setUp): Use the session's OpenShapefile
3472            method to open shapefiles
3473    
3474    2003-04-24  Jonathan Coles   <[email protected]>
3475    
3476            * Thuban/Model/load.py (XMLReader.read): Should have been checking
3477            if the file_or_filename object had the 'read' attribute.
3478    
3479    2003-04-23  Jonathan Coles   <[email protected]>
3480    
3481            * Thuban/Model/resource.py: Fixes RTbug #1813.
3482            (ReadProjFile): Add documentation about which exceptions are raised.
3483            Always pass the exceptions up to the caller.
3484            (GetProjFiles): If the directory can't be read return an empty list.
3485            If any of the proj files can't be read skip that file and go
3486            on to the next one.
3487    
3488            * test/test_proj.py: Added test cases to handle nonexistent files,
3489            unreadable files, and files that don't parse correctly.
3490    
3491    2003-04-23  Jonathan Coles   <[email protected]>
3492    
3493            Projection dialog. Allows the user to select from a list
3494            of projection templates and optionally edit them and save new ones.
3495    
3496            * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
3497            (ProjPanel): Base class for projection specific panels.
3498            (TMPanel): Projection panel for Transverse Mercartor.
3499            (UTMPanel): Projection panel for Universal Transverse Mercartor.
3500            (LCCPanel): Projection panel for Lambert Conic Conformal.
3501            (GeoPanel): Projetion panel for Geographic Projection.
3502    
3503    2003-04-23  Jonathan Coles   <[email protected]>
3504    
3505            * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
3506            promote symmetry. There now exists XMLReader and XMLWriter.
3507            (XMLReader.read): New. Call to read the given file descriptor or
3508            filename.
3509            (XMLReader.close): New. Make sure the file is closed.
3510            (XMLReader.GetFileName): New. Return just the file name that is being
3511            read from.
3512            (XMLReader.GetDirectory): New. Return just the directory of the file
3513            that is being read.
3514            (XMLReader.AddDispatchers): New. Take a dictionary which contains
3515            the names of functions to call as the XML tree is parsed.
3516            (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
3517            (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
3518            (SessionLoader): Removed class variables start_dispatcher and
3519            end_dispatcher since this functionality is now part of a class
3520            instance. Fixes RTbug #1808.
3521            (SessionLoader.__init__): Add dispatcher functions.
3522            (load_xmlfile): Code was moved into the XMLReader.read().
3523            (load_session): Use modified SessionLoader.
3524    
3525            * Thuban/Model/map.py (Map.GetProjection): New. Returns the
3526            map's projection.
3527    
3528            * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
3529            GetAllParameters.
3530            (Projection.GetParameter): Returns the value for the given parameter.
3531    
3532            * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
3533            (GetProjFiles): Renamed from GetProjections. Now returns a list
3534            of ProjFile objects.
3535            (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
3536            a list of ProjFile objects whose files are not user defined.
3537            (GetUserProjFiles): Renamed from GetUserProjections. Returns a
3538            list of ProjFile objects whose files are user defined.
3539            (ProjFileReader): Extend new XMLReader.
3540    
3541            * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
3542            promote symmetry.
3543    
3544            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
3545            control instead of a wxComboBox. wxChoice controls do not generate
3546            events as the uses highlights possible choices which fixes problems
3547            with resizing the dialog when the use selects an option.
3548    
3549            * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
3550            control instead of a wxComboBox.
3551    
3552            * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
3553            dialog.
3554    
3555            * test/test_proj.py (TestProjection.test): New tests for GetParameter
3556            method.
3557    
3558    2003-04-22  Bernhard Herzog  <[email protected]>
3559    
3560            * Thuban/UI/mainwindow.py: Remove some unused imports and global
3561            constants
3562    
3563            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
3564            (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
3565    
3566    2003-04-17  Bernhard Herzog  <[email protected]>
3567    
3568            * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
3569            (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
3570            anymore.
3571            (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
3572            (Layer.ShapeType, Layer.Shape): No need to call
3573            self.open_shapefile since it's always called in __init__
3574    
3575            * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
3576            In wxPython 2.4 there's no need to extend MainLoop anymore since
3577            wxPython itself makes sure OnExit is called.
3578    
3579    2003-04-16  Jonathan Coles   <[email protected]>
3580    
3581            Initial putback of projection management code. Includes new
3582            classes to read and write projection files. The current load
3583            and save classes were abstracted a bit so they could be reused.
3584            The Projection class was extended to provide new methods and
3585            have a name.
3586    
3587            * Thuban/Model/load.py (XMLProcessor): New. Contains all the
3588            general XML reading methods that were part of ProcessSession.
3589    
3590            * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
3591            name.
3592            (ProjFile): New. Represents a file that contains projection
3593            information.
3594    
3595            * Thuban/Model/resource.py: New. Contains general utilities
3596            for read and writing projection files.
3597    
3598            * Thuban/Model/save.py (XMLSaver): New. Contains all the
3599            general XML writing methods that were part of SessionSaver.
3600            (SessionSaver): Renamed from Saver.
3601    
3602            * test/test_proj.py: New test cases for the projection
3603            file read and write functions.
3604    
3605    2003-04-16  Jonathan Coles   <[email protected]>
3606    
3607            * Thuban/Model/classification.py: Use repr() around values
3608            in the ClassGroup*.__repr__() methods so it is clearer when
3609            a value is a string and when it is a number.
3610    
3611            * test/test_load.py: Rework the classification test to test
3612            that we can load old files.
3613            (testLabels): Test a file where the groups have labels.
3614    
3615    2003-04-16  Bernhard Herzog  <[email protected]>
3616    
3617            Safer implementation of the performance enhancements of the
3618            low-level renderer:
3619            
3620            * extensions/thuban/wxproj.cpp (extract_projection)
3621            (extract_pointer): Rename extract_projection to extract_pointer
3622            and redefine its purpose to return the pointer stored in a CObject
3623            returned by the object's cobject method. Update all callers.
3624            (s_draw_info, free_draw_info, draw_polygon_init): Implement the
3625            handling of these low-level parameters so that each s_draw_info
3626            instance is handled as a CObject at python level that also
3627            contains real references to the actual python objects which
3628            contain the values in the struct. Add free_draw_info as the
3629            destructor.
3630            (draw_polygon_shape): Add the py_draw_info parameter which must a
3631            cobject containing an s_draw_info pointer.
3632    
3633            * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
3634            method to instantiat the low-level render parameter
3635            (MapRenderer.draw_shape_layer): Use the new method. Remove some
3636            commented out code.
3637            (MapRenderer.draw_polygon_shape): Make the first parameter not the
3638            layer but the low-level render parameter
3639            (ScreenRenderer.draw_shape_layer): Use the low-level render
3640            parameter.
3641    
3642    2003-04-15  Jonathan Coles   <[email protected]>
3643    
3644            * Thuban/Model/classification.py: Implemented __repr__ for
3645            the ClassGroup* classes to make debugging a bit easier.
3646            (ClassGroup.SetLabel): Check that the string is an instance
3647            of StringTypes not StringType. Accounts for Unicode strings.
3648    
3649            * Thuban/Model/color.py: Implemented __repr__ to make
3650            debugging a bit easier.
3651    
3652            * Thuban/Model/save.py (Saver.write_classification): Need to
3653            save the group label.
3654    
3655            * test/test_load.py (testClassification): New. Loads the
3656            iceland_sample_test.thuban file and checks if it was loaded
3657            correctly.
3658    
3659    2003-04-15  Jonathan Coles   <[email protected]>
3660    
3661            * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
3662            to improve rendering performance by initializing the variables
3663            that are not change each time draw_polygon_shape() is called.
3664            The values are stored in a global struct draw_info.
3665            (draw_polygon_shape): Removed initialization code that is
3666            now in draw_polygon_init().
3667    
3668            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
3669            drawing initialization call to draw_polygon_init()
3670            (MapRenderer.draw_polygon_shape): Use new signature of
3671            draw_polygon_shape.
3672    
3673            * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
3674            weirdness by setting the range to (1, maxint).
3675    
3676            * Thuban/Model/classification.py (ClassGroupProperties): Make
3677            instance variables private and optimize comparison operator
3678            by first checking if the color references are the same.
3679            (ClassGroupSingleton): Make instance variables private.
3680            (ClassGroupRange): Make instance variables private.
3681    
3682            * HOWTO-Release: Filled in missing steps for releasing packages.
3683    
3684    2003-04-15  Bernhard Herzog  <[email protected]>
3685    
3686            First stab at internationalized messages:
3687    
3688            * Thuban/__init__.py (_): Implement the translation function for
3689            real using the python gettext module.
3690    
3691            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
3692            translate empty strings.
3693    
3694            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
3695            Add a missing space to a warning message
3696    
3697            * po/README: New. Notes about the management of the translation
3698            files.
3699    
3700            * po/Makefile: New. Makefile to help manage the translation files.
3701    
3702            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
3703    
3704            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
3705            translations and support files in po/
3706    
3707            * setup.py (data_files): Add the *.mo files to the data_files too
3708    
3709            * README: Add note about the translations when building from CVS
3710    
3711    2003-04-14  Jonathan Coles   <[email protected]>
3712    
3713            * Thuban/UI/dock.py: Fixes some window resizing problems most
3714            noticable under windows. Always assume the button bitmaps will
3715            be there. Code clean up.
3716            (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
3717            images for the dock/undock button to the same images.
3718            Work around for RTbug #1801.
3719    
3720            * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
3721            be allowed to grow within the sizer. Fixes a bug under Windows
3722            where the toolbar wasn't being drawn.
3723    
3724    2003-04-14  Frank Koormann   <[email protected]>
3725    
3726            * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
3727            Updated design to try to make the button functionality more
3728            transparent.
3729    
3730    2003-04-14  Jonathan Coles   <[email protected]>
3731    
3732            * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
3733            finalize the intialization of the panel.
3734    
3735            * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
3736            creation of the panel. Should be the last thing called in the
3737            initializer of a subclass.
3738    
3739            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
3740            set the current selections in the combo boxes. This is needed
3741            under Windows.
3742    
3743            * Thuban/UI/classifier.py (Classifier.__init__): Add a top
3744            level panel to the dialog so that the background colors are
3745            consistent under Windows.
3746    
3747    2003-04-11  Jonathan Coles   <[email protected]>
3748    
3749            * Thuban/UI/classgen.py: Change color ramps to start at white
3750            not black.
3751    
3752            * Thuban/UI/legend.py: Enable/disable the legend buttons when
3753            the legend changes. Fixes RTbug #1793.
3754    
3755            * test/test_classification.py: Added test for copying of
3756            classifications.
3757    
3758    2003-04-11  Jonathan Coles   <[email protected]>
3759    
3760            * Thuban/UI/resource.py: New. Centralize the loading of resources
3761            such as bitmaps.
3762    
3763            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
3764            added images to the move buttons, added 'reverse' button.
3765            (CustomRampPanel.__init__): Added images to the move buttons.
3766            (GreyRamp): New. Generates a ramp from white to black.
3767            (HotToColdRamp): New. Generates a ramp from cold to hot colors.
3768    
3769            * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
3770            ID_PROPERTY_*.
3771            (Classifier.__init__): Minor changes to the layout.
3772            (Classifier._OnTitleChanged): Listen for when the user edits the
3773            title and update the dialog's title and the layer's title.
3774    
3775            * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
3776    
3777            * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
3778            (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
3779            if the layer's title changes.
3780    
3781            * Thuban/UI/mainwindow.py: Added new menu item and associated code
3782            to open a dialog to rename the map.
3783            (MainWindow): Use new resource class to import bitmaps.
3784    
3785    2003-04-11  Jonathan Coles   <[email protected]>
3786    
3787            * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
3788            Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
3789            Resources/Bitmaps/group_use_none.xpm,
3790            Resources/Bitmaps/group_use_not.xpm,
3791            Resources/Bitmaps/hide_layer.xpm,
3792            Resources/Bitmaps/layer_properties.xpm,
3793            Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
3794            Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
3795            New.
3796    
3797    2003-04-10  Jonathan Coles   <[email protected]>
3798    
3799            * Thuban/Model/classification.py: (ClassGroupRange.__init__):
3800            Should pass group to ClassGroup constructor.
3801    
3802    2003-04-10  Jonathan Coles   <[email protected]>
3803    
3804            * Thuban/Model/classification.py: (ClassGroup): Move all the common
3805            methods of the derived classes ([Set|Get]Properties(), __eq__, __ne__)
3806            here. Implement SetVisible(), IsVisible().
3807            (ClassGroup.__init__): Add group parameter which acts as a copy
3808            constructor.
3809    
3810            * Thuban/UI/classifier.py (ClassTable): Add a new column for the
3811            "Visible" check boxes.
3812            (Classifier): Rename the buttons and refactor the code to match
3813            the new labels.
3814    
3815            * Thuban/UI/legend.py: Classify button is now called "Properties".
3816            Refactored the code to change variable names.
3817            (LegendTree.__FillTreeLayer): Only list a group if it is visible.
3818    
3819            * Thuban/UI/mainwindow.py: MainWindow.OpenClassifier renamed to
3820            MainWindow.OpenLayerProperties. MainWindow.LayerEditProperties
3821            renamed to MainWindow.LayerEditProperties.
3822            (MainWindow.ToggleLegend): Don't include map name in legend title.
3823            (MainWindow.SetMap): Added the map name to the window title.
3824            (MainWindow.LayerFillColor, MainWindow.LayerTransparentFill,
3825            MainWindow.LayerOutlineColor, MainWindow.LayerNoOutline): Removed.
3826            Functionality is found in the layer properties dialog.
3827    
3828            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
3829            draw visible groups.
3830    
3831    2003-04-09  Jonathan Coles   <[email protected]>
3832    
3833            * Thuban/UI/classgen.py: Modifications to allow simple
3834            addition and selection of new color schemes.
3835            (MonochromaticRamp): New. Generates a ramp between two colors.
3836            (RedRamp): New. Generates a ramp of all red.
3837            (GreenRamp): New. Generates a ramp of all green.
3838            (BlueRamp): New. Generates a ramp of all blue.
3839    
3840    2003-04-09  Jonathan Coles   <[email protected]>
3841    
3842            * Thuban/Model/classification.py (Classification.__deepcopy__):
3843            Need to copy over field and fieldType attributes.
3844    
3845            * Thuban/Model/table.py (Table.field_range): New. Retrive the
3846            maximum and minimum values over the entire table for a given
3847            field.
3848            (Table.GetUniqueValues): New. Retrieve all the unique values
3849            in the table for a given field.
3850    
3851            * Thuban/UI/classgen.py: Renamed GenRangePanel to GenUniformPanel.
3852            (GenUniquePanel): New. Controls to allow the user to select
3853            which unique field values they would like in the classification.
3854            (CustomRampPanel): Code that was in ClassGenDialog that allows
3855            the user to select the properties for a custom ramp.
3856            (ClassGenerator.GenUniformDistribution): Was called GenerateRanges.
3857    
3858            * Thuban/UI/classifier.py: Removed a lot of debugging code.
3859            (Classifier._SetClassification): Callback method so that the
3860            class generator can set the classification in the grid.
3861            (ClassGroupPropertiesCtrl): New. Encapsulates the drawing and
3862            editing of a group properties class into a wxWindows control.
3863    
3864            * Thuban/UI/dock.py: It was decided that if the user closes
3865            a dockable window the window should simply hide itself. That
3866            way if the user wants to show the dock again it appears in the
3867            same place as it was when it was closed.
3868            (DockableWindow.Destroy): Call renamed method OnDockDestroy().
3869            (DockableWindow._OnButtonClose): Hide the window instead of
3870            destroying it.
3871            (DockableWindow._OnClose): Hide the window instead of
3872            destroying it.
3873    
3874            * Thuban/UI/legend.py (LegendTree): Use a private method to
3875            consistently set the font and style of the text. Fixes RTbug #1786.
3876    
3877            * Thuban/UI/mainwindow.py: Import just the Classifier class.
3878    
3879    2003-04-07  Bernhard Herzog  <[email protected]>
3880    
3881            * Thuban/UI/mainwindow.py (main_menu): Move the toggle_legend item
3882            to the map module
3883    
3884    2003-04-07  Bernhard Herzog  <[email protected]>
3885    
3886            * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree): Removed in
3887            favor of ToggleSessionTree
3888            (MainWindow.ToggleSessionTree): New method to toggle visibility of
3889            the session tree.
3890            (MainWindow.SessionTreeShown): New method to return whether the
3891            session tree is currently shown.
3892            (MainWindow.ToggleLegend): New method to toggle visibility of the
3893            legend
3894            (MainWindow.ShowLegend): Implement in terms of ToggleLegend and
3895            LegendShown
3896            (MainWindow.LegendShown): New method to return whether the legend
3897            is currently shown.
3898            (_method_command): Add checked parameter so we can define check
3899            menu items
3900            (_has_tree_window_shown, _has_legend_shown): Use the appropriate
3901            mainwindow methods.
3902            (show_session_tree, show_legend commands): Removed.
3903            (toggle_session_tree, toggle_legend commands): New commands to
3904            toggle the visibility of the dialogs
3905    
3906    2003-04-07  Jonathan Coles   <[email protected]>
3907    
3908            * Thuban/UI/classgen.py: Fix Windows problem.
3909    
3910            * Thuban/UI/dock.py: Fix Windows problem.
3911    
3912            * Thuban/UI/mainwindow.py: Use False instead of false.
3913            (MainWindow.ShowLegend): Remove unnecessary switch parameter.
3914    
3915    2003-04-07  Jonathan Coles   <[email protected]>
3916    
3917            Since we now say that the order of the groups in a classification
3918            matters, it makes sense to be able to manipulate that order. Most
3919            of the changes to Thuban/Model/classification.py are to that end.
3920    
3921            * Thuban/Model/classification.py (Classification.AppendGroup,
3922            Classification.InsertGroup, Classification.ReplaceGroup,
3923            Classification.RemoveGroup, Classification.GetGroup): Do as the
3924            names imply.
3925            (Classification.FindGroup): This was called GetGroup, but GetGroup
3926            takes an index, while FindGroup takes a value.
3927            (Classification.__deepcopy__): Copy all the groups, BUT NOT THE LAYER
3928            REFERENCE. Currently there is a cyclic reference between the layer
3929            and its classification. If the classification doesn't need to know
3930            its owning layer we can change this, since it may make sense to be
3931            able to use the same classification with different layers.
3932    
3933            * Thuban/Model/load.py: Use Classification.AppendGroup(), not AddGroup()
3934    
3935            * Thuban/UI/classgen.py: Use Classification.AppendGroup(),
3936            not AddGroup()
3937    
3938            * Thuban/UI/classifier.py: Now that we can depend on the order in
3939            a Classification and have methods to manipulate that order we don't
3940            need to use our own data structures in the grid. We can simply make
3941            the grid/table access the information they need from a copy of
3942            the classification object.
3943            (Classifier._OnCloseBtn): Event handler for when the user clicks
3944            'Close'. This is needed so if the user applies changes and then
3945            continues to change the table the user has the option of discarding
3946            the most recent changes and keeping what they applied.
3947    
3948            * Thuban/UI/mainwindow.py: Put "Show Legend" and "Show Session Tree"
3949            into the same group.
3950    
3951            * extensions/thuban/wxproj.cpp (check_version): If Thuban is compiled
3952            with a really old version of proj, PJ_VERSION won't even be defined.
3953            If it isn't defined then just compile so that the function always
3954            returns Py_False.
3955    
3956            * test/test_classification.py: Fix tests to use the renamed methods.
3957            Still need to write tests for the new methods.
3958    
3959    2003-04-04  Jonathan Coles   <[email protected]>
3960    
3961            * Thuban/UI/classifier.py (Classifier.__SelectField): Move the
3962            call to SetSelection out of the method and before the call
3963            to __SelectField in __init__. This prevents a recursion of events
3964            when _OnFieldSelect is triggered by the user.
3965    
3966    2003-04-04  Jonathan Coles   <[email protected]>
3967    
3968            * Thuban/Model/classification.py: Rename Color.None to
3969            Color.Transparent.
3970            (ClassGroupProperties.SetLineColori, ClassGroupProperties.SetFill):
3971            Don't bother copying the color, since Colors are immutable.
3972    
3973            * Thuban/Model/color.py, Thuban/Model/layer.py, Thuban/Model/load.py,
3974            Thuban/UI/classifier.py, Thuban/UI/mainwindow.py,
3975            Thuban/UI/renderer.py, Thuban/UI/view.py:
3976            Rename Color.None to Color.Transparent.
3977        
3978            * test/test_classification.py, test/test_load.py: Rename Color.None
3979            to Color.Transparent.
3980    
3981    2003-04-04  Jonathan Coles   <[email protected]>
3982    
3983            * Thuban/Model/classification.py: Fix assert calls.
3984            (ClassGroupProperties.SetLineColor, ClassGroupProperties.SetFill):
3985            Copy the color parameter rather than hold onto a reference.
3986    
3987            * Thuban/Model/color.py (Color.__copy__, Color.__deepcopy): Copy
3988            the color object.
3989            (NoColor.__copy__, NoColor.__deepcopy): Return 'self' so that we
3990            are sure there exists only one refernce to Color.None in the system.
3991            This allows us to use 'is' rather than the comparision functions.
3992            
3993            * Thuban/Model/save.py: Fix assert calls.
3994            
3995            * Thuban/UI/classifier.py: Fix assert calls.
3996            (ClassGrid._OnCellDClick): Call up to the classifier to open the
3997            dialog to edit the groups properties.
3998            (ClassGrid._OnCellResize): Make sure that the scollbars are drawn
3999            correctly if a cell is resized.
4000            (ClassTable.SetClassification): New. Changes the classification
4001            that is in the table.
4002            (ClassTable.__SetRow): Allow groups to be prepended.
4003            (Classifier): New code for opening the EditProperties and
4004            GenerateRanges dialogs.
4005            (SelectPropertiesDialog.__GetColor): Only set the color in the
4006            color dialog if the current color is not None.
4007            
4008            * Thuban/UI/dock.py: Fix assert calls.
4009            
4010            * Thuban/UI/legend.py: Fix assert calls.
4011            
4012            * Thuban/UI/renderer.py: Fix assert calls.
4013            
4014            * Thuban/UI/classgen.py (ClassGenDialog): Dialog for generating
4015            classifications.
4016            (GenRangePanel): Panel specific to range generation.
4017            (GenSingletonPanel): Panel specific to singleton generation.
4018            (ClassGenerator): Class responsible for actually generating
4019            the classification from the data gathered in the dialog box.
4020            (PropertyRamp): Generates properties whose values range from
4021            a starting property to an ending property.
4022    
4023    2003-04-03  Bernhard Herzog  <[email protected]>
4024    
4025            * test/support.py (print_garbage_information): New function that
4026            prints information about still connected messages and memory
4027            leaks.
4028            (run_suite): Removed.
4029            (run_tests): New function for use as a replacement of
4030            unittest.main in the test_* files. This one calls
4031            print_garbage_information at the end.
4032    
4033            * test/runtests.py (main): Use support.print_garbage_information
4034    
4035            * test/test_layer.py: Use support.run_tests instead of
4036            unittest.main so we get memory leak information
4037            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
4038            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
4039            (TestLayerLegend.test_visibility): Call the layer's Destroy method
4040            to fix a memory leak.
4041    
4042            * test/test_classification.py: Use support.run_tests instead of
4043            unittest.main so we get memory leak information
4044            (TestClassification.test_classification): Call the layer's Destroy
4045            method to fix a memory leak.
4046    
4047    2003-04-02  Bernhard Herzog  <[email protected]>
4048    
4049            * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
4050            Handle the reference counts of the return value and errors in
4051            PyArg_ParseTuple correctly.
4052    
4053            * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
4054            sure the filename is absolute to avoid problems when saving the
4055            session again
4056    
4057            * Thuban/Model/table.py: Remove unnecessary import. Fix a typo.
4058    
4059    2003-04-01  Jonathan Coles   <[email protected]>
4060    
4061            *  Thuban/UI/renderer.py (MapRenderer.draw_point_shape): Check
4062            that there actually are points in the returned list of points
4063            before trying to index into the list. The list may be empty if
4064            the shape is a Null Shape.
4065    
4066    2003-04-01  Bernhard Herzog  <[email protected]>
4067    
4068            * test/test_map.py: Don't use from <module> import *
4069    
4070    2003-04-01  Jonathan Coles   <[email protected]>
4071    
4072            * Thuban/Model/session.py: Use LAYER_CHANGED instead of
4073            LAYER_LEGEND_CHANGED
4074    
4075            * Thuban/UI/dock.py (DockableWindow._OnButtonClose): Call
4076            self.Destroy() to close the window after yesterday's changes.
4077    
4078            * test/test_map.py, test/test_session.py: Fix messages that
4079            are sent from maps and layers.
4080    
4081    2003-03-31  Jonathan Coles   <[email protected]>
4082    
4083            * Thuban/UI/classifier.py: Commented out some debugging statements.
4084            (ClassDataPreviewer.Draw): Draw rectangles for polygon layers per
4085            RTbug #1769.
4086    
4087            * Thuban/UI/dock.py (DockableWindow.UnDock): Restore size and
4088            position (although position doesn't work yet under GTK).
4089            (DockableWindow.Destroy): New. Called when the window must be
4090            closed. Namely needed when the DockFrame closes and must close
4091            its children.
4092            (DockFrame): Listen for EVT_CLOSE and destroy all children.
4093    
4094            * Thuban/UI/legend.py (LegendPanel.Destroy): New. Cleans up
4095            when then window is told to close.
4096            (LegendTree._OnMsgLayerChanged): Fixes a seg fault bug. See
4097            comment in source for more info.
4098    
4099            * Thuban/UI/main.py: Show the legend by default when Thuban starts.
4100    
4101            * Thuban/UI/mainwindow.py: Renamed OnClose to _OnClose for
4102            symmetry with other such methods.
4103            (MainWindow.ShowLegend): Show the legend docked by default.
4104    
4105    2003-03-28  Jonathan Coles   <[email protected]>
4106    
4107            * Thuban/UI/classifier.py: Support for highlighting a specific
4108            group within the grid when the classification dialog is opened.
4109            Also contains a lot of debugging printouts which will later
4110            be removed.
4111    
4112            * Thuban/UI/dock.py: Complete rework on the dock code so that
4113            that it is fairly removed from the rest of the Thuban application.
4114            It is easy to add new docks which the rest of the program having
4115            to be aware of them.
4116    
4117            * Thuban/UI/legend.py: Modifications to support selecting a
4118            specific group in the classification dialog. Changed how layers
4119            are drawn when the layer is visible/invisible.
4120    
4121            * Thuban/UI/mainwindow.py: Removed legend specific code and
4122            replaced it with calls to the new dock code.
4123    
4124            * Thuban/UI/renderer.py (MapRenderer.__init__): Added assert
4125            to check if scale > 0. Trying to track down a divide by zero.
4126    
4127    2003-03-26  Jonathan Coles   <[email protected]>
4128    
4129            * Thuban/UI/legend.py: Removed unnecessary LegendDialog class.
4130            (LegendPanel): Removed _OnDock()/_OnUnDock() methods which are
4131            now part of DockableWindow.
4132            (LegendPanel.DoOnSelChanged): Select the current layer in the
4133            map.
4134            (LegendTree._OnSelChanged): Call LegendPanel.DoOnSelChanged()
4135            with the selected layer and/or group.
4136    
4137    2003-03-26  Jonathan Coles   <[email protected]>
4138    
4139            This putback contains the code for dockable windows. There is
4140            no support in wxWindows as of this date for windows that can
4141            attach themselves to other windows.
4142    
4143            The current model contains a DockableWindow which has a parent
4144            window for when it is detached and a dock window that it puts
4145            its contents in when it is docked. The contents of a DockableWindow
4146            must be a DockPanel. DockPanel itself derives from wxPanel.
4147    
4148            * Thuban/Model/layer.py (Layer.ClassChanged): Send a LAYER_CHANGED
4149            message, not a LAYER_LEGEND_CHANGED message.
4150    
4151            * Thuban/Model/map.py (Map): Forward LAYER_CHANGED messages.
4152    
4153            * Thuban/UI/classifier.py (Classifier.__init__): Use wxADJUST_MINSIZE
4154            as one of the style properties for the fieldTypeText item to
4155            be sure that its size is correct when the text changes.
4156    
4157            * Thuban/UI/dock.py: New. Classes for the DockPanel and
4158            DockableWindow.
4159    
4160            * Thuban/UI/legend.py: Added some more buttons and made the
4161            LegendPanel a DockPanel.
4162    
4163            * Thuban/UI/mainwindow.py: Added sash windows to the main window
4164            and supporting functions for manipulating the sashes.
4165            (MainWindow.ShowLegend): Create a DockableWindow with the
4166            LegendPanel as the contents.
4167    
4168            * Thuban/UI/messages.py: Added DOCKABLE_* messages
4169    
4170            * Thuban/UI/view.py (MapCanves.SetMap): Listen for LAYER_CHANGED,
4171            not LAYER_LEGEND_CHANGED, messages.
4172    
4173    2003-03-25  Jonathan Coles   <[email protected]>
4174    
4175            * setup.py: Added custom script bdist_rpm_build_script so that
4176            when the rpm is built the path to wx-config is correct.
4177    
4178            * setup.cfg: Added line saying to use the custom build script
4179    
4180    2003-03-20  Jonathan Coles   <[email protected]>
4181    
4182            Initial implementation of the Legend.
4183    
4184            * Thuban/UI/legend.py: New. Creates a window that shows the map's
4185            Legend information and allows the user to add/modify classifications
4186            and how the layers are drawn on the map.
4187    
4188            * setup.py: New command 'build_docs' which currently uses
4189            happydoc to generate html documentation for Thuban.
4190    
4191            * Thuban/Model/classification.py (ClassGroup.GetDisplayText): New.
4192            Returns a string which is appropriately describes the group.
4193    
4194            * Thuban/Model/layer.py (Layer.SetClassification): Generate a
4195            LAYER_CHANGED event instead of a LAYER_LEGEND_CHANGED event.
4196    
4197            * Thuban/Model/map.py (Map): Rename messages and use new, more
4198            specific, messages.
4199    
4200            * Thuban/Model/messages.py: New message to indicate that a layer's
4201            data has changed (LAYER_CHANGED). New map messages to indicate
4202            when layers have been added/removed/changed or if the stacking order
4203            of the layers has changed.
4204    
4205            * Thuban/Model/session.py: Rename and use new messages.
4206    
4207            * Thuban/UI/classifier.py: Remember if any changes have actually
4208            been applied so that if the dialog is cancelled without an application
4209            of changes we don't have to set a new classification.
4210            (ClassDataPreviewer): Pulled out the window specific code and put it
4211            ClassDataPreviewWindow. ClassDataPreviewer can then be used to draw
4212            symbols on any DC.
4213            
4214            * Thuban/UI/mainwindow.py: New code to open the legend.
4215    
4216            * Thuban/UI/view.py: Use new message names.
4217    
4218    2003-03-19  Jonathan Coles   <[email protected]>
4219    
4220            * Thuban/UI/main.py (verify_versions): New. Checks the versions
4221            of Python, wxPython, and some other libraries.
4222    
4223            * extensions/thuban/wxproj.cpp (check_version): Checks the given
4224            version against what wxproj was compiled with.
4225            (check_version_gtk): If wxproj was compiled with gtk then check
4226            the given version against the version of the gtk library
4227            currently being used.
4228    
4229    2003-03-14  Bernhard Herzog  <[email protected]>
4230    
4231            * test/test_command.py: Run the tests when the module is run as a
4232            script
4233    
4234    2003-03-14  Bernhard Herzog  <[email protected]>
4235    
4236            Implement selection of multiple selected shapes in the same layer:
4237    
4238            - Introduce a new class to hold the selection. This basically
4239              replaces the interactor which was nothing more than the
4240              selection anyway. A major difference is of course that the new
4241              selection class supports multiple selected shapes in one layer
4242            
4243            - Move the object that represents the selection from the
4244              application to the canvas. The canvas is a better place than the
4245              application because the selection represents which shapes and
4246              layer of the map displayed by the canvas are selected and
4247              affects how the map is drawn.
4248    
4249            - Make the selection and its messages publicly available through
4250              the mainwindow.
4251    
4252            - The non-modal dialogs do not get a reference to the interactor
4253              anymore as they can simply refer to their parent, the
4254              mainwindow, for the what the interactor had to offer.
4255    
4256            * Thuban/UI/selection.py: New module with a class to represent the
4257            selection.
4258    
4259            * Thuban/UI/messages.py (SELECTED_TABLE, SELECTED_MAP): Remove
4260            these unused messages
4261    
4262            * Thuban/UI/application.py (ThubanApplication.OnInit)
4263            (ThubanApplication.OnExit, ThubanApplication.SetSession): The
4264            interactor is gone now.
4265            (ThubanApplication.CreateMainWindow): There is no interactor
4266            anymore so we pass None as the interactor argument for now for
4267            compatibility.
4268    
4269            * Thuban/UI/view.py (MapCanvas.delegated_messages)
4270            (MapCanvas.Subscribe, MapCanvas.Unsubscribe): In Subscribe and
4271            Unsubscribe, delegate messages according to the delegated_messages
4272            class variable.
4273            (MapCanvas.__getattr__, MapCanvas.delegated_methods): Get some
4274            attributes from instance variables as described with the
4275            delegated_methods class variable.
4276            (MapCanvas.__init__): New instance variable selection holding the
4277            current selection
4278            (MapCanvas.do_redraw): Deal with multiple selected shapes. Simply
4279            pass them on to the renderer
4280            (MapCanvas.SetMap): Clear the selection when a different map is
4281            selected.
4282            (MapCanvas.shape_selected): Simple force a complete redraw. The
4283            selection class now takes care of only issueing SHAPES_SELECTED
4284            messages when the set of selected shapes actually does change.
4285            (MapCanvas.SelectShapeAt): The selection is now managed in
4286            self.selection
4287    
4288            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages)
4289            (MainWindow.Subscribe, MainWindow.Unsubscribe): In Subscribe and
4290            Unsubscribe, delegate messages according to the delegated_messages
4291            class variable.
4292            (MainWindow.delegated_methods, MainWindow.__getattr__): Get some
4293            attributes from instance variables as described with the
4294            delegated_methods class variable.
4295            (MainWindow.__init__): The interactor as ivar is gone. The
4296            parameter is still there for compatibility. The selection messages
4297            now come from the canvas.
4298            (MainWindow.current_layer, MainWindow.has_selected_layer):
4299            Delegate to the the canvas.
4300            (MainWindow.LayerShowTable, MainWindow.Classify)
4301            (MainWindow.identify_view_on_demand): The dialogs don't need the
4302            interactor parameter anymore.
4303    
4304            * Thuban/UI/tableview.py (TableFrame.__init__)
4305            (LayerTableFrame.__init__, LayerTableFrame.OnClose)
4306            (LayerTableFrame.row_selected): The interactor is gone. It's job
4307            from the dialog's point of view is now done by the mainwindow,
4308            i.e. the parent. Subscribe to SHAPES_SELECTED instead
4309            of SELECTED_SHAPE
4310            
4311            * Thuban/UI/dialogs.py (NonModalDialog.__init__): The interactor
4312            is gone. It's job from the dialog's point of view is now done by
4313            the mainwindow, i.e. the parent.
4314            
4315            * Thuban/UI/classifier.py (Classifier.__init__): The interactor is
4316            gone. It's job from the dialog's point of view is now done by the
4317            mainwindow, i.e. the parent.
4318    
4319            * Thuban/UI/tree.py (SessionTreeView.__init__): The interactor is
4320            gone. It's job from the dialog's point of view is now done by the
4321            mainwindow, i.e. the parent.
4322            (SessionTreeCtrl.__init__): New parameter mainwindow which is
4323            stored as self.mainwindow. The mainwindow is need so that the tree
4324            can still subscribe to the selection messages.
4325            (SessionTreeCtrl.__init__, SessionTreeCtrl.unsubscribe_all)
4326            (SessionTreeCtrl.update_tree, SessionTreeCtrl.OnSelChanged): The
4327            selection is now accessible through the mainwindow. Subscribe to
4328            SHAPES_SELECTED instead of SELECTED_SHAPE
4329    
4330            * Thuban/UI/identifyview.py (IdentifyView.__init__): Use the
4331            SHAPES_SELECTED message now.
4332            (IdentifyView.selected_shape): Now subscribed to SHAPES_SELECTED,
4333            so deal with multiple shapes
4334            (IdentifyView.__init__, IdentifyView.OnClose): The interactor is
4335            gone. It's job from the dialog's point of view is now done by the
4336            mainwindow, i.e. the parent.
4337    
4338            * Thuban/UI/controls.py (RecordListCtrl.fill_list): The second
4339            parameter is now a list of shape ids.
4340            (RecordTable.SetTable): The second parameter is now a list of
4341            indices.
4342    
4343            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Rename the
4344            selected_shape parameter and ivar to selected_shapes. It's now a
4345            list of shape ids.
4346            (MapRenderer.draw_label_layer): Deal with multiple selected
4347            shapes. Rearrange the code a bit so that the setup and shape type
4348            distinctions are only executed once.
4349    
4350            * test/test_selection.py: Test cases for the selection class
4351    
4352    2003-03-11  Jonathan Coles   <[email protected]>
4353    
4354            * Thuban/Model/load.py: Temporary fix so that the xml reader
4355            doesn't cause Thuban to crash.
4356    
4357            * Thuban/Model/layer.py: Handle the cyclic references between
4358            a layer and its classification better, and be sure to disconnect
4359            the classification from the layer when the layer is destroyed
4360            so that we don't maintain a cyclic reference that may not be
4361            garbage collected.
4362    
4363            * Thuban/Model/classification.py: See comment for layer.py.
4364    
4365    2003-03-12  Jan-Oliver Wagner <[email protected]>
4366    
4367            * HOWTO-Release: New. Information on the steps for releasing
4368            a new version of Thuban.
4369    
4370    2003-03-11  Jonathan Coles   <[email protected]>
4371    
4372            * Thuban/UI/classifier.py: Add normal border to SelectPropertiesDialog.
4373            Use True instead of true.
4374            (Classifier): Should have a single panel in which all the controls lie.
4375    
4376            * Thuban/UI/proj4dialog.py: Add normal border.
4377    
4378            * Thuban/UI/tree.py: Fixed problem with bad item images under Windows.
4379    
4380            * Thuban/UI/mainwindow.py: Use True instead of true.
4381    
4382            * setup.py: Update some definitions to use wxWindows2.4 files
4383    
4384            * Data/iceland_sample_class.thuban: Fixed file so that the
4385            field_type information is present.
4386    
4387    2003-03-10  Jonathan Coles   <[email protected]>
4388    
4389            * Thuban/UI/classifier.py (Classifier.__init__): Make the
4390            field type label grow so that when the text changes the
4391            size is updated correctly. This may be a wxWindows bug.
4392    
4393    2003-03-10  Jonathan Coles   <[email protected]>
4394    
4395            * Thuban/UI/application.py: Changed SESSION_CHANGED to
4396            SESSION_REPLACED.
4397    
4398            * Thuban/UI/classifier.py: Wrap text with _().
4399            (ClassGrid.CreateTable): Set dimensions and size hints here,
4400            instead of in Reset, so we only set the size once.
4401    
4402            * Thuban/UI/dialogs.py: Don't need Shutdown(); just use Close()!
4403    
4404            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
4405            Call Close() instead of Shutdown().
4406    
4407            * Thuban/UI/messages.py: Changed SESSION_CHANGED to SESSION_REPLACED.
4408    
4409            * Thuban/UI/tree.py: Changed SESSION_CHANGED to SESSION_REPLACED.
4410            Go back to using OnClose() instead of Shutdown().
4411    
4412    2003-03-10  Jonathan Coles   <[email protected]>
4413    
4414            * Thuban/UI/classifier.py (Classifier): SelectField() needed
4415            to know the old field index as well as the new one.
4416    
4417    2003-03-10  Jonathan Coles   <[email protected]>
4418    
4419            * Thuban/UI/classifier.py (Classifier): Use __SelectField()
4420            to correctly set the table information and call this from
4421            __init__ and from _OnFieldSelect so that all the information
4422            is up to date when the dialog opens and when a field is changed.
4423    
4424    2003-03-10  Jonathan Coles   <[email protected]>
4425    
4426            * Thuban/Model/classification.py (Classification): Don't use
4427            layer's message function directly, use the ClassChanged() method
4428            when then classification changes. SetField/SetFieldType/SetLayer
4429            must keep the information about field name and field type in
4430            sync when an owning layer is set or removed.
4431    
4432            * Thuban/Model/layer.py: Added ClassChanged() so that the
4433            classification can tell the layer when its data has changed.
4434            (Layer.SetClassification): Accepts None as an arguement to
4435            remove the current classification and correctly handles
4436            adding a new classification.
4437    
4438            * Thuban/Model/load.py: Comment out print statement
4439    
4440            * test/test_classification.py, test/test_save.py: New and
4441            improved tests.
4442    
4443    2003-03-07  Jonathan Coles   <[email protected]>
4444    
4445            * Thuban/Model/classification.py: Implemented __copy__ and
4446            __deepcopy__ for ClassGroup* and ClassGroupProperites so
4447            they can easily be copied by the classifier dialog.
4448            (ClassGroupProperites.__init__): The default line color should
4449            have been Color.Black.
4450    
4451            * Thuban/UI/classifier.py: Setting and Getting table values now
4452            uses a consistent set of functions.
4453            (Classifier): Now non-modal. Has field type label which changes
4454            as the field changes. Keep track of buttons in a list so that
4455            we can enable/disable the buttons when the None field is selected.
4456            (SelectPropertiesDialog): Add buttons to make the colors transparent.
4457    
4458            * Thuban/UI/dialogs.py (NonModalDialog.Shutdown): New method which
4459            does what OnClose did, but can be called by the application to
4460            close a window. Needed when a session changes, and we have to
4461            close the classifier windows.
4462    
4463            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
4464            Shuts down open dialogs. Used when a new session is created
4465            or a session is opened.
4466            (MainWindow.SaveSession): Should only call application.SaveSession()
4467            if we don't call SaveSessionAs first.
4468            (MainWindow.Classify): Allow different classifier dialogs for
4469            different layers.
4470    
4471            * Thuban/UI/tree.py (SessionTreeView): Remove OnClose and let
4472            the parent class handle it. Add Shutdown() to unsubscibe from
4473            event notification and call the parent Shutdown(). This was
4474            necessary so the application can close the tree window.
4475    
4476    2003-03-06  Jonathan Coles   <[email protected]>
4477    
4478            * Thuban/Model/classification.py: Minor documentation changes,
4479            Addition of __eq__ and __ne__ methods.
4480            (Classification.SetLayer): prevent recursion between this method
4481            and Layer.SetClassification().
4482    
4483            * Thuban/Model/color.py: Addition of __eq__ and __ne__ methods.
4484    
4485            * Thuban/Model/layer.py (SetClassification): prevent recursion
4486            between this method and Classification.SetLayer().
4487    
4488            * test/test_classification.py, test/test_load.py,
4489            test/test_session.py: Fixed and added tests for the classification
4490            classes.
4491    
4492    2003-03-06  Bernhard Herzog  <[email protected]>
4493    
4494            * Thuban/UI/classifier.py (ClassGrid.__init__)
4495            (ClassGrid.CreateTable): Move the SetSelectionMode call to
4496            CreateTable because otherwise it triggers an assertion in
4497            wxPython/wxGTK 2.4.
4498    
4499    2003-03-05  Jonathan Coles   <[email protected]>
4500    
4501            * Thuban/common.py: Move FIELDTYPE constants back to table.py.
4502    
4503            * Thuban/Model/load.py: import FIELDTYPE constants from table.
4504    
4505            * Thuban/UI/classifier.py: import FIELDTYPE constants from table.
4506    
4507            * Thuban/Model/table.py: Put FIELDTYPE constants back.
4508    
4509    2003-03-05  Jonathan Coles   <[email protected]>
4510    
4511            * Thuban/UI/classifier.py: Added class documentation.
4512            Fixed RTbug #1713, #1714. Added Move[Up|Down] buttons.
4513            Store just the groups in the table and generate the other
4514            column information when it is requested. Add "None" field
4515            to pull-down to select no classification.
4516    
4517            * Thuban/common.py: Moved FIELDTYPE constants from table.py
4518            (Str2Num): Only catch ValueError exceptions.
4519    
4520            * Thuban/Model/classification.py: Class documentation. Renaming
4521            of methods with Stroke to Line. Groups are stored in a single
4522            list with the default as the first element. Groups are searched
4523            in the order they appear in the list.
4524    
4525            * Thuban/Model/color.py: Documentation.
4526    
4527            * Thuban/Model/layer.py (Layer): Add GetFieldType to retreive
4528            the kind of data represented by a field.
4529    
4530            * Thuban/Model/load.py (ProcessSession): Use proper string
4531            conversion function; fixes RTbug #1713.
4532    
4533            * Thuban/Model/save.py (Saver): Store field type information.
4534    
4535            * Thuban/Model/table.py: Put FIELDTYPE constants in common.py.
4536            (Table): Add field_info_by_name() to retrieve field information
4537            by specifying the field name, not the number.
4538    
4539            * Thuban/UI/mainwindow.py: Function name changes.
4540    
4541            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
4542            get the layer classification once. Don't try to classify
4543            values when the field is None: just use the default properties.
4544    
4545            * Thuban/UI/view.py: Function name changes.
4546    
4547            * Doc/thuban.dtd: Add field_type attribute to a classification.
4548    
4549    2003-03-04  Bernhard Herzog  <[email protected]>
4550    
4551            * Doc/thuban.dtd: Use correct syntax for optional attributes. Make
4552            the fill and stroke layer attributes optional with suitable
4553            default values. Add the stroke_width layer attribute. Use correct
4554            syntax for empty elements. Make the attribute list for labels
4555            refer to the label element.
4556    
4557  2003-03-04  Bernhard Herzog  <[email protected]>  2003-03-04  Bernhard Herzog  <[email protected]>
4558    
4559          * setup.py (thuban_build_py.build): Add a comment about distutils in          * setup.py (thuban_build_py.build): Add a comment about distutils in

Legend:
Removed from v.456  
changed lines
  Added in v.1483

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26