Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dalfile / src / org / gvsig / fmap / dal / store / dxf / legend / DXFLegendBuilder.java @ 31631

History | View | Annotate | Download (4.01 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22

    
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

    
28
package org.gvsig.fmap.dal.store.dxf.legend;
29

    
30
import java.awt.Color;
31

    
32
import org.gvsig.dxf.px.dxf.AcadColor;
33
import org.gvsig.fmap.dal.DataTypes;
34
import org.gvsig.fmap.dal.feature.spi.FeatureProvider;
35
import org.gvsig.fmap.dal.feature.spi.FeatureStoreProvider;
36
import org.gvsig.fmap.dal.store.dxf.DXFStoreProvider;
37
import org.gvsig.fmap.dal.store.dxf.LegendBuilder;
38
import org.gvsig.fmap.geom.Geometry;
39
import org.gvsig.fmap.mapcontext.MapContextLocator;
40
import org.gvsig.fmap.mapcontext.MapContextManager;
41
import org.gvsig.fmap.mapcontext.rendering.legend.IVectorialUniqueValueLegend;
42
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
43
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.styling.AttrInTableLabelingStrategy;
44
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.fill.IFillSymbol;
45

    
46
public class DXFLegendBuilder implements LegendBuilder {
47

    
48
        private MapContextManager mapContextManager = MapContextLocator
49
                        .getMapContextManager();
50

    
51
        private IVectorialUniqueValueLegend defaultLegend = null;
52
        private AttrInTableLabelingStrategy labelingStragegy = null;
53

    
54
        public void begin() {
55
                // Nothing to do
56
        }
57

    
58
        public void end() {
59
                // Nothing to do
60
        }
61

    
62
        public Object getLegend() {
63
                return defaultLegend;
64
        }
65

    
66
        public LegendBuilder initialize(FeatureStoreProvider store) {
67
                defaultLegend = (IVectorialUniqueValueLegend) mapContextManager
68
                                .createLegend(IVectorialUniqueValueLegend.LEGEND_NAME);
69
                defaultLegend.setShapeType(Geometry.TYPES.GEOMETRY);
70
                defaultLegend
71
                                .setClassifyingFieldNames(new String[] { DXFStoreProvider.NAME_FIELD_COLOR });
72
                defaultLegend.setClassifyingFieldTypes(new int[] { DataTypes.INT });
73

    
74
                ISymbol myDefaultSymbol =
75
                                mapContextManager.getSymbolManager().createSymbol(
76
                                Geometry.TYPES.GEOMETRY, Color.BLACK);
77

    
78
                defaultLegend.setDefaultSymbol(myDefaultSymbol);
79

    
80
                labelingStragegy = new AttrInTableLabelingStrategy();
81
                labelingStragegy.setTextField(DXFStoreProvider.NAME_FIELD_TEXT);
82
                labelingStragegy
83
                                .setRotationField(DXFStoreProvider.NAME_FIELD_ROTATIONTEXT);
84
                labelingStragegy.setHeightField(DXFStoreProvider.NAME_FIELD_HEIGHTTEXT);
85
                labelingStragegy.setUnit(1); // MapContext.NAMES[1] (meters)
86
                return this;
87
        }
88

    
89
        public void process(FeatureProvider feature) {
90
                Integer clave = (Integer) feature.get("Color");
91
                if (clave == null) {
92
                        return;
93
                }
94

    
95
                if (defaultLegend.getSymbolByValue(clave) == null) {
96
                        ISymbol theSymbol;
97
                        Color color = null;
98
                        try {
99
                                color = AcadColor.getColor(clave.intValue());
100
                        } catch (ArrayIndexOutOfBoundsException e) {
101
                                color = AcadColor.getColor(255);
102
                        }
103
                        // jaume, moved to ISymbol
104
                        theSymbol =
105
                                        mapContextManager.getSymbolManager().createSymbol(
106
                                                        Geometry.TYPES.GEOMETRY,
107
                                        color);
108
                        theSymbol.setDescription(clave.toString());
109
                        // Asigna los colores de Autocad a los
110
                        // bordes
111
                        // de los pol?gonos.
112
                        if (theSymbol instanceof IFillSymbol) {
113
                                ((IFillSymbol) theSymbol).getOutline().setLineColor(color);
114

    
115
                        }
116
                        if (theSymbol != null) {
117
                                defaultLegend.addSymbol(clave, theSymbol);
118
                        }
119
                }
120
        }
121

    
122
        public Object getLabeling() {
123
                return labelingStragegy;
124
        }
125

    
126

    
127
}