Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / styles / ILabelStyle.java @ 13100

History | View | Annotate | Download (4.35 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

    
42
/* CVS MESSAGES:
43
*
44
* $Id: ILabelStyle.java 13100 2007-08-16 06:55:30Z jvidal $
45
* $Log$
46
* Revision 1.10  2007-08-16 06:55:30  jvidal
47
* javadoc updated
48
*
49
* Revision 1.9  2007/08/13 11:36:30  jvidal
50
* javadoc
51
*
52
* Revision 1.8  2007/05/08 08:47:39  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.7  2007/04/05 16:07:14  jaume
56
* Styled labeling stuff
57
*
58
* Revision 1.6  2007/04/04 15:42:03  jaume
59
* *** empty log message ***
60
*
61
* Revision 1.5  2007/04/04 15:41:05  jaume
62
* *** empty log message ***
63
*
64
* Revision 1.4  2007/04/02 16:34:56  jaume
65
* Styled labeling (start commiting)
66
*
67
* Revision 1.3  2007/03/29 16:02:01  jaume
68
* *** empty log message ***
69
*
70
* Revision 1.2  2007/03/09 11:20:56  jaume
71
* Advanced symbology (start committing)
72
*
73
* Revision 1.1.2.1  2007/02/15 16:23:44  jaume
74
* *** empty log message ***
75
*
76
* Revision 1.1.2.1  2007/02/09 07:47:05  jaume
77
* Isymbol moved
78
*
79
*
80
*/
81
package com.iver.cit.gvsig.fmap.core.styles;
82

    
83
import java.awt.Rectangle;
84
import java.awt.geom.AffineTransform;
85
import java.awt.geom.Point2D;
86
import java.awt.geom.Rectangle2D;
87

    
88
/**
89
 * Defines the style that a Label symbol can contain which typically define
90
 * a background of the label as an Image, the texts that the label holds
91
 * and their position within the label in rendering time.
92
 *
93
 * @author jaume dominguez faus - jaume.dominguez@iver.es
94
 *
95
 */
96
public interface ILabelStyle extends IStyle {
97
        /**
98
         * @return int, the amount of fields this style allows
99
         */
100
        public int getFieldCount();
101

    
102
        /**
103
         * Sets the texts that will appear in the label.
104
         * @param texts
105
         */
106
        public void setTextFields(String[] texts);
107

    
108
        /**
109
         * Returns the text at the i-th field.
110
         * @param int i.
111
         * @return String
112
         */
113
        public String getTextAt(int i);
114

    
115
        /**
116
         * Returns an array of rectangles defining the text boxes where text is
117
         * placed.
118
         * @return
119
         */
120
        public Rectangle2D[] getTextBounds();
121

    
122

    
123
        public Rectangle getBounds(AffineTransform scaleInstance);
124

    
125
        /**
126
         * Returns the position of the point labeled by this label in percent units relative
127
         * to the label bounds. It determines the offset to be applied to the label to be
128
         * placed and allows the user to use custom styles.
129
         */
130
        public Point2D getMarkerPoint();
131

    
132
        /**
133
         * Sets the position of the point labeled by this in percent units relative to the
134
         * label bounds
135
         * @param p
136
         * @throws IllegalArgumentException if the point coordinates are >0.0 or <1.0
137
         */
138
        public void setMarkerPoint(Point2D p) throws IllegalArgumentException;
139

    
140
        /**
141
         * Sets a TextFieldArea using its index. With this method the user can
142
         * modify the size of the rectangle for the TextFieldArea
143
         * @param index
144
         * @param rect
145
         */
146
        public void setTextFieldArea(int index, Rectangle2D rect);
147
        /**
148
         * Adds a new TextFieldArea with an specific size which is defined as a rectangle.
149
         * @param index,int
150
         * @param rect,Rectangle2D
151
         */
152
        public void addTextFieldArea(Rectangle2D rect);
153
        /**
154
         * Delete the TextFieldArea specified by its index.
155
         * @param index,int
156
         */
157
        public void deleteTextFieldArea(int index);
158
        /**
159
         * Sets the size for a laber and stablishes an unit scale factor to not change
160
         * too much its content
161
         * @param width
162
         * @param height
163
         * @param unitScaleFactor
164
         */
165

    
166
        public void setSize(double width, double height, double unitScaleFactor);
167

    
168
}