Statistics
| Revision:

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

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

    
104
import java.awt.Color;
105
import java.awt.Point;
106
import java.awt.geom.Point2D;
107
import java.awt.geom.Point2D.Double;
108

    
109
import com.iver.cit.gvsig.fmap.core.FShape;
110
import com.iver.cit.gvsig.fmap.core.IGeometry;
111

    
112

    
113
/**
114
 * Abstract class that any MARKER SYMBOL should extend.
115
 * @author  jaume dominguez faus - jaume.dominguez@iver.es
116
 */
117
public abstract class AbstractMarkerSymbol extends AbstractSymbol implements IMarkerSymbol {
118
        private Color color = Color.BLACK;
119
        private double rotation;
120
        private Point2D offset = new Point2D.Double();
121
        private double size;
122

    
123
        public double getRotation() {
124
                return rotation;
125
        }
126

    
127
        public void setRotation(double r) {
128
                this.rotation = r;
129
        }
130

    
131
        public Point2D getOffset() {
132
                if (offset == null) {
133
                        offset = new Point();
134
                }
135
                return offset;
136
        }
137

    
138
        public void setOffset(Point2D 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
        public double getSize() {
151
                return size;
152
        }
153

    
154
        public void setSize(double size) {
155
                this.size = size;
156
        }
157

    
158
        public Color getColor() {
159
                return color;
160
        }
161

    
162
        public void setColor(Color color) {
163
                this.color = color;
164
        }
165
}