I'm trying to adapt the following example: http://docs.oracle.com/javase/tutorial/uiswing/examples/zipfiles/components-ScrollDemoProject.zip
The purpose of i want to do is to allow the user to navigate on a picture to a coordinate they choose themselves (but not by mouse). So you have a large picture, and only a small part is showing and this window over the picture moves. This works when using the mouse (see the example of oracle). But i want to do this with coordinates that the user chooses.
In the ScrollablePicture class you can see that it is possible to move the picture by dragging the mouse :
public void mouseDragged(MouseEvent e) {
Rectangle r = new Rectangle(e.getX(), e.getY(), 1, 1);
scrollRectToVisible(r);
}
I tried to do the same, so i added this method underneath the mouseDragged function :
public void moveMap(float X, float Y){
Rectangle r = new Rectangle((int)X,(int) Y, 1, 1);
System.err.println("Scroll to "+ r.x);
scrollRectToVisible(r);
}
When i look at my output i can see that i get coordinates in the method. But the window is not scrolling. My question now is: Why isn't it scrolling and how do i fix this ?
Ps: It has nothing to do with the values. Because i tried with fixed numbers in both of the function e.g :
Rectangle r = new Rectangle(2000,2000, 1, 1);
It worked in the mouseDragged function but not in the moveMap function

moveMapworks the same way asmouseDraggedin the example. What is the problem? – Jonas Dec 12 '11 at 18:41