/[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 423 by frank, Thu Feb 20 16:23:59 2003 UTC revision 593 by bh, Wed Apr 2 18:26:22 2003 UTC
# Line 1  Line 1 
1    2003-04-02  Bernhard Herzog  <[email protected]>
2    
3            * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
4            sure the filename is absolute to avoid problems when saving the
5            session again
6    
7            * Thuban/Model/table.py: Remove unnecessary import. Fix a typo.
8    
9    2003-04-01  Jonathan Coles   <[email protected]>
10    
11            *  Thuban/UI/renderer.py (MapRenderer.draw_point_shape): Check
12            that there actually are points in the returned list of points
13            before trying to index into the list. The list may be empty if
14            the shape is a Null Shape.
15    
16    2003-04-01  Bernhard Herzog  <[email protected]>
17    
18            * test/test_map.py: Don't use from <module> import *
19    
20    2003-04-01  Jonathan Coles   <[email protected]>
21    
22            * Thuban/Model/session.py: Use LAYER_CHANGED instead of
23            LAYER_LEGEND_CHANGED
24    
25            * Thuban/UI/dock.py (DockableWindow._OnButtonClose): Call
26            self.Destroy() to close the window after yesterday's changes.
27    
28            * test/test_map.py, test/test_session.py: Fix messages that
29            are sent from maps and layers.
30    
31    2003-03-31  Jonathan Coles   <[email protected]>
32    
33            * Thuban/UI/classifier.py: Commented out some debugging statements.
34            (ClassDataPreviewer.Draw): Draw rectangles for polygon layers per
35            RTbug #1769.
36    
37            * Thuban/UI/dock.py (DockableWindow.UnDock): Restore size and
38            position (although position doesn't work yet under GTK).
39            (DockableWindow.Destroy): New. Called when the window must be
40            closed. Namely needed when the DockFrame closes and must close
41            its children.
42            (DockFrame): Listen for EVT_CLOSE and destroy all children.
43    
44            * Thuban/UI/legend.py (LegendPanel.Destroy): New. Cleans up
45            when then window is told to close.
46            (LegendTree._OnMsgLayerChanged): Fixes a seg fault bug. See
47            comment in source for more info.
48    
49            * Thuban/UI/main.py: Show the legend by default when Thuban starts.
50    
51            * Thuban/UI/mainwindow.py: Renamed OnClose to _OnClose for
52            symmetry with other such methods.
53            (MainWindow.ShowLegend): Show the legend docked by default.
54    
55    2003-03-28  Jonathan Coles   <[email protected]>
56    
57            * Thuban/UI/classifier.py: Support for highlighting a specific
58            group within the grid when the classification dialog is opened.
59            Also contains a lot of debugging printouts which will later
60            be removed.
61    
62            * Thuban/UI/dock.py: Complete rework on the dock code so that
63            that it is fairly removed from the rest of the Thuban application.
64            It is easy to add new docks which the rest of the program having
65            to be aware of them.
66    
67            * Thuban/UI/legend.py: Modifications to support selecting a
68            specific group in the classification dialog. Changed how layers
69            are drawn when the layer is visible/invisible.
70    
71            * Thuban/UI/mainwindow.py: Removed legend specific code and
72            replaced it with calls to the new dock code.
73    
74            * Thuban/UI/renderer.py (MapRenderer.__init__): Added assert
75            to check if scale > 0. Trying to track down a divide by zero.
76    
77    2003-03-26  Jonathan Coles   <[email protected]>
78    
79            * Thuban/UI/legend.py: Removed unnecessary LegendDialog class.
80            (LegendPanel): Removed _OnDock()/_OnUnDock() methods which are
81            now part of DockableWindow.
82            (LegendPanel.DoOnSelChanged): Select the current layer in the
83            map.
84            (LegendTree._OnSelChanged): Call LegendPanel.DoOnSelChanged()
85            with the selected layer and/or group.
86    
87    2003-03-26  Jonathan Coles   <[email protected]>
88    
89            This putback contains the code for dockable windows. There is
90            no support in wxWindows as of this date for windows that can
91            attach themselves to other windows.
92    
93            The current model contains a DockableWindow which has a parent
94            window for when it is detached and a dock window that it puts
95            its contents in when it is docked. The contents of a DockableWindow
96            must be a DockPanel. DockPanel itself derives from wxPanel.
97    
98            * Thuban/Model/layer.py (Layer.ClassChanged): Send a LAYER_CHANGED
99            message, not a LAYER_LEGEND_CHANGED message.
100    
101            * Thuban/Model/map.py (Map): Forward LAYER_CHANGED messages.
102    
103            * Thuban/UI/classifier.py (Classifier.__init__): Use wxADJUST_MINSIZE
104            as one of the style properties for the fieldTypeText item to
105            be sure that its size is correct when the text changes.
106    
107            * Thuban/UI/dock.py: New. Classes for the DockPanel and
108            DockableWindow.
109    
110            * Thuban/UI/legend.py: Added some more buttons and made the
111            LegendPanel a DockPanel.
112    
113            * Thuban/UI/mainwindow.py: Added sash windows to the main window
114            and supporting functions for manipulating the sashes.
115            (MainWindow.ShowLegend): Create a DockableWindow with the
116            LegendPanel as the contents.
117    
118            * Thuban/UI/messages.py: Added DOCKABLE_* messages
119    
120            * Thuban/UI/view.py (MapCanves.SetMap): Listen for LAYER_CHANGED,
121            not LAYER_LEGEND_CHANGED, messages.
122    
123    2003-03-25  Jonathan Coles   <[email protected]>
124    
125            * setup.py: Added custom script bdist_rpm_build_script so that
126            when the rpm is built the path to wx-config is correct.
127    
128            * setup.cfg: Added line saying to use the custom build script
129    
130    2003-03-20  Jonathan Coles   <[email protected]>
131    
132            Initial implementation of the Legend.
133    
134            * Thuban/UI/legend.py: New. Creates a window that shows the map's
135            Legend information and allows the user to add/modify classifications
136            and how the layers are drawn on the map.
137    
138            * setup.py: New command 'build_docs' which currently uses
139            happydoc to generate html documentation for Thuban.
140    
141            * Thuban/Model/classification.py (ClassGroup.GetDisplayText): New.
142            Returns a string which is appropriately describes the group.
143    
144            * Thuban/Model/layer.py (Layer.SetClassification): Generate a
145            LAYER_CHANGED event instead of a LAYER_LEGEND_CHANGED event.
146    
147            * Thuban/Model/map.py (Map): Rename messages and use new, more
148            specific, messages.
149    
150            * Thuban/Model/messages.py: New message to indicate that a layer's
151            data has changed (LAYER_CHANGED). New map messages to indicate
152            when layers have been added/removed/changed or if the stacking order
153            of the layers has changed.
154    
155            * Thuban/Model/session.py: Rename and use new messages.
156    
157            * Thuban/UI/classifier.py: Remember if any changes have actually
158            been applied so that if the dialog is cancelled without an application
159            of changes we don't have to set a new classification.
160            (ClassDataPreviewer): Pulled out the window specific code and put it
161            ClassDataPreviewWindow. ClassDataPreviewer can then be used to draw
162            symbols on any DC.
163            
164            * Thuban/UI/mainwindow.py: New code to open the legend.
165    
166            * Thuban/UI/view.py: Use new message names.
167    
168    2003-03-19  Jonathan Coles   <[email protected]>
169    
170            * Thuban/UI/main.py (verify_versions): New. Checks the versions
171            of Python, wxPython, and some other libraries.
172    
173            * extensions/thuban/wxproj.cpp (check_version): Checks the given
174            version against what wxproj was compiled with.
175            (check_version_gtk): If wxproj was compiled with gtk then check
176            the given version against the version of the gtk library
177            currently being used.
178    
179    2003-03-14  Bernhard Herzog  <[email protected]>
180    
181            * test/test_command.py: Run the tests when the module is run as a
182            script
183    
184    2003-03-14  Bernhard Herzog  <[email protected]>
185    
186            Implement selection of multiple selected shapes in the same layer:
187    
188            - Introduce a new class to hold the selection. This basically
189              replaces the interactor which was nothing more than the
190              selection anyway. A major difference is of course that the new
191              selection class supports multiple selected shapes in one layer
192            
193            - Move the object that represents the selection from the
194              application to the canvas. The canvas is a better place than the
195              application because the selection represents which shapes and
196              layer of the map displayed by the canvas are selected and
197              affects how the map is drawn.
198    
199            - Make the selection and its messages publicly available through
200              the mainwindow.
201    
202            - The non-modal dialogs do not get a reference to the interactor
203              anymore as they can simply refer to their parent, the
204              mainwindow, for the what the interactor had to offer.
205    
206            * Thuban/UI/selection.py: New module with a class to represent the
207            selection.
208    
209            * Thuban/UI/messages.py (SELECTED_TABLE, SELECTED_MAP): Remove
210            these unused messages
211    
212            * Thuban/UI/application.py (ThubanApplication.OnInit)
213            (ThubanApplication.OnExit, ThubanApplication.SetSession): The
214            interactor is gone now.
215            (ThubanApplication.CreateMainWindow): There is no interactor
216            anymore so we pass None as the interactor argument for now for
217            compatibility.
218    
219            * Thuban/UI/view.py (MapCanvas.delegated_messages)
220            (MapCanvas.Subscribe, MapCanvas.Unsubscribe): In Subscribe and
221            Unsubscribe, delegate messages according to the delegated_messages
222            class variable.
223            (MapCanvas.__getattr__, MapCanvas.delegated_methods): Get some
224            attributes from instance variables as described with the
225            delegated_methods class variable.
226            (MapCanvas.__init__): New instance variable selection holding the
227            current selection
228            (MapCanvas.do_redraw): Deal with multiple selected shapes. Simply
229            pass them on to the renderer
230            (MapCanvas.SetMap): Clear the selection when a different map is
231            selected.
232            (MapCanvas.shape_selected): Simple force a complete redraw. The
233            selection class now takes care of only issueing SHAPES_SELECTED
234            messages when the set of selected shapes actually does change.
235            (MapCanvas.SelectShapeAt): The selection is now managed in
236            self.selection
237    
238            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages)
239            (MainWindow.Subscribe, MainWindow.Unsubscribe): In Subscribe and
240            Unsubscribe, delegate messages according to the delegated_messages
241            class variable.
242            (MainWindow.delegated_methods, MainWindow.__getattr__): Get some
243            attributes from instance variables as described with the
244            delegated_methods class variable.
245            (MainWindow.__init__): The interactor as ivar is gone. The
246            parameter is still there for compatibility. The selection messages
247            now come from the canvas.
248            (MainWindow.current_layer, MainWindow.has_selected_layer):
249            Delegate to the the canvas.
250            (MainWindow.LayerShowTable, MainWindow.Classify)
251            (MainWindow.identify_view_on_demand): The dialogs don't need the
252            interactor parameter anymore.
253    
254            * Thuban/UI/tableview.py (TableFrame.__init__)
255            (LayerTableFrame.__init__, LayerTableFrame.OnClose)
256            (LayerTableFrame.row_selected): The interactor is gone. It's job
257            from the dialog's point of view is now done by the mainwindow,
258            i.e. the parent. Subscribe to SHAPES_SELECTED instead
259            of SELECTED_SHAPE
260            
261            * Thuban/UI/dialogs.py (NonModalDialog.__init__): The interactor
262            is gone. It's job from the dialog's point of view is now done by
263            the mainwindow, i.e. the parent.
264            
265            * Thuban/UI/classifier.py (Classifier.__init__): The interactor is
266            gone. It's job from the dialog's point of view is now done by the
267            mainwindow, i.e. the parent.
268    
269            * Thuban/UI/tree.py (SessionTreeView.__init__): The interactor is
270            gone. It's job from the dialog's point of view is now done by the
271            mainwindow, i.e. the parent.
272            (SessionTreeCtrl.__init__): New parameter mainwindow which is
273            stored as self.mainwindow. The mainwindow is need so that the tree
274            can still subscribe to the selection messages.
275            (SessionTreeCtrl.__init__, SessionTreeCtrl.unsubscribe_all)
276            (SessionTreeCtrl.update_tree, SessionTreeCtrl.OnSelChanged): The
277            selection is now accessible through the mainwindow. Subscribe to
278            SHAPES_SELECTED instead of SELECTED_SHAPE
279    
280            * Thuban/UI/identifyview.py (IdentifyView.__init__): Use the
281            SHAPES_SELECTED message now.
282            (IdentifyView.selected_shape): Now subscribed to SHAPES_SELECTED,
283            so deal with multiple shapes
284            (IdentifyView.__init__, IdentifyView.OnClose): The interactor is
285            gone. It's job from the dialog's point of view is now done by the
286            mainwindow, i.e. the parent.
287    
288            * Thuban/UI/controls.py (RecordListCtrl.fill_list): The second
289            parameter is now a list of shape ids.
290            (RecordTable.SetTable): The second parameter is now a list of
291            indices.
292    
293            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Rename the
294            selected_shape parameter and ivar to selected_shapes. It's now a
295            list of shape ids.
296            (MapRenderer.draw_label_layer): Deal with multiple selected
297            shapes. Rearrange the code a bit so that the setup and shape type
298            distinctions are only executed once.
299    
300            * test/test_selection.py: Test cases for the selection class
301    
302    2003-03-11  Jonathan Coles   <[email protected]>
303    
304            * Thuban/Model/load.py: Temporary fix so that the xml reader
305            doesn't cause Thuban to crash.
306    
307            * Thuban/Model/layer.py: Handle the cyclic references between
308            a layer and its classification better, and be sure to disconnect
309            the classification from the layer when the layer is destroyed
310            so that we don't maintain a cyclic reference that may not be
311            garbage collected.
312    
313            * Thuban/Model/classification.py: See comment for layer.py.
314    
315    2003-03-12  Jan-Oliver Wagner <[email protected]>
316    
317            * HOWTO-Release: New. Information on the steps for releasing
318            a new version of Thuban.
319    
320    2003-03-11  Jonathan Coles   <[email protected]>
321    
322            * Thuban/UI/classifier.py: Add normal border to SelectPropertiesDialog.
323            Use True instead of true.
324            (Classifier): Should have a single panel in which all the controls lie.
325    
326            * Thuban/UI/proj4dialog.py: Add normal border.
327    
328            * Thuban/UI/tree.py: Fixed problem with bad item images under Windows.
329    
330            * Thuban/UI/mainwindow.py: Use True instead of true.
331    
332            * setup.py: Update some definitions to use wxWindows2.4 files
333    
334            * Data/iceland_sample_class.thuban: Fixed file so that the
335            field_type information is present.
336    
337    2003-03-10  Jonathan Coles   <[email protected]>
338    
339            * Thuban/UI/classifier.py (Classifier.__init__): Make the
340            field type label grow so that when the text changes the
341            size is updated correctly. This may be a wxWindows bug.
342    
343    2003-03-10  Jonathan Coles   <[email protected]>
344    
345            * Thuban/UI/application.py: Changed SESSION_CHANGED to
346            SESSION_REPLACED.
347    
348            * Thuban/UI/classifier.py: Wrap text with _().
349            (ClassGrid.CreateTable): Set dimensions and size hints here,
350            instead of in Reset, so we only set the size once.
351    
352            * Thuban/UI/dialogs.py: Don't need Shutdown(); just use Close()!
353    
354            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
355            Call Close() instead of Shutdown().
356    
357            * Thuban/UI/messages.py: Changed SESSION_CHANGED to SESSION_REPLACED.
358    
359            * Thuban/UI/tree.py: Changed SESSION_CHANGED to SESSION_REPLACED.
360            Go back to using OnClose() instead of Shutdown().
361    
362    2003-03-10  Jonathan Coles   <[email protected]>
363    
364            * Thuban/UI/classifier.py (Classifier): SelectField() needed
365            to know the old field index as well as the new one.
366    
367    2003-03-10  Jonathan Coles   <[email protected]>
368    
369            * Thuban/UI/classifier.py (Classifier): Use __SelectField()
370            to correctly set the table information and call this from
371            __init__ and from _OnFieldSelect so that all the information
372            is up to date when the dialog opens and when a field is changed.
373    
374    2003-03-10  Jonathan Coles   <[email protected]>
375    
376            * Thuban/Model/classification.py (Classification): Don't use
377            layer's message function directly, use the ClassChanged() method
378            when then classification changes. SetField/SetFieldType/SetLayer
379            must keep the information about field name and field type in
380            sync when an owning layer is set or removed.
381    
382            * Thuban/Model/layer.py: Added ClassChanged() so that the
383            classification can tell the layer when its data has changed.
384            (Layer.SetClassification): Accepts None as an arguement to
385            remove the current classification and correctly handles
386            adding a new classification.
387    
388            * Thuban/Model/load.py: Comment out print statement
389    
390            * test/test_classification.py, test/test_save.py: New and
391            improved tests.
392    
393    2003-03-07  Jonathan Coles   <[email protected]>
394    
395            * Thuban/Model/classification.py: Implemented __copy__ and
396            __deepcopy__ for ClassGroup* and ClassGroupProperites so
397            they can easily be copied by the classifier dialog.
398            (ClassGroupProperites.__init__): The default line color should
399            have been Color.Black.
400    
401            * Thuban/UI/classifier.py: Setting and Getting table values now
402            uses a consistent set of functions.
403            (Classifier): Now non-modal. Has field type label which changes
404            as the field changes. Keep track of buttons in a list so that
405            we can enable/disable the buttons when the None field is selected.
406            (SelectPropertiesDialog): Add buttons to make the colors transparent.
407    
408            * Thuban/UI/dialogs.py (NonModalDialog.Shutdown): New method which
409            does what OnClose did, but can be called by the application to
410            close a window. Needed when a session changes, and we have to
411            close the classifier windows.
412    
413            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
414            Shuts down open dialogs. Used when a new session is created
415            or a session is opened.
416            (MainWindow.SaveSession): Should only call application.SaveSession()
417            if we don't call SaveSessionAs first.
418            (MainWindow.Classify): Allow different classifier dialogs for
419            different layers.
420    
421            * Thuban/UI/tree.py (SessionTreeView): Remove OnClose and let
422            the parent class handle it. Add Shutdown() to unsubscibe from
423            event notification and call the parent Shutdown(). This was
424            necessary so the application can close the tree window.
425    
426    2003-03-06  Jonathan Coles   <[email protected]>
427    
428            * Thuban/Model/classification.py: Minor documentation changes,
429            Addition of __eq__ and __ne__ methods.
430            (Classification.SetLayer): prevent recursion between this method
431            and Layer.SetClassification().
432    
433            * Thuban/Model/color.py: Addition of __eq__ and __ne__ methods.
434    
435            * Thuban/Model/layer.py (SetClassification): prevent recursion
436            between this method and Classification.SetLayer().
437    
438            * test/test_classification.py, test/test_load.py,
439            test/test_session.py: Fixed and added tests for the classification
440            classes.
441    
442    2003-03-06  Bernhard Herzog  <[email protected]>
443    
444            * Thuban/UI/classifier.py (ClassGrid.__init__)
445            (ClassGrid.CreateTable): Move the SetSelectionMode call to
446            CreateTable because otherwise it triggers an assertion in
447            wxPython/wxGTK 2.4.
448    
449    2003-03-05  Jonathan Coles   <[email protected]>
450    
451            * Thuban/common.py: Move FIELDTYPE constants back to table.py.
452    
453            * Thuban/Model/load.py: import FIELDTYPE constants from table.
454    
455            * Thuban/UI/classifier.py: import FIELDTYPE constants from table.
456    
457            * Thuban/Model/table.py: Put FIELDTYPE constants back.
458    
459    2003-03-05  Jonathan Coles   <[email protected]>
460    
461            * Thuban/UI/classifier.py: Added class documentation.
462            Fixed RTbug #1713, #1714. Added Move[Up|Down] buttons.
463            Store just the groups in the table and generate the other
464            column information when it is requested. Add "None" field
465            to pull-down to select no classification.
466    
467            * Thuban/common.py: Moved FIELDTYPE constants from table.py
468            (Str2Num): Only catch ValueError exceptions.
469    
470            * Thuban/Model/classification.py: Class documentation. Renaming
471            of methods with Stroke to Line. Groups are stored in a single
472            list with the default as the first element. Groups are searched
473            in the order they appear in the list.
474    
475            * Thuban/Model/color.py: Documentation.
476    
477            * Thuban/Model/layer.py (Layer): Add GetFieldType to retreive
478            the kind of data represented by a field.
479    
480            * Thuban/Model/load.py (ProcessSession): Use proper string
481            conversion function; fixes RTbug #1713.
482    
483            * Thuban/Model/save.py (Saver): Store field type information.
484    
485            * Thuban/Model/table.py: Put FIELDTYPE constants in common.py.
486            (Table): Add field_info_by_name() to retrieve field information
487            by specifying the field name, not the number.
488    
489            * Thuban/UI/mainwindow.py: Function name changes.
490    
491            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
492            get the layer classification once. Don't try to classify
493            values when the field is None: just use the default properties.
494    
495            * Thuban/UI/view.py: Function name changes.
496    
497            * Doc/thuban.dtd: Add field_type attribute to a classification.
498    
499    2003-03-04  Bernhard Herzog  <[email protected]>
500    
501            * Doc/thuban.dtd: Use correct syntax for optional attributes. Make
502            the fill and stroke layer attributes optional with suitable
503            default values. Add the stroke_width layer attribute. Use correct
504            syntax for empty elements. Make the attribute list for labels
505            refer to the label element.
506    
507    2003-03-04  Bernhard Herzog  <[email protected]>
508    
509            * setup.py (thuban_build_py.build): Add a comment about distutils in
510            Python 2.3 containing some of the functionality we implement in
511            setup.py ourselves.
512    
513            * Thuban/UI/classifier.py (ClassGrid.__init__): Set the table
514            before the selection mode. Doing it the other way round triggers
515            an assertion in wxWindows.
516    
517            * Thuban/Model/save.py (escape): Fix typo in doc-string
518    
519            * Thuban/Model/classification.py: Remove unnecessary wxPython
520            import
521    
522    2003-03-04  Jonathan Coles   <[email protected]>
523    
524            * Thuban/Model/classification.py (ClassGroupRange.GetProperties):
525            Parameter 'value' should default to None.
526    
527            * Thuban/UI/mainwindow.py: Use Layer.GetClassification() since
528            the class attribute __classification is now private.
529    
530            * Thuban/UI/classifier.py (ClassGrid): Moved OnCellDClick() from
531            Classifier to ClassGrid. Added support for removing selected rows,
532            which including code for keeping track of when cells are selected,
533            and deselected.
534            (ClassTable): Support for added/removing rows. Fixed a problem
535            with __ParseInput whereby it would not allow strings (only numbers)
536            to be entered.
537            (Classifier): Added button and supporting code for removing
538            selected rows.
539    
540    2003-02-27  Jonathan Coles   <[email protected]>
541    
542            * Thuban/common.py: Moved color conversion functions into
543            Thuban/UI/common.py.
544            (Str2Num): Now converts the float (not the string) to a long/int
545            so that an exception isn't thrown.
546    
547            * Thuban/UI/common.py: Common functions used in several UI modules
548    
549            * Thuban/Model/classification.py: Changed the class hierarchy
550            so that a Classification consists of Groups which return
551            Properties when a value matches a Group.
552    
553            * Thuban/Model/layer.py: Fixed name resolution problem.
554    
555            * Thuban/Model/load.py: Use new Classification and Group functions.
556    
557            * Thuban/Model/save.py (Saver.write_attribs): Fixes a test case
558            failure.
559            (Saver.write_classification): Use new Classification and Group
560            functions.
561    
562            * Thuban/UI/classifier.py: Changes to use new Classification and Group
563            functions. Fix to create a tuple with a single value instead of
564            simply returning the value.
565    
566            * Thuban/UI/renderer.py: Use new Classification and Group functions.
567            Use common.py functions.
568    
569            * Thuban/UI/tree.py: Use common.py functions.
570            
571            * test/test_classification.py: Use new Classification and Group
572            classes.
573    
574    2003-02-24  Jonathan Coles   <[email protected]>
575    
576            * Thuban/common.py (Color2wxColour, wxColour2Color): Conversion
577            functions from Thuban color objects to wxWindow colour objects.
578    
579            * Thuban/Model/classification.py (Classification): Renamed
580            GetProperties() to GetClassData(). Used the new iterator
581            in TreeInfo().
582            (ClassIterator): Iterator implementation to iterate over the
583            ClassData objects in a classification object.
584    
585            * Thuban/Model/save.py (Saver.write_classificaton): Uses
586            the new iterator to save the classification information.
587    
588            * Thuban/UI/classifier.py (SelectPropertiesDialog): Support
589            for changing the stroke and fill colors and previewing the
590            changes.
591    
592            * Thuban/UI/mainwindow.py (MainWindow.OpenSession,
593            MainWindow.SaveSessionAs): Text string changes so the dialogs
594            have more meaningful titles.
595    
596            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Change
597            Classification method name from GetProperties to GetClassData.
598    
599            * Thuban/UI/view.py (MapCanvas.find_shape_at): Use method calls
600            instead of accessing now non-existent class variables.
601    
602    2003-02-24  Bernhard Herzog  <[email protected]>
603    
604            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Remove
605            unneeded Shape() call. Rendering is substantially faster without
606            it and it avoids some problems with broken shape files.
607    
608  2003-02-20  Frank Koormann   <[email protected]>  2003-02-20  Frank Koormann   <[email protected]>
609    
610          Force minimal size of identify and label dialogs. The autosizing          Force minimal size of identify and label dialogs. The autosizing

Legend:
Removed from v.423  
changed lines
  Added in v.593

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26