Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / symbols / SimpleTextSymbol.java @ 28367

History | View | Annotate | Download (10.8 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
                g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
94
                g.setColor(textColor);
95
                float size=font.getSize2D();
96
                if (properties!=null){
97
                        PrintQuality pq = (PrintQuality) properties.get(PrintQuality.class);
98
                        if (pq.equals(PrintQuality.NORMAL)){
99
                                size *= (float) 300/72;
100
                        }else if (pq.equals(PrintQuality.HIGH)){
101
                                size *= (float) 600/72;
102
                        }else if (pq.equals(PrintQuality.DRAFT)){
103
                        //        unitFactor *= 72; (which is the same than doing nothing)
104
                        }
105
                font=font.deriveFont(size);
106
            }
107
                g.setFont(font);
108
                g.translate(((FPoint2D) shp).getX(), ((FPoint2D) shp).getY());
109

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

    
115
                // Alineamos el texto de manera que la parte superior
116
                // izquierda de la primera letra est? en (0,0).
117
                g.drawString(getText(), 0, (int)-bounds.getY());
118
                if (properties!=null){
119
                        font=font.deriveFont(size);
120
                        g.setFont(font);
121
                }
122
                g.rotate(-rotation);
123
                g.translate(-((FPoint2D) shp).getX(), -((FPoint2D) shp).getY());
124
        }
125

    
126
        public void drawInsideRectangle(Graphics2D g,
127
                        AffineTransform scaleInstance, Rectangle r, PrintRequestAttributeSet properties) throws SymbolDrawingException {
128
                int s = getFont().getSize();
129

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

    
145
                    if (ratioText>ratioRect) {
146
                            s = (int) (s*(rWidth/width));
147
                    } else {
148
                            s = (int) (s*(rHeight/height));
149
                    }
150
                    setFontSize(s);
151
                }
152

    
153
                //Only for debugging purpose
154
//                g.drawRect((int)r.getX(), (int)r.getY(), (int)r.getWidth(), (int)r.getHeight());
155
                if (properties==null)
156
                        draw(g, null, new FPoint2D(r.getX(), r.getY()), null);
157
                else
158
                        print(g, new AffineTransform(), new FPoint2D(r.getX(), r.getY()), properties);
159

    
160
        }
161

    
162
        public int getOnePointRgb() {
163
                return textColor.getRGB();
164
        }
165

    
166
        public void getPixExtentPlus(FShape shp, float[] distances,
167
                        ViewPort viewPort, int dpi) {
168
                throw new Error("Not yet implemented!");
169

    
170
        }
171

    
172
        public ISymbol getSymbolForSelection() {
173
                return this; // a text is not selectable
174
        }
175

    
176
        public int getSymbolType() {
177
                return FShape.TEXT;
178
        }
179

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

    
196
        public boolean isSuitableFor(IGeometry geom) {
197
                return true;
198
        }
199

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

    
215
        public String getClassName() {
216
                return getClass().getName();
217
        }
218

    
219
        public void print(Graphics2D g, AffineTransform at, FShape shape, PrintRequestAttributeSet properties) {
220
                this.properties=properties;
221
        draw(g, at, shape, null);
222
        this.properties=null;
223

    
224
        }
225

    
226
        public String getText() {
227
                return text;
228
        }
229

    
230
        public Font getFont() {
231
                return font;
232
        }
233

    
234
        public Color getTextColor() {
235
                return textColor;
236
        }
237

    
238
        public void setText(String text) {
239
                if(text != null && !text.equals(this.text)){
240
                        this.text = text;
241
                        this.bounds = null;
242
                        this.horizontalTextWrappingShape = null;
243
                }
244
        }
245

    
246
        public void setFont(Font font) {
247
                if (font != null && !font.equals(this.font)){
248
                        this.font = font;
249
                        this.bounds = null;
250
                        this.horizontalTextWrappingShape = null;
251
                }
252
        }
253

    
254
        public void setTextColor(Color color) {
255
                this.textColor = color;
256
        }
257

    
258
        public void setFontSize(double size) {
259
                if (size != this.font.getSize2D()){
260
                        this.font = this.font.deriveFont((float) size);
261
                        this.bounds = null;
262
                        this.horizontalTextWrappingShape = null;
263
                }
264
//                this.font = new Font(this.font.getName(),this.font.getStyle(),(int)size);
265
        }
266

    
267
        /**
268
         * Defines the angle of rotation for the text that composes the symbol
269
         *
270
         * @param rotation
271
         */
272
        public void setRotation(double rotation) {
273
                if(rotation != this.rotation){
274
                        this.rotation = rotation;
275
                        this.bounds = null;
276
                }
277
        }
278

    
279
        public double getRotation() {
280
                return rotation;
281
        }
282

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

    
305
                        if(scale != 1){
306
                                myFShape.transform(AffineTransform.getScaleInstance(scale, scale));
307
                        }
308

    
309
                        this.horizontalTextWrappingShape = myFShape;
310
                }
311
                return this.horizontalTextWrappingShape;
312
        }
313

    
314
        /**
315
         * Returns an FShape which represents a rectangle containing the text in
316
         * <b>screen</b> units.
317
         */
318
        public FShape getTextWrappingShape(FPoint2D p) {
319

    
320
                FShape myFShape = getHorizontalTextWrappingShape(p);
321
                myFShape.transform(AffineTransform.getTranslateInstance(p.getX(), p.getY()));
322

    
323
                if (rotation != 0) {
324
                        myFShape.transform(AffineTransform.getRotateInstance(rotation));
325
                }
326
                return myFShape;
327
        }
328

    
329
        public Rectangle getBounds() {
330
//                FontMetrics fm = g.getFontMetrics();
331
//                Rectangle2D rect = fm.getStringBounds("graphics", g);
332

    
333
                if(this.bounds == null){
334
                        this.bounds = getTextWrappingShape(new FPoint2D(0,0)).getBounds();
335
                }
336
                return this.bounds;
337
        }
338

    
339
        public void setCartographicSize(double cartographicSize, FShape shp) {
340
                setFontSize(cartographicSize);
341
        }
342

    
343
        public double toCartographicSize(ViewPort viewPort, double dpi, FShape shp) {
344
                double oldSize = getFont().getSize();
345
                setCartographicSize(getCartographicSize(
346
                                                                viewPort,
347
                                                                dpi,
348
                                                                shp),
349
                                                        shp);
350
                return oldSize;
351
        }
352

    
353
        public double getCartographicSize(ViewPort viewPort, double dpi, FShape shp) {
354
                return CartographicSupportToolkit.
355
                                        getCartographicLength(this,
356
                                                                                  getFont().getSize(),
357
                                                                                  viewPort,
358
                                                                                  dpi);
359
        }
360

    
361
        public boolean isAutoresizeEnabled() {
362
                return autoresize;
363
        }
364

    
365
        public void setAutoresizeEnabled(boolean autoresizeFlag) {
366
                this.autoresize = autoresizeFlag;
367
        }
368
}