Statistics
| Revision:

gvsig-raster / org.gvsig.raster / trunk / org.gvsig.raster / org.gvsig.raster.swing / org.gvsig.raster.swing.api / src / main / java / org / gvsig / raster / swing / pixelinspector / PixelInspector.java @ 2443

History | View | Annotate | Download (1.84 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22
package org.gvsig.raster.swing.pixelinspector;
23

    
24
import java.awt.image.BufferedImage;
25

    
26
/**
27
 * @author Nacho Brodin (nachobrodin@gmail.com)
28
 */
29
public interface PixelInspector {
30

    
31
        public void setClear(boolean clear);
32
        
33
        /**
34
         * Gets the with of the control
35
         * @return
36
         */
37
        public int getWidth();
38
        
39
        /**
40
         * Gets the height of the control
41
         * @return
42
         */
43
        public int getHeight();
44
        
45
        /**
46
         * Gets the scale factor
47
         * @return
48
         */
49
        public int getScale();
50
        
51
        /**
52
         * Assigns view coordinates 
53
         * @param pixX
54
         * @param pixY
55
         */
56
        public void setViewCoordinates(int pixX, int pixY);
57
        
58
        public void setDataBuffer(BufferedImage view);
59
        
60
        public BufferedImage getDataBuffer();
61
        
62
        /**
63
         * Sets the X position of the control where the painted starts
64
         * 
65
         * @param posX 
66
         */
67
        public void setPosX(int posX);
68

    
69
        /**
70
         * Sets the Y position of the control where the painted starts
71
         * 
72
         * @param posY 
73
         */
74
        public void setPosY(int posY);
75
        
76
        /**
77
         * Repaints the control
78
         */
79
        public void repaint();
80
}