/[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 523 by jan, Wed Mar 12 17:08:23 2003 UTC revision 554 by jonathan, Tue Mar 25 16:20:51 2003 UTC
# Line 1  Line 1 
1    2003-03-25  Jonathan Coles   <[email protected]>
2    
3            * setup.py: Added custom script bdist_rpm_build_script so that
4            when the rpm is built the path to wx-config is correct.
5    
6            * setup.cfg: Added line saying to use the custom build script
7    
8    2003-03-20  Jonathan Coles   <[email protected]>
9    
10            Initial implementation of the Legend.
11    
12            * Thuban/UI/legend.py: New. Creates a window that shows the map's
13            Legend information and allows the user to add/modify classifications
14            and how the layers are drawn on the map.
15    
16            * setup.py: New command 'build_docs' which currently uses
17            happydoc to generate html documentation for Thuban.
18    
19            * Thuban/Model/classification.py (ClassGroup.GetDisplayText): New.
20            Returns a string which is appropriately describes the group.
21    
22            * Thuban/Model/layer.py (Layer.SetClassification): Generate a
23            LAYER_CHANGED event instead of a LAYER_LEGEND_CHANGED event.
24    
25            * Thuban/Model/map.py (Map): Rename messages and use new, more
26            specific, messages.
27    
28            * Thuban/Model/messages.py: New message to indicate that a layer's
29            data has changed (LAYER_CHANGED). New map messages to indicate
30            when layers have been added/removed/changed or if the stacking order
31            of the layers has changed.
32    
33            * Thuban/Model/session.py: Rename and use new messages.
34    
35            * Thuban/UI/classifier.py: Remember if any changes have actually
36            been applied so that if the dialog is cancelled without an application
37            of changes we don't have to set a new classification.
38            (ClassDataPreviewer): Pulled out the window specific code and put it
39            ClassDataPreviewWindow. ClassDataPreviewer can then be used to draw
40            symbols on any DC.
41            
42            * Thuban/UI/mainwindow.py: New code to open the legend.
43    
44            * Thuban/UI/view.py: Use new message names.
45    
46    2003-03-19  Jonathan Coles   <[email protected]>
47    
48            * Thuban/UI/main.py (verify_versions): New. Checks the versions
49            of Python, wxPython, and some other libraries.
50    
51            * extensions/thuban/wxproj.cpp (check_version): Checks the given
52            version against what wxproj was compiled with.
53            (check_version_gtk): If wxproj was compiled with gtk then check
54            the given version against the version of the gtk library
55            currently being used.
56    
57    2003-03-14  Bernhard Herzog  <[email protected]>
58    
59            * test/test_command.py: Run the tests when the module is run as a
60            script
61    
62    2003-03-14  Bernhard Herzog  <[email protected]>
63    
64            Implement selection of multiple selected shapes in the same layer:
65    
66            - Introduce a new class to hold the selection. This basically
67              replaces the interactor which was nothing more than the
68              selection anyway. A major difference is of course that the new
69              selection class supports multiple selected shapes in one layer
70            
71            - Move the object that represents the selection from the
72              application to the canvas. The canvas is a better place than the
73              application because the selection represents which shapes and
74              layer of the map displayed by the canvas are selected and
75              affects how the map is drawn.
76    
77            - Make the selection and its messages publicly available through
78              the mainwindow.
79    
80            - The non-modal dialogs do not get a reference to the interactor
81              anymore as they can simply refer to their parent, the
82              mainwindow, for the what the interactor had to offer.
83    
84            * Thuban/UI/selection.py: New module with a class to represent the
85            selection.
86    
87            * Thuban/UI/messages.py (SELECTED_TABLE, SELECTED_MAP): Remove
88            these unused messages
89    
90            * Thuban/UI/application.py (ThubanApplication.OnInit)
91            (ThubanApplication.OnExit, ThubanApplication.SetSession): The
92            interactor is gone now.
93            (ThubanApplication.CreateMainWindow): There is no interactor
94            anymore so we pass None as the interactor argument for now for
95            compatibility.
96    
97            * Thuban/UI/view.py (MapCanvas.delegated_messages)
98            (MapCanvas.Subscribe, MapCanvas.Unsubscribe): In Subscribe and
99            Unsubscribe, delegate messages according to the delegated_messages
100            class variable.
101            (MapCanvas.__getattr__, MapCanvas.delegated_methods): Get some
102            attributes from instance variables as described with the
103            delegated_methods class variable.
104            (MapCanvas.__init__): New instance variable selection holding the
105            current selection
106            (MapCanvas.do_redraw): Deal with multiple selected shapes. Simply
107            pass them on to the renderer
108            (MapCanvas.SetMap): Clear the selection when a different map is
109            selected.
110            (MapCanvas.shape_selected): Simple force a complete redraw. The
111            selection class now takes care of only issueing SHAPES_SELECTED
112            messages when the set of selected shapes actually does change.
113            (MapCanvas.SelectShapeAt): The selection is now managed in
114            self.selection
115    
116            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages)
117            (MainWindow.Subscribe, MainWindow.Unsubscribe): In Subscribe and
118            Unsubscribe, delegate messages according to the delegated_messages
119            class variable.
120            (MainWindow.delegated_methods, MainWindow.__getattr__): Get some
121            attributes from instance variables as described with the
122            delegated_methods class variable.
123            (MainWindow.__init__): The interactor as ivar is gone. The
124            parameter is still there for compatibility. The selection messages
125            now come from the canvas.
126            (MainWindow.current_layer, MainWindow.has_selected_layer):
127            Delegate to the the canvas.
128            (MainWindow.LayerShowTable, MainWindow.Classify)
129            (MainWindow.identify_view_on_demand): The dialogs don't need the
130            interactor parameter anymore.
131    
132            * Thuban/UI/tableview.py (TableFrame.__init__)
133            (LayerTableFrame.__init__, LayerTableFrame.OnClose)
134            (LayerTableFrame.row_selected): The interactor is gone. It's job
135            from the dialog's point of view is now done by the mainwindow,
136            i.e. the parent. Subscribe to SHAPES_SELECTED instead
137            of SELECTED_SHAPE
138            
139            * Thuban/UI/dialogs.py (NonModalDialog.__init__): The interactor
140            is gone. It's job from the dialog's point of view is now done by
141            the mainwindow, i.e. the parent.
142            
143            * Thuban/UI/classifier.py (Classifier.__init__): The interactor is
144            gone. It's job from the dialog's point of view is now done by the
145            mainwindow, i.e. the parent.
146    
147            * Thuban/UI/tree.py (SessionTreeView.__init__): The interactor is
148            gone. It's job from the dialog's point of view is now done by the
149            mainwindow, i.e. the parent.
150            (SessionTreeCtrl.__init__): New parameter mainwindow which is
151            stored as self.mainwindow. The mainwindow is need so that the tree
152            can still subscribe to the selection messages.
153            (SessionTreeCtrl.__init__, SessionTreeCtrl.unsubscribe_all)
154            (SessionTreeCtrl.update_tree, SessionTreeCtrl.OnSelChanged): The
155            selection is now accessible through the mainwindow. Subscribe to
156            SHAPES_SELECTED instead of SELECTED_SHAPE
157    
158            * Thuban/UI/identifyview.py (IdentifyView.__init__): Use the
159            SHAPES_SELECTED message now.
160            (IdentifyView.selected_shape): Now subscribed to SHAPES_SELECTED,
161            so deal with multiple shapes
162            (IdentifyView.__init__, IdentifyView.OnClose): The interactor is
163            gone. It's job from the dialog's point of view is now done by the
164            mainwindow, i.e. the parent.
165    
166            * Thuban/UI/controls.py (RecordListCtrl.fill_list): The second
167            parameter is now a list of shape ids.
168            (RecordTable.SetTable): The second parameter is now a list of
169            indices.
170    
171            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Rename the
172            selected_shape parameter and ivar to selected_shapes. It's now a
173            list of shape ids.
174            (MapRenderer.draw_label_layer): Deal with multiple selected
175            shapes. Rearrange the code a bit so that the setup and shape type
176            distinctions are only executed once.
177    
178            * test/test_selection.py: Test cases for the selection class
179    
180    2003-03-11  Jonathan Coles   <[email protected]>
181    
182            * Thuban/Model/load.py: Temporary fix so that the xml reader
183            doesn't cause Thuban to crash.
184    
185            * Thuban/Model/layer.py: Handle the cyclic references between
186            a layer and its classification better, and be sure to disconnect
187            the classification from the layer when the layer is destroyed
188            so that we don't maintain a cyclic reference that may not be
189            garbage collected.
190    
191            * Thuban/Model/classification.py: See comment for layer.py.
192    
193  2003-03-12  Jan-Oliver Wagner <[email protected]>  2003-03-12  Jan-Oliver Wagner <[email protected]>
194    
195          * HOWTO-Release: New. Information on the steps for releasing          * HOWTO-Release: New. Information on the steps for releasing

Legend:
Removed from v.523  
changed lines
  Added in v.554

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26