/[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 252 by bh, Tue Jul 30 14:18:59 2002 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]>
609    
610            Force minimal size of identify and label dialogs. The autosizing
611            looked too ugly.
612    
613            * Thuban/UI/controls.py (RecordListCtrl): Set minimal width for columns.
614            * Thuban/UI/labeldialog.py (LabelDialog.dialog_layout):
615            Set size of listctrl.
616            * Thuban/UI/identifyview.py (IdentifyView.__init__):
617            Set size of dialog.
618    
619    2003-02-19  Jonathan Coles   <[email protected]>
620    
621            * test/test_classification.py, test/test_layer.py,
622            test/test_load.py, test/test_map.py, test/test_session.py:
623            Updated the tests to use the new functions that are in the
624            respective classes.
625    
626            * Thuban/Model/classification.py (Classification):
627            Uses the new ClassData* classes. Modification messages are
628            passed up to the parent layer (if it exists).
629            (ClassData): New class to encapsulate the common data in each
630            classification property.
631            (ClassDataDefault): Represents the Default class. data.
632            (ClassDataPoint): Represents a single class. data point
633            (ClassDataRange): Represents a class. range
634            (ClassDataMap): Represents a class. map (unused).
635    
636            * Thuban/Model/color.py: Added Color.None to represent something
637            with no color. Color.Black represents the color black.
638            (NoColor): Helper class derived from Color to represent something
639            with no color.
640    
641            * Thuban/Model/layer.py (Layer): Removed references to fill, stroke,
642            stroke_width attributes. Made the 'classification' attribute private.
643            New methods for setting/getting the classification.
644    
645            * Thuban/Model/load.py (ProcessSession): Use new methods on Layer
646            to get the classifcation and use the new ClassData* classes to
647            hold the classification data. Use Str2Num to convert numbers
648            properly.
649    
650            * Thuban/Model/save.py (Saver): Use new Color and Classification
651            methods
652    
653            * Thuban/UI/classifier.py (ClassGrid): New class to represent a
654            custom grid.
655            (ClassTable): Support for editing Values and Labels and for
656            changing what type (point or range) of data is stored in each
657            property based on how the user enters the data.
658            (Classifier): Support for saving the new classifications and
659            launching the dialog to edit a property.
660            (SelectPropertiesDialog): New class for editing the visual
661            properties of a classification (stroke color, width, and fill color)
662            (ClassPreviewer): Took the Draw method from ClassRenderer and
663            made most of it into this new class. Intend to use this class in
664            the SelectPropertiesDialog for previewing changes.
665    
666            * Thuban/UI/renderer.py: Use new Color and Classification methods.
667    
668            * Thuban/UI/tree.py: Formatting changes.
669    
670            * Doc/thuban.dtd: Add 'label' element
671    
672            * Thuban/common.py: New. Contains common routines used throughout
673            the code.
674            (Str2Num): Takes a string and converts it to the "best" type of
675            number.
676    
677    2003-02-14  Bernhard Herzog  <[email protected]>
678    
679            * Thuban/UI/view.py (MapCanvas.OnLeftUp): Make sure that the
680            dragging flag is always set to 0 even when the tool implementation
681            raises an exception
682    
683    2003-02-11  Bernhard Herzog  <[email protected]>
684    
685            * Thuban/UI/application.py (ThubanApplication.splash_screen): New
686            method to create a splash screen.
687            (ThubanApplication.ShowMainWindow): New. Show the main window.
688            Needed so the splash screen can display the mainwindow
689            (ThubanApplication.OnInit): Call the
690            new splash_screen method to determine whether the application
691            should display a splash screen. If it displays a splash screen do
692            not immediately show the main window.
693    
694    2003-02-11  Jonathan Coles  <[email protected]>
695    
696            * Thuban/Model/classification.py: Added import line to fix
697            feature conflicts between running on python2.2 and python2.1.
698    
699            * Thuban/UI/classifier.py (ClassTable): Didn't need to hang
700            onto the clinfo parameter, so removed the deepcopy().
701    
702    2003-02-10  Jonathan Coles  <[email protected]>
703    
704            * Thuban/Model/save.py (Saver.open_element, Saver.close_element):
705            Added element_open variable to track opening and closing of tags
706            so that tags that don't span more than one line are closed with
707            /> instead of </tag_name>. Use the GetDefault*() methods of
708            the Classification class.
709    
710            * Thuban/Model/classification.py (Classificaton): Added set and
711            get methods for the default data. The class also takes a layer
712            reference so that modification messages can be sent. Fixed the
713            methods to use the new ClassData class.
714            (ClassData): New class to encapsulate the classification data
715    
716            * Thuban/Model/layer.py (Layer): Remove the
717            Set[Fill|Stroke|StrokeWidth]() methods. Code should call the
718            SetDefault*() methods on the layer's classification object.
719            (Layer.__init__): Use the new SetDefault*() methods in the
720            Classification class.
721    
722            * Thuban/Model/load.py (ProcessSession): Use the new ClassData
723            object instead of a dictionary.
724    
725            * Thuban/UI/classifier.py (ClassRenderer): New class to
726            draw the classifications in the dialog box's table.
727            (Classifier): Modified to use the ClassRenderer class.
728    
729            * Thuban/UI/mainwindow.py (MainWindow): Use the SetDefault*()
730            methods of the Classification class.
731    
732            * Thuban/UI/renderer.py (MapRenderer): Use the Get*() methods
733            of the ClassData class.
734    
735            * test/test_classification.py, test/test_layer.py,
736            test/test_map.py, test/test_session.py: Fix the tests to work
737            with the above code changes.
738    
739    2003-02-03  Jonathan Coles  <[email protected]>
740    
741            * Thuban/Model/classification.py (Classification): Added getNull()
742            to return the NullData reference
743    
744            * Thuban/Model/layer.py (Layer.SetFill, Layer.SetStroke,
745            Layer.SetStrokeWidth): Modified these functions to change the
746            null data in the classification rather than keep these values
747            directly in the Layer class. Menu options to change these values
748            work again.
749    
750    2003-01-28  Jonathan Coles  <[email protected]>
751    
752            * Thuban/UI/classifier.py (Classifier): Resolved merging conflicts.
753            Fixed crashing problem on some systems. Dialog box shows
754            classification data.
755    
756            * Thuban/UI/tree.py (SessionTreeCtrl.add_items): Handle drawing
757            Colors in the tree view.
758    
759            * Thuban/Model/layer.py (Layer.TreeInfo): Added a call to build
760            the tree info for classifications. Commented out unnecessary lines.
761    
762            * Thuban/Model/classification.py (Classification.TreeInfo): New
763            function to add information about the classification into the
764            tree view.
765    
766    2003-01-27  Jan-Oliver Wagner <[email protected]>
767    
768            * Thuban/__init__.py (_): New.
769    
770            * Thuban/Model/classification.py, Thuban/Model/extension.py,
771            Thuban/Model/layer.py, Thuban/Model/load.py, Thuban/Model/map.py,
772            Thuban/Model/session.py, Thuban/UI/application.py,
773            Thuban/UI/classifier.py, Thuban/UI/context.py, Thuban/UI/controls.py,
774            Thuban/UI/identifyview.py, Thuban/UI/labeldialog.py,
775            Thuban/UI/mainwindow.py, Thuban/UI/menu.py, Thuban/UI/proj4dialog.py,
776            Thuban/UI/renderer.py, Thuban/UI/tree.py, Thuban/Lib/connector.py,
777            Thuban/Lib/fileutil.py: Replace user string by _() for i18n.
778    
779    2003-01-27  Jonathan Coles  <[email protected]>
780    
781            * Thuban/Model/layer.py: Classification initialization calls.
782    
783            * Thuban/Model/classification.py: Created class to encapsulate
784            a layer classification. Supports specific data points and
785            ranges.
786    
787            * Thuban/Model/load.py: Added support for loading classification
788            information.
789    
790            * Thuban/Model/save.py: Added support for saving classification
791            information.
792    
793            * Thuban/UI/classifier.py: Initial class for a dialog box for
794            specifying classification information.
795    
796            * Thuban/UI/mainwindows.py: Support for opening the classifier
797            dialog.
798    
799            * Thuban/UI/renderer.py: Support for drawing a layer with the
800            classification information.
801    
802            * Data/iceland_sample_class.thuban: iceland_sample with
803            classification data.
804    
805            * test/test_classification: Tests for the Classification class.
806    
807    2002-12-09  Bernhard Herzog  <[email protected]>
808    
809            * test/test_command.py: New. Tests for the command classes.
810    
811            * Thuban/UI/command.py (ToolCommand): New class for tool commands.
812            (Command.IsTool): New method to distinguish between command
813            switching tools and other commands.
814    
815            * Thuban/UI/view.py (MapCanvas.SelectTool): New method to select
816            the tool to avoid direct assignments to instance variables
817            (MapCanvas.ZoomInTool, MapCanvas.ZoomOutTool, MapCanvas.PanTool)
818            (MapCanvas.IdentifyTool, MapCanvas.LabelTool): Use SelectTool to
819            change the tool
820    
821            * Thuban/UI/mainwindow.py (MainWindow.update_command_ui): If an
822            active tool's command turns insensitive, disable the tool.
823            (_tool_command): Use the new ToolCommand class
824    
825            * Examples/simple_extensions/simple_tool.py (simple_tool): Use the
826            SelectTool method to change the tool
827            (iconfile): Use the ToolCommand class
828    
829    2002-12-03  Bernhard Herzog  <[email protected]>
830    
831            * Thuban/UI/tree.py (SessionTreeCtrl.normalize_selection): Handle
832            the case of selected items that are not children of Layers or Maps
833            properly. Previously this bug would trigger an assertion in
834            wxWindows.
835    
836    2002-11-06  Frank Koormann  <[email protected]>
837    
838            * Thuban/UI/mainwindow.py: Altered the order of tools in the
839            toolbar: First now are all navigation tools (Zoom In/Out, Pan,
840            Full Extent).
841    
842    2002-10-23  Bernhard Herzog  <[email protected]>
843    
844            * setup.py (setup call): version now 0.1.3
845    
846            * MANIFEST.in: Add the files in test/
847    
848            * test/README: Add note about tests requiring the iceland data
849    
850            * Thuban/UI/mainwindow.py (MainWindow.About): Add 2002 to
851            copyright notice.
852    
853    2002-10-18  Bernhard Herzog  <[email protected]>
854    
855            * test/test_map.py
856            (TestMapWithContents.test_projected_bounding_box): Use an explicit
857            epsilon.
858    
859            * test/support.py (FloatComparisonMixin.assertFloatEqual)
860            (FloatComparisonMixin.assertFloatSeqEqual): give a more useful
861            message if the assertion fails and don't return the return value
862            of self.assert_. In assertFloatSeqEqual the return meant that not
863            all items of the sequence were compared.
864    
865    2002-09-20  Bernhard Herzog  <[email protected]>
866    
867            * test/test_fileutil.py: New. Test cases for Thuban.Lib.fileutil
868    
869            * Thuban/Lib/fileutil.py: Fixup some whitespace and typos
870    
871            * test/test_map.py (TestMapWithContents.test_tree_info): Create
872            the string with the bounding box on the fly because of platform
873            differences in the way %g is handled.
874    
875            * test/test_layer.py (TestLayer.test_empty_layer): Create an empty
876            DBFfile too because Thuban layers can't yet cope missing DBF
877            files.
878    
879    2002-09-20  Bernhard Herzog  <[email protected]>
880    
881            * test/test_menu.py: Use initthuban instead of
882            add_thuban_dir_to_path to initialize Thuban.
883    
884            * test/support.py (FloatComparisonMixin.assertFloatEqual): New.
885            Mixin class for float comparisons
886            (SubscriberMixin): New. Mixin class to test messages sent through
887            the Connector class
888    
889            * test/README: Fix a typo and add the -v flag to the command for
890            individual tests
891    
892            * test/test_session.py: New. Test cases for Thuban.Model.session
893    
894            * test/test_proj.py: New. Test cases for Thuban.Model.proj
895    
896            * test/test_map.py: New. Test cases for Thuban.Model.map
897    
898            * test/test_layer.py: New. Test cases for Thuban.Model.layer
899    
900            * test/test_label.py: New. Test cases for Thuban.Model.label
901    
902            * test/test_connector.py: New. Test cases for Thuban.Lib.connector
903    
904            * test/test_color.py: New. Test cases for Thuban.Model.color
905    
906            * test/test_base.py: New. Test cases for Thuban.Model.base
907    
908    2002-09-13  Bernhard Herzog  <[email protected]>
909    
910            * Thuban/Model/session.py (Session.forwarded_channels): Forward
911            the CHANGED channel too.
912    
913            * Thuban/Model/map.py (Map.forwarded_channels): Forward the
914            CHANGED channel too.
915            (Map.__init__): Call the Modifiable constructor as well.
916    
917            * Thuban/Model/base.py (Modifiable.UnsetModified): Issue a CHANGED
918            event if the modified flag changes.
919            (Modifiable.changed): Tweak the doc-string.
920    
921            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed)
922            (MainWindow.set_position_text): Put the code that puts the text
923            with the mouse position into the status bar into the new method
924            set_position_text so that it can overwritten in derived classes.
925    
926    2002-09-12  Bernhard Herzog  <[email protected]>
927    
928            * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Center the
929            message box on the main window.
930    
931    2002-09-11  Bernhard Herzog  <[email protected]>
932    
933            * Thuban/UI/mainwindow.py: Underline the 'x' in "Exit" instead of
934            the 'E' because it's less likely to interfere with other menu
935            entries.
936            (MainWindow.build_menu): remove an incorrect comment.
937    
938    2002-09-10  Bernhard Herzog  <[email protected]>
939    
940            * Thuban/UI/mainwindow.py (MainWindow.Map): New.
941            (_tool_command): Add sensitive parameter
942            (_has_visible_map): Sensitivity callback to tools and other
943            commands that require a visible map. Use it in map_zoom_in_tool,
944            map_zoom_out_tool, map_pan_tool, map_identify_tool, map_label_tool
945            and map_full_extent
946    
947    2002-09-06  Bernhard Herzog  <[email protected]>
948    
949            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Unsubscribe
950            VIEW_POSITION
951    
952    2002-09-04  Frank Koormann  <[email protected]>
953    
954            * Resources/Bitmaps/fullextent.xpm: Updated Icon (removed "potatoe")
955    
956    2002-09-02  Bernhard Herzog  <[email protected]>
957    
958            * Thuban/UI/view.py: Get rid of the idle redraw. This is done by
959            wxWindows already and our implementation doesn't work correctly
960            with wxGTK 2.3:
961            (MapCanvas.__init__): Remove the instance variable
962            (MapCanvas.OnPaint): Always call do_redraw when there's a map to
963            be drawin
964            (MapCanvas.OnIdle): Removed.
965    
966            * Thuban/UI/view.py (MapCanvas.unprojected_rect_around_point): Add
967            a parameter to determine the size of the rectangle.
968            (MapCanvas.find_shape_at): Create the box around the point on a
969            layer by layer basis and make the size depend on the shape type.
970            This solves a problem with the selection of point shapes at the
971            border of the layer's bounding box
972    
973    2002-08-30  Bernhard Herzog  <[email protected]>
974    
975            * Thuban/UI/mainwindow.py (MainWindow.CanRemoveLayer): New method
976            for the sensitivity  of remove layer.
977            (_can_remove_layer): New. Sensitivity callback for remove layer
978            (Command layer_remove): Use _can_remove_layer
979    
980            * Thuban/Model/map.py (Map.CanRemoveLayer): New method to
981            determine whether a given layer can be deleted.
982    
983            * Thuban/UI/view.py (MapCanvas.__init__, MapCanvas.OnPaint)
984            (MapCanvas.do_redraw): Get rid of the unused update_region
985            instance variable
986    
987            * Thuban/UI/view.py: Add/update some doc-strings.
988    
989            * test/: new subdirectory with a bunch of unit tests.
990    
991            * test/README, test/test_table.py, test/test_save.py,
992            test/test_menu.py, test/test_load.py: Initial set of tests and
993            brief instructions on how to run them
994    
995    2002-08-29  Bernhard Herzog  <[email protected]>
996    
997            * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Handle
998            arcs with multiple parts.
999    
1000            * Thuban/UI/view.py (ZoomInTool.MouseUp, ZoomOutTool.MouseUp):
1001            Handle degenrate rectangles.
1002    
1003            * Thuban/Model/table.py: Make writing records work correctly:
1004            (Table.__init__): Keep track of whether the DBF is open for
1005            writing
1006            (Table.write_record): Open the DBF file for writing when necessary
1007    
1008    2002-08-27  Bernhard Herzog  <[email protected]>
1009    
1010            * Thuban/Model/table.py (Table.write_record, Table.__init__): Open
1011            dbf files only for reading by default. Use a new writable dbf
1012            object for writing.
1013    
1014    2002-08-26  Bernhard Herzog  <[email protected]>
1015    
1016            * Thuban/UI/mainwindow.py: Refactor the context creation:
1017            (MainWindow.Context): New method to return a context
1018            (MainWindow.invoke_command, MainWindow.update_command_ui): Use the
1019            new method
1020    
1021            * Thuban/UI/tableview.py (TableGrid, LayerTableGrid): Split the
1022            layer table specific code from TableGrid into LayerTableGrid
1023            (TableFrame, LayerTableFrame): Split the layer table specific code
1024            from TableFrame into LayerTableFrame
1025            (LayerTableGrid.select_shape): Remove a debug print
1026    
1027            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Use the
1028            LayerTableFrame
1029    
1030    2002-08-23  Bernhard Herzog  <[email protected]>
1031    
1032            * Thuban/Model/layer.py (Layer.__init__): Make sure we have an
1033            absolute filename.
1034    
1035    2002-08-22  Bernhard Herzog  <[email protected]>
1036    
1037            * Thuban/Model/table.py (Table.write_record): New method to write
1038            records.
1039            (Table.__init__): Open the DBF file for writing too.
1040    
1041            * Thuban/UI/controls.py (RecordTable.SetValue): Write the value
1042            into the underlying table.
1043    
1044            * extensions/shapelib/shapefil.h (DBFCommit),
1045            extensions/shapelib/dbfopen.c (DBFCommit): New API function to
1046            commit any changes made to the DBF file.
1047    
1048            * Thuban/UI/mainwindow.py (make_check_current_tool)
1049            (_tool_command): Put the code that generates the "checked"
1050            callback into a separate function so that we can reuse it
1051            elsewhere
1052    
1053            * Thuban/Model/save.py (Saver): New class to handle serializing a
1054            session into an XML file. The main reason to introduce a class is
1055            that applications built on Thuban can derive from it so that they
1056            can save additional information in a session file.
1057            (save_session): Delegate almost all the work to the Saver class.
1058            Rename the filename argument to file because it may be a file like
1059            object now.
1060    
1061            * Thuban/Model/load.py: Get rid of the Python 1.5.2 compatibility
1062            code. Remove the little test code which would be executed when the
1063            module is run as a script which didn't work anymore since it can't
1064            import the other Thuban modules.
1065            (ProcessSession, load_session): Refactor the ProcessSession to
1066            have one method for each element start and end tag so that derived
1067            classes can easily override the processing of individual tags.
1068            Also, always parse with namespaces enabled because applications
1069            built on top of Thuban will likely use namespaces if they extend
1070            the session file format.
1071    
1072    2002-08-21  Bernhard Herzog  <[email protected]>
1073    
1074            * setup.py (ThubanInstall.run): Don't repr install_lib_orig
1075            because thubaninit_contents will do it for us.
1076    
1077    2002-08-16  Jan-Oliver Wagner <[email protected]>
1078    
1079            * Thuban/UI/mainwindow.py: menu item 'show session tree' now disable if
1080            tree window already open
1081    
1082    2002-08-15  Bernhard Herzog  <[email protected]>
1083    
1084            * Thuban/Model/layer.py (Layer.Destroy): Call the unboundd method
1085            with self.
1086    
1087            * Thuban/UI/view.py (MapCanvas.OnLeftUp): Only release the mouse
1088            when we have actually captured it.
1089    
1090            * Thuban/Model/layer.py (Layer.Destroy): New. Explicitly close the
1091            shapefile and destroy the table.
1092    
1093            * Thuban/Model/table.py (Table.Destroy): New. Close the DBF file.
1094    
1095    2002-08-14  Bernhard Herzog  <[email protected]>
1096    
1097            * Thuban/UI/controls.py (RecordTable.__init__): Remove the unused
1098            instance variable columns
1099            (RecordTable.GetTypeName): row and col may be negative in some
1100            cases.
1101    
1102            * setup.py (InstallLocal.initialize_options)
1103            (InstallLocal.finalize_options, InstallLocal.user_options): New
1104            option create-init-file to build a thubaninit.py when running
1105            install_local
1106            (InstallLocal.run): Create the thubaninit.py module when requested
1107            (thubaninit_contents): Split the template into several parts and
1108            create a new function thubaninit_contents that creates the
1109            contents of a thubaninit module.
1110            (ThubanInstall.run): Use the new function to create the thubaninit
1111            module.
1112    
1113  2002-07-30  Bernhard Herzog  <[email protected]>  2002-07-30  Bernhard Herzog  <[email protected]>
1114    
1115          * Thuban/UI/application.py (ThubanApplication.OnExit): Do some          * Thuban/UI/application.py (ThubanApplication.OnExit): Do some
# Line 90  Line 1202 
1202          * Thuban/UI/tree.py: We can now simply subscribe to the session's          * Thuban/UI/tree.py: We can now simply subscribe to the session's
1203          CHANGED channel to be informed of changes.          CHANGED channel to be informed of changes.
1204          (SessionTreeCtrl.session_channels): Not needed any longer.          (SessionTreeCtrl.session_channels): Not needed any longer.
1205          (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):          (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):
1206          Only have to (un)subscribe CHANGED          Only have to (un)subscribe CHANGED
1207    
1208          * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.          * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.
# Line 151  Line 1263 
1263          * Thuban/Model/layer.py (Layer.TreeInfo),          * Thuban/Model/layer.py (Layer.TreeInfo),
1264          Thuban/Model/extension.py (Extension.TreeInfo),          Thuban/Model/extension.py (Extension.TreeInfo),
1265          Thuban/Model/map.py (Map.TreeInfo),          Thuban/Model/map.py (Map.TreeInfo),
1266          Thuban/Model/session.py (Session.TreeInfo):          Thuban/Model/session.py (Session.TreeInfo):
1267          Add TreeInfo methods to implement the new tree view update scheme          Add TreeInfo methods to implement the new tree view update scheme
1268    
1269  2002-07-16  Bernhard Herzog  <[email protected]>  2002-07-16  Bernhard Herzog  <[email protected]>
# Line 232  Line 1344 
1344          * setup.py: In the setup call, make sure that the library          * setup.py: In the setup call, make sure that the library
1345          directories are under $prefix/lib not directly under $prefix.          directories are under $prefix/lib not directly under $prefix.
1346    
1347  2002-06-20      Jan-Oliver Wagner <[email protected]>  2002-06-20  Jan-Oliver Wagner <[email protected]>
1348    
1349          * Thuban/Model/extension.py: new module to handle extension objects.          * Thuban/Model/extension.py: new module to handle extension objects.
1350          * Thuban/Model/messages.py: new messages for extensions.          * Thuban/Model/messages.py: new messages for extensions.
# Line 461  Line 1573 
1573          * Thuban/UI/messages.py (VIEW_POSITION): New message for the          * Thuban/UI/messages.py (VIEW_POSITION): New message for the
1574          position in the statusbar          position in the statusbar
1575    
1576  2002-04-26      Frank Koormann <[email protected]>  2002-04-26  Frank Koormann <[email protected]>
1577    
1578          * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data          * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data
1579    
1580  2002-04-24      Frank Koormann <[email protected]>  2002-04-24  Frank Koormann <[email protected]>
1581            
1582          * Resources/Bitmaps/identify.xpm: shadow added          * Resources/Bitmaps/identify.xpm: shadow added
1583    
1584          * Resources/Bitmaps/fullextent.xpm: new          * Resources/Bitmaps/fullextent.xpm: new
           
 2002-04-22      Jan-Oliver Wagner <[email protected]>  
1585    
1586          * Thuban/UI/tree.py (update_tree): added test for None on map bounding box  2002-04-22  Jan-Oliver Wagner <[email protected]>
1587    
1588  2002-04-21      Jan-Oliver Wagner <[email protected]>          * Thuban/UI/tree.py (update_tree): added test for None on map bounding
1589            box
1590    
1591    2002-04-21  Jan-Oliver Wagner <[email protected]>
1592    
1593          * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new          * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new
1594    
1595          * Thuban/UI/tree.py (update_tree): added added map extent          * Thuban/UI/tree.py (update_tree): added added map extent
1596    
1597          * Thuban/UI/mainwindow.py (_method_command): extended by parameter          * Thuban/UI/mainwindow.py (_method_command): extended by parameter
1598          icon; added map_full_extend as tool          icon; added map_full_extend as tool
1599    
1600  2002-04-19      Jan-Oliver Wagner <[email protected]>  2002-04-19  Jan-Oliver Wagner <[email protected]>
1601    
1602          * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for          * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for
1603          saving _new_ sessions          saving _new_ sessions
# Line 586  Line 1699 
1699    
1700          * setup.py: increase version number to 0.1          * setup.py: increase version number to 0.1
1701          (data_dist): New command class for data distribution          (data_dist): New command class for data distribution
           
1702    
1703  2001-09-14  Bernhard Herzog  <[email protected]>  2001-09-14  Bernhard Herzog  <[email protected]>
1704    
1705          * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):          * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):
1706          Handle the case of no layer (i.e. layer is None) properly.          Handle the case of no layer (i.e. layer is None) properly.
1707    
1708          * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):          * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):
1709          Set the initial selection of the combo boxes to reflect the          Set the initial selection of the combo boxes to reflect the
1710          projection we're starting with in a way that works on windows,          projection we're starting with in a way that works on windows,
1711          too.          too.
# Line 703  Line 1815 
1815          (MainWindow.identify_view_on_demand): Store the interactor in an          (MainWindow.identify_view_on_demand): Store the interactor in an
1816          instvar and use that reference instead of going through main.app          instvar and use that reference instead of going through main.app
1817    
1818          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):
1819          * Thuban/UI/application.py (ThubanApplication.OnInit):          * Thuban/UI/application.py (ThubanApplication.OnInit):
1820          * Thuban/UI/main.py (main): Create the session tree view in main          * Thuban/UI/main.py (main): Create the session tree view in main
1821          with the new mainwindow method ShowSessionTree and not directly          with the new mainwindow method ShowSessionTree and not directly
1822          the application's OnInit method          the application's OnInit method
# Line 720  Line 1832 
1832          layer to the tableview dialog.          layer to the tableview dialog.
1833    
1834          * Thuban/UI/tableview.py: Add some doc-strings          * Thuban/UI/tableview.py: Add some doc-strings
1835          (TableGrid):          (TableGrid):
1836          (TableGrid.OnRangeSelect):          (TableGrid.OnRangeSelect):
1837          (TableGrid.OnSelectCell):          (TableGrid.OnSelectCell):
1838          (TableFrame.__init__):          (TableFrame.__init__):
# Line 787  Line 1899 
1899  2001-09-05  Bernhard Herzog  <[email protected]>  2001-09-05  Bernhard Herzog  <[email protected]>
1900    
1901          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.
1902            
1903          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument
1904          interactor to pass through to the MapCanvas          interactor to pass through to the MapCanvas
1905            
1906          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new
1907          argument to the MainWindow constructor to get rid of the ugly hack          argument to the MainWindow constructor to get rid of the ugly hack
1908          that made main.app available early just so that the mapcanvas          that made main.app available early just so that the mapcanvas
# Line 837  Line 1949 
1949          (ThubanInstall.run): Remove the leading install root from the          (ThubanInstall.run): Remove the leading install root from the
1950          script filename if an install root was specified and use the new          script filename if an install root was specified and use the new
1951          link_file method          link_file method
1952            
1953          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to
1954          the window when the first layer is added to the map.          the window when the first layer is added to the map.
1955    
# Line 874  Line 1986 
1986          (InnoIconItem): Helper class for bdist_inno          (InnoIconItem): Helper class for bdist_inno
1987          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added
1988          this together with the appropriate parameters, to the setup call.          this together with the appropriate parameters, to the setup call.
1989            
1990          * setup.cfg (bdist_inno): added new section for the inno setup          * setup.cfg (bdist_inno): added new section for the inno setup
1991          installer          installer
1992    

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26