Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.labeling.app / org.gvsig.labeling.app.mainplugin / src / main / java / org / gvsig / labeling / placements / MultiShapePlacement.java @ 43510

History | View | Annotate | Download (3.79 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.labeling.placements;
25

    
26
import java.util.ArrayList;
27

    
28
import org.gvsig.fmap.geom.Geometry;
29
import org.gvsig.fmap.geom.Geometry.TYPES;
30
import org.gvsig.fmap.geom.type.GeometryType;
31
import org.gvsig.fmap.mapcontext.ViewPort;
32
import org.gvsig.fmap.mapcontext.rendering.legend.styling.ILabelClass;
33
import org.gvsig.fmap.mapcontext.rendering.legend.styling.IPlacementConstraints;
34
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.styling.LabelLocationMetrics;
35
import org.gvsig.tools.task.Cancellable;
36

    
37
public class MultiShapePlacement implements ILabelPlacement {
38
        private final ILabelPlacement pointPlacement;
39
        private final ILabelPlacement linePlacement;
40
        private final ILabelPlacement polygonPlacement;
41

    
42

    
43
        /**
44
         * Creates a new instance of MultiShapePlacement initializing the respective
45
         * placements to those passed as parameters. Null values are allowed for
46
         * the parameters and will cause that no label will be placed when the
47
         * geometry belongs to such null values.
48
         *
49
         * @param pointPlacement, the placement for points
50
         * @param linePlacement, the placement for lines
51
         * @param polygonPlacement, the placement for polygons
52
         */
53
        public MultiShapePlacement(
54
                        ILabelPlacement pointPlacement,
55
                        ILabelPlacement linePlacement,
56
                        ILabelPlacement polygonPlacement) {
57
                this.pointPlacement = pointPlacement;
58
                this.linePlacement = linePlacement;
59
                this.polygonPlacement = polygonPlacement;
60
        }
61

    
62

    
63
    @Override
64
        public ArrayList<LabelLocationMetrics> guess(
65
                        ILabelClass lc,
66
                        Geometry geom,
67
                        IPlacementConstraints placementConstraints,
68
                        double cartographicSymbolSize,
69
                        Cancellable cancel, ViewPort vp) {
70
                
71
                MultiShapePlacementConstraints pc =
72
                                (MultiShapePlacementConstraints) placementConstraints;
73

    
74
                GeometryType gt = geom.getGeometryType();
75
                if (gt.getType() == TYPES.POINT || gt.getType() == TYPES.MULTIPOINT) {
76
                        if (pointPlacement != null) {
77
                                return pointPlacement.guess(lc, geom, pc.getPointConstraints(), cartographicSymbolSize, cancel,vp);
78
                        }
79
                } else {
80
                        if (gt.isTypeOf(TYPES.CURVE) || gt.getType() == TYPES.MULTICURVE) {
81
                                if (linePlacement != null) {
82
                                        return linePlacement.guess(lc, geom, pc.getLineConstraints(), cartographicSymbolSize, cancel,vp);
83
                                }
84
                        } else {
85
                                if (gt.isTypeOf(TYPES.SURFACE) || gt.getType() == TYPES.MULTISURFACE) {
86
                                        if (polygonPlacement != null) {
87
                                                return polygonPlacement.guess(lc, geom, pc.getPolygonConstraints(), cartographicSymbolSize, cancel,vp);
88
                                        }
89
                                }
90
                        }
91
                }
92
                return CannotPlaceLabel.NO_PLACES;
93
        }
94

    
95
    @Override
96
        public boolean isSuitableFor(
97
                        IPlacementConstraints placementConstraints,
98
                        int shapeType) {
99
                // TODO shoud I also ask to each placement if it is suitable
100
                // for these constraints????
101
                return (shapeType == TYPES.GEOMETRY || shapeType == TYPES.AGGREGATE);
102
        }
103

    
104

    
105

    
106

    
107
}