Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / symbols / SimpleTextSymbol.java @ 32881

History | View | Annotate | Download (10.6 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package com.iver.cit.gvsig.fmap.core.symbols;
42

    
43
import java.awt.Color;
44
import java.awt.Font;
45
import java.awt.FontMetrics;
46
import java.awt.Graphics2D;
47
import java.awt.Rectangle;
48
import java.awt.RenderingHints;
49
import java.awt.Shape;
50
import java.awt.font.FontRenderContext;
51
import java.awt.font.GlyphVector;
52
import java.awt.geom.AffineTransform;
53
import java.awt.geom.Rectangle2D;
54

    
55
import javax.print.attribute.PrintRequestAttributeSet;
56
import javax.print.attribute.standard.PrintQuality;
57

    
58
import com.iver.cit.gvsig.fmap.MapContext;
59
import com.iver.cit.gvsig.fmap.ViewPort;
60
import com.iver.cit.gvsig.fmap.core.CartographicSupportToolkit;
61
import com.iver.cit.gvsig.fmap.core.FPoint2D;
62
import com.iver.cit.gvsig.fmap.core.FPolygon2D;
63
import com.iver.cit.gvsig.fmap.core.FShape;
64
import com.iver.cit.gvsig.fmap.core.GeneralPathX;
65
import com.iver.cit.gvsig.fmap.core.IGeometry;
66
import com.iver.cit.gvsig.fmap.core.SymbologyFactory;
67
import com.iver.cit.gvsig.fmap.core.v02.FConverter;
68
import com.iver.utiles.StringUtilities;
69
import com.iver.utiles.XMLEntity;
70
import com.iver.utiles.swing.threads.Cancellable;
71

    
72
/**
73
 * SimpleTextSymbol is a class used to create symbols composed using a text defined by
74
 * the user.This text can be edited (changing the color, the font of the characters, and
75
 * the rotation of the text).
76
 * @author jaume dominguez faus - jaume.dominguez@iver.es
77
 *
78
 */
79
public class SimpleTextSymbol extends AbstractSymbol implements ITextSymbol {
80
        private String text = "";
81
        private Font font = SymbologyFactory.DefaultTextFont;
82
        private Color textColor = Color.BLACK;
83
        private double rotation;
84
        private FontRenderContext frc = new FontRenderContext(
85
                        new AffineTransform(), false, true);
86
        private boolean autoresize;
87
        private Rectangle bounds = null;
88
        private FShape horizontalTextWrappingShape = null;
89
        private PrintRequestAttributeSet properties;
90

    
91
        public void draw(Graphics2D g, AffineTransform affineTransform, FShape shp, Cancellable cancel) {
92
                if (!isShapeVisible()) return;
93
                double shpX = ((FPoint2D) shp).getX();
94
                double shpY = ((FPoint2D) shp).getY();
95
                //Parche porque a veces llegan puntos cuyas coordenadas no han podido ser calculadas y vienen como NaN
96
                if( Double.isNaN(shpX) || Double.isNaN(shpY)){
97
                        return;
98
                }
99
                //Fin del parche
100
                g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
101
                g.setColor(textColor);
102
                g.setFont(font);
103
                g.translate(shpX, shpY);
104

    
105
                g.rotate(rotation);
106
                Rectangle2D bounds = getHorizontalTextWrappingShape(new FPoint2D(0,0)).getBounds();
107
                // Antes tomabamos el resultado de getBounds pero ya se le hab?a aplicado
108
                // la rotaci?n, con lo que no obten?amos el la altura correcta de la fuente.
109

    
110
                // Alineamos el texto de manera que la parte inferior
111
                // izquierda de la primera letra est? en (0,0).
112
                // Para chino hay que escoger una fuente como esta (SimSun)
113
//                g.setFont(new Font("SimSun",Font.PLAIN, 12));
114

    
115
                g.drawString(getText(), -((int) bounds.getWidth()/2), 0); //(int)-bounds.getY());
116
//                g.drawRect(0, 0, 5, 5);
117
                g.rotate(-rotation);
118
                g.translate(-shpX, -shpY);
119
        }
120

    
121
        public void drawInsideRectangle(Graphics2D g,
122
                        AffineTransform scaleInstance, Rectangle r, PrintRequestAttributeSet properties) throws SymbolDrawingException {
123
                int s = getFont().getSize();
124

    
125
                if (autoresize) {
126
                        if (s==0) {
127
                                s =1;
128
                                setFontSize(s);
129
                        }
130
                        g.setFont(getFont());
131
                    FontMetrics fm = g.getFontMetrics();
132
                    Rectangle2D rect = fm.getStringBounds(text, g);
133
                    double width = rect.getWidth();
134
                    double height = rect.getHeight();
135
                    double rWidth = r.getWidth();
136
                    double rHeight = r.getHeight();
137
                    double ratioText = width/height;
138
                    double ratioRect = rWidth/rHeight;
139

    
140
                    if (ratioText>ratioRect) {
141
                            s = (int) (s*(rWidth/width));
142
                    } else {
143
                            s = (int) (s*(rHeight/height));
144
                    }
145
                    setFontSize(s);
146
                }
147

    
148
                //Only for debugging purpose
149
//                g.drawRect((int)r.getX(), (int)r.getY(), (int)r.getWidth(), (int)r.getHeight());
150
                if (properties==null)
151
                        draw(g, null, new FPoint2D(r.getX(), r.getY()), null);
152
                else
153
                        print(g, new AffineTransform(), new FPoint2D(r.getX(), r.getY()), properties);
154

    
155
        }
156

    
157
        public int getOnePointRgb() {
158
                return textColor.getRGB();
159
        }
160

    
161
        public void getPixExtentPlus(FShape shp, float[] distances,
162
                        ViewPort viewPort, int dpi) {
163
                throw new Error("Not yet implemented!");
164

    
165
        }
166

    
167
        public ISymbol getSymbolForSelection() {
168
                return this; // a text is not selectable
169
        }
170

    
171
        public int getSymbolType() {
172
                return FShape.TEXT;
173
        }
174

    
175
        public XMLEntity getXMLEntity() {
176
                XMLEntity xml = new XMLEntity();
177
                xml.putProperty("className", getClassName());
178
                xml.putProperty("desc", getDescription());
179
                xml.putProperty("isShapeVisible", isShapeVisible());
180
                xml.putProperty("font", font.getName());
181
                xml.putProperty("fontStyle", font.getStyle());
182
                xml.putProperty("size", font.getSize());
183
                xml.putProperty("text", text);
184
                xml.putProperty("textColor", StringUtilities.color2String(textColor));
185
                xml.putProperty("unit", getUnit());
186
                xml.putProperty("referenceSystem", getReferenceSystem());
187
                xml.putProperty("autoresizeFlag", isAutoresizeEnabled());
188
                return xml;
189
        }
190

    
191
        public boolean isSuitableFor(IGeometry geom) {
192
                return true;
193
        }
194

    
195
        public void setXMLEntity(XMLEntity xml) {
196
                font = new Font(xml.getStringProperty("font"),
197
                                xml.getIntProperty("fontStyle"),
198
                                xml.getIntProperty("size"));
199
                setDescription(xml.getStringProperty("desc"));
200
                setIsShapeVisible(xml.getBooleanProperty("isShapeVisible"));
201
                text = xml.getStringProperty("text");
202
                textColor = StringUtilities.string2Color(xml.getStringProperty("textColor"));
203
                setUnit(xml.getIntProperty("unit"));
204
                setReferenceSystem(xml.getIntProperty("referenceSystem"));
205
                setAutoresizeEnabled(xml.getBooleanProperty("autoresizeFlag"));
206
                this.bounds = null;
207
                this.horizontalTextWrappingShape = null;
208
        }
209

    
210
        public String getClassName() {
211
                return getClass().getName();
212
        }
213

    
214
        public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties) {
215
                this.properties=properties;
216
        draw(g, at, shape, null);
217
        this.properties=null;
218

    
219
        }
220

    
221
        public String getText() {
222
                return text;
223
        }
224

    
225
        public Font getFont() {
226
                return font;
227
        }
228

    
229
        public Color getTextColor() {
230
                return textColor;
231
        }
232

    
233
        public void setText(String text) {
234
                if(text != null && !text.equals(this.text)){
235
                        this.text = text;
236
                        this.bounds = null;
237
                        this.horizontalTextWrappingShape = null;
238
                }
239
        }
240

    
241
        public void setFont(Font font) {
242
                if (font != null && !font.equals(this.font)){
243
                        this.font = font;
244
                        this.bounds = null;
245
                        this.horizontalTextWrappingShape = null;
246
                }
247
        }
248

    
249
        public void setTextColor(Color color) {
250
                this.textColor = color;
251
        }
252

    
253
        public void setFontSize(double size) {
254
                if (size != this.font.getSize2D()){
255
                        this.font = this.font.deriveFont((float) size);
256
                        this.bounds = null;
257
                        this.horizontalTextWrappingShape = null;
258
                }
259
//                this.font = new Font(this.font.getName(),this.font.getStyle(),(int)size);
260
        }
261

    
262
        /**
263
         * Defines the angle of rotation for the text that composes the symbol
264
         *
265
         * @param rotation
266
         */
267
        public void setRotation(double rotation) {
268
                if(rotation != this.rotation){
269
                        this.rotation = rotation;
270
                        this.bounds = null;
271
                }
272
        }
273

    
274
        public double getRotation() {
275
                return rotation;
276
        }
277

    
278
        /**
279
         * Returns an FShape which represents a rectangle containing the text in
280
         * <b>screen</b> units.
281
         */
282
        private FShape getHorizontalTextWrappingShape(FPoint2D p) {
283
                if (this.horizontalTextWrappingShape  == null){
284
                        Font font = getFont();
285
                        /* Para tama?os de fuente de letras excesivamente grandes obtenemos
286
                         * shapes con todas las coordenadas a 0, por eso limitamos el tama?o
287
                         * a 1000 y despu?s reescalamos el bounds.
288
                         */
289
                        double scale = 1;
290
                        float fontSize = font.getSize2D();
291
                        if (fontSize > 1000){
292
                                scale = fontSize/1000;
293
                                fontSize = 1000;
294
                        }
295
                        font = font.deriveFont(fontSize);
296
                        GlyphVector gv = font.createGlyphVector(frc, text);
297
                        Shape shape = gv.getOutline((float) p.getX(), (float) p.getY());
298
                        FShape myFShape = new FPolygon2D(new GeneralPathX(shape.getBounds2D()));
299

    
300
                        if(scale != 1){
301
                                myFShape.transform(AffineTransform.getScaleInstance(scale, scale));
302
                        }
303

    
304
                        this.horizontalTextWrappingShape = myFShape;
305
                }
306
                return this.horizontalTextWrappingShape;
307
        }
308

    
309
        /**
310
         * Returns an FShape which represents a rectangle containing the text in
311
         * <b>screen</b> units.
312
         */
313
        public FShape getTextWrappingShape(FPoint2D p) {
314

    
315
                FShape myFShape = getHorizontalTextWrappingShape(p);
316
                myFShape.transform(AffineTransform.getTranslateInstance(p.getX(), p.getY()));
317

    
318
                if (rotation != 0) {
319
                        myFShape.transform(AffineTransform.getRotateInstance(rotation));
320
                }
321
                return myFShape;
322
        }
323

    
324
        public Rectangle getBounds() {
325
//                FontMetrics fm = g.getFontMetrics();
326
//                Rectangle2D rect = fm.getStringBounds("graphics", g);
327

    
328
                if(this.bounds == null){
329
                        this.bounds = getTextWrappingShape(new FPoint2D(0,0)).getBounds();
330
                }
331
                return this.bounds;
332
        }
333

    
334
        public void setCartographicSize(double cartographicSize, FShape shp) {
335
                setFontSize(cartographicSize);
336
        }
337

    
338
        public double toCartographicSize(ViewPort viewPort, double dpi, FShape shp) {
339
                double oldSize = getFont().getSize();
340
                setCartographicSize(getCartographicSize(
341
                                                                viewPort,
342
                                                                dpi,
343
                                                                shp),
344
                                                        shp);
345
                return oldSize;
346
        }
347

    
348
        public double getCartographicSize(ViewPort viewPort, double dpi, FShape shp) {
349
                return CartographicSupportToolkit.
350
                                        getCartographicLength(this,
351
                                                                                  getFont().getSize(),
352
                                                                                  viewPort,
353
                                                                                  dpi);
354
        }
355

    
356
        public boolean isAutoresizeEnabled() {
357
                return autoresize;
358
        }
359

    
360
        public void setAutoresizeEnabled(boolean autoresizeFlag) {
361
                this.autoresize = autoresizeFlag;
362
        }
363
}