/[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 291 by bh, Thu Aug 29 14:11:38 2002 UTC revision 426 by jonathan, Mon Feb 24 18:45:37 2003 UTC
# Line 1  Line 1 
1    2003-02-24  Jonathan Coles   <[email protected]>
2    
3            * Thuban/common.py (Color2wxColour, wxColour2Color): Conversion
4            functions from Thuban color objects to wxWindow colour objects.
5    
6            * Thuban/Model/classification.py (Classification): Renamed
7            GetProperties() to GetClassData(). Used the new iterator
8            in TreeInfo().
9            (ClassIterator): Iterator implementation to iterate over the
10            ClassData objects in a classification object.
11    
12            * Thuban/Model/save.py (Saver.write_classificaton): Uses
13            the new iterator to save the classification information.
14    
15            * Thuban/UI/classifier.py (SelectPropertiesDialog): Support
16            for changing the stroke and fill colors and previewing the
17            changes.
18    
19            * Thuban/UI/mainwindow.py (MainWindow.OpenSession,
20            MainWindow.SaveSessionAs): Text string changes so the dialogs
21            have more meaningful titles.
22    
23            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Change
24            Classification method name from GetProperties to GetClassData.
25    
26            * Thuban/UI/view.py (MapCanvas.find_shape_at): Use method calls
27            instead of accessing now non-existent class variables.
28    
29    2003-02-24  Bernhard Herzog  <[email protected]>
30    
31            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Remove
32            unneeded Shape() call. Rendering is substantially faster without
33            it and it avoids some problems with broken shape files.
34    
35    2003-02-20  Frank Koormann   <[email protected]>
36    
37            Force minimal size of identify and label dialogs. The autosizing
38            looked too ugly.
39    
40            * Thuban/UI/controls.py (RecordListCtrl): Set minimal width for columns.
41            * Thuban/UI/labeldialog.py (LabelDialog.dialog_layout):
42            Set size of listctrl.
43            * Thuban/UI/identifyview.py (IdentifyView.__init__):
44            Set size of dialog.
45    
46    2003-02-19  Jonathan Coles   <[email protected]>
47    
48            * test/test_classification.py, test/test_layer.py,
49            test/test_load.py, test/test_map.py, test/test_session.py:
50            Updated the tests to use the new functions that are in the
51            respective classes.
52    
53            * Thuban/Model/classification.py (Classification):
54            Uses the new ClassData* classes. Modification messages are
55            passed up to the parent layer (if it exists).
56            (ClassData): New class to encapsulate the common data in each
57            classification property.
58            (ClassDataDefault): Represents the Default class. data.
59            (ClassDataPoint): Represents a single class. data point
60            (ClassDataRange): Represents a class. range
61            (ClassDataMap): Represents a class. map (unused).
62    
63            * Thuban/Model/color.py: Added Color.None to represent something
64            with no color. Color.Black represents the color black.
65            (NoColor): Helper class derived from Color to represent something
66            with no color.
67    
68            * Thuban/Model/layer.py (Layer): Removed references to fill, stroke,
69            stroke_width attributes. Made the 'classification' attribute private.
70            New methods for setting/getting the classification.
71    
72            * Thuban/Model/load.py (ProcessSession): Use new methods on Layer
73            to get the classifcation and use the new ClassData* classes to
74            hold the classification data. Use Str2Num to convert numbers
75            properly.
76    
77            * Thuban/Model/save.py (Saver): Use new Color and Classification
78            methods
79    
80            * Thuban/UI/classifier.py (ClassGrid): New class to represent a
81            custom grid.
82            (ClassTable): Support for editing Values and Labels and for
83            changing what type (point or range) of data is stored in each
84            property based on how the user enters the data.
85            (Classifier): Support for saving the new classifications and
86            launching the dialog to edit a property.
87            (SelectPropertiesDialog): New class for editing the visual
88            properties of a classification (stroke color, width, and fill color)
89            (ClassPreviewer): Took the Draw method from ClassRenderer and
90            made most of it into this new class. Intend to use this class in
91            the SelectPropertiesDialog for previewing changes.
92    
93            * Thuban/UI/renderer.py: Use new Color and Classification methods.
94    
95            * Thuban/UI/tree.py: Formatting changes.
96    
97            * Doc/thuban.dtd: Add 'label' element
98    
99            * Thuban/common.py: New. Contains common routines used throughout
100            the code.
101            (Str2Num): Takes a string and converts it to the "best" type of
102            number.
103    
104    2003-02-14  Bernhard Herzog  <[email protected]>
105    
106            * Thuban/UI/view.py (MapCanvas.OnLeftUp): Make sure that the
107            dragging flag is always set to 0 even when the tool implementation
108            raises an exception
109    
110    2003-02-11  Bernhard Herzog  <[email protected]>
111    
112            * Thuban/UI/application.py (ThubanApplication.splash_screen): New
113            method to create a splash screen.
114            (ThubanApplication.ShowMainWindow): New. Show the main window.
115            Needed so the splash screen can display the mainwindow
116            (ThubanApplication.OnInit): Call the
117            new splash_screen method to determine whether the application
118            should display a splash screen. If it displays a splash screen do
119            not immediately show the main window.
120    
121    2003-02-11  Jonathan Coles  <[email protected]>
122    
123            * Thuban/Model/classification.py: Added import line to fix
124            feature conflicts between running on python2.2 and python2.1.
125    
126            * Thuban/UI/classifier.py (ClassTable): Didn't need to hang
127            onto the clinfo parameter, so removed the deepcopy().
128    
129    2003-02-10  Jonathan Coles  <[email protected]>
130    
131            * Thuban/Model/save.py (Saver.open_element, Saver.close_element):
132            Added element_open variable to track opening and closing of tags
133            so that tags that don't span more than one line are closed with
134            /> instead of </tag_name>. Use the GetDefault*() methods of
135            the Classification class.
136    
137            * Thuban/Model/classification.py (Classificaton): Added set and
138            get methods for the default data. The class also takes a layer
139            reference so that modification messages can be sent. Fixed the
140            methods to use the new ClassData class.
141            (ClassData): New class to encapsulate the classification data
142    
143            * Thuban/Model/layer.py (Layer): Remove the
144            Set[Fill|Stroke|StrokeWidth]() methods. Code should call the
145            SetDefault*() methods on the layer's classification object.
146            (Layer.__init__): Use the new SetDefault*() methods in the
147            Classification class.
148    
149            * Thuban/Model/load.py (ProcessSession): Use the new ClassData
150            object instead of a dictionary.
151    
152            * Thuban/UI/classifier.py (ClassRenderer): New class to
153            draw the classifications in the dialog box's table.
154            (Classifier): Modified to use the ClassRenderer class.
155    
156            * Thuban/UI/mainwindow.py (MainWindow): Use the SetDefault*()
157            methods of the Classification class.
158    
159            * Thuban/UI/renderer.py (MapRenderer): Use the Get*() methods
160            of the ClassData class.
161    
162            * test/test_classification.py, test/test_layer.py,
163            test/test_map.py, test/test_session.py: Fix the tests to work
164            with the above code changes.
165    
166    2003-02-03  Jonathan Coles  <[email protected]>
167    
168            * Thuban/Model/classification.py (Classification): Added getNull()
169            to return the NullData reference
170    
171            * Thuban/Model/layer.py (Layer.SetFill, Layer.SetStroke,
172            Layer.SetStrokeWidth): Modified these functions to change the
173            null data in the classification rather than keep these values
174            directly in the Layer class. Menu options to change these values
175            work again.
176    
177    2003-01-28  Jonathan Coles  <[email protected]>
178    
179            * Thuban/UI/classifier.py (Classifier): Resolved merging conflicts.
180            Fixed crashing problem on some systems. Dialog box shows
181            classification data.
182    
183            * Thuban/UI/tree.py (SessionTreeCtrl.add_items): Handle drawing
184            Colors in the tree view.
185    
186            * Thuban/Model/layer.py (Layer.TreeInfo): Added a call to build
187            the tree info for classifications. Commented out unnecessary lines.
188    
189            * Thuban/Model/classification.py (Classification.TreeInfo): New
190            function to add information about the classification into the
191            tree view.
192    
193    2003-01-27  Jan-Oliver Wagner <[email protected]>
194    
195            * Thuban/__init__.py (_): New.
196    
197            * Thuban/Model/classification.py, Thuban/Model/extension.py,
198            Thuban/Model/layer.py, Thuban/Model/load.py, Thuban/Model/map.py,
199            Thuban/Model/session.py, Thuban/UI/application.py,
200            Thuban/UI/classifier.py, Thuban/UI/context.py, Thuban/UI/controls.py,
201            Thuban/UI/identifyview.py, Thuban/UI/labeldialog.py,
202            Thuban/UI/mainwindow.py, Thuban/UI/menu.py, Thuban/UI/proj4dialog.py,
203            Thuban/UI/renderer.py, Thuban/UI/tree.py, Thuban/Lib/connector.py,
204            Thuban/Lib/fileutil.py: Replace user string by _() for i18n.
205    
206    2003-01-27  Jonathan Coles  <[email protected]>
207    
208            * Thuban/Model/layer.py: Classification initialization calls.
209    
210            * Thuban/Model/classification.py: Created class to encapsulate
211            a layer classification. Supports specific data points and
212            ranges.
213    
214            * Thuban/Model/load.py: Added support for loading classification
215            information.
216    
217            * Thuban/Model/save.py: Added support for saving classification
218            information.
219    
220            * Thuban/UI/classifier.py: Initial class for a dialog box for
221            specifying classification information.
222    
223            * Thuban/UI/mainwindows.py: Support for opening the classifier
224            dialog.
225    
226            * Thuban/UI/renderer.py: Support for drawing a layer with the
227            classification information.
228    
229            * Data/iceland_sample_class.thuban: iceland_sample with
230            classification data.
231    
232            * test/test_classification: Tests for the Classification class.
233    
234    2002-12-09  Bernhard Herzog  <[email protected]>
235    
236            * test/test_command.py: New. Tests for the command classes.
237    
238            * Thuban/UI/command.py (ToolCommand): New class for tool commands.
239            (Command.IsTool): New method to distinguish between command
240            switching tools and other commands.
241    
242            * Thuban/UI/view.py (MapCanvas.SelectTool): New method to select
243            the tool to avoid direct assignments to instance variables
244            (MapCanvas.ZoomInTool, MapCanvas.ZoomOutTool, MapCanvas.PanTool)
245            (MapCanvas.IdentifyTool, MapCanvas.LabelTool): Use SelectTool to
246            change the tool
247    
248            * Thuban/UI/mainwindow.py (MainWindow.update_command_ui): If an
249            active tool's command turns insensitive, disable the tool.
250            (_tool_command): Use the new ToolCommand class
251    
252            * Examples/simple_extensions/simple_tool.py (simple_tool): Use the
253            SelectTool method to change the tool
254            (iconfile): Use the ToolCommand class
255    
256    2002-12-03  Bernhard Herzog  <[email protected]>
257    
258            * Thuban/UI/tree.py (SessionTreeCtrl.normalize_selection): Handle
259            the case of selected items that are not children of Layers or Maps
260            properly. Previously this bug would trigger an assertion in
261            wxWindows.
262    
263    2002-11-06  Frank Koormann  <[email protected]>
264    
265            * Thuban/UI/mainwindow.py: Altered the order of tools in the
266            toolbar: First now are all navigation tools (Zoom In/Out, Pan,
267            Full Extent).
268    
269    2002-10-23  Bernhard Herzog  <[email protected]>
270    
271            * setup.py (setup call): version now 0.1.3
272    
273            * MANIFEST.in: Add the files in test/
274    
275            * test/README: Add note about tests requiring the iceland data
276    
277            * Thuban/UI/mainwindow.py (MainWindow.About): Add 2002 to
278            copyright notice.
279    
280    2002-10-18  Bernhard Herzog  <[email protected]>
281    
282            * test/test_map.py
283            (TestMapWithContents.test_projected_bounding_box): Use an explicit
284            epsilon.
285    
286            * test/support.py (FloatComparisonMixin.assertFloatEqual)
287            (FloatComparisonMixin.assertFloatSeqEqual): give a more useful
288            message if the assertion fails and don't return the return value
289            of self.assert_. In assertFloatSeqEqual the return meant that not
290            all items of the sequence were compared.
291    
292    2002-09-20  Bernhard Herzog  <[email protected]>
293    
294            * test/test_fileutil.py: New. Test cases for Thuban.Lib.fileutil
295    
296            * Thuban/Lib/fileutil.py: Fixup some whitespace and typos
297    
298            * test/test_map.py (TestMapWithContents.test_tree_info): Create
299            the string with the bounding box on the fly because of platform
300            differences in the way %g is handled.
301    
302            * test/test_layer.py (TestLayer.test_empty_layer): Create an empty
303            DBFfile too because Thuban layers can't yet cope missing DBF
304            files.
305    
306    2002-09-20  Bernhard Herzog  <[email protected]>
307    
308            * test/test_menu.py: Use initthuban instead of
309            add_thuban_dir_to_path to initialize Thuban.
310    
311            * test/support.py (FloatComparisonMixin.assertFloatEqual): New.
312            Mixin class for float comparisons
313            (SubscriberMixin): New. Mixin class to test messages sent through
314            the Connector class
315    
316            * test/README: Fix a typo and add the -v flag to the command for
317            individual tests
318    
319            * test/test_session.py: New. Test cases for Thuban.Model.session
320    
321            * test/test_proj.py: New. Test cases for Thuban.Model.proj
322    
323            * test/test_map.py: New. Test cases for Thuban.Model.map
324    
325            * test/test_layer.py: New. Test cases for Thuban.Model.layer
326    
327            * test/test_label.py: New. Test cases for Thuban.Model.label
328    
329            * test/test_connector.py: New. Test cases for Thuban.Lib.connector
330    
331            * test/test_color.py: New. Test cases for Thuban.Model.color
332    
333            * test/test_base.py: New. Test cases for Thuban.Model.base
334    
335    2002-09-13  Bernhard Herzog  <[email protected]>
336    
337            * Thuban/Model/session.py (Session.forwarded_channels): Forward
338            the CHANGED channel too.
339    
340            * Thuban/Model/map.py (Map.forwarded_channels): Forward the
341            CHANGED channel too.
342            (Map.__init__): Call the Modifiable constructor as well.
343    
344            * Thuban/Model/base.py (Modifiable.UnsetModified): Issue a CHANGED
345            event if the modified flag changes.
346            (Modifiable.changed): Tweak the doc-string.
347    
348            * Thuban/UI/mainwindow.py (MainWindow.view_position_changed)
349            (MainWindow.set_position_text): Put the code that puts the text
350            with the mouse position into the status bar into the new method
351            set_position_text so that it can overwritten in derived classes.
352    
353    2002-09-12  Bernhard Herzog  <[email protected]>
354    
355            * Thuban/UI/mainwindow.py (MainWindow.RunMessageBox): Center the
356            message box on the main window.
357    
358    2002-09-11  Bernhard Herzog  <[email protected]>
359    
360            * Thuban/UI/mainwindow.py: Underline the 'x' in "Exit" instead of
361            the 'E' because it's less likely to interfere with other menu
362            entries.
363            (MainWindow.build_menu): remove an incorrect comment.
364    
365    2002-09-10  Bernhard Herzog  <[email protected]>
366    
367            * Thuban/UI/mainwindow.py (MainWindow.Map): New.
368            (_tool_command): Add sensitive parameter
369            (_has_visible_map): Sensitivity callback to tools and other
370            commands that require a visible map. Use it in map_zoom_in_tool,
371            map_zoom_out_tool, map_pan_tool, map_identify_tool, map_label_tool
372            and map_full_extent
373    
374    2002-09-06  Bernhard Herzog  <[email protected]>
375    
376            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Unsubscribe
377            VIEW_POSITION
378    
379    2002-09-04  Frank Koormann  <[email protected]>
380    
381            * Resources/Bitmaps/fullextent.xpm: Updated Icon (removed "potatoe")
382    
383    2002-09-02  Bernhard Herzog  <[email protected]>
384    
385            * Thuban/UI/view.py: Get rid of the idle redraw. This is done by
386            wxWindows already and our implementation doesn't work correctly
387            with wxGTK 2.3:
388            (MapCanvas.__init__): Remove the instance variable
389            (MapCanvas.OnPaint): Always call do_redraw when there's a map to
390            be drawin
391            (MapCanvas.OnIdle): Removed.
392    
393            * Thuban/UI/view.py (MapCanvas.unprojected_rect_around_point): Add
394            a parameter to determine the size of the rectangle.
395            (MapCanvas.find_shape_at): Create the box around the point on a
396            layer by layer basis and make the size depend on the shape type.
397            This solves a problem with the selection of point shapes at the
398            border of the layer's bounding box
399    
400    2002-08-30  Bernhard Herzog  <[email protected]>
401    
402            * Thuban/UI/mainwindow.py (MainWindow.CanRemoveLayer): New method
403            for the sensitivity  of remove layer.
404            (_can_remove_layer): New. Sensitivity callback for remove layer
405            (Command layer_remove): Use _can_remove_layer
406    
407            * Thuban/Model/map.py (Map.CanRemoveLayer): New method to
408            determine whether a given layer can be deleted.
409    
410            * Thuban/UI/view.py (MapCanvas.__init__, MapCanvas.OnPaint)
411            (MapCanvas.do_redraw): Get rid of the unused update_region
412            instance variable
413    
414            * Thuban/UI/view.py: Add/update some doc-strings.
415    
416            * test/: new subdirectory with a bunch of unit tests.
417    
418            * test/README, test/test_table.py, test/test_save.py,
419            test/test_menu.py, test/test_load.py: Initial set of tests and
420            brief instructions on how to run them
421    
422  2002-08-29  Bernhard Herzog  <[email protected]>  2002-08-29  Bernhard Herzog  <[email protected]>
423    
424          * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Handle          * Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Handle
# Line 42  Line 463 
463    
464          * Thuban/Model/table.py (Table.write_record): New method to write          * Thuban/Model/table.py (Table.write_record): New method to write
465          records.          records.
466          (Table.__init__): Open the DBF file for writing too.          (Table.__init__): Open the DBF file for writing too.
467    
468          * Thuban/UI/controls.py (RecordTable.SetValue): Write the value          * Thuban/UI/controls.py (RecordTable.SetValue): Write the value
469          into the underlying table.          into the underlying table.
# Line 80  Line 501 
501          * setup.py (ThubanInstall.run): Don't repr install_lib_orig          * setup.py (ThubanInstall.run): Don't repr install_lib_orig
502          because thubaninit_contents will do it for us.          because thubaninit_contents will do it for us.
503    
504  2002-08-16      Jan-Oliver Wagner <[email protected]>  2002-08-16  Jan-Oliver Wagner <[email protected]>
505    
506          * Thuban/UI/mainwindow.py: menu item 'show session tree' now disable if          * Thuban/UI/mainwindow.py: menu item 'show session tree' now disable if
507          tree window already open          tree window already open
# Line 208  Line 629 
629          * 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
630          CHANGED channel to be informed of changes.          CHANGED channel to be informed of changes.
631          (SessionTreeCtrl.session_channels): Not needed any longer.          (SessionTreeCtrl.session_channels): Not needed any longer.
632          (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):          (SessionTreeCtrl.unsubscribe_all, SessionTreeCtrl.session_changed):
633          Only have to (un)subscribe CHANGED          Only have to (un)subscribe CHANGED
634    
635          * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.          * Thuban/Model/map.py (Map.TreeInfo): Deal better with empty maps.
# Line 269  Line 690 
690          * Thuban/Model/layer.py (Layer.TreeInfo),          * Thuban/Model/layer.py (Layer.TreeInfo),
691          Thuban/Model/extension.py (Extension.TreeInfo),          Thuban/Model/extension.py (Extension.TreeInfo),
692          Thuban/Model/map.py (Map.TreeInfo),          Thuban/Model/map.py (Map.TreeInfo),
693          Thuban/Model/session.py (Session.TreeInfo):          Thuban/Model/session.py (Session.TreeInfo):
694          Add TreeInfo methods to implement the new tree view update scheme          Add TreeInfo methods to implement the new tree view update scheme
695    
696  2002-07-16  Bernhard Herzog  <[email protected]>  2002-07-16  Bernhard Herzog  <[email protected]>
# Line 350  Line 771 
771          * setup.py: In the setup call, make sure that the library          * setup.py: In the setup call, make sure that the library
772          directories are under $prefix/lib not directly under $prefix.          directories are under $prefix/lib not directly under $prefix.
773    
774  2002-06-20      Jan-Oliver Wagner <[email protected]>  2002-06-20  Jan-Oliver Wagner <[email protected]>
775    
776          * Thuban/Model/extension.py: new module to handle extension objects.          * Thuban/Model/extension.py: new module to handle extension objects.
777          * Thuban/Model/messages.py: new messages for extensions.          * Thuban/Model/messages.py: new messages for extensions.
# Line 579  Line 1000 
1000          * Thuban/UI/messages.py (VIEW_POSITION): New message for the          * Thuban/UI/messages.py (VIEW_POSITION): New message for the
1001          position in the statusbar          position in the statusbar
1002    
1003  2002-04-26      Frank Koormann <[email protected]>  2002-04-26  Frank Koormann <[email protected]>
1004    
1005          * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data          * Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data
1006    
1007  2002-04-24      Frank Koormann <[email protected]>  2002-04-24  Frank Koormann <[email protected]>
1008            
1009          * Resources/Bitmaps/identify.xpm: shadow added          * Resources/Bitmaps/identify.xpm: shadow added
1010    
1011          * Resources/Bitmaps/fullextent.xpm: new          * Resources/Bitmaps/fullextent.xpm: new
           
 2002-04-22      Jan-Oliver Wagner <[email protected]>  
1012    
1013          * Thuban/UI/tree.py (update_tree): added test for None on map bounding box  2002-04-22  Jan-Oliver Wagner <[email protected]>
1014    
1015            * Thuban/UI/tree.py (update_tree): added test for None on map bounding
1016            box
1017    
1018  2002-04-21      Jan-Oliver Wagner <[email protected]>  2002-04-21  Jan-Oliver Wagner <[email protected]>
1019    
1020          * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new          * Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new
1021    
1022          * Thuban/UI/tree.py (update_tree): added added map extent          * Thuban/UI/tree.py (update_tree): added added map extent
1023    
1024          * Thuban/UI/mainwindow.py (_method_command): extended by parameter          * Thuban/UI/mainwindow.py (_method_command): extended by parameter
1025          icon; added map_full_extend as tool          icon; added map_full_extend as tool
1026    
1027  2002-04-19      Jan-Oliver Wagner <[email protected]>  2002-04-19  Jan-Oliver Wagner <[email protected]>
1028    
1029          * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for          * Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for
1030          saving _new_ sessions          saving _new_ sessions
# Line 704  Line 1126 
1126    
1127          * setup.py: increase version number to 0.1          * setup.py: increase version number to 0.1
1128          (data_dist): New command class for data distribution          (data_dist): New command class for data distribution
           
1129    
1130  2001-09-14  Bernhard Herzog  <[email protected]>  2001-09-14  Bernhard Herzog  <[email protected]>
1131    
1132          * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):          * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape):
1133          Handle the case of no layer (i.e. layer is None) properly.          Handle the case of no layer (i.e. layer is None) properly.
1134    
1135          * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):          * Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__):
1136          Set the initial selection of the combo boxes to reflect the          Set the initial selection of the combo boxes to reflect the
1137          projection we're starting with in a way that works on windows,          projection we're starting with in a way that works on windows,
1138          too.          too.
# Line 821  Line 1242 
1242          (MainWindow.identify_view_on_demand): Store the interactor in an          (MainWindow.identify_view_on_demand): Store the interactor in an
1243          instvar and use that reference instead of going through main.app          instvar and use that reference instead of going through main.app
1244    
1245          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):          * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree):
1246          * Thuban/UI/application.py (ThubanApplication.OnInit):          * Thuban/UI/application.py (ThubanApplication.OnInit):
1247          * Thuban/UI/main.py (main): Create the session tree view in main          * Thuban/UI/main.py (main): Create the session tree view in main
1248          with the new mainwindow method ShowSessionTree and not directly          with the new mainwindow method ShowSessionTree and not directly
1249          the application's OnInit method          the application's OnInit method
# Line 838  Line 1259 
1259          layer to the tableview dialog.          layer to the tableview dialog.
1260    
1261          * Thuban/UI/tableview.py: Add some doc-strings          * Thuban/UI/tableview.py: Add some doc-strings
1262          (TableGrid):          (TableGrid):
1263          (TableGrid.OnRangeSelect):          (TableGrid.OnRangeSelect):
1264          (TableGrid.OnSelectCell):          (TableGrid.OnSelectCell):
1265          (TableFrame.__init__):          (TableFrame.__init__):
# Line 905  Line 1326 
1326  2001-09-05  Bernhard Herzog  <[email protected]>  2001-09-05  Bernhard Herzog  <[email protected]>
1327    
1328          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.          * Thuban/UI/view.py (MapCanvas.__init__): New argument, interactor.
1329            
1330          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument          * Thuban/UI/mainwindow.py (MainWindow.__init__): New argument
1331          interactor to pass through to the MapCanvas          interactor to pass through to the MapCanvas
1332            
1333          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new          * Thuban/UI/application.py (ThubanApplication.OnInit): Use the new
1334          argument to the MainWindow constructor to get rid of the ugly hack          argument to the MainWindow constructor to get rid of the ugly hack
1335          that made main.app available early just so that the mapcanvas          that made main.app available early just so that the mapcanvas
# Line 955  Line 1376 
1376          (ThubanInstall.run): Remove the leading install root from the          (ThubanInstall.run): Remove the leading install root from the
1377          script filename if an install root was specified and use the new          script filename if an install root was specified and use the new
1378          link_file method          link_file method
1379            
1380          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to          * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Fit the map to
1381          the window when the first layer is added to the map.          the window when the first layer is added to the map.
1382    
# Line 992  Line 1413 
1413          (InnoIconItem): Helper class for bdist_inno          (InnoIconItem): Helper class for bdist_inno
1414          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added          (thuban_bdist_inno): Thuban specific version of bdist_inno. Added
1415          this together with the appropriate parameters, to the setup call.          this together with the appropriate parameters, to the setup call.
1416            
1417          * setup.cfg (bdist_inno): added new section for the inno setup          * setup.cfg (bdist_inno): added new section for the inno setup
1418          installer          installer
1419    

Legend:
Removed from v.291  
changed lines
  Added in v.426

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26