/[thuban]/branches/WIP-pyshapelib-bramz/ChangeLog
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1044 by bh, Mon May 26 19:27:40 2003 UTC revision 1201 by jonathan, Fri Jun 13 15:05:01 2003 UTC
# Line 1  Line 1 
1    2003-06-13  Jonathan Coles   <[email protected]>
2    
3            * Thuban/UI/dialogs.py (ThubanFrame): New: a class that inherits
4            from wxFrame (as opposed to wxDialog like the other classes)
5            but otherwise behaves like the other classes. This is needed
6            for the TableView which isn't really a dialog and needs to
7            have a status bar and control buttons.
8    
9            * Thuban/UI/tableview.py (TableGrid.__init__): Create an
10            instance variable to keep track of how many rows are selected.
11            Subscribe once to the the events we are interested in.
12            (ThubanGrid.OnRangeSelect): Only handle event if event handling
13            hasn't been turned off.
14            (ThubanGrid.OnSelectCell): Only handle event if event handling
15            hasn't been turned off.
16            (ThubanGrid.ToggleEventListeners): Rather than subscribe None
17            as an event listener (which changes the event handler stack)
18            simply set an instance variable to False. This is checked in
19            the event handlers.
20            (ThubanGrid.GetNumberSelected): Return the number of currently
21            selected rows.
22            (TableFrame): Inherit from ThubanFrame so we can have a
23            status bar and control buttons.
24            (QueryTableFrame.__init__): Create a status bar. Fixes RTbug #1942.
25            Explicitly set which items are selected in the operator choice and
26            action choice so there is always a valid selection. Fixes RTbug #1941.
27            Subscribe to grid cell selection events so we can update the
28            status bar.
29            (QueryTableFrame.UpdateStatusText): Update the status bar with
30            how many rows are in the grid, how many columns, and how many
31            rows are selected.
32            (QueryTableFrame.OnGridSelectRange, QueryTableFrame.OnGridSelectCell):
33            Call UpdateStatusText when cells are (de)selected.
34            (QueryTableFrame.OnQuery): Use the string value in the value
35            combo if either the selected item index is 0 or if the string
36            cannot be found in the predefined list (this happens if the
37            user changes the text). Fixes RTbug #1940.
38            Only turn off the grid event listeners if there a query comes
39            back with a none empty list of ids. in the case that the list
40            is empty this causes a grid.ClearSelection() call to actually
41            clear the grid selection which causes the selected items in
42            the map to be deselected. Fixes RTbug #1939.
43    
44            * test/test_save.py (XMLWriterTest.Encode): Check return values.
45            Fixes RTbug #1851.
46    
47    2003-06-13  Bernhard Herzog  <[email protected]>
48    
49            * Thuban/UI/identifyview.py (IdentifyView.__init__): Call
50            self.selected_shape with the current selection to make sure the
51            contents of the dialog are up to date when it's shown for the
52            first time.
53            The dialog used to work without this by luck. The recent fix to
54            the connector module 'broke' a 'feature' the identify view was
55            relying on, i.e that subscribing to a message in response to
56            receiving a message of that type would mean that the new
57            subscriber would also be called for the same message.
58            
59    2003-06-12  Jonathan Coles   <[email protected]>
60    
61            * extensions/thuban/gdalwarp.cpp: Removed debug printing as
62            the image is rendered. Fixes RTbug #1937.
63    
64    2003-06-12  Jonathan Coles   <[email protected]>
65    
66            * Thuban/Lib/fileutil.py: As is done under Windows, create the
67            user directory if it doesn't exist on a posix system.
68            Fixes RTbug #1815.
69    
70            * Thuban/Model/resource.py (get_user_proj_files): Moved the
71            called to get_application_dir here, so that the directory
72            will only be called if this method is invoked.
73    
74            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Clear
75            the projfilepath if no projection is selected.
76    
77    2003-06-12  Jonathan Coles   <[email protected]>
78    
79            * Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Don't draw
80            the scalebar if the current map has no projection set.
81    
82            * Thuban/UI/projdialog.py (ProjFrame.__DoOnProjAvail): Set the
83            projfilepath label to just the basename of the projection file
84            rather than include the entire path.
85    
86            * Thuban/Model/resource.py: Fix missed proj functions that
87            needed to be renamed.
88    
89    2003-06-12  Jonathan Coles   <[email protected]>
90    
91            * Thuban/Model/classification.py: Removed assert statements that
92            tested if the variable was an instance of Color.
93    
94            * Thuban/Model/color.py (Color): Remove commented code that isn't
95            used.
96            (Transparent): Renamed from NoColor. Doesn't inherit from Color.
97            Fixes RTbug #1835.
98            (Transparent.__eq__, Transparent.__ne, Transparent.__repr): New.
99            Needed now that the class doesn't inherit from Color.
100    
101    2003-06-12  Jonathan Coles   <[email protected]>
102    
103            * test/test_save.py (XMLWriterTest.testEncode): Explicitly
104            check unicode strings.
105    
106            * test/test_layer.py: Check for existence of gdal.
107    
108    2003-06-12  Jonathan Coles   <[email protected]>
109        
110            * Thuban/Model/xmlreader.py: New. Contains the XMLReader class
111            that was in load.py
112    
113            * Thuban/Model/xmlwriter.py: New. Contains the XMLWriter class
114            that was in save.py
115    
116    2003-06-12  Jonathan Coles   <[email protected]>
117    
118            This is largely a collection of bug fixes. We also handle the
119            case where gdal is not on the system. The XMLReader and XMLWriter
120            classes were moved into there own files to resolve some circular
121            import references and because they shouldn't really be in the
122            file that is dediciated to reading/writing session files since
123            they are also used elsewhere.
124    
125            * Thuban/Model/classgen.py: Renamed functions to follow the
126            function_names_with_underscores style. Fixes RTbug #1903.
127            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
128    
129            * Thuban/Model/layer.py: Import gdal only if it available.
130            (RasterLayer): Handle the case where the gdal library is unavailable.
131            Addresses RTbug #1877.
132    
133            * Thuban/Model/load.py (XMLReader): Moved into seperate file
134            xmlreader.py.
135    
136    2003-06-12  Jonathan Coles   <[email protected]>
137    
138            This is largely a collection of bug fixes. We also handle the
139            case where gdal is not on the system. The XMLReader and XMLWriter
140            classes were moved into there own files to resolve some circular
141            import references and because they shouldn't really be in the
142            file that is dediciated to reading/writing session files since
143            they are also used elsewhere.
144    
145            * Thuban/Model/classgen.py: Renamed functions to follow the
146            function_names_with_underscores style. Fixes RTbug #1903.
147            (calculate_quantiles): Raise ValueError if 'percents' is invalid.
148    
149            * Thuban/Model/layer.py: Import gdal only if it available.
150            (RasterLayer): Handle the case where the gdal library is unavailable.
151            Addresses RTbug #1877.
152    
153            * Thuban/Model/load.py (XMLReader): Moved into seperate file
154            xmlreader.py.
155    
156            * Thuban/Model/save.py (escape, XMLWriter): Moved into seperate
157            file xmlwriter.py.
158    
159            * Thuban/Model/resource.py: Renamed functions to following the
160            function_names_with_underscores style.
161            (has_gdal_support): New function that returns true if the gdal
162            library is available. Addresses RTbug #1877.
163    
164            * Thuban/UI/application.py (ThubanApplication.OpenSession):
165            Display a message box if the gdal library is not available, but
166            only if there are any layers that would use it. Addresses RTbug #1877.
167    
168            * Thuban/UI/classgen.py: Use renamed projection resource functions.
169            (GenUniformPanel.__CalcStepping): Fix a slight discrepency
170            when using integers versus floats.
171    
172            * Thuban/UI/mainwindow.py (_has_gdal_support): New. Used to
173            determine if the "Add Image Layer" menu option should be
174            greyed out or not. Addresses RTbug #1877.
175    
176            * Thuban/UI/projdialog.py: Use renamed projection resource functions.
177    
178            * Thuban/UI/renderer.py (MapRenderer.render_map): Only try to
179            optimize if a raster layer is visible. Fixes RTbug #1931.
180            Only draw the raster layer if the gdal library is available.
181            Addresses RTbug #1877.
182    
183            * test/test_classgen.py: Add tests for generate_singletons,
184            generate_uniform_distribution, generate_quantiles. Fixes RTbug #1903.
185            (test_calculate_quantiles): Fix some tests to catch the new
186            ValueError that is raised.
187    
188            * test/test_proj.py: Use renamed projection resource functions.
189    
190            * test/test_save.py (SaveSessionTest.testClassifiedLayer): New
191            test for saving classified layers. Fixes RTbug #1902.
192            (XMLWriterTest): New. Tests the XMLWriter class. Fixes RTbug #1851.
193    
194    2003-06-12  Jan-Oliver Wagner <[email protected]>
195    
196            Fix for http://intevation.de/rt/webrt?serial_num=1900.
197    
198            * Thuban/UI/multiplechoicedialog.py: New. A multiple choice dialog.
199    
200            * Thuban/UI/mainwindow.py: import wxMultipleChoiceDialog from
201            multiplechoicedialog.py rather than from the wxPython library.
202    
203    2003-06-11  Frank Koormann  <[email protected]>
204    
205            * Thuban/Lib/fileutil.py (get_application_dir): Minor stability
206            update.
207    
208    2003-06-11  Frank Koormann  <[email protected]>
209    
210            * Thuban/Lib/fileutil.py (get_application_dir): New function to
211            determine the absolute .thuban/thuban directory under
212            "posix" (os.expanduser) and "nt" (read AppData registry key).
213    
214            * Thuban/Model/resource.py: Use get_application_dir
215    
216            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
217            Use get_application_dir.
218    
219    2003-06-10  Bernhard Herzog  <[email protected]>
220    
221            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Subscribe to
222            the messages MAP_LAYERS_REMOVED messages
223            (LayerTableFrame.OnClose): Unsubscribe from it.
224            (LayerTableFrame.map_layers_removed): New. Receiver for
225            MAP_LAYERS_REMOVED. Close the dialog when the layer whose the
226            dialog is showing is removed.
227    
228    2003-06-10  Bernhard Herzog  <[email protected]>
229    
230            * Thuban/Lib/connector.py (Connector.Issue): Iterate over a copy
231            of the receivers list so that unsubscribing in a receiver doesn't
232            modify it while iterating over it.
233    
234            * test/test_connector.py
235            (ConnectorTest.test_disconnect_in_receiver): New. Test whether
236            unsubscribing in a receiver works correctly. See docstring for
237            details
238    
239    2003-06-10  Bernhard Herzog  <[email protected]>
240    
241            * Thuban/Model/messages.py (LAYER_SHAPESTORE_REPLACED): New
242            message.
243    
244            * Thuban/Model/layer.py (Layer.SetShapeStore): Send
245            LAYER_SHAPESTORE_REPLACED when the shapestore changes. A
246            LAYER_CHANGED will still be sent if the classification changes.
247    
248            * Thuban/UI/classifier.py (Classifier.__init__): Add the map as
249            parameter so we can subscribe to some of its messages
250            (Classifier.__init__): Subscribe to the map's MAP_LAYERS_REMOVED
251            and the layer's LAYER_SHAPESTORE_REPLACED
252            (Classifier.unsubscribe_messages): New. Unsubscribe from message
253            subscribed to in __init__
254            (Classifier.map_layers_removed)
255            (Classifier.layer_shapestore_replaced): receivers for the messages
256            subscribed to in __init__. Unsubscribe and close the dialog
257    
258            * Thuban/UI/mainwindow.py (MainWindow.OpenLayerProperties): Pass
259            the map to the Classifier dialog
260    
261            * test/test_layer.py (SetShapeStoreTests): Derive from
262            SubscriberMixin as well so we can test messages
263            (SetShapeStoreTests.setUp): Subscribe to some of the layer's
264            messages
265            (SetShapeStoreTests.tearDown): Clear the messages again
266            (SetShapeStoreTests.test_sanity): Expand the doc-string and check
267            for the modified flag too
268            (SetShapeStoreTests.test_set_shape_store_modified_flag): New test
269            to check whether SetShapeStore sets the modified flag
270            (SetShapeStoreTests.test_set_shape_store_different_field_name)
271            (SetShapeStoreTests.test_set_shape_store_same_field)
272            (SetShapeStoreTests.test_set_shape_store_same_field_different_type):
273            Add tests for the messages. This checks both the new
274            LAYER_SHAPESTORE_REPLACED and the older LAYER_CHANGED
275    
276    2003-06-06  Jan-Oliver Wagner <[email protected]>
277    
278            * Thuban/UI/mainwindow.py: Improved and partly added help texts for
279            the menu items.
280    
281    2003-06-05  Frank Koormann  <[email protected]>
282    
283            * Thuban/UI/identifyview.py (IdentifyView.__init__):
284            Layout reimplemented without panel. Make life easier to fit the list
285            in the dialog.
286    
287    2003-06-05  Frank Koormann  <[email protected]>
288    
289            * Thuban/UI/projdialog.py (ProjFrame.__init__): Fill the projchoice
290            once on initialisation (Former implementation resulted in multiple
291            entries for each projection).
292            (ProjFrame.__FillAvailList): selectProj as second optional parameter,
293            if set, select the projection found under the specified name. This
294            overwrites any other selection estimate.
295            Removed projchoice filling from this method.
296            (ProjFrame._OnSave, ProjFrame._OnAddToList):
297            Updated call of ProjFrame.__FillAvailList
298            (LCCPanel._DoLayout): Moved parameter controls in more common order.
299    
300            * Resources/Projections/defaults.proj: Extended defaults representing
301            various common European projections.
302    
303    2003-06-05  Frank Koormann  <[email protected]>
304    
305            * Thuban/UI/identifyview.py (IdentifyView.__init__):
306            Use ListCtrl instead of GridCtrl
307    
308            * Thuban/Model/resource.py:
309            Guess location of .thuban directory from tempdir parent directory.
310    
311            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
312            Guess location of .thuban directory from tempdir parent directory.
313    
314    2003-06-04  Bernhard Herzog  <[email protected]>
315    
316            Do not cache the values returned by the tree widget's
317            GetFirstChild and GetNextChild methods because it led to lots of
318            segfaults. The new way requires more brute force but is more
319            reliable.
320    
321            * Thuban/UI/legend.py (LegendTree.__init__): Remove instance
322            variable layer2id
323            (LegendTree.find_layer): New method to do with brute force what
324            layer2id tried to accomplish
325            (LegendTree._OnMsgLayerChanged)
326            (LegendTree._OnMsgLayerTitleChanged, LegendTree.__ShowHideLayer):
327            Use find_layer instead of layer2id
328            (LegendTree.__RemoveLayer, LegendTree.__AddLayer): No need to
329            update layer2id anymore
330            (LegendTree._OnMsgMapLayersRemoved)
331            (LegendTree._OnMsgMapLayersAdded): Get by without layer2id.
332    
333    2003-06-03  Thomas Koester  <[email protected]>
334    
335            * Thuban/Model/classgen.py (GenQuantiles0): New function.
336    
337    2003-06-02  Bernhard Herzog  <[email protected]>
338    
339            * Thuban/UI/mainwindow.py (layer_rename command, table_rename command):
340            New commands.
341            (main_menu): Add the new commands.
342            (MainWindow.TableRename): New. Implementation of the table_rename
343            command.
344            (MainWindow.RenameLayer): New. Implementation of the layer_rename
345            command.
346    
347            * Thuban/Model/session.py (Session.AddTable): call self.changed to
348            set the modified flag
349    
350            * test/test_session.py (TestSessionSimple.test_add_table): Test
351            whether the modified flag is set properly
352    
353            * Thuban/Model/base.py (TitledObject.SetTitle): Call changed
354            instead of issue so that the modified flags get updated.
355    
356            * test/test_base.py (SomeTitledObject): Derive from Modifiable
357            instead of Publisher to reflect reality better and to accomodate
358            the fact that SetTitle now calls changed instead of issue
359    
360    2003-06-02  Bernhard Herzog  <[email protected]>
361    
362            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Resource
363            acquisition has to happen before the try in a try-finally.
364    
365    2003-06-02  Bernhard Herzog  <[email protected]>
366    
367            * Thuban/UI/legend.py (LegendTree._OnMsgMapLayersRemoved): It's
368            possible that a layer is removed that is not currently selected in
369            the legend so don't check for this.
370    
371    2003-05-30  Bernhard Herzog  <[email protected]>
372    
373            * Thuban/Model/layer.py (Layer.Destroy): Set all instance
374            variables to None that have direct or indirect references to
375            shapefiles or dbf files to make sure that they do go away and the
376            files are closed.
377    
378    2003-05-30  Bernhard Herzog  <[email protected]>
379    
380            * Thuban/UI/legend.py (LegendTree.GetRootItem): Reset
381            availImgListIndices when a new image list is created
382            
383    2003-05-30  Bernhard Herzog  <[email protected]>
384    
385            * Thuban/UI/legend.py (LegendTree.__init__): New instance variable
386            changing_selection to indicate whether the LegendTree code itself
387            is currently changing the selection
388            (LegendTree.normalize_selection): New method to normalize the
389            selection by selecting the layer item even if the user clicked on
390            the classification.
391            (LegendTree._OnSelChanged): normalize the selection. This works
392            around a bug in wx which doesn't keep track of the selection
393            properly when subtrees are deleted.
394    
395    2003-05-30  Bernhard Herzog  <[email protected]>
396    
397            * Thuban/UI/view.py (MapCanvas.set_view_transform): Limit the
398            maximum and minimum scale factors.
399    
400            * test/test_classgen.py (ClassGenTest.test): Update to reflect the
401            changes in classgen.py
402    
403    2003-05-30  Jonathan Coles   <[email protected]>
404    
405            * Thuban/Model/classgen.py: Remove ClassGenerator class but make
406            all the methods functions. Fixes RTBug #1903.
407    
408            * Thuban/Model/map.py (Map.TopLayer, Map.BottomLayer): Renamed
409            to MoveLayerToTop and MoveLayerToBottom respectively. Fixes
410            RTBug #1907.
411    
412            * Thuban/UI/classgen.py: Use classgen functions that were part
413            of the ClassGenerator class. Put try/finally blocks around
414            code that uses wxBeginBusyCursor()/wxEndBusyCursor(). Fixes
415            RTBug #1904.
416    
417            * Thuban/UI/classifier.py: Remove unused import of ClassGenerator.
418    
419            * Thuban/UI/legend.py: The legend was cleared and repopulated any
420            time something changed which caused some state to be lost such
421            as which children were expanded or collapsed. Fixes RTBug #1901.
422            (LegendTree._OnMsgMapLayersAdded): Add only new layers.
423            (LegendTree.__OnMsgMapLayersRemoved): Remove layers that exist in
424            the legend but not in the map.
425            (LegendTree.__FillTree): Move main functionality out into smaller
426            methods that can be used by other methods.
427            (LegendTree.__FillTreeLayer): Reuse old slots in the image list
428            if they are available.
429            (LegendTree.DeleteAllItems): Renamed from __DeleteAllItems so
430            that we override the wxTreeCtrl method. Iterate over children
431            and call __RemoveLayer.
432            (LegendTree.__AddLayer): New. Add a new layer to the legend.
433            (LegendTree.__RemoveLayer): Remove a layer from the legend.
434            (LegendTree.DeleteChildren): New, overrides wxTreeCtrl method.
435            Should only be called with the id of a layer branch.
436            (LegendTree.GetRootItem): New, overrides wxTreeCtrl method.
437            Returns the root item or creates one if necessary.
438    
439            * Thuban/UI/renderer.py (MapRenderer.draw_raster_layer): Call
440            ProjectRasterFile with tuple arguments instead of strings.
441    
442            * Thuban/UI/tableview.py (QueryTableFrame.OnQuery): Wrap code
443            with try/finally. Fixes RTBug #1904.
444    
445            * Thuban/UI/view.py (MapCanvas.OnPaint): Wrap code
446            with try/finally. Fixes RTBug #1904.
447            (MapCanvas.FitSelectedToWindow): If a single point is selected
448            simply center it on the display. Fixes RTBug #1849.
449    
450            * extensions/thuban/gdalwarp.cpp: Removed code that allowed gdalwarp
451            to be compiled as a standalone app. Now the code can only be
452            called from Python which simplifies the parameter passing.
453            (ProjectRasterFile): Handle Python arguments. Remove code that
454            checks for a destination dataset. Add more clean up code.
455    
456            * test/test_map.py (TestMapWithContents.test_raise_layer_top,
457            TestMapWithContents.test_lower_layer_bottom):
458            Test Map.MoveLayerToTop() and Map.MoveLayerToBottom() respectively.
459            Fixes RTBug #1907.
460    
461            * Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Apply a full
462            extent to the map when the legend is toggled. Fixes RTBug #1881.
463    
464    2003-05-29  Jan-Oliver Wagner <[email protected]>
465    
466            * Thuban/UI/tableview.py (LayerTableFrame.OnClose): Bug-fix: Now
467            unsubscribes all that is subcribed in __init__.
468    
469    2003-05-28  Bernhard Herzog  <[email protected]>
470    
471            * Thuban/UI/mainwindow.py (MainWindow.DuplicateLayer)
472            (MainWindow.CanDuplicateLayer): New methods to implement the
473            Layer/Duplicate command.
474            (layer_duplicate command): New.
475            (main_menu): Add layer_duplicate to the Layer menu.
476    
477    2003-05-28  Bernhard Herzog  <[email protected]>
478    
479            * Thuban/UI/tableview.py (NullRenderer.Draw): New. Our own
480            renderer so that NULL/None values get displayed differently (by a
481            gray rectangle).
482            (TableGrid.__init__): Override the default renderers
483    
484    2003-05-28  Bernhard Herzog  <[email protected]>
485    
486            * Thuban/Model/layer.py (Layer.SetShapeStore): Set the
487            classification to "None" if the type of the field has changed.
488    
489            * test/test_layer.py (SetShapeStoreTests): New. Class with a few
490            test for the Layer.SetShapeStore method
491    
492    2003-05-28  Jan-Oliver Wagner <[email protected]>
493    
494            * Thuban/Model/layer.py (Layer.TreeInfo): Fixed a bug (a layer
495            does not necessarily have a filename).
496    
497    2003-05-28  Jan-Oliver Wagner <[email protected]>
498    
499            * Thuban/UI/mainwindow.py (MainWindow.TableClose, MainWindow.TableShow):
500            sort the selection list for the dialog.
501    
502    2003-05-28  Frank Koormann  <[email protected]>
503    
504            * extensions/thuban/wxproj.cpp
505            (project_point): Removed cast to int for projected point coordinates.
506            (shape_centroid): Return last point if all polygon vertices fall
507            to one point.
508    
509    2003-05-28  Bernhard Herzog  <[email protected]>
510    
511            * Thuban/UI/mainwindow.py (_can_unjoin): Add doc-string and cope
512            with layers that don't have shapestores, i.e. raster layers.
513    
514    2003-05-28  Bernhard Herzog  <[email protected]>
515    
516            * Thuban/Model/table.py (DBFTable.__init__): Omit the extension
517            when determining the title from the filename.
518    
519            * test/test_dbf_table.py (TestDBFTable.test_title): Update to
520            reflect changes in the way the title is derived from the filename
521    
522    2003-05-28  Frank Koormann  <[email protected]>
523    
524            * Thuban/UI/mainwindow.py (MainWindow.TableShow):
525            Added wxDEFAULT_DIALOG_STYLE to show table dialog styles.
526    
527    2003-05-27  Bernhard Herzog  <[email protected]>
528    
529            * Thuban/UI/mainwindow.py (MainWindow.delegated_messages): Also
530            delegate SelectedLayer.
531            (MainWindow.LayerUnjoinTable): Implement.
532            (_can_unjoin): New. Helper function for the sensitivity of the
533            layer/unjoin command.
534    
535            * Thuban/Model/data.py (ShapefileStore.OrigShapeStore)
536            (DerivedShapeStore.OrigShapeStore): New. Return the original
537            shapestore. Used to figure out how to unjoin.
538            (DerivedShapeStore.Shapefile): Fix a typo.
539    
540    2003-05-27  Bernhard Herzog  <[email protected]>
541    
542            * Thuban/UI/join.py (JoinDialog): Extend to handle layer joins as
543            well
544            (JoinDialog.__init__): Use the layer parameter and only build the
545            left choice when a layer is given
546            (JoinDialog.OnJoin): Handle layer joins as well
547            (JoinDialog.OnLeftTable, JoinDialog.OnRightTable): Handle the case
548            that the user selects the "Select..." item. The sensitivitly
549            updating is now in update_sensitivity
550            (JoinDialog.y): New method to refactor the sensitivity update of
551            the join button into its own method.
552    
553            * Thuban/UI/mainwindow.py (MainWindow.LayerJoinTable): Implement.
554    
555    2003-05-27  Bernhard Herzog  <[email protected]>
556    
557            * Thuban/UI/mainwindow.py (table_close command): Make it sensitive
558            iff there are unreferenced tables in the session
559    
560    2003-05-27  Bernhard Herzog  <[email protected]>
561    
562            * Thuban/Model/messages.py (TABLE_REMOVED): New message.
563    
564            * Thuban/Model/session.py (Session.UnreferencedTables): New method
565            to return tables that are not referenced by other tables or shape
566            stores and can be removed.
567            (Session.RemoveTable): Issue a TABLE_REMOVED message after
568            removing the table
569    
570            * Thuban/UI/mainwindow.py: Remove unused imports
571            (MainWindow.TableClose): Implement.
572    
573            * Thuban/UI/tableview.py (TableFrame.__init__): Subscribe to some
574            messages so that the frame will be automatically closed when a new
575            session is opened or the table is removed.
576            (TableFrame.OnClose): Unsubscribe the Subscriptions made in
577            __init__
578            (TableFrame.close_on_session_replaced)
579            (TableFrame.close_on_table_removed): New. Subscribers that close
580            the window
581    
582            * test/test_session.py (TestSessionMessages.test_remove_table)
583            (TestSessionSimple.test_remove_table): Move the test to
584            TestSessionSimple and add test for the TABLE_REMOVED message
585            (TestSessionBase.setUp): Also subscribe to TABLE_REMOVED
586            (TestSessionSimple.test_unreferenced_tables) New. Test for the
587            UnreferencedTables method.
588            (UnreferencedTablesTests): New. Class with some more sophisticated
589            tests for UnreferencedTables.
590    
591    2003-05-27  Frank Koormann  <[email protected]>
592    
593            * Thuban/UI/tableview.py (QueryTableFrame.__init__): The "_S_election"
594            display has some unwanted side effects. Removed again.
595    
596    2003-05-27  Frank Koormann  <[email protected]>
597    
598            * Resources/Bitmaps/legend_icon_layer.xpm: New, icon for legend.
599    
600            * Thuban/UI/legend.py (LegendTree.__FillTree): Use "legend_icon_layer"
601    
602    2003-05-27  Jan-Oliver Wagner <[email protected]>
603    
604            * test/test_menu.py (MenuTest.test): Added test for
605            Menu.RemoveItem().
606    
607            * Thuban/UI/menu.py (Menu.RemoveItem): New. Remove an item from
608            the menu.
609    
610    2003-05-27  Frank Koormann  <[email protected]>
611            
612            Nonmodal dialogs without parent (i.e. they can fall behind the main
613            window)
614    
615            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Explicitly destroy
616            all dialogs in the dialogs dictionary and the canvas.
617    
618            * Thuban/UI/dialogs.py (NonModalNonParentDialog): New class, without
619            parent, i.e. can fall behind other windows.
620            (NonModalDialog.OnClose): Check is dialog is in mainwindow.dialog
621            dictionary before removing it.
622    
623            * Thuban/UI/classifier.py: Dialog derived from NonModalNonParentDialog
624    
625            * Thuban/UI/projdialog.py: Dialog derived from NonModalNonParentDialog
626            * Thuban/UI/tableview.py: Dialog derived from NonModalNonParentDialog
627            * Thuban/UI/tree.py: Dialog derived from NonModalNonParentDialog
628    
629    2003-05-27  Bernhard Herzog  <[email protected]>
630    
631            * Thuban/UI/mainwindow.py (MainWindow.ShowTableView): New. Open a
632            tableview dialog
633            (MainWindow.TableShow): Use ShowTableView to open the dialogs.
634            Also, don't use the table's titles as the dialog names. The titles
635            aren't guaranteed to be unique.
636            (MainWindow.TableOpen): Open a table view dialog after opening the
637            table
638    
639    2003-05-27  Bernhard Herzog  <[email protected]>
640    
641            * Thuban/UI/mainwindow.py: Remove the Table/Hide menu item. Its
642            effect can be achieved by simply closing the window showing the
643            table.
644            (MainWindow.TableHide): Removed.
645            (main_menu): Removed "table_hide"
646    
647    2003-05-27  Frank Koormann  <[email protected]>
648    
649            Fix legend tree display problems under Win32
650    
651            * Thuban/UI/legend.py:  BMP_SIZE_W = 15
652            (LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title.
653            (LegendTree.__FillTreeLayer): Explicitely set SelectedImage.
654    
655            * Resources/Bitmaps/legend_icon_map.xpm: New icon for legend.
656    
657    2003-05-27  Jan-Oliver Wagner <[email protected]>
658    
659            * Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter
660            'after' now allows to insert separators almost anywhere in the menu.
661    
662    2003-05-27  Frank Koormann  <[email protected]>
663    
664            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
665            "S" of selection box label to hint on hot key (Alt-S). Works under
666            Win32 but is ignored under GTK.
667    
668    2003-05-26  Frank Koormann  <[email protected]>
669    
670            * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
671            Center Choices.
672    
673  2003-05-26  Bernhard Herzog  <[email protected]>  2003-05-26  Bernhard Herzog  <[email protected]>
674    
675          Remove the Precision methods again. They're too DBF specific to be          Remove the Precision methods again. They're too DBF specific to be

Legend:
Removed from v.1044  
changed lines
  Added in v.1201

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26