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

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

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

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

Legend:
Removed from v.64  
changed lines
  Added in v.981

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26