1 |
|
2002-02-04 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* Thuban/UI/identifyview.py (IdentifyGridCtrl): New class to use a |
4 |
|
RecordGrid in the identifyview. |
5 |
|
(IdentifyView.__init__): Use IdentifyGridCtrl instead of |
6 |
|
IdentifyListCtrl. The grid allows editing of the values. |
7 |
|
|
8 |
|
* Thuban/UI/controls.py (RecordTable, RecordGridCtrl): New classes |
9 |
|
implementing a grid for a single row of a thuban table. |
10 |
|
|
11 |
|
* Thuban/UI/view.py (MapCanvas.SelectShapeAt): Search through all |
12 |
|
layers by default. Easier to use than the previous default of only |
13 |
|
searching through the select layer which meant that if no layer |
14 |
|
was selected, you couldn't select a shape. |
15 |
|
|
16 |
|
* Thuban/UI/tableview.py (TableGrid.__init__): Fix typo |
17 |
|
|
18 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Honour the |
19 |
|
stroke_width attribute |
20 |
|
|
21 |
|
* Thuban/Model/save.py (save_session): Write the new stroke_width |
22 |
|
attribute |
23 |
|
|
24 |
|
* Thuban/Model/load.py (ProcessSession.startElement): Read the |
25 |
|
stroke_width attribute |
26 |
|
|
27 |
|
* Thuban/Model/layer.py (Layer.__init__): New parameter and |
28 |
|
instance variable stroke_width |
29 |
|
(Layer.SetStrokeWidth): Set the stroke_width. |
30 |
|
|
31 |
|
2002-02-01 Bernhard Herzog <[email protected]> |
32 |
|
|
33 |
|
* extensions/thuban/wxproj.cpp (project_points): Fix two |
34 |
|
off-by-one errors in the last loop that joins the various parts |
35 |
|
together. |
36 |
|
|
37 |
|
2002-01-14 Bernhard Herzog <[email protected]> |
38 |
|
|
39 |
|
* setup.py (data_dist.make_distribution): Fix some typos |
40 |
|
|
41 |
|
2001-09-18 Bernhard Herzog <[email protected]> |
42 |
|
|
43 |
|
* README: Slight tweaking in preparation for the 0.1 release |
44 |
|
|
45 |
|
* setup.cfg: Add section for sdist to create both tgz and zip |
46 |
|
archives |
47 |
|
|
48 |
|
* setup.py: increase version number to 0.1 |
49 |
|
(data_dist): New command class for data distribution |
50 |
|
|
51 |
|
|
52 |
|
2001-09-14 Bernhard Herzog <[email protected]> |
53 |
|
|
54 |
|
* Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape): |
55 |
|
Handle the case of no layer (i.e. layer is None) properly. |
56 |
|
|
57 |
|
* Thuban/UI/proj4dialog.py (UTMDialog.__init__, Proj4Dialog.__init__): |
58 |
|
Set the initial selection of the combo boxes to reflect the |
59 |
|
projection we're starting with in a way that works on windows, |
60 |
|
too. |
61 |
|
|
62 |
|
* Thuban/Lib/connector.py (Connector.print_connections): Print the |
63 |
|
puiblisher's ids in hex to make it easier to compare them to the |
64 |
|
standard repr of python methods |
65 |
|
|
66 |
|
* Thuban/Model/map.py (Map.Destroy): Unsubscribe the label_layer |
67 |
|
messages |
68 |
|
|
69 |
2001-09-13 Bernhard Herzog <[email protected]> |
2001-09-13 Bernhard Herzog <[email protected]> |
70 |
|
|
71 |
|
* Thuban/UI/tree.py (SessionTreeCtrl.OnSelChanged): Make sure to |
72 |
|
deselect the layer if no layer is selected |
73 |
|
|
74 |
* Thuban/UI/view.py (MapCanvas.OnPaint): Only delay drawing to |
* Thuban/UI/view.py (MapCanvas.OnPaint): Only delay drawing to |
75 |
idle time when there actually is something to draw. If there's |
idle time when there actually is something to draw. If there's |
76 |
nothing to draw simply clear the window |
nothing to draw simply clear the window |
81 |
specify the point to move into the center of the window |
specify the point to move into the center of the window |
82 |
(ZoomOutTool.MouseUp, ZoomInTool.MouseUp): If the mouse wasn't |
(ZoomOutTool.MouseUp, ZoomInTool.MouseUp): If the mouse wasn't |
83 |
dragged, zoon in/out by a factor of 2 |
dragged, zoon in/out by a factor of 2 |
84 |
|
(MapCanvas.find_shape_at): Iterate backwards (i.e. with decreasing |
85 |
|
index, i.e. reversed drawing order) so that objects appearing to |
86 |
|
be in from of others are selected first. This is probably mostly |
87 |
|
relevant for point shapes where the symbols used may overlap |
88 |
|
|
89 |
* Thuban/Model/session.py (create_empty_session): Unset the |
* Thuban/Model/session.py (create_empty_session): Unset the |
90 |
modified bit before returning it |
modified bit before returning it |