Statistics
| Revision:

svn-gvsig-desktop / branches / simbologia / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / symbols / AbstractMarkerSymbol.java @ 10315

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

    
92
import java.awt.Color;
93
import java.awt.Point;
94
import java.awt.geom.Point2D;
95
import java.awt.geom.Point2D.Double;
96

    
97
import com.iver.cit.gvsig.fmap.core.FShape;
98
import com.iver.cit.gvsig.fmap.core.IGeometry;
99

    
100

    
101
/**
102
 * Abstract class that any MARKER SYMBOL should extend.
103
 *
104
 * @author jaume dominguez faus - jaume.dominguez@iver.es
105
 */
106
public abstract class AbstractMarkerSymbol extends AbstractSymbol implements IMarkerSymbol {
107
        protected Color color = Color.BLACK;
108
        protected double rotation;
109
        protected Point2D offset = new Point2D.Double();
110
        protected double size;
111

    
112
        /* (non-Javadoc)
113
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getRotation()
114
         */
115
        public double getRotation() {
116
                return rotation;
117
        }
118

    
119
        /* (non-Javadoc)
120
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setRotation(double)
121
         */
122
        public void setRotation(double r) {
123
                this.rotation = r;
124
        }
125
        /* (non-Javadoc)
126
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getOffset()
127
         */
128
        public Point2D getOffset() {
129
                if (offset == null) {
130
                        offset = new Point();
131
                }
132
                return offset;
133
        }
134

    
135
        /* (non-Javadoc)
136
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setOffset(java.awt.geom.Point2D.Double)
137
         */
138
        public void setOffset(Double offset) {
139
                this.offset = offset;
140
        }
141

    
142
        public boolean isSuitableFor(IGeometry geom) {
143
                return geom.getGeometryType() == FShape.POINT;
144
        }
145

    
146
        public int getOnePointRgb() {
147
                return color.getRGB();
148
        }
149

    
150
        /* (non-Javadoc)
151
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getSize()
152
         */
153
        public double getSize() {
154
                return size;
155
        }
156

    
157
        /* (non-Javadoc)
158
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setSize(double)
159
         */
160
        public void setSize(double size) {
161
                this.size = size;
162
        }
163

    
164
        /* (non-Javadoc)
165
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#getColor()
166
         */
167
        public Color getColor() {
168
                return color;
169
        }
170

    
171
        /* (non-Javadoc)
172
         * @see com.iver.cit.gvsig.fmap.core.symbols.IMarkerSymbol#setColor(java.awt.Color)
173
         */
174
        public void setColor(Color color) {
175
                this.color = color;
176
        }
177

    
178
}