Statistics
| Revision:

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

History | View | Annotate | Download (5.13 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: AbstractMarkerSymbol.java 10679 2007-03-09 11:25:01Z jaume $
45
* $Log$
46
* Revision 1.4  2007-03-09 11:20:56  jaume
47
* Advanced symbology (start committing)
48
*
49
* Revision 1.3.2.4  2007/02/16 10:54:12  jaume
50
* multilayer splitted to multilayerline, multilayermarker,and  multilayerfill
51
*
52
* Revision 1.3.2.3  2007/02/15 16:23:44  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.3.2.2  2007/02/09 07:47:05  jaume
56
* Isymbol moved
57
*
58
* Revision 1.3.2.1  2007/02/02 16:21:24  jaume
59
* start commiting labeling stuff
60
*
61
* Revision 1.3  2007/01/25 16:25:23  jaume
62
* *** empty log message ***
63
*
64
* Revision 1.2  2007/01/16 11:50:44  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.1  2007/01/10 16:31:36  jaume
68
* *** empty log message ***
69
*
70
* Revision 1.4  2006/12/04 17:13:39  fjp
71
* *** empty log message ***
72
*
73
* Revision 1.3  2006/11/14 11:10:27  jaume
74
* *** empty log message ***
75
*
76
* Revision 1.2  2006/11/09 18:39:05  jaume
77
* *** empty log message ***
78
*
79
* Revision 1.1  2006/10/31 16:16:34  jaume
80
* *** empty log message ***
81
*
82
* Revision 1.4  2006/10/30 19:30:35  jaume
83
* *** empty log message ***
84
*
85
* Revision 1.3  2006/10/26 16:27:33  jaume
86
* support for composite marker symbols (not tested)
87
*
88
* Revision 1.2  2006/10/26 07:46:58  jaume
89
* *** empty log message ***
90
*
91
* Revision 1.1  2006/10/25 10:50:41  jaume
92
* movement of classes and gui stuff
93
*
94
* Revision 1.1  2006/10/18 07:54:06  jaume
95
* *** empty log message ***
96
*
97
*
98
*/
99
package com.iver.cit.gvsig.fmap.core.symbols;
100

    
101
import java.awt.Color;
102
import java.awt.Point;
103
import java.awt.geom.Point2D;
104
import java.awt.geom.Point2D.Double;
105

    
106
import com.iver.cit.gvsig.fmap.core.FShape;
107
import com.iver.cit.gvsig.fmap.core.IGeometry;
108

    
109

    
110
/**
111
 * Abstract class that any MARKER SYMBOL should extend.
112
 * @author  jaume dominguez faus - jaume.dominguez@iver.es
113
 */
114
public abstract class AbstractMarkerSymbol extends AbstractSymbol implements IMarkerSymbol {
115
        /**
116
         * @uml.property  name="color"
117
         */
118
        private Color color = Color.BLACK;
119
        /**
120
         * @uml.property  name="rotation"
121
         */
122
        private double rotation;
123
        /**
124
         * @uml.property  name="offset"
125
         */
126
        private Point2D offset = new Point2D.Double();
127
        /**
128
         * @uml.property  name="size"
129
         */
130
        private double size;
131

    
132
        /* (non-Javadoc)
133
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getRotation()
134
         */
135
        /**
136
         * @return
137
         * @uml.property  name="rotation"
138
         */
139
        public double getRotation() {
140
                return rotation;
141
        }
142

    
143
        /* (non-Javadoc)
144
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setRotation(double)
145
         */
146
        /**
147
         * @param r
148
         * @uml.property  name="rotation"
149
         */
150
        public void setRotation(double r) {
151
                this.rotation = r;
152
        }
153
        /* (non-Javadoc)
154
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getOffset()
155
         */
156
        /**
157
         * @return
158
         * @uml.property  name="offset"
159
         */
160
        public Point2D getOffset() {
161
                if (offset == null) {
162
                        offset = new Point();
163
                }
164
                return offset;
165
        }
166

    
167
        /* (non-Javadoc)
168
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setOffset(java.awt.geom.Point2D.Double)
169
         */
170
        public void setOffset(Point2D offset) {
171
                this.offset = offset;
172
        }
173

    
174
        public boolean isSuitableFor(IGeometry geom) {
175
                return geom.getGeometryType() == FShape.POINT;
176
        }
177

    
178
        public int getOnePointRgb() {
179
                return color.getRGB();
180
        }
181

    
182
        /* (non-Javadoc)
183
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getSize()
184
         */
185
        /**
186
         * @return
187
         * @uml.property  name="size"
188
         */
189
        public double getSize() {
190
                return size;
191
        }
192

    
193
        /* (non-Javadoc)
194
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setSize(double)
195
         */
196
        /**
197
         * @param size
198
         * @uml.property  name="size"
199
         */
200
        public void setSize(double size) {
201
                this.size = size;
202
        }
203

    
204
        /* (non-Javadoc)
205
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getColor()
206
         */
207
        /**
208
         * @return
209
         * @uml.property  name="color"
210
         */
211
        public Color getColor() {
212
                return color;
213
        }
214

    
215
        /* (non-Javadoc)
216
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setColor(java.awt.Color)
217
         */
218
        /**
219
         * @param color
220
         * @uml.property  name="color"
221
         */
222
        public void setColor(Color color) {
223
                this.color = color;
224
        }
225

    
226
}