Statistics
| Revision:

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

History | View | Annotate | Download (3.92 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.MapContextLocator;
40
import org.gvsig.fmap.mapcontext.rendering.symbols.ISymbol;
41
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.IVectorialUniqueValueLegend;
42
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.styling.AttrInTableLabelingStrategy;
43
import org.gvsig.symbology.fmap.mapcontext.rendering.symbol.fill.IFillSymbol;
44

    
45
public class DWGLegendBuilder implements LegendBuilder {
46

    
47

    
48
        private IVectorialUniqueValueLegend defaultLegend = null;
49
        private AttrInTableLabelingStrategy labelingStragegy = null;
50

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

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

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

    
63
        public LegendBuilder initialize(FeatureStoreProvider store) {
64
                defaultLegend = (IVectorialUniqueValueLegend) MapContextLocator
65
                                .getMapContextManager().createLegend(
66
                                                IVectorialUniqueValueLegend.LEGEND_NAME);
67
                defaultLegend.setShapeType(Geometry.TYPES.GEOMETRY);
68
                defaultLegend
69
                                .setClassifyingFieldNames(new String[] { DWGStoreProvider.NAME_FIELD_COLOR });
70
                defaultLegend.setClassifyingFieldTypes(new int[] { DataTypes.INT });
71

    
72
                ISymbol myDefaultSymbol = MapContextLocator.getMapContextManager()
73
                                .createSymbol(Geometry.TYPES.GEOMETRY, 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 = MapContextLocator.getMapContextManager().createSymbol(
102
                                        Geometry.TYPES.GEOMETRY, color);
103
                        
104
                        theSymbol.setDescription(clave.toString());
105
                        // Asigna los colores de Autocad a los
106
                        // bordes
107
                        // de los pol?gonos.
108
                        if (theSymbol instanceof IFillSymbol) {
109
                                ((IFillSymbol) theSymbol).getOutline().setLineColor(color);
110

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

    
117
        }
118

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

    
123

    
124
}