/[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 478 by jonathan, Thu Mar 6 16:45:32 2003 UTC revision 672 by bh, Tue Apr 15 18:20:53 2003 UTC
# Line 1  Line 1 
1    2003-04-15  Bernhard Herzog  <[email protected]>
2    
3            First stab at internationalized messages:
4    
5            * Thuban/__init__.py (_): Implement the translation function for
6            real using the python gettext module.
7    
8            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
9            translate empty strings.
10    
11            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
12            Add a missing space to a warning message
13    
14            * po/README: New. Notes about the management of the translation
15            files.
16    
17            * po/Makefile: New. Makefile to help manage the translation files.
18    
19            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
20    
21            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
22            translations and support files in po/
23    
24            * setup.py (data_files): Add the *.mo files to the data_files too
25    
26            * README: Add note about the translations when building from CVS
27    
28    2003-04-14  Jonathan Coles   <[email protected]>
29    
30            * Thuban/UI/dock.py: Fixes some window resizing problems most
31            noticable under windows. Always assume the button bitmaps will
32            be there. Code clean up.
33            (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
34            images for the dock/undock button to the same images.
35            Work around for RTbug #1801.
36    
37            * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
38            be allowed to grow within the sizer. Fixes a bug under Windows
39            where the toolbar wasn't being drawn.
40    
41    2003-04-14  Frank Koormann   <[email protected]>
42    
43            * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
44            Updated design to try to make the button functionality more
45            transparent.
46    
47    2003-04-14  Jonathan Coles   <[email protected]>
48    
49            * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
50            finalize the intialization of the panel.
51    
52            * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
53            creation of the panel. Should be the last thing called in the
54            initializer of a subclass.
55    
56            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
57            set the current selections in the combo boxes. This is needed
58            under Windows.
59    
60            * Thuban/UI/classifier.py (Classifier.__init__): Add a top
61            level panel to the dialog so that the background colors are
62            consistent under Windows.
63    
64    2003-04-11  Jonathan Coles   <[email protected]>
65    
66            * Thuban/UI/classgen.py: Change color ramps to start at white
67            not black.
68    
69            * Thuban/UI/legend.py: Enable/disable the legend buttons when
70            the legend changes. Fixes RTbug #1793.
71    
72            * test/test_classification.py: Added test for copying of
73            classifications.
74    
75    2003-04-11  Jonathan Coles   <[email protected]>
76    
77            * Thuban/UI/resource.py: New. Centralize the loading of resources
78            such as bitmaps.
79    
80            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
81            added images to the move buttons, added 'reverse' button.
82            (CustomRampPanel.__init__): Added images to the move buttons.
83            (GreyRamp): New. Generates a ramp from white to black.
84            (HotToColdRamp): New. Generates a ramp from cold to hot colors.
85    
86            * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
87            ID_PROPERTY_*.
88            (Classifier.__init__): Minor changes to the layout.
89            (Classifier._OnTitleChanged): Listen for when the user edits the
90            title and update the dialog's title and the layer's title.
91    
92            * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
93    
94            * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
95            (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
96            if the layer's title changes.
97    
98            * Thuban/UI/mainwindow.py: Added new menu item and associated code
99            to open a dialog to rename the map.
100            (MainWindow): Use new resource class to import bitmaps.
101    
102    2003-04-11  Jonathan Coles   <[email protected]>
103    
104            * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
105            Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
106            Resources/Bitmaps/group_use_none.xpm,
107            Resources/Bitmaps/group_use_not.xpm,
108            Resources/Bitmaps/hide_layer.xpm,
109            Resources/Bitmaps/layer_properties.xpm,
110            Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
111            Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
112            New.
113    
114    2003-04-10  Jonathan Coles   <[email protected]>
115    
116            * Thuban/Model/classification.py: (ClassGroupRange.__init__):
117            Should pass group to ClassGroup constructor.
118    
119    2003-04-10  Jonathan Coles   <[email protected]>
120    
121            * Thuban/Model/classification.py: (ClassGroup): Move all the common
122            methods of the derived classes ([Set|Get]Properties(), __eq__, __ne__)
123            here. Implement SetVisible(), IsVisible().
124            (ClassGroup.__init__): Add group parameter which acts as a copy
125            constructor.
126    
127            * Thuban/UI/classifier.py (ClassTable): Add a new column for the
128            "Visible" check boxes.
129            (Classifier): Rename the buttons and refactor the code to match
130            the new labels.
131    
132            * Thuban/UI/legend.py: Classify button is now called "Properties".
133            Refactored the code to change variable names.
134            (LegendTree.__FillTreeLayer): Only list a group if it is visible.
135    
136            * Thuban/UI/mainwindow.py: MainWindow.OpenClassifier renamed to
137            MainWindow.OpenLayerProperties. MainWindow.LayerEditProperties
138            renamed to MainWindow.LayerEditProperties.
139            (MainWindow.ToggleLegend): Don't include map name in legend title.
140            (MainWindow.SetMap): Added the map name to the window title.
141            (MainWindow.LayerFillColor, MainWindow.LayerTransparentFill,
142            MainWindow.LayerOutlineColor, MainWindow.LayerNoOutline): Removed.
143            Functionality is found in the layer properties dialog.
144    
145            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
146            draw visible groups.
147    
148    2003-04-09  Jonathan Coles   <[email protected]>
149    
150            * Thuban/UI/classgen.py: Modifications to allow simple
151            addition and selection of new color schemes.
152            (MonochromaticRamp): New. Generates a ramp between two colors.
153            (RedRamp): New. Generates a ramp of all red.
154            (GreenRamp): New. Generates a ramp of all green.
155            (BlueRamp): New. Generates a ramp of all blue.
156    
157    2003-04-09  Jonathan Coles   <[email protected]>
158    
159            * Thuban/Model/classification.py (Classification.__deepcopy__):
160            Need to copy over field and fieldType attributes.
161    
162            * Thuban/Model/table.py (Table.field_range): New. Retrive the
163            maximum and minimum values over the entire table for a given
164            field.
165            (Table.GetUniqueValues): New. Retrieve all the unique values
166            in the table for a given field.
167    
168            * Thuban/UI/classgen.py: Renamed GenRangePanel to GenUniformPanel.
169            (GenUniquePanel): New. Controls to allow the user to select
170            which unique field values they would like in the classification.
171            (CustomRampPanel): Code that was in ClassGenDialog that allows
172            the user to select the properties for a custom ramp.
173            (ClassGenerator.GenUniformDistribution): Was called GenerateRanges.
174    
175            * Thuban/UI/classifier.py: Removed a lot of debugging code.
176            (Classifier._SetClassification): Callback method so that the
177            class generator can set the classification in the grid.
178            (ClassGroupPropertiesCtrl): New. Encapsulates the drawing and
179            editing of a group properties class into a wxWindows control.
180    
181            * Thuban/UI/dock.py: It was decided that if the user closes
182            a dockable window the window should simply hide itself. That
183            way if the user wants to show the dock again it appears in the
184            same place as it was when it was closed.
185            (DockableWindow.Destroy): Call renamed method OnDockDestroy().
186            (DockableWindow._OnButtonClose): Hide the window instead of
187            destroying it.
188            (DockableWindow._OnClose): Hide the window instead of
189            destroying it.
190    
191            * Thuban/UI/legend.py (LegendTree): Use a private method to
192            consistently set the font and style of the text. Fixes RTbug #1786.
193    
194            * Thuban/UI/mainwindow.py: Import just the Classifier class.
195    
196    2003-04-07  Bernhard Herzog  <[email protected]>
197    
198            * Thuban/UI/mainwindow.py (main_menu): Move the toggle_legend item
199            to the map module
200    
201    2003-04-07  Bernhard Herzog  <[email protected]>
202    
203            * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree): Removed in
204            favor of ToggleSessionTree
205            (MainWindow.ToggleSessionTree): New method to toggle visibility of
206            the session tree.
207            (MainWindow.SessionTreeShown): New method to return whether the
208            session tree is currently shown.
209            (MainWindow.ToggleLegend): New method to toggle visibility of the
210            legend
211            (MainWindow.ShowLegend): Implement in terms of ToggleLegend and
212            LegendShown
213            (MainWindow.LegendShown): New method to return whether the legend
214            is currently shown.
215            (_method_command): Add checked parameter so we can define check
216            menu items
217            (_has_tree_window_shown, _has_legend_shown): Use the appropriate
218            mainwindow methods.
219            (show_session_tree, show_legend commands): Removed.
220            (toggle_session_tree, toggle_legend commands): New commands to
221            toggle the visibility of the dialogs
222    
223    2003-04-07  Jonathan Coles   <[email protected]>
224    
225            * Thuban/UI/classgen.py: Fix Windows problem.
226    
227            * Thuban/UI/dock.py: Fix Windows problem.
228    
229            * Thuban/UI/mainwindow.py: Use False instead of false.
230            (MainWindow.ShowLegend): Remove unnecessary switch parameter.
231    
232    2003-04-07  Jonathan Coles   <[email protected]>
233    
234            Since we now say that the order of the groups in a classification
235            matters, it makes sense to be able to manipulate that order. Most
236            of the changes to Thuban/Model/classification.py are to that end.
237    
238            * Thuban/Model/classification.py (Classification.AppendGroup,
239            Classification.InsertGroup, Classification.ReplaceGroup,
240            Classification.RemoveGroup, Classification.GetGroup): Do as the
241            names imply.
242            (Classification.FindGroup): This was called GetGroup, but GetGroup
243            takes an index, while FindGroup takes a value.
244            (Classification.__deepcopy__): Copy all the groups, BUT NOT THE LAYER
245            REFERENCE. Currently there is a cyclic reference between the layer
246            and its classification. If the classification doesn't need to know
247            its owning layer we can change this, since it may make sense to be
248            able to use the same classification with different layers.
249    
250            * Thuban/Model/load.py: Use Classification.AppendGroup(), not AddGroup()
251    
252            * Thuban/UI/classgen.py: Use Classification.AppendGroup(),
253            not AddGroup()
254    
255            * Thuban/UI/classifier.py: Now that we can depend on the order in
256            a Classification and have methods to manipulate that order we don't
257            need to use our own data structures in the grid. We can simply make
258            the grid/table access the information they need from a copy of
259            the classification object.
260            (Classifier._OnCloseBtn): Event handler for when the user clicks
261            'Close'. This is needed so if the user applies changes and then
262            continues to change the table the user has the option of discarding
263            the most recent changes and keeping what they applied.
264    
265            * Thuban/UI/mainwindow.py: Put "Show Legend" and "Show Session Tree"
266            into the same group.
267    
268            * extensions/thuban/wxproj.cpp (check_version): If Thuban is compiled
269            with a really old version of proj, PJ_VERSION won't even be defined.
270            If it isn't defined then just compile so that the function always
271            returns Py_False.
272    
273            * test/test_classification.py: Fix tests to use the renamed methods.
274            Still need to write tests for the new methods.
275    
276    2003-04-04  Jonathan Coles   <[email protected]>
277    
278            * Thuban/UI/classifier.py (Classifier.__SelectField): Move the
279            call to SetSelection out of the method and before the call
280            to __SelectField in __init__. This prevents a recursion of events
281            when _OnFieldSelect is triggered by the user.
282    
283    2003-04-04  Jonathan Coles   <[email protected]>
284    
285            * Thuban/Model/classification.py: Rename Color.None to
286            Color.Transparent.
287            (ClassGroupProperties.SetLineColori, ClassGroupProperties.SetFill):
288            Don't bother copying the color, since Colors are immutable.
289    
290            * Thuban/Model/color.py, Thuban/Model/layer.py, Thuban/Model/load.py,
291            Thuban/UI/classifier.py, Thuban/UI/mainwindow.py,
292            Thuban/UI/renderer.py, Thuban/UI/view.py:
293            Rename Color.None to Color.Transparent.
294        
295            * test/test_classification.py, test/test_load.py: Rename Color.None
296            to Color.Transparent.
297    
298    2003-04-04  Jonathan Coles   <[email protected]>
299    
300            * Thuban/Model/classification.py: Fix assert calls.
301            (ClassGroupProperties.SetLineColor, ClassGroupProperties.SetFill):
302            Copy the color parameter rather than hold onto a reference.
303    
304            * Thuban/Model/color.py (Color.__copy__, Color.__deepcopy): Copy
305            the color object.
306            (NoColor.__copy__, NoColor.__deepcopy): Return 'self' so that we
307            are sure there exists only one refernce to Color.None in the system.
308            This allows us to use 'is' rather than the comparision functions.
309            
310            * Thuban/Model/save.py: Fix assert calls.
311            
312            * Thuban/UI/classifier.py: Fix assert calls.
313            (ClassGrid._OnCellDClick): Call up to the classifier to open the
314            dialog to edit the groups properties.
315            (ClassGrid._OnCellResize): Make sure that the scollbars are drawn
316            correctly if a cell is resized.
317            (ClassTable.SetClassification): New. Changes the classification
318            that is in the table.
319            (ClassTable.__SetRow): Allow groups to be prepended.
320            (Classifier): New code for opening the EditProperties and
321            GenerateRanges dialogs.
322            (SelectPropertiesDialog.__GetColor): Only set the color in the
323            color dialog if the current color is not None.
324            
325            * Thuban/UI/dock.py: Fix assert calls.
326            
327            * Thuban/UI/legend.py: Fix assert calls.
328            
329            * Thuban/UI/renderer.py: Fix assert calls.
330            
331            * Thuban/UI/classgen.py (ClassGenDialog): Dialog for generating
332            classifications.
333            (GenRangePanel): Panel specific to range generation.
334            (GenSingletonPanel): Panel specific to singleton generation.
335            (ClassGenerator): Class responsible for actually generating
336            the classification from the data gathered in the dialog box.
337            (PropertyRamp): Generates properties whose values range from
338            a starting property to an ending property.
339    
340    2003-04-03  Bernhard Herzog  <[email protected]>
341    
342            * test/support.py (print_garbage_information): New function that
343            prints information about still connected messages and memory
344            leaks.
345            (run_suite): Removed.
346            (run_tests): New function for use as a replacement of
347            unittest.main in the test_* files. This one calls
348            print_garbage_information at the end.
349    
350            * test/runtests.py (main): Use support.print_garbage_information
351    
352            * test/test_layer.py: Use support.run_tests instead of
353            unittest.main so we get memory leak information
354            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
355            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
356            (TestLayerLegend.test_visibility): Call the layer's Destroy method
357            to fix a memory leak.
358    
359            * test/test_classification.py: Use support.run_tests instead of
360            unittest.main so we get memory leak information
361            (TestClassification.test_classification): Call the layer's Destroy
362            method to fix a memory leak.
363    
364    2003-04-02  Bernhard Herzog  <[email protected]>
365    
366            * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):
367            Handle the reference counts of the return value and errors in
368            PyArg_ParseTuple correctly.
369    
370            * Thuban/UI/application.py (ThubanApplication.OpenSession): Make
371            sure the filename is absolute to avoid problems when saving the
372            session again
373    
374            * Thuban/Model/table.py: Remove unnecessary import. Fix a typo.
375    
376    2003-04-01  Jonathan Coles   <[email protected]>
377    
378            *  Thuban/UI/renderer.py (MapRenderer.draw_point_shape): Check
379            that there actually are points in the returned list of points
380            before trying to index into the list. The list may be empty if
381            the shape is a Null Shape.
382    
383    2003-04-01  Bernhard Herzog  <[email protected]>
384    
385            * test/test_map.py: Don't use from <module> import *
386    
387    2003-04-01  Jonathan Coles   <[email protected]>
388    
389            * Thuban/Model/session.py: Use LAYER_CHANGED instead of
390            LAYER_LEGEND_CHANGED
391    
392            * Thuban/UI/dock.py (DockableWindow._OnButtonClose): Call
393            self.Destroy() to close the window after yesterday's changes.
394    
395            * test/test_map.py, test/test_session.py: Fix messages that
396            are sent from maps and layers.
397    
398    2003-03-31  Jonathan Coles   <[email protected]>
399    
400            * Thuban/UI/classifier.py: Commented out some debugging statements.
401            (ClassDataPreviewer.Draw): Draw rectangles for polygon layers per
402            RTbug #1769.
403    
404            * Thuban/UI/dock.py (DockableWindow.UnDock): Restore size and
405            position (although position doesn't work yet under GTK).
406            (DockableWindow.Destroy): New. Called when the window must be
407            closed. Namely needed when the DockFrame closes and must close
408            its children.
409            (DockFrame): Listen for EVT_CLOSE and destroy all children.
410    
411            * Thuban/UI/legend.py (LegendPanel.Destroy): New. Cleans up
412            when then window is told to close.
413            (LegendTree._OnMsgLayerChanged): Fixes a seg fault bug. See
414            comment in source for more info.
415    
416            * Thuban/UI/main.py: Show the legend by default when Thuban starts.
417    
418            * Thuban/UI/mainwindow.py: Renamed OnClose to _OnClose for
419            symmetry with other such methods.
420            (MainWindow.ShowLegend): Show the legend docked by default.
421    
422    2003-03-28  Jonathan Coles   <[email protected]>
423    
424            * Thuban/UI/classifier.py: Support for highlighting a specific
425            group within the grid when the classification dialog is opened.
426            Also contains a lot of debugging printouts which will later
427            be removed.
428    
429            * Thuban/UI/dock.py: Complete rework on the dock code so that
430            that it is fairly removed from the rest of the Thuban application.
431            It is easy to add new docks which the rest of the program having
432            to be aware of them.
433    
434            * Thuban/UI/legend.py: Modifications to support selecting a
435            specific group in the classification dialog. Changed how layers
436            are drawn when the layer is visible/invisible.
437    
438            * Thuban/UI/mainwindow.py: Removed legend specific code and
439            replaced it with calls to the new dock code.
440    
441            * Thuban/UI/renderer.py (MapRenderer.__init__): Added assert
442            to check if scale > 0. Trying to track down a divide by zero.
443    
444    2003-03-26  Jonathan Coles   <[email protected]>
445    
446            * Thuban/UI/legend.py: Removed unnecessary LegendDialog class.
447            (LegendPanel): Removed _OnDock()/_OnUnDock() methods which are
448            now part of DockableWindow.
449            (LegendPanel.DoOnSelChanged): Select the current layer in the
450            map.
451            (LegendTree._OnSelChanged): Call LegendPanel.DoOnSelChanged()
452            with the selected layer and/or group.
453    
454    2003-03-26  Jonathan Coles   <[email protected]>
455    
456            This putback contains the code for dockable windows. There is
457            no support in wxWindows as of this date for windows that can
458            attach themselves to other windows.
459    
460            The current model contains a DockableWindow which has a parent
461            window for when it is detached and a dock window that it puts
462            its contents in when it is docked. The contents of a DockableWindow
463            must be a DockPanel. DockPanel itself derives from wxPanel.
464    
465            * Thuban/Model/layer.py (Layer.ClassChanged): Send a LAYER_CHANGED
466            message, not a LAYER_LEGEND_CHANGED message.
467    
468            * Thuban/Model/map.py (Map): Forward LAYER_CHANGED messages.
469    
470            * Thuban/UI/classifier.py (Classifier.__init__): Use wxADJUST_MINSIZE
471            as one of the style properties for the fieldTypeText item to
472            be sure that its size is correct when the text changes.
473    
474            * Thuban/UI/dock.py: New. Classes for the DockPanel and
475            DockableWindow.
476    
477            * Thuban/UI/legend.py: Added some more buttons and made the
478            LegendPanel a DockPanel.
479    
480            * Thuban/UI/mainwindow.py: Added sash windows to the main window
481            and supporting functions for manipulating the sashes.
482            (MainWindow.ShowLegend): Create a DockableWindow with the
483            LegendPanel as the contents.
484    
485            * Thuban/UI/messages.py: Added DOCKABLE_* messages
486    
487            * Thuban/UI/view.py (MapCanves.SetMap): Listen for LAYER_CHANGED,
488            not LAYER_LEGEND_CHANGED, messages.
489    
490    2003-03-25  Jonathan Coles   <[email protected]>
491    
492            * setup.py: Added custom script bdist_rpm_build_script so that
493            when the rpm is built the path to wx-config is correct.
494    
495            * setup.cfg: Added line saying to use the custom build script
496    
497    2003-03-20  Jonathan Coles   <[email protected]>
498    
499            Initial implementation of the Legend.
500    
501            * Thuban/UI/legend.py: New. Creates a window that shows the map's
502            Legend information and allows the user to add/modify classifications
503            and how the layers are drawn on the map.
504    
505            * setup.py: New command 'build_docs' which currently uses
506            happydoc to generate html documentation for Thuban.
507    
508            * Thuban/Model/classification.py (ClassGroup.GetDisplayText): New.
509            Returns a string which is appropriately describes the group.
510    
511            * Thuban/Model/layer.py (Layer.SetClassification): Generate a
512            LAYER_CHANGED event instead of a LAYER_LEGEND_CHANGED event.
513    
514            * Thuban/Model/map.py (Map): Rename messages and use new, more
515            specific, messages.
516    
517            * Thuban/Model/messages.py: New message to indicate that a layer's
518            data has changed (LAYER_CHANGED). New map messages to indicate
519            when layers have been added/removed/changed or if the stacking order
520            of the layers has changed.
521    
522            * Thuban/Model/session.py: Rename and use new messages.
523    
524            * Thuban/UI/classifier.py: Remember if any changes have actually
525            been applied so that if the dialog is cancelled without an application
526            of changes we don't have to set a new classification.
527            (ClassDataPreviewer): Pulled out the window specific code and put it
528            ClassDataPreviewWindow. ClassDataPreviewer can then be used to draw
529            symbols on any DC.
530            
531            * Thuban/UI/mainwindow.py: New code to open the legend.
532    
533            * Thuban/UI/view.py: Use new message names.
534    
535    2003-03-19  Jonathan Coles   <[email protected]>
536    
537            * Thuban/UI/main.py (verify_versions): New. Checks the versions
538            of Python, wxPython, and some other libraries.
539    
540            * extensions/thuban/wxproj.cpp (check_version): Checks the given
541            version against what wxproj was compiled with.
542            (check_version_gtk): If wxproj was compiled with gtk then check
543            the given version against the version of the gtk library
544            currently being used.
545    
546    2003-03-14  Bernhard Herzog  <[email protected]>
547    
548            * test/test_command.py: Run the tests when the module is run as a
549            script
550    
551    2003-03-14  Bernhard Herzog  <[email protected]>
552    
553            Implement selection of multiple selected shapes in the same layer:
554    
555            - Introduce a new class to hold the selection. This basically
556              replaces the interactor which was nothing more than the
557              selection anyway. A major difference is of course that the new
558              selection class supports multiple selected shapes in one layer
559            
560            - Move the object that represents the selection from the
561              application to the canvas. The canvas is a better place than the
562              application because the selection represents which shapes and
563              layer of the map displayed by the canvas are selected and
564              affects how the map is drawn.
565    
566            - Make the selection and its messages publicly available through
567              the mainwindow.
568    
569            - The non-modal dialogs do not get a reference to the interactor
570              anymore as they can simply refer to their parent, the
571              mainwindow, for the what the interactor had to offer.
572    
573            * Thuban/UI/selection.py: New module with a class to represent the
574            selection.
575    
576            * Thuban/UI/messages.py (SELECTED_TABLE, SELECTED_MAP): Remove
577            these unused messages
578    
579            * Thuban/UI/application.py (ThubanApplication.OnInit)
580            (ThubanApplication.OnExit, ThubanApplication.SetSession): The
581            interactor is gone now.
582            (ThubanApplication.CreateMainWindow): There is no interactor
583            anymore so we pass None as the interactor argument for now for
584            compatibility.
585    
586            * Thuban/UI/view.py (MapCanvas.delegated_messages)
587            (MapCanvas.Subscribe, MapCanvas.Unsubscribe): In Subscribe and
588            Unsubscribe, delegate messages according to the delegated_messages
589            class variable.
590            (MapCanvas.__getattr__, MapCanvas.delegated_methods): Get some
591            attributes from instance variables as described with the
592            delegated_methods class variable.
593            (MapCanvas.__init__): New instance variable selection holding the
594            current selection
595            (MapCanvas.do_redraw): Deal with multiple selected shapes. Simply
596            pass them on to the renderer
597            (MapCanvas.SetMap): Clear the selection when a different map is
598            selected.
599            (MapCanvas.shape_selected): Simple force a complete redraw. The
600            selection class now takes care of only issueing SHAPES_SELECTED
601            messages when the set of selected shapes actually does change.
602            (MapCanvas.SelectShapeAt): The selection is now managed in
603            self.selection
604    
605            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages)
606            (MainWindow.Subscribe, MainWindow.Unsubscribe): In Subscribe and
607            Unsubscribe, delegate messages according to the delegated_messages
608            class variable.
609            (MainWindow.delegated_methods, MainWindow.__getattr__): Get some
610            attributes from instance variables as described with the
611            delegated_methods class variable.
612            (MainWindow.__init__): The interactor as ivar is gone. The
613            parameter is still there for compatibility. The selection messages
614            now come from the canvas.
615            (MainWindow.current_layer, MainWindow.has_selected_layer):
616            Delegate to the the canvas.
617            (MainWindow.LayerShowTable, MainWindow.Classify)
618            (MainWindow.identify_view_on_demand): The dialogs don't need the
619            interactor parameter anymore.
620    
621            * Thuban/UI/tableview.py (TableFrame.__init__)
622            (LayerTableFrame.__init__, LayerTableFrame.OnClose)
623            (LayerTableFrame.row_selected): The interactor is gone. It's job
624            from the dialog's point of view is now done by the mainwindow,
625            i.e. the parent. Subscribe to SHAPES_SELECTED instead
626            of SELECTED_SHAPE
627            
628            * Thuban/UI/dialogs.py (NonModalDialog.__init__): The interactor
629            is gone. It's job from the dialog's point of view is now done by
630            the mainwindow, i.e. the parent.
631            
632            * Thuban/UI/classifier.py (Classifier.__init__): The interactor is
633            gone. It's job from the dialog's point of view is now done by the
634            mainwindow, i.e. the parent.
635    
636            * Thuban/UI/tree.py (SessionTreeView.__init__): The interactor is
637            gone. It's job from the dialog's point of view is now done by the
638            mainwindow, i.e. the parent.
639            (SessionTreeCtrl.__init__): New parameter mainwindow which is
640            stored as self.mainwindow. The mainwindow is need so that the tree
641            can still subscribe to the selection messages.
642            (SessionTreeCtrl.__init__, SessionTreeCtrl.unsubscribe_all)
643            (SessionTreeCtrl.update_tree, SessionTreeCtrl.OnSelChanged): The
644            selection is now accessible through the mainwindow. Subscribe to
645            SHAPES_SELECTED instead of SELECTED_SHAPE
646    
647            * Thuban/UI/identifyview.py (IdentifyView.__init__): Use the
648            SHAPES_SELECTED message now.
649            (IdentifyView.selected_shape): Now subscribed to SHAPES_SELECTED,
650            so deal with multiple shapes
651            (IdentifyView.__init__, IdentifyView.OnClose): The interactor is
652            gone. It's job from the dialog's point of view is now done by the
653            mainwindow, i.e. the parent.
654    
655            * Thuban/UI/controls.py (RecordListCtrl.fill_list): The second
656            parameter is now a list of shape ids.
657            (RecordTable.SetTable): The second parameter is now a list of
658            indices.
659    
660            * Thuban/UI/renderer.py (ScreenRenderer.RenderMap): Rename the
661            selected_shape parameter and ivar to selected_shapes. It's now a
662            list of shape ids.
663            (MapRenderer.draw_label_layer): Deal with multiple selected
664            shapes. Rearrange the code a bit so that the setup and shape type
665            distinctions are only executed once.
666    
667            * test/test_selection.py: Test cases for the selection class
668    
669    2003-03-11  Jonathan Coles   <[email protected]>
670    
671            * Thuban/Model/load.py: Temporary fix so that the xml reader
672            doesn't cause Thuban to crash.
673    
674            * Thuban/Model/layer.py: Handle the cyclic references between
675            a layer and its classification better, and be sure to disconnect
676            the classification from the layer when the layer is destroyed
677            so that we don't maintain a cyclic reference that may not be
678            garbage collected.
679    
680            * Thuban/Model/classification.py: See comment for layer.py.
681    
682    2003-03-12  Jan-Oliver Wagner <[email protected]>
683    
684            * HOWTO-Release: New. Information on the steps for releasing
685            a new version of Thuban.
686    
687    2003-03-11  Jonathan Coles   <[email protected]>
688    
689            * Thuban/UI/classifier.py: Add normal border to SelectPropertiesDialog.
690            Use True instead of true.
691            (Classifier): Should have a single panel in which all the controls lie.
692    
693            * Thuban/UI/proj4dialog.py: Add normal border.
694    
695            * Thuban/UI/tree.py: Fixed problem with bad item images under Windows.
696    
697            * Thuban/UI/mainwindow.py: Use True instead of true.
698    
699            * setup.py: Update some definitions to use wxWindows2.4 files
700    
701            * Data/iceland_sample_class.thuban: Fixed file so that the
702            field_type information is present.
703    
704    2003-03-10  Jonathan Coles   <[email protected]>
705    
706            * Thuban/UI/classifier.py (Classifier.__init__): Make the
707            field type label grow so that when the text changes the
708            size is updated correctly. This may be a wxWindows bug.
709    
710    2003-03-10  Jonathan Coles   <[email protected]>
711    
712            * Thuban/UI/application.py: Changed SESSION_CHANGED to
713            SESSION_REPLACED.
714    
715            * Thuban/UI/classifier.py: Wrap text with _().
716            (ClassGrid.CreateTable): Set dimensions and size hints here,
717            instead of in Reset, so we only set the size once.
718    
719            * Thuban/UI/dialogs.py: Don't need Shutdown(); just use Close()!
720    
721            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
722            Call Close() instead of Shutdown().
723    
724            * Thuban/UI/messages.py: Changed SESSION_CHANGED to SESSION_REPLACED.
725    
726            * Thuban/UI/tree.py: Changed SESSION_CHANGED to SESSION_REPLACED.
727            Go back to using OnClose() instead of Shutdown().
728    
729    2003-03-10  Jonathan Coles   <[email protected]>
730    
731            * Thuban/UI/classifier.py (Classifier): SelectField() needed
732            to know the old field index as well as the new one.
733    
734    2003-03-10  Jonathan Coles   <[email protected]>
735    
736            * Thuban/UI/classifier.py (Classifier): Use __SelectField()
737            to correctly set the table information and call this from
738            __init__ and from _OnFieldSelect so that all the information
739            is up to date when the dialog opens and when a field is changed.
740    
741    2003-03-10  Jonathan Coles   <[email protected]>
742    
743            * Thuban/Model/classification.py (Classification): Don't use
744            layer's message function directly, use the ClassChanged() method
745            when then classification changes. SetField/SetFieldType/SetLayer
746            must keep the information about field name and field type in
747            sync when an owning layer is set or removed.
748    
749            * Thuban/Model/layer.py: Added ClassChanged() so that the
750            classification can tell the layer when its data has changed.
751            (Layer.SetClassification): Accepts None as an arguement to
752            remove the current classification and correctly handles
753            adding a new classification.
754    
755            * Thuban/Model/load.py: Comment out print statement
756    
757            * test/test_classification.py, test/test_save.py: New and
758            improved tests.
759    
760    2003-03-07  Jonathan Coles   <[email protected]>
761    
762            * Thuban/Model/classification.py: Implemented __copy__ and
763            __deepcopy__ for ClassGroup* and ClassGroupProperites so
764            they can easily be copied by the classifier dialog.
765            (ClassGroupProperites.__init__): The default line color should
766            have been Color.Black.
767    
768            * Thuban/UI/classifier.py: Setting and Getting table values now
769            uses a consistent set of functions.
770            (Classifier): Now non-modal. Has field type label which changes
771            as the field changes. Keep track of buttons in a list so that
772            we can enable/disable the buttons when the None field is selected.
773            (SelectPropertiesDialog): Add buttons to make the colors transparent.
774    
775            * Thuban/UI/dialogs.py (NonModalDialog.Shutdown): New method which
776            does what OnClose did, but can be called by the application to
777            close a window. Needed when a session changes, and we have to
778            close the classifier windows.
779    
780            * Thuban/UI/mainwindow.py (MainWindow.prepare_new_session):
781            Shuts down open dialogs. Used when a new session is created
782            or a session is opened.
783            (MainWindow.SaveSession): Should only call application.SaveSession()
784            if we don't call SaveSessionAs first.
785            (MainWindow.Classify): Allow different classifier dialogs for
786            different layers.
787    
788            * Thuban/UI/tree.py (SessionTreeView): Remove OnClose and let
789            the parent class handle it. Add Shutdown() to unsubscibe from
790            event notification and call the parent Shutdown(). This was
791            necessary so the application can close the tree window.
792    
793  2003-03-06  Jonathan Coles   <[email protected]>  2003-03-06  Jonathan Coles   <[email protected]>
794    
795          * Thuban/Model/classification.py: Minor documentation changes,          * Thuban/Model/classification.py: Minor documentation changes,

Legend:
Removed from v.478  
changed lines
  Added in v.672

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26