Statistics
| Revision:

root / trunk / extensions / extCAD / src / com / iver / cit / gvsig / gui / cad / CADTool.java @ 13881

History | View | Annotate | Download (3.42 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 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.gui.cad;
42
import java.awt.Graphics;
43
import java.awt.event.InputEvent;
44

    
45
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
46
import com.iver.cit.gvsig.gui.cad.exception.CommandException;
47
import com.iver.cit.gvsig.layers.VectorialLayerEdited;
48

    
49

    
50
/**
51
 * DOCUMENT ME!
52
 *
53
 * @author $author$
54
 */
55
public interface CADTool {
56
        
57

    
58
        public static int TOPGEOMETRY = 2000;
59

    
60
        public void init();
61
        public void end();
62
        public void transition(double x, double y, InputEvent event);
63
        public void transition(double d);
64
        public void transition(String s) throws CommandException;
65
        public void addPoint(double x,double y,InputEvent event);
66
        public void addValue(double d);
67
        public void addOption(String s);
68
        public void setQuestion(String s);
69

    
70
        /**
71
         * Recibe un graphics en el que se encuentra dibujada la
72
         * EditableFeatureSource que se pasa como par?metro. En este m?todo, la
73
         * herramienta ha de implementar el dibujado de la operaci?n que se est?
74
         * realizando dependiendo del estado. Por ejemplo al dibujar un c?rculo
75
         * mediante 3 puntos, cuando la herramienta se encuentre en el estado en
76
         * el que s?lo falta un punto, se dibujar? el c?rculo teniendo en cuenta
77
         * como tercer punto el puntero del rat?n (pasado en los par?metros x e
78
         * y). Este m?todo es invocado tras cada transici?n y cada vez que se
79
         * mueve el rat?n.
80
         *
81
         * @param g DOCUMENT ME!
82
         * @param efs DOCUMENT ME!
83
         * @param selectedGeometries DOCUMENT ME!
84
         * @param x DOCUMENT ME!
85
         * @param y DOCUMENT ME!
86
         */
87
        void drawOperation(Graphics g,double x, double y);
88

    
89
        /**
90
         * Obtiene la pregunta que saldr? en la consola relativa al estado en el
91
         * que se encuentra la herramienta
92
         *
93
         * @return DOCUMENT ME!
94
         */
95
        String getQuestion();
96

    
97
        /**
98
         * DOCUMENT ME!
99
         *
100
         * @param cta DOCUMENT ME!
101
         */
102
        public void setCadToolAdapter(CADToolAdapter cta);
103

    
104
        /**
105
         * DOCUMENT ME!
106
         *
107
         * @return DOCUMENT ME!
108
         */
109
        public CADToolAdapter getCadToolAdapter();
110
        public String[] getDescriptions();
111
        public void setDescription(String[] descriptions);
112
        public String getName();
113
        public VectorialLayerEdited getVLE();
114
        void clearSelection() throws ReadDriverException;
115
        public boolean isApplicable(int shapeType);
116
        public void setPreviosTool(DefaultCADTool tool);
117
        public void restorePreviousTool();
118
}