Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / extDwg / src / org / gvsig / dwg / fmap / dal / store / dwg / legend / DWGLegendBuilder.java @ 29628

History | View | Annotate | Download (3.84 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.dwg.fmap.dal.store.dwg.legend;
29

    
30
import java.awt.Color;
31

    
32
import org.gvsig.dwg.fmap.dal.store.dwg.DWGStoreProvider;
33
import org.gvsig.dwg.fmap.dal.store.dwg.LegendBuilder;
34
import org.gvsig.dxf.px.dxf.AcadColor;
35
import org.gvsig.fmap.dal.DataTypes;
36
import org.gvsig.fmap.dal.feature.spi.FeatureProvider;
37
import org.gvsig.fmap.dal.feature.spi.FeatureStoreProvider;
38
import org.gvsig.fmap.geom.Geometry;
39
import org.gvsig.fmap.mapcontext.rendering.legend.LegendFactory;
40
import org.gvsig.fmap.mapcontext.rendering.legend.VectorialUniqueValueLegend;
41
import org.gvsig.fmap.mapcontext.rendering.legend.styling.AttrInTableLabelingStrategy;
42
import org.gvsig.fmap.mapcontext.rendering.symbols.IFillSymbol;
43
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
44
import org.gvsig.fmap.mapcontext.rendering.symbols.SymbologyFactory;
45

    
46
public class DWGLegendBuilder implements LegendBuilder {
47

    
48

    
49
        private VectorialUniqueValueLegend defaultLegend = null;
50
        private AttrInTableLabelingStrategy labelingStragegy = null;
51

    
52
        public void begin() {
53
                // Nothing to do
54
        }
55

    
56
        public void end() {
57
                // Nothing to do
58
        }
59

    
60
        public Object getLegend() {
61
                return defaultLegend;
62
        }
63

    
64
        public LegendBuilder initialize(FeatureStoreProvider store) {
65
                defaultLegend = LegendFactory
66
                                .createVectorialUniqueValueLegend(Geometry.TYPES.GEOMETRY);
67
                defaultLegend
68
                                .setClassifyingFieldNames(new String[] { DWGStoreProvider.NAME_FIELD_COLOR });
69
                defaultLegend.setClassifyingFieldTypes(new int[] { DataTypes.INT });
70

    
71
                ISymbol myDefaultSymbol = SymbologyFactory
72
                                .createDefaultSymbolByShapeType(Geometry.TYPES.GEOMETRY,
73
                                                Color.BLACK);
74

    
75
                defaultLegend.setDefaultSymbol(myDefaultSymbol);
76

    
77

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

    
87
        public void process(FeatureProvider feature) {
88
                Integer clave = (Integer) feature.get("Color");
89
                if (clave == null) {
90
                        return;
91
                }
92
                if (defaultLegend.getSymbolByValue(clave) == null) {
93
                        ISymbol theSymbol;
94
                        Color color = null;
95
                        try {
96
                                color = AcadColor.getColor(clave.intValue());
97
                        } catch (ArrayIndexOutOfBoundsException e) {
98
                                color = AcadColor.getColor(255);
99
                        }
100
                        // jaume, moved to ISymbol
101
                        theSymbol = SymbologyFactory.createDefaultSymbolByShapeType(
102
                                        Geometry.TYPES.GEOMETRY, color);
103
                        theSymbol.setDescription(clave.toString());
104
                        // Asigna los colores de Autocad a los
105
                        // bordes
106
                        // de los pol?gonos.
107
                        if (theSymbol instanceof IFillSymbol) {
108
                                ((IFillSymbol) theSymbol).getOutline().setLineColor(color);
109

    
110
                        }
111
                        if (theSymbol != null) {
112
                                defaultLegend.addSymbol(clave, theSymbol);
113
                        }
114
                }
115

    
116
        }
117

    
118
        public Object getLabeling() {
119
                return labelingStragegy;
120
        }
121

    
122

    
123
}