1 |
|
2005-02-17 Jan-Oliver Wagner <[email protected]> |
2 |
|
|
3 |
|
Docstring improvements and minor fixes for labellayer. |
4 |
|
|
5 |
|
* Thuban/Model/map.py: |
6 |
|
(Map, Map.Destroy, Map.RemoveLayer, Map.ClearLayers, |
7 |
|
Map.Layers, Map.HasLayers, Map.MoveLayerToTop, |
8 |
|
Map.RaiseLayer, Map.LowerLayer, Map.MoveLayerToBottom, |
9 |
|
Map.ProjectedBoundingBox, Map.GetProjection): Improved/added |
10 |
|
doc string. |
11 |
|
(Map.BoundingBox): Removed superfluous test for label_layer |
12 |
|
and improved doc string. |
13 |
|
(Map.TreeInfo): Added label_layer and improved sdo string. |
14 |
|
|
15 |
|
* Thuban/Model/label.py: Added import of _. |
16 |
|
(Label, Label.__init__): Improved/added doc string. |
17 |
|
(LabelLayer, LabelLayer.__init__, LabelLayer.Labels, |
18 |
|
LabelLayer.RemoveLabel, LabelLayer.ClearLabels): |
19 |
|
Improved/added doc string. |
20 |
|
(LabelLayer.AddLabel): Use already defined names for |
21 |
|
align strings and improved doc string. |
22 |
|
(LabelLayer.TreeInfo): New. Return the object data for |
23 |
|
the tree view. |
24 |
|
|
25 |
|
2005-02-16 Jonathan Coles <[email protected]> |
26 |
|
|
27 |
|
Further wxPython 2.5 changes using patches from Daniel Calvelo Aros |
28 |
|
so that that wxproj doesn't crash. Added GUI support for selecting |
29 |
|
alpha channel (opacity can't be selected yet). |
30 |
|
|
31 |
|
NOTE: If wxPython.h is including in future distribution packages |
32 |
|
then it will not be necessary to have the files swigPtrConvertHack.h |
33 |
|
and wxPython_int.h included with Thuban. This is hopefully |
34 |
|
a temporary workaround. |
35 |
|
|
36 |
|
* setup.py (thuban_build_ext.finalize_options): gdalwarp needs |
37 |
|
access to the macro wxCHECK_VERSION so that it will properly |
38 |
|
generate a bit mask. There was a problem between wx2.4 and wx2.5 |
39 |
|
that this works around. |
40 |
|
|
41 |
|
* Thuban/Model/layer.py (RasterLayer.UseMask): Removed in favor |
42 |
|
of RasterLayer.MaskType. |
43 |
|
(RasterLayer.SetUseMask): Removed in favor of RasterLayer.SetMaskType |
44 |
|
(RasterLayer.MaskType): New. Returns the type of mask to use. Can |
45 |
|
specify none, a bitmap, or an alpha channel. |
46 |
|
(RasterLayer.SetMaskType): New. Set what kind of mask to use. |
47 |
|
|
48 |
|
* Thuban/UI/baserenderer.py (BaseRenderer.draw_raster_layer): |
49 |
|
Set the raster warping options for the mask based on the value |
50 |
|
of RasterLayer.MaskType. |
51 |
|
|
52 |
|
* Thuban/UI/legend.py (LegendTree.__FillTreeLayer): Remove |
53 |
|
deprecated calls to SetItemSelectedImage in favor of SetItemImage |
54 |
|
with wxTreeItemIcon_Selected. |
55 |
|
|
56 |
|
* Thuban/UI/rasterlayerproperties.py: Support selecting to use |
57 |
|
an alpha channel for the mask. |
58 |
|
|
59 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_raster_data): Use alpha |
60 |
|
data if it is available and an alpha channel is supported under |
61 |
|
the current version of wxPython. |
62 |
|
|
63 |
|
* libraries/thuban/gdalwarp.cpp (GetImageData): Added compiler define |
64 |
|
to select whether 1's or 0's select the desired portion of an image |
65 |
|
in the bit mask. wx2.4 has a bug where the documentation is the opposite |
66 |
|
from behavior. |
67 |
|
(ProjectRasterFile): Only generate an alpha channel if the version |
68 |
|
of wxPython is >= 2.5.3. |
69 |
|
|
70 |
|
* libraries/thuban/wxproj.cpp: Applied patches from Daniel Calvelo Aros. |
71 |
|
When wxPython >= 2.5.3 use the special swig functions to decode an |
72 |
|
object's address. |
73 |
|
|
74 |
|
* libraries/thuban/swigPtrConvertHack.h: Includes conditional code |
75 |
|
based on the version of wxPython. If >= 2.5.3 use the special swig |
76 |
|
functions from wxPython to decode wxPython objects, otherwise use |
77 |
|
the old method of retrieving the address from the object __repr__ string. |
78 |
|
|
79 |
|
* libraries/thuban/wxPython_int.h: Copied from wxPython source. |
80 |
|
Unnecessary code was removed to make it smaller. |
81 |
|
|
82 |
|
* test/test_baserenderer.py (TestBaseRenderer.test_raster_no_projection): |
83 |
|
Add tests for returning an alpha channel. |
84 |
|
|
85 |
|
* test/test_layer.py (TestLayerModification.test_raster_layer): Fix |
86 |
|
tests that used removed functions UseMask and SetUseMask |
87 |
|
|
88 |
|
|
89 |
2005-02-08 Bernhard Herzog <[email protected]> |
2005-02-08 Bernhard Herzog <[email protected]> |
90 |
|
|
91 |
More wxPython 2.5 changes. This time taken from a patch from |
More wxPython 2.5 changes. This time taken from a patch from |