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

Legend:
Removed from v.405  
changed lines
  Added in v.567

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26